adk-ts: Skill for Claude Code

.claude/skills/adk-ts-docs-writer/SKILL.md

adk-docs-writer is a skill for Claude Code from BrainDAO/adk-ts. It costs 64 tokens per session (4,855 once invoked), scanned A, original, MIT.

A documentation-writing guide for ADK-TS, a TypeScript agent-development project, using Fumadocs MDX pages. MDX combines Markdown with reusable interface components.

In plain words
What is it for?
It is for creating or editing documentation pages, adding sections to navigation, and writing MCP server guides in the ADK-TS docs site.
Why use it?
It provides project-specific guidance for matching the existing documentation structure, components, formatting, and navigation.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is BrainDAO/adk-ts's own configuration. It tells Claude Code how to work on adk-ts 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 adk-ts configures →

Reuse

Borrowing it

Nothing to install: this file belongs to BrainDAO/adk-ts. 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/BrainDAO/adk-ts/main/.claude/skills/adk-ts-docs-writer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/BrainDAO/adk-ts

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 adk-docs-writer

README.md
[![agentmods](https://agentmods.dev/badge/skills/braindao/adk-ts/adk-ts-docs-writer/github.svg)](https://agentmods.dev/skills/braindao/adk-ts/adk-ts-docs-writer)
Your own site
<a href="https://agentmods.dev/skills/braindao/adk-ts/adk-ts-docs-writer"><img src="https://agentmods.dev/badge/skills/braindao/adk-ts/adk-ts-docs-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 adk-docs-writer

Your own site · 80×15
<a href="https://agentmods.dev/skills/braindao/adk-ts/adk-ts-docs-writer"><img src="https://agentmods.dev/badge/skills/braindao/adk-ts/adk-ts-docs-writer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,855 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00064 $0.04855
Opus 5 $0.00032 $0.02427
Sonnet 5 $0.00013 $0.00971
Haiku 4.5 $0.00006 $0.00485

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

Security

Grade A, and why

adk-docs-writer 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 10d 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.

.claude/skills/adk-ts-docs-writer/SKILL.md · 632 lines

How it starts

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

ADK-TS Docs Writer

Overview

This skill creates and updates documentation pages for the ADK-TS docs site built with Next.js + Fumadocs. It knows the exact component library, frontmatter format, navigation system, and page archetypes used in apps/docs/content/docs/.

When to Use

  • Creating a new documentation page
  • Editing existing doc content
  • Adding a new section to the docs navigation
  • Writing MCP server documentation
  • Creating guide/tutorial pages

Before Writing

  1. Read the target section's meta.json to understand existing navigation
  2. Identify which page archetype applies (see below)
  3. Read a canonical reference page for that archetype
  4. Apply adk-style-guide rules (brand, terminology, URLs)

Docs Site Structure

All documentation lives in apps/docs/content/docs/ with this layout:

apps/docs/content/docs/
├── agent.md                    # Root overview
├── meta.json                   # Root navigation
├── cli/                        # CLI reference
├── mcp-servers/                # MCP server documentation
│   ├── iq-ai-servers/          # Built-in MCP servers
│   ├── third-party-wrappers/   # Third-party wrapper servers
│   ├── external-mcps.mdx
│   └── creating-custom-mcps.mdx
└── framework/                  # Core framework docs
    ├── get-started/            # Installation, quickstart
    ├── agents/                 # Agent types, builder, multi-agent
    ├── tools/                  # Tool types, MCP, OpenAPI, auth
    ├── runtime/                # Event loop, runner, lifecycle
    ├── session-state-memory/   # Sessions, state, memory
    ├── artifacts/              # File/data storage
    ├── callbacks/              # Lifecycle hooks
    ├── context/                # Context types
    ├── evaluation/             # Testing, metrics
    ├── events/                 # Event system
    ├── observability/          # Tracing, metrics
    ├── plugins/                # Plugin system
    └── guides/                 # Deployment, integrations

Read the full file on GitHub · 632 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. 10d ago First seen · 632 lines · 64 tokens per session scan A b556be633719

Subscribe to this mod's changes

adk-docs-writer is a skill published in the GitHub repository BrainDAO/adk-ts (119 stars, last pushed 2mo ago), licensed MIT. It adds 64 tokens to every session and 4,855 once invoked, about $0.0003 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.