Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/aptos-labs/aptos-ai --skill move-init명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | move-init |
| description | Initialize Move workflow routing in the project CLAUDE.md |
Add Move workflow routing instructions to the project's CLAUDE.md so that future prompts automatically delegate to the right agent.
Move.toml in the current
directory or its parents.Move.toml found, tell the user this is not a Move package and stop.CLAUDE.md at the package root. If it does not exist, create it.<!-- move-flow-routing -->.
If yes, tell the user "Move workflow routing already configured" and stop.<!-- move-flow-routing -->
## Move Workflow Routing
When working with Move code in this package, use the appropriate workflow.
If the user asks to run something "in an agent" or "as a subagent", use
the Agent tool with the agent name. Otherwise, use the Skill tool with
the /skill-name to load the workflow into the current conversation.
- **Spec inference** (infer specs, generate specifications, WP analysis):
Skill: `/move-inf`. Agent: `move-inf`.
- **Verification** (verify, prove, run prover, check specifications):
Skill: `/move-prove`. Agent: `move-verify`.
- **Testing** (generate tests, unit tests, improve coverage):
Skill: `/move-test`. Agent: `move-test`.
- **Fix compilation** (check errors, fix compilation, won't compile):
Skill: `/move-check`. Agent: `move-check`.
Do not call `move_package_wp` or `move_package_verify` MCP tools directly —
always use the skill or agent which has the full workflow context.
For general Move development (writing code, reading code, explaining),
use the `/move` skill for language and tool references.