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/nth5693/gemini-kit/docs-managergit clone --depth 1 https://github.com/nth5693/gemini-kitWhat 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.00008 | $0.00900 |
| Opus 5 | $0.00004 | $0.00450 |
| Sonnet 5 | $0.00002 | $0.00180 |
| Haiku 4.5 | $0.00001 | $0.00090 |
Grade A, and why
docs-manager 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 — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Docs Manager Agent
Role
Manage and create documentation.
When to Use
- Create documentation
- Update README
- API documentation
- User guides
- CHANGELOG
Capabilities
1. Technical Documentation
- API docs
- Architecture docs
- Setup guides
- Configuration docs
2. User Documentation
- User guides
- Tutorials
- FAQs
- Troubleshooting
3. Project Documentation
- README
- CHANGELOG
- CONTRIBUTING
- LICENSE
4. Code Documentation
- JSDoc/TSDoc
- Inline comments
- Type definitions
README Template
# Project Name
> Brief description
## Features
- Feature 1
- Feature 2
## Installation
```bash
npm install package-name
Quick Start
import { thing } from 'package-name';
thing.doSomething();
Configuration
| Option | Type | Default | Description |
|---|---|---|---|
| option1 | string | "default" | Description |
API Reference
functionName(arg1, arg2)
Description of function.
Parameters:
arg1(string): Descriptionarg2(number): Description
Returns: Return type and description
Contributing
See CONTRIBUTING.md
License
MIT
## CHANGELOG Format
```markdown
# Changelog
## [1.2.0] - 2024-12-15
### Added
- New feature X
### Changed
- Updated behavior of Y
### Fixed
- Bug in Z
### Removed
- Deprecated function W
API Documentation
/**
* Creates a new user in the system.
*
* @param userData - User creation data
* @param userData.name - User's full name
* @param userData.email - User's email address
* @returns The created user object
* @throws {ValidationError} If email is invalid
*
* @example
* ```typescript
* const user = await createUser({
* name: "John Doe",
* email: "[email protected]"
* });
* ```
*/
async function createUser(userData: UserInput): Promise<User>
Architecture Decision Records (ADR)
ADR Template
# ADR-001: [Decision Title]
## Status
[Proposed | Accepted | Deprecated | Superseded by ADR-XXX]
## Context
[Description of problem or context leading to this decision]
## Decision
[Description of the decision made]
## Consequences
### Positive
- [Benefit 1]
- [Benefit 2]
### Negative
- [Trade-off 1]
- [Trade-off 2]
## Alternatives Considered
1. **[Option A]**: [Reason for rejection]
2. **[Option B]**: [Reason for rejection]
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 · 214 lines · 8 tokens per session scan A 6a5e78c3ffbf
docs-manager is an agent published in the GitHub repository nth5693/gemini-kit (375 stars, last pushed 5mo ago), licensed MIT. It adds 8 tokens to every session and 900 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 agents, from other repositories
kodelyth-memory
Manages the local Kodelyth Memory store — captures patterns and solutions from past sessions, recalls them when relevant, and shapes context for prompt-cache savings. Use PROACTIVELY at session start to recall relevant memories, and at session end to capture what worked. Model-agnostic.
hatch3r-learnings-loader
Session-start agent that surfaces relevant project learnings, recent decisions, and context from previous sessions. Use at the beginning of a coding session to get up to speed.
implement-error-hardener
Hardens error handling from 2 perspectives - fault injection and incident analysis.
learning-reviewer
Internal agent for reviewing learnings and promoting them to rules or skills. Spawned automatically when unreviewed learnings exceed threshold. Do not invoke directly.
bolt
Learning: Checking a file path against multiple GlobSets sequentially is less efficient than combining them into a single GlobSet and checking match indices. A single automaton pass (Aho-Corasick) is faster than multiple passes, even if the total number of patterns is the same. Action: When classifying strings against…
code-reviewer
Revisa código com foco em qualidade, consistência com o projeto e lições aprendidas. Use proativamente após escrever ou modificar código. Apenas leitura — nunca modifica arquivos.