Ask questions and read documentation about any GitHub repository using DeepWiki MCP. Use when you need to understand a codebase, find specific APIs, or get c...
集成
skill-mcp
试用The example skill shipped with skill-mcp — shows the SKILL.md shape, a bundled reference file, and a declared runnable script.
它能做什么
The example skill shipped with skill-mcp — shows the SKILL.md shape, a bundled reference file, and a declared runnable script.
技能文档
skill-mcp demo
This skill exists so skill-mcp does something useful the first time it runs,
and so the shape of a skill it can serve is visible in one file.
What a skill is
A directory holding SKILL.md — YAML frontmatter (name, description, and
optionally the mcp-host: block below) followed by instructions — plus any
files the instructions refer to. Read references/declaration.md with
skill_file for the declaration block's fields.
Declaring a runnable script
Only a script named in mcp-host.run may be executed, and only through
skill_run. This skill declares one:
scripts/report.js— prints what the fence handed it: its argv, its working directory, and the NAMES of the environment variables it received.
Run it to see the fence from the inside:
skill_run(name: "skill-mcp-demo", script: "scripts/report.js", args: ["hello"], confirm: true)
What the fence does and does not do
It decides which code runs and what it is handed. It does not make the code safe — a declared script is still arbitrary code, bounded by whatever the host running this server bounds it with.
相关技能
Design portable agent capabilities safely
Allow any combination of agents, humans, or software to approve MCP tool calls that you flag. Prevent your agent from deleting your production database or violating compliance. Use this skill for agents that APPROVE calls, not agents that propose calls.
Generate Skill skeleton code, SKILL.md, and reference materials following best practices
为 DCC-MCP 技能包提供脚手架、校验与审查,并配套面向 Agent 的编写指南。
Cloudflare MCP (github.com). Use this skill for ANY Cloudflare MCP request — searching and reading data. Whenever a task involves Cloudflare MCP, use this skill instead of calling the API directly.