One-shot instruction to connect this AI agent to Skilder over MCP using the official remote endpoint and OAuth. Paste this whole skill into an agent's chat once. It should act on it immediately, without asking the user anything first.
编程
import-skills-to-skilder
试用Import the Agent Skills already present on this machine or in this repo into a Skilder workspace, so the whole team's agents can discover and run them from one governed endpoint. Trigger on requests like "import my skills to Skilder", "publish these skills to my team", "get my local skills into Skilder", "centralize our agent skills".
它能做什么
Import the Agent Skills already present on this machine or in this repo into a Skilder workspace, so the whole team's agents can discover and run them from one governed endpoint. Trigger on requests like "import my skills to Skilder", "publish these skills to my team", "get my local skills into Skilder", "centralize our agent skills".
技能文档
Move the user's existing local Agent Skills into their Skilder workspace. Skills use the open Agent Skills format on both sides, so content imports as-is: frontmatter and body stay what they are.
Step 1: Be connected
You need the Skilder MCP server (https://app.skilder.ai/mcp) with an active session:
- If the server isn't registered yet, follow the
connect-to-skilderskill from this same repo (one endpoint, OAuth sign-in, no keys). - Call
init_skilderand keep the session id it returns; every other Skilder tool call needs it. - Importing uses the
managetool, which is available to workspace admins. The first user of a workspace is its admin, so a user on their own workspace qualifies. Ifmanageisn't in your tool list, tell the user to ask their workspace admin to run the import.
Step 2: Discover local skills
Scan these locations, nearest first. Each directory containing a SKILL.md is one skill:
./.claude/skills/and./.agents/skills/(project)~/.claude/skills/and~/.agents/skills/(user)./skills/in the current repo, including one level of category subdirectories
For each skill found, read the SKILL.md: YAML frontmatter gives name and description, the body is the instructions. Note any extra files next to it (a references/ folder, scripts, other documents).
Step 3: Confirm the list once
Show the user a single inventory: skill name, one-line description, file count, and source path. Ask once which to import (default: all). Also call manage → list-skills and flag any name that already exists in the workspace; for those, ask whether to skip or import under a suffixed name. This is the only confirmation round; after it, proceed without further questions.
Step 4: Import
For each approved skill, in this order:
manage→create-skillwithname,description(from frontmatter), andinstructions(the SKILL.md body, verbatim). Keep the returned skillid.- For each companion file,
manage→create-skill-contentwithskillIdset to that id:- Markdown and text documents:
contentType: "reference",nameset to the filename,instructionsset to the file content verbatim. .py,.sh,.js,.tsfiles:contentType: "script", withtypeset to PYTHON, BASH, JAVASCRIPT, or TYPESCRIPT andcodeset to the file content.- Binary files (images, PDFs): skip them and record the filename; they're added later through the web app.
- Markdown and text documents:
Import content verbatim. Do not rewrite, summarize, or "improve" the user's instructions.
Constraints
- Never import secrets. Before importing any file, check it for API keys, tokens, passwords, or
.env-style content. Skip such files, name them in the report, and do not echo their contents. - Don't guess. If a
SKILL.mdhas no name in its frontmatter, use its directory name. If a file's role is ambiguous, import it as a reference. - One failure doesn't stop the run. If a create call errors, record it and continue with the remaining skills.
Step 5: Report
End with a single summary: skills imported (with names), files attached per skill, anything skipped (binaries, secrets, duplicates, errors). Then point the user at their library at https://app.skilder.ai to review the imports, compose them into roles, and publish. From there, every agent connected to the workspace can discover and run them.
相关技能
Create new agent skills with proper structure, progressive disclosure, and bundled resources. Use when user wants to create, write, or build a new skill.
Sync one skill across eight publishing channels
Agent Skills standard reference guide. Covers SKILL.md specification format, progressive loading, skill discovery and activation, authoring best practices, quality evaluation, description optimization
改任何文件前先看 diff、备份、等用户确认,安全升级已安装的代理技能。
Build, review, or migrate an agent skill from a plain-language description — decides invocation control (disable-model-invocation vs user-invocable), arguments (argument-hint, $ARGUMENTS), and context cost, then scaffolds, validates, and tests it.