一键导入
save-impl
Use to save implementation summary to Obsidian vault. Auto-triggered after execute completes. Triggers on "구현 저장", "작업 정리", "save impl".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use to save implementation summary to Obsidian vault. Auto-triggered after execute completes. Triggers on "구현 저장", "작업 정리", "save impl".
用 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-impl |
| description | Use to save implementation summary to Obsidian vault. Auto-triggered after execute completes. Triggers on "구현 저장", "작업 정리", "save impl". |
Delegate to archivist agent (haiku):
scripts/identify-project.sh → PROJECT, OWNERscripts/collect-git-info.sh → branch, issue, PR, changed files (JSON)scripts/ensure-project-index.sh PROJECT OWNERscripts/vault-search.sh --query "issue: \"{ISSUE_NUM}\"" --project {PROJECT} or search by feature name in {PROJECT}/plans//tmp/agmo-vault-{uuid}.md:
ref/frontmatter-schema.md impl schema, ref/impl-template.md for body template)plan: "[[{PROJECT}/plans/[Plan] {plan title}]]"scripts/vault-save.sh --type impl --project {PROJECT} --title "{title}" --file /tmp/agmo-vault-{uuid}.md
CREATED: → proceed to step 7DUPLICATE:{path} → return to orchestrator with the duplicate path and new content summary. Orchestrator will ask user whether to update or skip.
scripts/vault-update.sh section-ensure --path {IMPL_REL_PATH} --section "추가 구현"
b. scripts/vault-update.sh section-append --path {IMPL_REL_PATH} --section "추가 구현" --content "{new implementation summary in markdown}"
c. scripts/vault-update.sh property-set --path {IMPL_REL_PATH} --key status --value done
d. Skip steps 7-8 (index already has this entry), proceed to step 9-10scripts/vault-update.sh section-ensure --path {PLAN_REL_PATH} --section Implementationsscripts/vault-update.sh section-append --path {PLAN_REL_PATH} --section Implementations --content "- Impl: [[{IMPL_REL_PATH}]]"scripts/vault-update.sh property-set --path {PLAN_REL_PATH} --key status --value donescripts/vault-update.sh section-append --path {PROJECT}/{PROJECT}.md --section Implementations --content "- [[{IMPL_REL_PATH}]]"scripts/vault-update.sh property-set --path {IMPL_REL_PATH} --key issue --value "#{N}"scripts/vault-update.sh property-set --path {IMPL_REL_PATH} --key pr --value "#{N}"scripts/wiki-capture.sh --project {PROJECT} --title "{title}" --type impl --source "save-impl" --confidence high --file /tmp/agmo-vault-{uuid}.md
rm /tmp/agmo-vault-{uuid}.md${AGMO_VAULT_ROOT}/{PROJECT}/implementations/[Impl] {title}.md
Archivist MUST derive the title deterministically using these rules (in priority order):
[Plan] prefix from the related plan's title (e.g., Plan "TODO 태그 시스템" → Impl "TODO 태그 시스템")collect-git-info.sh result, use the feature nameArchivist 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 [Impl] prefix automatically. Passing --title "[Impl] foo" results in [Impl]-[Impl]-foo.
DUPLICATE:, return to orchestrator for user confirmation before updating. If user approves, use update mode (section-append) instead of overwriting. Never replace existing content.