一键导入
retro
Use to generate a weekly retrospective by analyzing git log. Triggers on "회고", "retro", "이번 주 정리". Only runs on explicit user request — never auto-triggered.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use to generate a weekly retrospective by analyzing git log. Triggers on "회고", "retro", "이번 주 정리". Only runs on explicit user request — never auto-triggered.
用 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 | retro |
| description | Use to generate a weekly retrospective by analyzing git log. Triggers on "회고", "retro", "이번 주 정리". Only runs on explicit user request — never auto-triggered. |
Run ONLY when the user explicitly requests:
Do NOT auto-trigger at session end or after execute completes.
Delegate git analysis to architect agent (sonnet), then vault storage to archivist agent (haiku).
scripts/identify-project.sh → PROJECT, OWNER--since date:
date -d {MONDAY} +%Y-W%V (or equivalent on macOS: date -j -f "%Y-%m-%d" {MONDAY} +%Y-W%V)Delegate to architect agent:
# Commit list with stats
git log --since="{SINCE}" --until="{UNTIL}" --pretty=format:"%h %ad %s" --date=short
# Change statistics
git log --since="{SINCE}" --until="{UNTIL}" --shortstat
# Files changed
git log --since="{SINCE}" --until="{UNTIL}" --name-only --pretty=format:""
Architect aggregates from --shortstat output:
Architect analyzes commit messages and changed files to produce:
Delegate to archivist agent (haiku):
{vault_root}/{PROJECT}/retros/[Retro] {YYYY-WNN}.md/tmp/agmo-vault-{uuid}.md with the content below{PROJECT}/retros/ if absentretro type — write file manually via archivist)scripts/vault-update.sh section-ensure --path {PROJECT}/{PROJECT}.md --section Retrosscripts/vault-update.sh section-append --path {PROJECT}/{PROJECT}.md --section Retros --content "- [[{PROJECT}/retros/[Retro] {YYYY-WNN}]]"rm /tmp/agmo-vault-{uuid}.md---
type: retro
project: {PROJECT}
period: {YYYY-WNN}
since: {SINCE}
until: {UNTIL}
---
> Project: [[{PROJECT}]]
# [Retro] {YYYY-WNN}
## Stats
| Metric | Value |
|--------|-------|
| Commits | {N} |
| Files changed | {N} |
| Lines added | +{N} |
| Lines deleted | -{N} |
## Key Work
- **{theme}** — {commit summaries}
- ...
## 잘한 점
- {strength 1}
- {strength 2}
## 개선점
- {improvement 1}
- {improvement 2}
{vault_root}/{PROJECT}/retros/[Retro] YYYY-WNN.md
Example: {vault_root}/agmo-everywhere/retros/[Retro] 2025-W13.md