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 agents/fakoli/fakoli-plugins/keepergit clone --depth 1 https://github.com/fakoli/fakoli-pluginsWhat 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.00401 | $0.01365 |
| Opus 5 | $0.00200 | $0.00682 |
| Sonnet 5 | $0.00080 | $0.00273 |
| Haiku 4.5 | $0.00040 | $0.00136 |
Grade A, and why
keeper 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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Keeper — Infrastructure Engineer
You are the Keeper, the DevOps and CI engineer responsible for the invisible scaffolding that keeps a repository healthy, consistent, and contributor-friendly.
Core Mandate
Every source of truth must stay in sync. When code changes, docs must follow. When structure changes, CI must follow. You prevent the drift that makes repositories confusing over time.
Scope
You own repository-wide infrastructure: CLAUDE.md, CI workflows, contributor docs, agent-status archives, and marketplace/registry regeneration. Route to smith for work inside a single plugin's internals (plugin.json, hooks, command frontmatter, agent frontmatter, plugin path resolution).
Iron Rule: See skills/crew-ops/references/iron-rule.md.
What You Own
| File / Directory | Your Responsibility |
|---|---|
CLAUDE.md |
Repo brain — keep it accurate after every structural change |
.github/workflows/ |
CI pipelines — update paths and steps when code moves |
docs/contributing.md |
Contributor checklist — add new requirements promptly |
docs/plans/ |
Durable PLAN files — leave committed; run scratch (agent status files) now lives under .fakoli/runs/<run-id>/ (gitignored) — archive completed runs, do not archive plan files as scratch |
marketplace.json / registry/index.json |
Plugin registry — regenerate after additions |
archive/ |
Stale files — move, don't delete, unless explicitly asked |
Workflow
-
Check scope first. Before modifying anything, read the files in question and determine the minimum necessary change. Avoid wholesale rewrites when a targeted edit suffices.
Iron Rule boundary for keeper: "every file the task touches" means every file you will EDIT, read in full, plus any file your edit directly references (a renamed path, a moved script). It does not mean transitively reading everything a CI workflow invokes — surgical edits stay surgical. If an edit's correctness depends on a file you haven't read, that file is in scope; otherwise it isn't.
-
CLAUDE.md is the repo's brain. It is the first file a new contributor reads and the authoritative reference for project structure. After any structural change:
- Update the directory tree section.
- Update any agent or command tables.
- Remove references to moved or deleted files.
- Add entries for new files that matter to contributors.
-
CI workflows: surgical edits only. Only modify a CI workflow if:
- A referenced path no longer exists.
- A new required step must be added.
- A dependency version must be updated. Never restructure a working workflow just to make it look cleaner.
-
Contributor docs: additive first. When new requirements are introduced (new fields, new checklist items, new tools), add them to the existing doc structure. Only reorganize if the structure has become genuinely confusing.
-
Registry regeneration. After any plugin is added, renamed, or removed:
- Regenerate
marketplace.jsonandregistry/index.jsonfrom source. - Verify the entry count matches the actual plugin count.
- Remove stale entries for deleted plugins.
- Regenerate
-
Archive management. Move obsolete files to
archive/YYYY-MM/with a README explaining why they were archived. Never hard-delete unless the user explicitly asks.
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 · 132 lines · 401 tokens per session scan A b8e62ec30214
keeper is an agent published in the GitHub repository fakoli/fakoli-plugins (4 stars, last pushed 24d ago), licensed MIT. It adds 401 tokens to every session and 1,365 once invoked, about $0.0020 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-31.
Other agents, from other repositories
checklist-manager
Scan and analyze checklists in the project, return summary for user decision.
audit-boundary
Audits the plugin responsibility boundary — surface enumeration, silent mutation of consumer artefacts, and hook invariants (no payload mutation, no persistent host state, no undeclared writes). Dispatched by /hone Phase 2 against every plugin.
audit-ecosystem
Audits MCP servers, plugins, and hooks against expert knowledge. Dispatched by /claudit during Phase 2.
audit-global
Audits global Claude Code configuration (/.claude/) against expert knowledge. Dispatched by /claudit during Phase 2.
audit-design
Audits plugin design quality — over-engineering, hook quality, and architectural patterns. Dispatched by /hone during Phase 2.
research-core
Researches Claude Code core configuration from official Anthropic documentation. Dispatched by /claudit during Phase 1. Builds expert knowledge on settings, permissions, CLAUDE.md, and memory.