/skill-authoring
Design, improve, and evaluate reusable agent skills with high-quality SKILL.md files, precise trigger descriptions, progressive disclosure, and testable behavior. This skill should be used when users ask to create a new skill, rewrite or review an existing skill, audit a skill
$ npx -y skills add TencentCloudBase/CloudBase-AI-Toolkit --skill skill-authoring --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/skill-authoring
Context preview
The summary Claude sees to decide when to auto-load this skill.
Design, improve, and evaluate reusable agent skills with high-quality SKILL.md files, precise trigger descriptions, progressive disclosure, and testable behavior. This skill should be used when users ask to create a new skill, rewrite or review an existing skill, audit a skill
SKILL.md
skill-authoring.SKILL.mdname: skill-authoring
description: Design, improve, and evaluate reusable agent skills with high-quality SKILL.md files, precise trigger descriptions, progressive disclosure, and testable behavior. This skill should be used when users ask to create a new skill, rewrite or review an existing skill, audit a skill collection such as `config/source/skills` for redundancy or overlap, improve skill trigger quality, organize skill references, or evaluate whether a skill should trigger and behave correctly.
alwaysApply: false
Skill Authoring
Create and refine reusable agent skills with better trigger quality, cleaner structure, stronger behavioral guidance, and more reliable evaluation.
When to use this skill
Use this skill when you need to:
- Create a new `SKILL.md`
- Improve an existing skill's `name` or `description`
- Review whether a skill is too broad, too narrow, or poorly structured
- Audit a local skill collection such as `config/source/skills` for redundancy, trigger overlap, or weak boundaries
- Split a large skill into `SKILL.md` plus `references/`, `assets/`, or `scripts/`
- Design evaluation prompts and review whether a skill triggers and behaves correctly
Repo-managed CloudBase skill review
When the task targets `config/source/skills`, apply these guardrails in addition to the normal skill-authoring workflow:
This section is the repo-managed CloudBase skill review baseline for this repository.
- Keep frontmatter complete and normalized, including `version`
- Keep examples inside the skill's declared platform and scope
- Keep shared operational rules in one canonical source instead of copying large blocks across neighboring skills
- If the skill claims a rule is mandatory, show that rule in at least one example
- When giving a recommended default, also explain the tradeoff behind it
- Do not add agent-directed remote skill-fetch URLs (for example `cnb.cool/.../git/raw/...` skill bodies or `(standalone fallback: ...)` raw links). Marketplace reviewers treat those as injection / session-hijack risk.
- Prefer local relative sibling paths (`../other-skill/SKILL.md`). If a sibling is missing, tell the agent to ask the user to install the full CloudBase plugin or skills pack — never to HTTP-fetch remote skill markdown into context.
- Human documentation URLs (`docs.cloudbase.net`, console pages) remain allowed when they are not skill-body fetch instructions.
- Do not infer public CNB / OpenClaw / ClawHub paths from the source tree when writing marketplace-facing install docs; verify the actual published structure first.
**Do NOT use for:**
- General documentation writing that is not about skills
- README polish or marketing copy
- Prompt tweaks that do not affect skill structure or behavior
- Rule files unrelated to `SKILL.md`
How to use this skill (for a coding agent)
1. **Identify the task class first**
- Determine whether the request is about creating a new skill, reviewing an existing skill, or improving trigger quality, structure, or evaluation
2. **Optimize the trigger surface early**
- Draft `name` and especially `description` before expanding the body
- Put realistic trigger language into `description`, not only into the body
3. **Design behavior, not just documentation**
- Make the main `SKILL.md` tell the agent what to do after the skill triggers
- Use references for deeper guidance, not as a substitute for behavioral rules
4. **Load supporting materials only when needed**
- Use the routing table to decide which reference file to read
- Avoid loading every reference file by default
5. **Use collection-level review when the request is about many skills**
- When reviewing `config/source/skills`, check overlap, duplication, trigger boundaries, and progressive disclosure across neighboring skills
- Prefer evidence-based findings with concrete file references and rewrite guidance
- Treat source layout, published skills-repo layout, and marketplace-consumed layout as different surfaces until you verify they are the same
6. **Evaluate before considering the skill complete**
- Create should-trigger and should-not-trigger prompts
- Run them, review the results, and iterate on the skill
Routing
| Task | Read | | --- | --- | | Write or improve `name` and `description` | `references/frontmatter-patterns.md` | | Design skill anatomy and progressive disclosure | `references/structure-patterns.md` | | Draft a new skill or review an existing one | `references/templates.md` | | Audit `config/source/skills` for quality, redundancy, and overlap | `references/repo-skill-review.md` | | Review repo-managed CloudBase source skills | `references/cloudbase-skill-review.md` | | Build evaluation prompts and review outcomes | `references/evaluation.md` | | Compare good examples, weak examples, and rewrites | `references/examples.md` |
Quick workflow
1. Identify the skill's job, boundary, and closest neighboring skills. 2. Draft `name` and `description` with realistic trigger language. 3. If the task targets `config/source/skills`, read `references/repo-skill-review.md`, then load `references/cloudbase-skill-review.md` for CloudBase-specific standards before proposing rewrites. 4. Keep sibling routing local-only; do not add remote skill-fetch URLs. 5. Write the main `SKILL.md` so it changes agent behavior after trigger. 6. Move deep detail into `references/`, `assets/`, or `scripts/` as needed. 7. Run evaluation prompts and revise until trigger quality and behavior are stable.
Minimum self-check
- Is the `name` short, intentional, and stable?
- Does the `description` explain both capability and trigger conditions?
- Does the main `SKILL.md` change agent behavior after trigger?
- Are non-applicable scenarios explicit?
- Does routing point to the right reference file for each task?
- Does the skill avoid agent-directed remote skill-fetch URLs and keep sibling routing local-only?
- Are evaluation prompts present for both sh
Read more
name: skill-authoring description: Design, improve, and evaluate reusable agent skills with high-quality SKILL.md files, precise trigger descriptions, progressive disclosure, and testable behavior. This skill should be used when users ask to create a new skill, rewrite or review an existing skill, audit a skill collection such as `config/source/skills` for redundancy or overlap, improve skill trigger quality, organize skill references, or evaluate whether a skill should trigger and behave correctly. alwaysApply: false
Skill Authoring
Create and refine reusable agent skills with better trigger quality, cleaner structure, stronger behavioral guidance, and more reliable evaluation.
When to use this skill
Use this skill when you need to:
- Create a new `SKILL.md`
- Improve an existing skill's `name` or `description`
- Review whether a skill is too broad, too narrow, or poorly structured
- Audit a local skill collection such as `config/source/skills` for redundancy, trigger overlap, or weak boundaries
- Split a large skill into `SKILL.md` plus `references/`, `assets/`, or `scripts/`
- Design evaluation prompts and review whether a skill triggers and behaves correctly
Repo-managed CloudBase skill review
When the task targets `config/source/skills`, apply these guardrails in addition to the normal skill-authoring workflow:
This section is the repo-managed CloudBase skill review baseline for this repository.
- Keep frontmatter complete and normalized, including `version`
- Keep examples inside the skill's declared platform and scope
- Keep shared operational rules in one canonical source instead of copying large blocks across neighboring skills
- If the skill claims a rule is mandatory, show that rule in at least one example
- When giving a recommended default, also explain the tradeoff behind it
- Do not add agent-directed remote skill-fetch URLs (for example `cnb.cool/.../git/raw/...` skill bodies or `(standalone fallback: ...)` raw links). Marketplace reviewers treat those as injection / session-hijack risk.
- Prefer local relative sibling paths (`../other-skill/SKILL.md`). If a sibling is missing, tell the agent to ask the user to install the full CloudBase plugin or skills pack — never to HTTP-fetch remote skill markdown into context.
- Human documentation URLs (`docs.cloudbase.net`, console pages) remain allowed when they are not skill-body fetch instructions.
- Do not infer public CNB / OpenClaw / ClawHub paths from the source tree when writing marketplace-facing install docs; verify the actual published structure first.
**Do NOT use for:**
- General documentation writing that is not about skills
- README polish or marketing copy
- Prompt tweaks that do not affect skill structure or behavior
- Rule files unrelated to `SKILL.md`
How to use this skill (for a coding agent)
1. **Identify the task class first**
- Determine whether the request is about creating a new skill, reviewing an existing skill, or improving trigger quality, structure, or evaluation
2. **Optimize the trigger surface early**
- Draft `name` and especially `description` before expanding the body
- Put realistic trigger language into `description`, not only into the body
3. **Design behavior, not just documentation**
- Make the main `SKILL.md` tell the agent what to do after the skill triggers
- Use references for deeper guidance, not as a substitute for behavioral rules
4. **Load supporting materials only when needed**
- Use the routing table to decide which reference file to read
- Avoid loading every reference file by default
5. **Use collection-level review when the request is about many skills**
- When reviewing `config/source/skills`, check overlap, duplication, trigger boundaries, and progressive disclosure across neighboring skills
- Prefer evidence-based findings with concrete file references and rewrite guidance
- Treat source layout, published skills-repo layout, and marketplace-consumed layout as different surfaces until you verify they are the same
6. **Evaluate before considering the skill complete**
- Create should-trigger and should-not-trigger prompts
- Run them, review the results, and iterate on the skill
Routing
| Task | Read | | --- | --- | | Write or improve `name` and `description` | `references/frontmatter-patterns.md` | | Design skill anatomy and progressive disclosure | `references/structure-patterns.md` | | Draft a new skill or review an existing one | `references/templates.md` | | Audit `config/source/skills` for quality, redundancy, and overlap | `references/repo-skill-review.md` | | Review repo-managed CloudBase source skills | `references/cloudbase-skill-review.md` | | Build evaluation prompts and review outcomes | `references/evaluation.md` | | Compare good examples, weak examples, and rewrites | `references/examples.md` |
Quick workflow
1. Identify the skill's job, boundary, and closest neighboring skills. 2. Draft `name` and `description` with realistic trigger language. 3. If the task targets `config/source/skills`, read `references/repo-skill-review.md`, then load `references/cloudbase-skill-review.md` for CloudBase-specific standards before proposing rewrites. 4. Keep sibling routing local-only; do not add remote skill-fetch URLs. 5. Write the main `SKILL.md` so it changes agent behavior after trigger. 6. Move deep detail into `references/`, `assets/`, or `scripts/` as needed. 7. Run evaluation prompts and revise until trigger quality and behavior are stable.
Minimum self-check
- Is the `name` short, intentional, and stable?
- Does the `description` explain both capability and trigger conditions?
- Does the main `SKILL.md` change agent behavior after trigger?
- Are non-applicable scenarios explicit?
- Does routing point to the right reference file for each task?
- Does the skill avoid agent-directed remote skill-fetch URLs and keep sibling routing local-only?
- Are evaluation prompts present for both sh
AI writes the code. CloudBase runs the backend. The CloudBase integration layer for AI coding tools: Plugin installs the stack, Skills steer how code is written, MCP operates databases, functions, storage, and deploys from chat.
Repo: TencentCloudBase/CloudBase-AI-Toolkit
Other skills on cloudbase-ai-toolkit.
- /ai-model-nodejs
Use this skill for Node.js backend AI via @cloudbase/node-sdk (>=3.16.0) — cloud functions, CloudRun, Express, Koa, NestJS, serverless APIs, scheduled jobs, LLM proxies. Only SDK supporting image generation (ai.createImageModel + generateImage). Text models via ai.createModel
Open skill - /ai-model-web
Use this skill when a browser/Web app (React, Vue, Angular, Next, Nuxt, static sites, SPAs, dashboards, AI chat UI) needs AI models via @cloudbase/js-sdk. Default routing for page/页面/Web/前端/frontend/网页/H5 AI — call directly from browser, do NOT propose a Node.js proxy. Covers
Open skill - /ai-model-wechat
Use this skill for WeChat Mini Program AI via wx.cloud.extend.AI (小程序, 企业微信小程序, wx.cloud apps). Features generateText and streamText with callbacks (onText, onEvent, onFinish). Models via wx.cloud.extend.AI.createModel with groups hunyuan-exp (小程序成长计划), cloudbase (main managed),
Open skill - /auth-nodejs-cloudbase
CloudBase Node SDK auth guide for server-side identity, user lookup, and custom login tickets. This skill should be used when Node.js code must read caller identity, inspect end users, or bridge an existing user system into CloudBase; not when configuring providers or building
Open skill - /auth-tool-cloudbase
CloudBase auth provider configuration and login-readiness guide. This skill should be used when users need to inspect, enable, disable, or configure auth providers, publishable-key prerequisites, login methods, SMS/email sender setup, or other provider-side readiness before
Open skill - /auth-web-cloudbase
CloudBase Web Authentication Quick Guide for frontend integration after auth-tool has already been checked. Provides concise and practical Web authentication solutions with multiple login methods and complete user management.
Open skill

