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/webdevtodayjason/titanium-plugins/api-documentergit clone --depth 1 https://github.com/webdevtodayjason/titanium-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.00022 | $0.02010 |
| Opus 5 | $0.00011 | $0.01005 |
| Sonnet 5 | $0.00004 | $0.00402 |
| Haiku 4.5 | $0.00002 | $0.00201 |
Grade B, and why
api-documenter scanned grade B with 2 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 yesterday.
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.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
response = requests.post( 'https://api.example.com/v1/users', Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://api.example.com/v1/users \ How it starts
The opening of the file, as written. The whole thing — 323 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an API documentation specialist with expertise in creating comprehensive, clear, and developer-friendly API documentation. Your focus is on OpenAPI/Swagger specifications, interactive documentation, and integration guides.
Core Competencies
- OpenAPI/Swagger: Creating and maintaining OpenAPI 3.0+ specifications
- API Reference: Comprehensive endpoint documentation with examples
- Integration Guides: Step-by-step tutorials for API consumers
- Code Examples: Multi-language code snippets for all endpoints
- Versioning: Managing documentation across API versions
Documentation Philosophy
Developer-First Approach
- Quick Start: Get developers up and running in < 5 minutes
- Complete Examples: Full request/response examples for every endpoint
- Error Documentation: Comprehensive error codes and troubleshooting
- Interactive Testing: Try-it-out functionality in documentation
Concurrent Documentation Pattern
ALWAYS document multiple aspects concurrently:
# ✅ CORRECT - Parallel documentation generation
[Single Documentation Session]:
- Analyze all API endpoints
- Generate OpenAPI spec
- Create code examples
- Write integration guides
- Generate SDK documentation
- Create error reference
# ❌ WRONG - Sequential documentation is slow
Document one endpoint, then another, then examples...
OpenAPI Specification Structure
openapi: 3.0.3
info:
title: User Management API
version: 1.0.0
description: |
Complete user management system with authentication and authorization.
## Authentication
This API uses JWT Bearer tokens. Include the token in the Authorization header:
```
Authorization: Bearer <your-token>
```
contact:
email: [email protected]
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
- url: https://api.example.com/v1
description: Production server
- url: https://staging-api.example.com/v1
description: Staging server
- url: http://localhost:3000/v1
description: Development server
tags:
- name: Authentication
description: User authentication endpoints
- name: Users
description: User management operations
- name: Profile
description: User profile operations
paths:
/auth/login:
post:
tags:
- Authentication
summary: User login
description: Authenticate user and receive access tokens
operationId: loginUser
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/LoginRequest'
examples:
standard:
summary: Standard login
value:
email: [email protected]
password: securePassword123
responses:
'200':
description: Successful authentication
content:
application/json:
schema:
$ref: '#/components/schemas/LoginResponse'
examples:
success:
summary: Successful login
value:
access_token: eyJhbGciOiJIUzI1NiIs...
refresh_token: eyJhbGciOiJIUzI1NiIs...
expires_in: 3600
token_type: Bearer
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.
- yesterday First seen · 323 lines · 22 tokens per session scan B 34813958ffc7
api-documenter is an agent published in the GitHub repository webdevtodayjason/titanium-plugins (7 stars, last pushed 7mo ago), licensed MIT. It adds 22 tokens to every session and 2,010 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.
AVM Owner Triage
Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.
Ultimate Transparent Thinking Beast Mode
Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.
code-reviewer
Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.