Stats
Actions
Tags
From agent-smith
Use when the user wants to index a repository into git-memory, start using git-memory on a new project, or re-index after significant history. Examples: "index the lokumcu repo", "set up git memory for this project", "re-index everything"
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-smith:git-memory-indexThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Starting git-memory on a new repository for the first time
1. Confirm the repo path with the user (default: current directory)
2. Run a dry-run first to show what will be indexed
3. Ask if the user wants to limit commit count (useful for very large repos)
4. Run the real index
5. Run git-memory install to register the MCP server
- [ ] Confirmed repo path
- [ ] Ran dry-run to preview commit count and filter results
- [ ] Agreed on --limit if repo has >1000 commits
- [ ] Completed indexing with 0 errors
- [ ] MCP server registered in .claude.json
- [ ] Reminded user to restart Claude Code
git-memory index \
--repo-path /path/to/repo \
--user-id my-repo-name \
--dry-run
git-memory index \
--repo-path /path/to/repo \
--user-id my-repo-name
# Add --limit 500 for large repos (indexes 500 newest commits)
git-memory install \
--repo-path /path/to/repo \
--user-id my-repo-name
cd /path/to/repo
git-memory index --user-id my-repo-name
git-memory install --user-id my-repo-name
Found 42 commits to evaluate
Done. {"total_evaluated":42,"stored":39,"skipped_irrelevant":3,"skipped_duplicate":0,"errors":0}
── Indexing Summary ─────────────────────────────
total_evaluated 42
stored 39
skipped_irrelevant 3
skipped_duplicate 0
errors 0
--limit 1000 to index the most recent 1000.npx claudepluginhub gunesbizim/agent-smithGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.