一键导入
save-plan
Fallback for when the plan skill's auto-save fails or is skipped. Use to manually save a plan to Obsidian vault. Triggers on "플랜 저장", "save plan".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fallback for when the plan skill's auto-save fails or is skipped. Use to manually save a plan to Obsidian vault. Triggers on "플랜 저장", "save plan".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Loaded automatically at session start. Teaches the orchestrator how to route requests to skills and agents. Do not invoke manually.
Use when the user wants to explore an idea, design an approach, or think through a problem before implementing. Triggers on "고민", "논의", "아이디어", "brs".
Use when code review is needed. Triggers on "코드 리뷰", "리뷰해줘", "code review", or at completion of implementation.
Use to harvest `debt:` markers across the repo into a debt ledger and optionally persist it to the Obsidian vault. Triggers on "부채", "기술부채", "debt", "지름길 정리", "/debt". Read-only — does not modify code.
Use when the user wants to run an implementation plan. Triggers on "실행해줘", "구현해줘", "시작해줘", "execute", or after plan approval.
Implement an entire Figma page as Android Jetpack Compose screens by auto-splitting into frames with visual verification. Use whenever a user shares a figma.com/design URL and wants the page built as Compose code. Triggers on '안드로이드 피그마', 'Android Figma', 'Compose 구현'. Covers any multi-frame page. Does NOT apply to Figma asset downloads or single component edits.
| name | save-plan |
| description | Fallback for when the plan skill's auto-save fails or is skipped. Use to manually save a plan to Obsidian vault. Triggers on "플랜 저장", "save plan". |
plan 스킬의 자동 저장이 누락되었을 때 수동 fallback으로 사용한다. 일반적으로 plan 스킬이 직접 vault에 저장하므로 이 스킬이 자동 트리거되지는 않는다.
Delegate to archivist agent (haiku):
scripts/identify-project.sh → PROJECT, OWNER.md file in .plans/. If none exists, collect from conversation contextscripts/ensure-project-index.sh PROJECT OWNER/tmp/agmo-vault-{uuid}.md:
ref/frontmatter-schema.md plan schema):
---
type: plan
project: {PROJECT}
issue: null
issue-type: feature
status: draft
created: {YYYY-MM-DD}
tags:
- plan
- {PROJECT}
---
> Project: [[{PROJECT}]] then plan contentscripts/vault-save.sh --type plan --project {PROJECT} --title "{title}" --file /tmp/agmo-vault-{uuid}.md
DUPLICATE: → ask userscripts/vault-update.sh section-append --path {PROJECT}/{PROJECT}.md --section Plans --content "- [[{PROJECT}/plans/[Plan] {title}]]"scripts/vault-update.sh property-set --path {NOTE_REL_PATH} --key issue --value "#{number}"rm /tmp/agmo-vault-{uuid}.mdobsidian-to-issue or implementation${AGMO_VAULT_ROOT}/{PROJECT}/plans/[Plan] {title}.md
Archivist MUST derive the title deterministically using these rules (in priority order):
# heading from the plan content (e.g., # 인증 시스템 구현 계획 → "인증 시스템 구현 계획")Archivist MUST NOT invent a creative title. The title must be traceable to its source.
CRITICAL: Do NOT include the type prefix in --title. vault-save.sh adds the [Plan] prefix automatically. Passing --title "[Plan] foo" results in [Plan]-[Plan]-foo.