mcpbeat Sign in

Yao Doc Agent Skill

Yao process documentation expert. ALWAYS invoke this skill when the user needs to discover available processes, read process signatures, or validate process names. Do not guess process APIs — use this skill first.

430 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
7694
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/YaoApp/yao --skill yao-doc

The instruction itself

6 sections, as written by the author

Documentation Tools

Three tools for browsing Yao process documentation, called via bash.

doc_list

Search and list available process documentation entries.

tai tool doc_list '{"keyword": "user", "limit": 10}'

| Parameter | Type | Required | Description |

|-----------|------|----------|-------------|

| keyword | string | no | Search keyword (empty to list all) |

| limit | integer | no | Max results (default 20) |

doc_inspect

Get detailed documentation for a specific process: arguments, return type, methods.

tai tool doc_inspect '{"name": "models.user.Find"}'

| Parameter | Type | Required | Description |

|-----------|------|----------|-------------|

| name | string | yes | Process name (e.g. models.user.Find) |

doc_validate

Check if a process name is valid. Returns suggestions for similar processes if not found.

tai tool doc_validate '{"name": "models.user.Findd"}'

| Parameter | Type | Required | Description |

|-----------|------|----------|-------------|

| name | string | yes | Process name to validate |

Workflow

  • doc_list — discover available processes by keyword
  • doc_inspect — read the full signature before calling
  • doc_validate — fix typos when a process name doesn't work

Guidelines

  • Always use doc_inspect before calling an unfamiliar process via process_call
  • Use doc_validate when you get unexpected errors — the name might be misspelled

How to use it

Copy the folder

Take yaoapp/yao-doc from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.