Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计异常

arcium-program-developmentarcium 程序开发

Agent Skill

arcium-program-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

3

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:arcium-program-development(arcium 程序开发)
来源仓库:https://github.com/sicmundu/arcium-program-skill
仓库路径:skills/arcium-program-development
安装命令:
npx skills add https://github.com/sicmundu/arcium-program-skill --skill arcium-program-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sicmundu/arcium-program-skill --skill arcium-program-development

简介

arcium-program-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于 Arcium 程序开发与调试,支持端到端实现加密计算、Anchor 程序接线、回调验证及客户端测试流程。
  • 根据任务类型分类:无状态计算(如 Coinflip)或有持久加密状态的账户更新,需先判断是否涉及加密输入输出流。
  • 安装命令为 npx skills add https://github.com/sicmundu/arcium-program-skill --skill arcium-program-development。
  • 包含 shell 命令指令,安装前必须仔细审查是否会触发系统命令执行或文件操作。

SKILL.md

Arcium Program Development

Use this skill to implement and debug Arcium computations end-to-end with strict contracts across Arcis circuits, Anchor program wiring, callback verification, and client/test encryption flow.

Decision Tree (Task Classification)

Classify the request before editing code:

  1. Stateless computation (e.g., Coinflip)
  • No persistent encrypted state account update.
  • Usually one encrypted input and one revealed/encrypted output.
  • Read first: references/implementation-playbook.md, references/callback-output-shapes.md.
  1. Stateful encrypted account flow (e.g., Voting, Sealed Bid, Blackjack)
  • Requires .account(pubkey, offset, len) with exact byte layout.
  • Usually callback writes ciphertext + nonce to account state.
  • Read first: references/account-layout-offsets.md, references/implementation-playbook.md.
  1. Permission-gated flow (e.g., Encrypted DNA matching)
  • Constraints and status transitions determine whether queueing is allowed.
  • Read first: references/permission-and-state-machines.md, references/examples-patterns.md.
  1. Offchain circuit source flow
  • init_comp_def uses CircuitSource::OffChain and circuit_hash!.
  • Read first: references/docs-and-migrations.md, references/troubleshooting-matrix.md.
  1. Migration or compatibility update
  • Update Rust/TypeScript dependencies and API call signatures first.
  • Read first: references/docs-and-migrations.md, references/anti-patterns.md.
  1. Debugging request
  • Triaged by stage: encryption -> queue -> callback verify -> finalization.
  • Read first: references/troubleshooting-matrix.md, references/test-client-patterns.md.

Mandatory Build Contract

