Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/fockus/skill-memory-bank/prgit clone --depth 1 https://github.com/fockus/skill-memory-bankWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00007 | $0.00616 |
| Opus 5 | $0.00003 | $0.00308 |
| Sonnet 5 | $0.00001 | $0.00123 |
| Haiku 4.5 | $0.00001 | $0.00062 |
Grade A, and why
pr scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
0. Pre-flight checks
# Must NOT be on main / master
BRANCH=$(git rev-parse --abbrev-ref HEAD)
[ "$BRANCH" = "main" ] || [ "$BRANCH" = "master" ] && echo "ERROR: refusing to open PR from $BRANCH" && exit 1
# Must have commits ahead of the integration branch
git fetch origin main 2>/dev/null || git fetch origin master 2>/dev/null
AHEAD=$(git rev-list --count origin/main..HEAD 2>/dev/null || git rev-list --count origin/master..HEAD 2>/dev/null || echo 0)
[ "$AHEAD" = "0" ] && echo "WARN: 0 commits ahead of main — nothing to PR" && exit 1
# Surface which workflows will run against the PR
gh workflow list 2>/dev/null | head -10
If on main / master, stop and tell the user to create a feature branch first. If 0 commits ahead, tell the user there is nothing to PR.
1. Gather context
git diff origin/main --stat # or origin/master
git log origin/main..HEAD --oneline
Read ./.memory-bank/checklist.md and the active plan (if any) to understand what the PR delivers. If .memory-bank/codebase/ is populated, fold its summaries into the PR body for reviewer orientation.
2. Draft the PR content
- Title — Conventional Commits format, ≤70 chars. Use
$ARGUMENTSif provided. - Body — Markdown with:
## Summary— 1-3 bullets on what changed and why## Test plan— checklist items the reviewer can run## Codebase context(optional, if.memory-bank/codebase/is populated) — one line summary pulled from each ofSTACK.md,ARCHITECTURE.md,CONVENTIONS.md,CONCERNS.md(whichever exist); usegrep -m1 -v '^#'to get the first non-heading line per file## Related issues—Closes #N,Refs #Mif applicable
3. Show preview → confirm
Print the full title + body as it will appear on GitHub. Ask:
Create PR with this title and body? (y/N)
Default = No. Only proceed on explicit y.
4. Create the PR
gh pr create --title "<title>" --body "$(cat <<'EOF'
<body>
EOF
)"
5. Show result
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 65 lines · 7 tokens per session scan A 93d140a53956
pr is a command published in the GitHub repository fockus/skill-memory-bank (25 stars, last pushed 1mo ago), licensed MIT. It adds 7 tokens to every session and 616 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
git
The pre-finish status: branch, hygiene findings, message checks, workflow lint, template state.
init
Install the formatters this repository needs, with every command visible before it runs.
release-now
Create a git tag + GitHub Release for open-pr — an official release if standing on main, an RC if standing on a branch with an open PR (a dev tool specific to this repo, not shipped in the plugin).
vitaecontext-github
Audit or improve GitHub profile and repository SEO.
vitaecontext-vitaegraph
Create, validate, index, or use a private VitaeGraph.
setup
Fetch Kobiton credentials from the authenticated MCP server and write them to /.kobiton/.credentials.