skills/memory-stats/SKILL.md
View statistics and recent entries from the persistent memory database. Shows session count, knowledge areas, facts, and recent activity.
npx skillsauth add mahmoudimus/simba memory-statsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Show statistics and recent entries from the persistent memory database.
When the user invokes /memory-stats, run these commands to show memory information:
uv run python -m simba.search stats
uv run python -m simba.search recent 5
Present the information clearly:
## Memory Database
| Type | Count |
|------|-------|
| Sessions | X |
| Knowledge areas | Y |
| Facts | Z |
## Recent Sessions
1. [date] - Summary of session 1
2. [date] - Summary of session 2
...
The user might ask for specific views:
/memory-stats facts - Show all facts/memory-stats knowledge - Show all knowledge areas/memory-stats search <query> - Search memoryFor these, use:
# Search
uv run python -m simba.search search "query"
development
Index the current project for optimized search with QMD semantic search and fast file suggestions. Run this when entering a new codebase or after significant changes. Saves 60-80% tokens on exploration tasks.
tools
Show token economics comparing usage with turbo-search vs without. Demonstrates actual savings from search-first approach.
development
Enforce Simba's Codex lifecycle routine for coding tasks. Use when starting or finishing implementation work in a Simba-enabled repo to run `simba codex-status` at start, `simba codex-extract` when extraction is pending, and `simba codex-finalize` before final handoff.
tools
Save the current work session to persistent memory for future context. Summarizes accomplishments, tracks files modified, and stores learnings for cross-session continuity.