Keep these invariants aligned in every implementation:

  1. Circuit function name (#[instruction]) must match comp_def_offset("...") identifier.
  2. Program callback macro must match instruction name:
  • #[arcium_callback(encrypted_ix = "<ix_name>")]
  1. Callback output type must match generated type:
  • SignedComputationOutputs<<IxName>Output>
  1. Queue and callback contexts must reference the same comp-def account and cluster derivation.
  2. Every callback must call verify_output(&cluster_account, &computation_account) before consuming output.
  3. init_*_comp_def must exist for every queued encrypted instruction.

ArgBuilder Contract (Strict Ordering)

Enc<Shared, T> input contract

Order is strict and must be preserved:

  1. x25519_pubkey(<client_pubkey>)
  2. plaintext_u128(<nonce>)
  3. encrypted fields in exact circuit argument order (encrypted_u8/u16/u32/u64/u128/bool/...)

Enc<Mxe, T> input contract

Order is strict and must be preserved:

  1. plaintext_u128(<mxe_nonce>)
  2. encrypted fields in exact circuit argument order

Account-backed encrypted state contract

Use:

  • .account(<state_account>, <byte_offset>, <byte_len>)

Rules:

  1. Offset must start after Anchor discriminator (8) plus preceding fixed fields.
  2. Length must match ciphertext field count times 32 bytes (or packed struct contract).
  3. Add inline comments documenting offset derivation.

See detailed formulas and examples in references/account-layout-offsets.md.

Callback Output Parsing Contract

Two common shapes are generated:

  1. Simple shape
Ok(MyIxOutput { field_0 }) => field_0

Used for single output structs/values.

  1. Nested shape
Ok(MyIxOutput {
    field_0: MyIxOutputStruct0 {
        field_0: a,
        field_1: b,
        field_2: c,
    },
}) => (a, b, c)

Used when return type is a tuple or multi-field struct.

Mandatory checks:

  1. Verify output before parsing.
  2. Check ciphertext cardinality when business logic expects exact count.
  3. Persist/emit only after successful verification and shape checks.

See references/callback-output-shapes.md.

Account Offset Contract

Use this formula for encrypted payload start:

offset = 8 (Anchor discriminator) + sum(size of preceding account fields)

Examples:

  • Voting counters: 8 + 1 (discriminator + bump)
  • Sealed auction encrypted state: 8 + 1 + 32 + 1 + 1 + 8 + 8 + 1 + 16
  • DNA markers block: 8 + 32 + 16 + 32

When adding or reordering account fields, recompute offsets immediately.

Failure Triage Tree

  1. Encryption stage failure
  • Symptoms: decrypt mismatch, invalid nonce usage, unusable ciphertext.
  • Check x25519 keypair generation, nonce serialization (deserializeLE), shared secret pairing.
  • Reference: references/test-client-patterns.md, references/troubleshooting-matrix.md.
  1. Queue stage failure
  • Symptoms: account not found, constraint errors, custom program errors.
  • Check cluster offset, PDA derivation, comp-def account offset, account ordering, constraint seeds.
  • Reference: references/account-layout-offsets.md, references/permission-and-state-machines.md.
  1. Callback verify failure
  • Symptoms: AbortedComputation, output parse mismatch.
  • Check comp-def alignment, callback macro ix name, generated output shape assumptions.
  • Reference: references/callback-output-shapes.md.
  1. Finalization stage failure
  • Symptoms: queue tx confirmed but no resolved result.
  • Check awaitComputationFinalization(...) usage, computation offset mismatch, event listener sequencing.
  • Reference: references/test-client-patterns.md, references/troubleshooting-matrix.md.

Templates (Scaffolding)

Use templates in assets/templates to start implementations quickly:

  • assets/templates/new-computation/arcis-instruction.rs.tpl
  • assets/templates/new-computation/program-flow.rs.tpl
  • assets/templates/new-computation/callback.rs.tpl
  • assets/templates/new-computation/init-comp-def.rs.tpl
  • assets/templates/new-computation/e2e-test.ts.tpl
  • assets/templates/offchain-circuit/init-comp-def-offchain.rs.tpl
  • assets/templates/permissioned-flow/accounts-and-constraints.rs.tpl

Replace placeholders such as <IX_NAME>, <PROGRAM_ID>, <STATE_OFFSET>, <STATE_LEN>.

Task Routing

  • End-to-end implementation workflow: Read references/implementation-playbook.md.
  • Pattern selection by example: Read references/examples-patterns.md.
  • Account layout and offset math: Read references/account-layout-offsets.md.
  • Callback output decoding: Read references/callback-output-shapes.md.
  • Permissions and state transitions: Read references/permission-and-state-machines.md.
  • Test/client orchestration: Read references/test-client-patterns.md.
  • Migrations and deployment: Read references/docs-and-migrations.md.
  • Failure triage: Read references/troubleshooting-matrix.md.
  • What to avoid: Read references/anti-patterns.md.

Definition of Done

Code changes are complete only when all checks pass:

  1. Structural/build checks:
arcium build
cargo check --all
arcium test
  1. Skill checks:
python3 /Users/grisahudozestvennyj/.codex/skills/.system/skill-creator/scripts/quick_validate.py /Users/grisahudozestvennyj/Documents/projects/arcium/dna/skills/arcium-program-development
rg -n "[\p{Cyrillic}]" /Users/grisahudozestvennyj/Documents/projects/arcium/dna/skills/arcium-program-development || true
  1. Functional acceptance checks:
  • Circuit name, comp-def offset, callback macro, and callback output type are aligned.
  • ArgBuilder order matches circuit input ownership contract.
  • Offset constants match actual account layout and are documented.
  • Callback verifies output before parsing/persisting.
  • Tests wait for computation finalization and validate expected results.

Delivery Standard

  • Produce concrete code edits, not abstract guidance.
  • Preserve existing seed derivation and PDA conventions unless migration requires changes.
  • State assumptions explicitly when required inputs are missing.
  • End with executed validation commands and any remaining risk notes.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.8%
按下载量换算35

Claude

31.09%
按下载量换算30

Cursor

17.96%
按下载量换算17

Gemini CLI

9.42%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/sicmundu/arcium-program-skill --skill arcium-program-development 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills