Install
$ agentstack add skill-gunesbizim-agent-smith-git-memory-status ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Check git-memory Status
When to Use
- User asks if git-memory is configured
- Before using search tools to confirm the index has data
- Troubleshooting empty search results
- After indexing to confirm it completed correctly
Workflow
1. Run status command to check ChromaDB commit count
2. Check if MCP server is configured in .claude.json
3. Check embed provider availability
4. Report findings and any gaps
Checklist
- [ ] ChromaDB has > 0 commits indexed
- [ ] git-memory MCP server is in .claude.json
- [ ] user-id matches between index and MCP server config
- [ ] Embed provider is available (Ollama running / OPENAI_API_KEY set)
Commands
Check index size
git-memory status --repo-path /path/to/repo
Check MCP config
cat .claude.json | python3 -m json.tool | grep -A8 "git-memory"
Check Ollama is running (required for default mode)
curl -s http://localhost:11434/api/tags
Healthy Status Example
── git-memory status ──────────────────────────
Repo : myproject
Chroma docs : 39 (this repo) / 39 (all repos)
Total commits : 42
Coverage : 93%
Embed provider: ollama
Common Issues
| Symptom | Fix | |---------|-----| | 0 commits indexed | Run git-memory index --repo-path . | | MCP tools return errors | Check Ollama is running: ollama serve | | Wrong user-id | Must match GIT_MEMORY_USER_ID in MCP config | | Chroma path conflict | Ensure GIT_MEMORY_CHROMA_DIR points to chroma_commits/ | | No LLM context (Layer 2) | Normal without Ollama — Layer 1 (ChromaDB) still works |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: gunesbizim
- Source: gunesbizim/agent-smith
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.