yao-agent
- Repo stars 7,542
- Author updated Live
- Author repo yao
- Domain
- DevOps
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @YaoApp · no license declared
- Token usage
- Lean
- Setup complexity
- Plug-and-play
- External API key
- Not required
- Operating systems
- Unspecified (assume cross-platform)
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: yao-agent
description: Agent management expert. ALWAYS invoke this skill when you need to list available agents, downlo…
category: devops
runtime: no special runtime
---
# yao-agent output preview
## PART A: Task fit
- Use case: Agent management expert. ALWAYS invoke this skill when you need to list available agents, download or reference agent source code, deploy agent code to the host, or query the LLM connector matrix. Do not guess agent structures — use this skill first..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “agentlist / agentdownload / agentreference” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Agent management expert. ALWAYS invoke this skill when you need to list available agents, download or reference agent source code, deploy agent code to the host, or query the LLM connector matrix. Do not guess agent structures — use this skill first.”.
- **02** When the source has headings, the agent prioritizes “agentlist / agentdownload / agentreference” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files.
Start with a small task and check whether the result follows “agentlist / agentdownload / agentreference”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: yao-agent
description: Agent management expert. ALWAYS invoke this skill when you need to list available agents, downlo…
category: devops
source: YaoApp/yao
---
# yao-agent
## When to use
- Agent management expert. ALWAYS invoke this skill when you need to list available agents, download or reference agent…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “agentlist / agentdownload / agentreference” and keep inference separate from source facts.
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "yao-agent" {
input -> user goal + target files + boundaries + acceptance criteria
context -> agentlist / agentdownload / agentreference
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Agent Tools
Five tools for managing agents on the host, called via bash.
agent_list
List available agents. Returns ID, name, description, and capabilities for each agent.
tai tool agent_list '{}'
tai tool agent_list '{"namespace": "smith"}'
| Parameter | Type | Required | Description |
|---|---|---|---|
namespace |
string | no | Filter by namespace (e.g. yao, smith). Omit for all. |
agent_download
Download a smith-namespace agent into the development directory for editing. Restricted to smith namespace only — for other agents, use agent_reference.
tai tool agent_download '{"id": "smith.weather"}'
| Parameter | Type | Required | Description |
|---|---|---|---|
id |
string | yes | Agent ID in dot notation. Must be smith.*. |
Downloaded code lands in agent-smith-dev/assistants/smith/<name>/.
agent_reference
Download agent source code from the host into .references/ for read-only study. Any agent across all namespaces can be referenced.
tai tool agent_reference '{"id": "yao.slides"}'
tai tool agent_reference '{"id": "yao.keeper"}'
| Parameter | Type | Required | Description |
|---|---|---|---|
id |
string | yes | Agent ID in dot notation (e.g. yao.slides) |
Referenced code lands in agent-smith-dev/.references/<namespace>/<name>/.
agent_deploy
Deploy agent source code from the sandbox development directory to the host. Restricted to the smith namespace only — attempts to deploy to other namespaces will be rejected.
tai tool agent_deploy '{"id": "smith.weather"}'
tai tool agent_deploy '{"id": "smith.weather", "message": "add SUI page"}'
| Parameter | Type | Required | Description |
|---|---|---|---|
id |
string | yes | Agent ID in dot notation. Must use smith namespace. |
message |
string | no | Optional deploy message for logging. |
agent_connectors
Get the current user's LLM connector matrix. Returns metadata for each role (default, heavy, light, vision, etc.) without API keys. Use this to understand which models are available and their capabilities.
tai tool agent_connectors '{}'
No parameters required.
Guidelines
- Use
agent_listto discover agents before downloading or referencing agent_downloadis for editing smith agents — code lands inagent-smith-dev/assistants/smith/<name>/agent_referenceis for studying any agent — code lands inagent-smith-dev/.references/<namespace>/<name>/- Deploy is restricted to the
smithnamespace for safety - Connector data never includes API keys, secrets, or tokens
- All output is JSON
Decide Fit First
Design Intent
How To Use It
Boundaries And Review