Agent 生成器
- 作者仓库星标 883
- 作者更新于 实时读取
- 作者仓库 stencila
- 领域
- 通用
- 兼容 Agent
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- 信任分
- 88 / 100 · 社区维护
- 作者 / 版本 / 许可
- @stencila · 未声明 license
- Token 消耗评级
- 低消耗
- 接入复杂程度
- 需简单配置
- 是否需要外部 API Key
- 不需要
- 兼容的系统
- macOS · Linux · Windows
- 底层运行要求
- Node.js
- 文件与系统权限
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 网络行为
- 允许外网请求
- 安装命令数
- 26 条
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: skill-creation
description: Create a new Stencila workspace skill. Use when asked to create, write, or scaffold a SKILL.md f…
category: 通用
runtime: Node.js
---
# skill-creation 输出预览
## PART A: 任务判断
- 适用问题:通用任务拆解、检查和交付。
- 输入要求:目标材料、限制条件、期望输出和验收方式。
- 证据边界:围绕“Overview / Steps / Naming Rules”读取原文规则,不把推断写成作者承诺。
## PART B: 执行结果
- **01** 任务判断:确认你的需求是否属于通用任务拆解、检查和交付,并标出输入、限制和预期结果。
- **02** 执行计划:优先按“Overview / Steps / Naming Rules”拆成步骤,说明每一步会读取什么、修改什么、产出什么。
- **03** 交付结果:给出可复制的命令、文件改动、检查清单或内容草稿,并说明如何继续迭代。
- **04** 风险边界:结合 读取文件、写入/修改文件、执行终端命令、会按任务需要访问外部网络、通常不需要额外 API Key 给出执行前确认项。
## Running Rules
- 读取文件、写入/修改文件、执行终端命令;会按任务需要访问外部网络;通常不需要额外 API Key。
- 先小样例验证,再放大到真实任务。
- 交付时同时给结果、检查口径和下一步迭代建议。 原文没有稳定的斜杠命令要求。安装验证后通常全局生效,直接在对话里点名这个 Skill 并描述任务即可。
告诉 Agent 目标文件或材料、期望结果、不可改范围、是否允许联网或执行命令。本 Skill 的权限画像是:读取文件、写入/修改文件、执行终端命令。
先用一个小任务确认它会围绕“Overview / Steps / Naming Rules”工作;涉及文件或命令时,先看 diff、日志、预览或测试结果。
检查最终产物是否包含明确结果、必要证据和下一步动作;如果输出泛泛而谈,就补充输入、边界和验收标准后重跑。
---
name: skill-creation
description: Create a new Stencila workspace skill. Use when asked to create, write, or scaffold a SKILL.md f…
category: 通用
source: stencila/stencila
---
# skill-creation
## 什么时候使用
- 把通用方向的常用动作沉淀成 Agent 可调用的技能 适合处理通用任务拆解、检查、交付和复盘,核心价值是把输入、判断、执行、验证和交付边界固定下来,避免 Agent 泛泛回答。 把任务拆成可执行、可检查、可继续迭代的步骤;通常不需要额外…
- 面向通用任务拆解、检查和交付,优先处理能明确输入、步骤和验收标准的工作。
## 需要提供什么
- 目标材料、目录范围、期望结果和不可改动内容。
- 是否允许联网、执行命令、读写文件或调用外部服务。
## 执行规则
- 围绕「Overview / Steps / Naming Rules」组织步骤,不把推断写成作者事实。
- 读取文件、写入/修改文件、执行终端命令;会按任务需要访问外部网络;通常不需要额外 API Key。
- 先跑小样例,确认结果可检查后再扩大任务范围。
## 输出要求
- 给出最终产物、关键证据、验证方式和下一步动作。
- 信息不足时标记 unknown,不编造命令、平台或依赖。 作者原文负责流程事实;仓库文件负责来源和命令;流狐只补充适用场景、限制和质量判断。
skill "skill-creation" {
输入层 -> 用户目标 + 目标文件 + 禁止范围 + 验收标准
上下文层 -> Overview / Steps / Naming Rules
规则层 -> SKILL.md 触发条件 / 执行顺序 / 输出格式
运行层 -> Node.js | 读取文件、写入/修改文件、执行终端命令 | 会按任务需要访问外部网络
安全层 -> 通常不需要额外 API Key + 小任务验证 + diff / 日志复核
输出层 -> 可复制结果 + 检查清单 + 下一步迭代
} Overview
Create a new workspace skill directory and SKILL.md file following the Agent Skills Specification. A skill is a directory under .stencila/skills/ containing a SKILL.md file with YAML frontmatter and a Markdown body. Skills are reusable instruction sets for AI agents.
Skills should be self-contained. Do not rely on documentation or other content outside the skill directory. If the skill needs supporting material from elsewhere in the repository or from another source, copy it, summarize it, or excerpt it into files inside the skill's own references/ directory, then link to those local files from SKILL.md.
Steps
- Determine the skill name from the user's request
- Validate the name against the naming rules below
- Resolve the closest workspace skill directory: walk up from the current directory to find the nearest directory containing
.stencila/, or use the repository root if none exists - Create the directory
<closest-workspace>/.stencila/skills/<name>/ - Write the
SKILL.mdfile with frontmatter and instructions — include activation keywords in thedescriptionso agents can match the skill to user requests - Add
keywordsto the frontmatter to improve discoverability and delegation accuracy — include terms reflecting likely user intents, artifacts, and domains - Replace placeholders such as
TODObefore considering the skill complete - If the skill depends on supporting guidance, examples, or specifications, create focused files in
references/and put that material there rather than referring to files elsewhere in the repo - Optionally create
scripts/,references/, orassets/subdirectories if the skill needs them - Validate the finished skill with
stencila skills validate <name>, the skill directory path, or theSKILL.mdpath
When working from a nested directory in a repository, create the skill in the closest workspace's .stencila/skills/ directory rather than creating a new .stencila/ tree under the current subdirectory.
Naming Rules
Skill names must be lowercase kebab-case:
- 1–64 characters
- Only lowercase alphanumeric characters and hyphens (
a-z,0-9,-) - Must not start or end with a hyphen
- Must not contain consecutive hyphens (
--) - Must match the parent directory name
- Pattern:
^[a-z0-9]([a-z0-9-]{0,62}[a-z0-9])?$
By convention, names follow a thing-activity pattern describing the domain and action (e.g., code-review, data-analysis, test-generation).
Common corrections: reviewCode → code-review, data_analysis → data-analysis, Test-Gen → test-gen.
SKILL.md Format
The file has two parts:
- YAML frontmatter between
---delimiters - Markdown body with instructions for the agent
Required frontmatter fields
name— the skill name (must match directory name)description— what the skill does and when to use it (max 1,024 characters). Include specific keywords that help agents decide whether to activate the skill.
Optional frontmatter fields
license— SPDX identifier or reference to a license filecompatibility— environment requirements (max 500 characters)allowed-tools— space-delimited or comma-delimited list of pre-approved tools (e.g.,read_file grep shellorread_file, grep, shell, ask_user).keywords— (Stencila extension) list of keywords or tags for discovery and routing. Use terms that reflect likely user intents, artifacts, and domains. Helps managers and selection systems find and rank this skill. Include both positive signals (what this skill does) and negative signals (what it doesn't do) as keywords.metadata— arbitrary key-value pairs (e.g.,author,version)
Template
Use this as a starting point:
---
name: <skill-name>
description: <Clear description including keywords that help agents match this skill to user requests. Do not leave placeholders such as TODO. Max 1,024 characters.>
keywords:
- <keyword1>
- <keyword2>
# license: MIT
# allowed-tools: read_file grep shell
# metadata:
# author: <name>
# version: 0.1.0
---
## Steps
1. <First step>
2. <Second step>
3. <Third step>
## Examples
Input: <describe expected input>
Output: <describe expected output>
## Edge Cases
- <Common pitfall and how to handle it>
Directory Structure
Each skill gets its own subdirectory. Only SKILL.md is required:
.stencila/skills/
<skill-name>/
SKILL.md # Required — frontmatter + instructions
scripts/ # Optional — executable code
references/ # Optional — additional documentation
assets/ # Optional — static resources
Use scripts/ for executable code, references/ for detailed docs loaded on demand, and assets/ for templates and data files. Reference them from SKILL.md using relative paths.
Do not point SKILL.md at repository documentation, specifications, or other files outside the skill directory. When outside material is necessary, prefer adding a concise summary or excerpt under references/ instead of copying a large document verbatim. Keep individual reference files focused so agents can load only the minimum context needed.
Choosing allowed-tools
Only include tools the skill genuinely needs; prefer the minimal set.
| Tool | Use for | Include when |
|---|---|---|
read_file |
Read existing files | The skill needs to inspect repository or workspace content |
write_file |
Create new files or overwrite whole files | The skill creates files from scratch |
apply_patch, edit_file |
Modify existing files in place | The skill updates existing files; some models prefer one or the other |
grep |
Search file contents | The skill needs to find patterns, symbols, or references |
glob |
Find files by pattern | The skill needs to discover files or directories |
web_fetch |
Fetch and save web content locally | The skill needs to retrieve web pages or external documentation for review or summarization |
shell |
Run commands | The skill needs validation, formatting, tests, or other command-line checks |
ask_user |
Request clarification, confirmation, or approval | The skill may need user feedback before proceeding |
Writing Guidelines
- Keep the body under 500 lines / 5,000 tokens
- Use step-by-step numbered lists — easy for models to follow
- Include input/output examples
- Cover edge cases and common pitfalls
- Move detailed reference material to
references/files - Keep the skill self-contained: avoid links or instructions that depend on files outside the skill directory
- If external or repo-local guidance is needed, summarize or excerpt it into focused files under
references/ - Do not leave placeholder frontmatter or body content such as
TODO - Write a description that is specific, not vague (e.g., "Analyze datasets and generate summary statistics. Use when working with CSV, Parquet, or database query results." not "Helps with data.")
- Keep
descriptionunder 1,024 characters andcompatibilityunder 500 characters
Keeping skills workflow-agnostic
Skills must describe generic domain competence with generic inputs and outputs. They should work equally well when invoked by a user in a chat, by an agent acting alone, or by a workflow stage prompt. Workflow-specific concerns — context keys, route labels, workflow_* tool calls — belong in the workflow's stage prompts, not in skills.
Follow these rules:
- Do not reference
workflow_get_context,workflow_set_context,workflow_set_route, orworkflow_get_outputin any skill. These are workflow orchestration tools. If a skill needs input data, declare it in a "Required Inputs" table and let the caller (user, agent prompt, or workflow stage prompt) supply it. - Do not define "Context Keys" or "Route Labels" tables in skills. The workflow owns its data contract — which keys hold which values, and which labels control which branches. Skills should not know or care about that contract.
- Do not reference workflow node names (e.g.,
RunTestsRed,CheckRemaining) or specific workflow files. Skills should not know which workflow is calling them. - Declare inputs and outputs generically. Use a "Required Inputs" table listing what the skill needs (with Required/Optional) and an "Outputs" table listing what it produces. Use domain-appropriate names (e.g., "Acceptance criteria", "Test files", "Recommendation") rather than context key names.
- Use a single sentence to explain how inputs arrive. After the inputs table, include: "When used standalone, these inputs come from the user or the agent's prompt. When used within a workflow, the workflow's stage prompt will specify how to obtain them." This one sentence bridges both use cases without coupling to either.
- Mark plan/file fallbacks as standalone convenience. If a skill falls back to reading from a well-known location (e.g.,
.stencila/plans/) when an input is missing, frame this as a convenience for standalone use: "attempt to infer from X as a standalone convenience. In workflow use, the stage prompt should provide this explicitly."
The workflow's stage prompts are the glue layer. A well-structured stage prompt follows this pattern:
- Read workflow state —
workflow_get_context/workflow_get_outputcalls - Delegate to the skill — pass the retrieved values as the skill's declared inputs
- Store the skill's outputs —
workflow_set_contextwith the workflow's chosen key names - Route —
workflow_set_routewith the workflow's chosen labels, mapped from the skill's domain outputs
This separation means skills stay reusable across workflows, agents can use skills without workflow infrastructure, and the workflow is the single source of truth for its own data contract.
Edge Cases
- Skill directory already exists: Ask the user whether to overwrite, merge, or abort before modifying an existing skill. Never silently overwrite.
- Name mismatch: If the user provides a name that doesn't match kebab-case rules, suggest a corrected version rather than failing silently.
- Nested workspaces: If multiple
.stencila/directories exist in the ancestor chain, use the nearest one. Do not create a duplicate.stencila/skills/tree. - Empty or placeholder content: Do not consider the skill complete if any
TODO,<placeholder>, or empty sections remain in the finalSKILL.md. - External dependencies in documentation: If instructions refer to docs or files outside the skill directory, move the required content into focused files under
references/and updateSKILL.mdto point only to those local copies, summaries, or excerpts.
Validation
Before finishing, validate the skill:
# By skill name
stencila skills validate <skill-name>
# By directory path
stencila skills validate .stencila/skills/<skill-name>
# By SKILL.md path
stencila skills validate .stencila/skills/<skill-name>/SKILL.md
Validation should pass before you report the skill as complete.
先判断是否适合
作者设计意图
作者的方法与取舍
边界和复核