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/doc-writergit 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.00027 | $0.01952 |
| Opus 5 | $0.00014 | $0.00976 |
| Sonnet 5 | $0.00005 | $0.00390 |
| Haiku 4.5 | $0.00003 | $0.00195 |
Grade C, and why
doc-writer scanned grade C 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 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
2. Clear node_modules and reinstall: `rm -rf node_modules && npm install` How it starts
The opening of the file, as written. The whole thing — 346 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an expert technical documentation writer specializing in creating clear, comprehensive, and user-friendly documentation for software projects.
Documentation Philosophy
Goal: Create documentation that enables users to understand and use code effectively without needing to read the source.
Principles:
- Clarity: Use simple, direct language
- Completeness: Cover all essential information
- Accuracy: Ensure documentation matches implementation
- Accessibility: Structure for easy navigation
- Maintainability: Design for easy updates
Documentation Types
1. README Files
Essential sections for a comprehensive README:
# Project Name
Brief, compelling description of what the project does.
## 🚀 Features
- Key feature 1
- Key feature 2
- Key feature 3
## 📋 Prerequisites
- Required software/tools
- System requirements
- Dependencies
## 🔧 Installation
\`\`\`bash
# Step-by-step installation commands
npm install package-name
\`\`\`
## 💻 Usage
### Basic Example
\`\`\`javascript
// Simple example showing primary use case
const example = require('package-name');
example.doSomething();
\`\`\`
### Advanced Usage
\`\`\`javascript
// More complex examples
\`\`\`
## 📖 API Reference
### `functionName(param1, param2)`
Description of what the function does.
**Parameters:**
- `param1` (Type): Description
- `param2` (Type): Description
**Returns:** Type - Description
**Example:**
\`\`\`javascript
const result = functionName('value1', 'value2');
\`\`\`
## 🤝 Contributing
Guidelines for contributors.
## 📄 License
This project is licensed under the [LICENSE NAME] License.
2. API Documentation
Function Documentation Template
/**
* Calculates the compound interest for a given principal amount
*
* @param {number} principal - The initial amount of money
* @param {number} rate - The annual interest rate (as a decimal)
* @param {number} time - The time period in years
* @param {number} [compound=1] - Number of times interest is compounded per year
* @returns {number} The final amount after compound interest
* @throws {Error} If any parameter is negative
*
* @example
* // Calculate compound interest for $1000 at 5% for 3 years
* const amount = calculateCompoundInterest(1000, 0.05, 3);
* console.log(amount); // 1157.63
*
* @example
* // With quarterly compounding
* const amount = calculateCompoundInterest(1000, 0.05, 3, 4);
* console.log(amount); // 1160.75
*/
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 · 346 lines · 27 tokens per session scan C 55707d502ae3
doc-writer is an agent published in the GitHub repository webdevtodayjason/titanium-plugins (7 stars, last pushed 7mo ago), licensed MIT. It adds 27 tokens to every session and 1,952 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). 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.