docs-manager

A coding assistant for creating and maintaining project documentation, from setup instructions and API references to user guides, FAQs, and change logs.

In plain words
What is it for?
Use it to write or update README files, API and architecture docs, setup and configuration guides, tutorials, FAQs, troubleshooting pages, CHANGELOGs, and code comments.
Why use it?
It helps keep important project knowledge clear and up to date, so developers and users can install, configure, use, troubleshoot, and contribute to the software.

Agent

Install

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.

agentmods
npx agentmods add agents/nth5693/gemini-kit/docs-manager
Clone the repo
git clone --depth 1 https://github.com/nth5693/gemini-kit
Per session 8 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 900 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 6a5e78c3ffbf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

agents/docs-manager.md · 214 lines

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): Description
  • arg2 (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]

Read the full file on GitHub · 214 lines

Changes

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.

  1. 2d ago First seen · 214 lines · 8 tokens per session scan A 6a5e78c3ffbf

Subscribe to this mod's changes

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.

Related

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.

sifxprime/kodelyth-ecc · 63 tokens

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.

hatch3r/hatch3r · 33 tokens

implement-error-hardener

Hardens error handling from 2 perspectives - fault injection and incident analysis.

eai-support/eai-gofer · 19 tokens

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.

codingagentsystem/cas · 35 tokens

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…

EffortlessMetrics/xchecker · 0 tokens

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.

ecodelearn/template-claude-code-ts · 39 tokens