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.
curl -O https://raw.githubusercontent.com/hoangsonww/AI-Agents-Orchestrator/main/.claude/agents/documentation-writer.mdgit clone --depth 1 https://github.com/hoangsonww/AI-Agents-OrchestratorWrote 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.
[](https://agentmods.dev/agents/hoangsonww/ai-agents-orchestrator/documentation-writer)<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.
<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>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.
| Model | Per session | Once 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 |
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 \ 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
"""
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.
- 9d ago First seen · 297 lines · 17 tokens per session scan A c70bb2682585
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.
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.
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.
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.
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.
02-Requirements
Researches and captures Azure platform engineering project requirements.
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.