npx skills add smithery/miles990 --skill memory-commit
miles990/multi-agent-workflow · Archived
memory-commit
智能 commit .claude/memory/ 目錄的變更(含任務追蹤)
Installation
npx skills add miles990/multi-agent-workflow --skill memory-commit
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
多 Agent 並行審查框架 - 多視角程式碼審查,問題分類與優?
2 installs端到端工作流編排器 - File-Based Handoff + 智能並行決策
1 installs多 Agent 監督式實作框架 - TDD 驅動、即時審查、品質守護
1 installs跨子系統架構一致性審查 - 利用多視角並行分析架構健康度
1 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Helps users discover and install agent skills when they ask questions like "how do I do X", "fi…
3.3M installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsAlso in this package
Other skills from miles990/multi-agent-workflow · top by installs.
npx skills add miles990/multi-agent-workflow
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Bash, Glob, Grep, ReadPackage contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md3,046 B -
docs
SUMMARY.md87 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
Memory Commit
掃描並 commit .claude/memory/ 目錄的變更,包含任務狀態追蹤。
使用方式
/memory-commit # 自動分析並 commit 所有 memory 變更
/memory-commit --dry # 僅顯示會 commit 的內容,不執行
Memory 目錄結構
.claude/memory/
├── tasks/ # 任務追蹤
│ ├── current.json # 當前工作流狀態
│ ├── history/ # 歷史記錄
│ └── dag/ # 任務依賴圖
├── research/ # 研究報告
├── plans/ # 實作計劃
├── implement/ # 實作記錄
├── review/ # 審查報告
└── workflows/ # 工作流輸出
Commit Message 格式
| 目錄 | Commit Type | 範例 |
|---|---|---|
| tasks/ | chore(tasks) | chore(tasks): complete phase 1 implementation |
| research/ | docs(research) | docs(research): user authentication analysis |
| plans/ | feat(plans) | feat(plans): todo system implementation plan |
| implement/ | feat(implement) | feat(implement): phase 1 memory integration |
| review/ | docs(review) | docs(review): code review findings |
| workflows/ | chore(workflow) | chore(workflow): update orchestrate output |
執行步驟
1. 檢查變更
# 顯示 memory 目錄變更
git status --porcelain .claude/memory/
2. 分類變更
分析變更檔案,按目錄分類:
| 優先順序 | 目錄 | 說明 |
|---|---|---|
| 1 | research/ | 研究結果先 commit |
| 2 | plans/ | 計劃依賴研究 |
| 3 | implement/ | 實作記錄 |
| 4 | review/ | 審查報告 |
| 5 | workflows/ | 工作流輸出 |
| 6 | tasks/ | 任務狀態最後(可能引用其他 commit) |
3. 生成 Commit Message
每個分類:
- 讀取變更檔案內容
- 摘要主要變更(標題、狀態變化等)
- 生成符合格式的 commit message
4. 執行 Commit
# 按順序 commit
git add .claude/memory/research/
git commit -m "docs(research): <摘要>
Co-Authored-By: Claude Opus 4.5 <[email protected]>"
git add .claude/memory/plans/
git commit -m "feat(plans): <摘要>
Co-Authored-By: Claude Opus 4.5 <[email protected]>"
# ... 其他目錄
範例輸出
📝 Memory Commit
掃描 .claude/memory/ 變更...
變更統計:
research/ 2 files changed
plans/ 1 file changed
tasks/ 3 files changed
執行 commit:
[1/3] docs(research): add authentication flow analysis ✓
[2/3] feat(plans): todo system implementation plan ✓
[3/3] chore(tasks): update workflow status ✓
完成!3 個 commits 已建立。
注意事項
- 只處理
.claude/memory/下的變更 - 不會影響其他目錄的 staged changes
- 如果某個分類沒有變更,跳過該分類
- 使用
--dry可預覽但不執行