AI-Agents-Orchestrator: Agent for Claude Code

.claude/agents/documentation-writer.md

documentation-writer is an agent for Claude Code from hoangsonww/AI-Agents-Orchestrator. It costs 17 tokens per session (1,689 once invoked), scanned A, original, MIT.

A technical-writing expert for creating developer documentation, including API references, architecture explanations, tutorials, and code comments. It works with formats such as Markdown and documentation specifications such as OpenAPI.

In plain words
What is it for?
Use it to write API guides, architecture documents, step-by-step tutorials, conceptual explanations, docstrings, and diagrams.
Why use it?
It helps turn code and system design into documentation that other developers can understand and use. It also provides structure for explaining how a project works and how to set it up.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Codex.

This is hoangsonww/AI-Agents-Orchestrator's own configuration. It tells Claude Code how to work on AI-Agents-Orchestrator itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything AI-Agents-Orchestrator configures →

Reuse

Borrowing it

Nothing to install: this file belongs to hoangsonww/AI-Agents-Orchestrator. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/hoangsonww/AI-Agents-Orchestrator/main/.claude/agents/documentation-writer.md
Clone the repo
git clone --depth 1 https://github.com/hoangsonww/AI-Agents-Orchestrator

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for documentation-writer

README.md
[![agentmods](https://agentmods.dev/badge/agents/hoangsonww/ai-agents-orchestrator/documentation-writer/github.svg)](https://agentmods.dev/agents/hoangsonww/ai-agents-orchestrator/documentation-writer)
Your own site
<a href="https://agentmods.dev/agents/hoangsonww/ai-agents-orchestrator/documentation-writer"><img src="https://agentmods.dev/badge/agents/hoangsonww/ai-agents-orchestrator/documentation-writer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for documentation-writer

Your own site · 80×15
<a href="https://agentmods.dev/agents/hoangsonww/ai-agents-orchestrator/documentation-writer"><img src="https://agentmods.dev/badge/agents/hoangsonww/ai-agents-orchestrator/documentation-writer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,689 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00017 $0.01689
Opus 5 $0.00009 $0.00844
Sonnet 5 $0.00003 $0.00338
Haiku 4.5 $0.00002 $0.00169

Measured 9d ago against content hash c70bb2682585, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

documentation-writer scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST http://localhost:5001/api/v1/execute \
.claude/agents/documentation-writer.md · 297 lines

How it starts

The opening of the file, as written. The whole thing — 297 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior technical writer specializing in developer documentation for the AI Coding Tools Orchestrator project.

Core Expertise

Documentation Types

  • API Reference: OpenAPI/Swagger, REST, GraphQL
  • Architecture Docs: C4 model, ADRs, system diagrams
  • Tutorials: Step-by-step guides, quickstarts
  • Conceptual: Explanations, deep dives, theory

Documentation Formats

  • Markdown: GitHub-flavored, MDX
  • Docstrings: Google style, NumPy style
  • Specification: OpenAPI 3.x, AsyncAPI
  • Diagrams: Mermaid, PlantUML, draw.io

Documentation Tools

  • Static Sites: Docusaurus, MkDocs, Sphinx
  • API Docs: Redoc, Swagger UI, Stoplight
  • Version Control: Git-based docs-as-code

Project-Specific Documentation

Current Documentation Structure

docs/
├── adding-agents.md           # How to add new agent adapters
├── agentic-team-api-reference.md
├── agentic-team-architecture.md
├── configuration-guide.md
├── offline-mode.md
├── orchestrator-api-reference.md
├── orchestrator-architecture.md
├── security.md
└── testing-guide.md

Docstring Standards (Google Style)

def execute_task(
    self,
    task: str,
    workflow_name: str = "default",
    max_iterations: int = 3,
) -> Dict[str, Any]:
    """Execute a task through the orchestration workflow.

    Routes the task through a sequence of AI agents based on the
    specified workflow. Each agent processes the task and passes
    results to the next agent in the sequence.

    Args:
        task: The software engineering task to execute. Should be
            a clear description of what needs to be accomplished.
        workflow_name: Name of the workflow to use. Available workflows
            are defined in config/agents.yaml. Defaults to "default".
        max_iterations: Maximum number of refinement iterations.
            Must be between 1 and 10. Defaults to 3.

    Returns:
        A dictionary containing:
            - success (bool): Whether the task completed successfully
            - workflow (str): The workflow that was executed
            - iterations (List[dict]): Details of each iteration
            - final_output (str): The final result of the task

    Raises:
        ValueError: If workflow_name doesn't exist in configuration.
        RuntimeError: If no agents are available for execution.

    Example:
        >>> orchestrator = Orchestrator()
        >>> result = orchestrator.execute_task(
        ...     task="Implement a function to calculate fibonacci numbers",
        ...     workflow_name="default",
        ...     max_iterations=3
        ... )
        >>> print(result["success"])
        True
    """

Read the full file on GitHub · 297 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. 9d ago First seen · 297 lines · 17 tokens per session scan A c70bb2682585

Subscribe to this mod's changes

documentation-writer is an agent published in the GitHub repository hoangsonww/AI-Agents-Orchestrator (84 stars, last pushed yesterday), licensed MIT. It adds 17 tokens to every session and 1,689 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

analyzer

Analyze blind comparison results to identify why the winner won and generate improvement suggestions for the losing skill. Also surfaces patterns in benchmark runs.

feiskyer/claude-code-settings · 29 tokens

insight-documenter

Technical breakthrough documentation specialist. Captures and transforms significant technical insights into actionable, reusable documentation. Use when documenting important discoveries, optimizations, or problem solutions.

feiskyer/claude-code-settings · 36 tokens

instruction-reflector

Analyzes and improves Claude Code instructions in CLAUDE.md. Reviews conversation history to identify areas for improvement and implements approved changes. Use to optimize AI assistant instructions based on real usage patterns.

feiskyer/claude-code-settings · 42 tokens

01-Orchestrator

Master orchestrator for the multi-step Azure platform engineering workflow. Coordinates Requirements, Architect, Design, IaC Plan, IaC Code, Deploy agents with mandatory human approval gates. Routes Bicep or Terraform tracks via decisions.iactool.

jonathan-vella/apex-accelerator · 53 tokens

02-Requirements

Researches and captures Azure platform engineering project requirements.

jonathan-vella/apex-accelerator · 13 tokens

03-Architect

Expert Architect providing guidance using Azure Well-Architected Framework principles and Microsoft best practices. Evaluates decisions against WAF pillars and generates ARM MCP-verified cost estimates.

jonathan-vella/apex-accelerator · 37 tokens