在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用builder
星标5
分支0
更新时间2026年3月26日 16:29
A skill for building and maintaining Agent Skills
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
A skill for building and maintaining Agent Skills
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | builder |
| description | A skill for building and maintaining Agent Skills |
| author | Andrew Howden |
| version | 0.1.0 |
This skill provides instructions for creating, building, and maintaining Agent Skills using the skr tool.
An Agent Skill is a directory containing standardized knowledge and capabilities for an AI agent. It is packaged as an OCI artifact (like a Docker image) and distributed via container registries.
A valid skill directory must contain a SKILL.md file at its root.
my-skill/
├── SKILL.md (Required) Entry point and instructions.
├── references/ (Optional) Supporting documentation.
├── scripts/ (Optional) Executable tools.
└── assets/ (Optional) Static files.
The SKILL.md file is the core of the skill. It MUST strictly follow this format:
---
name: "my-skill"
description: "A brief description of the skill."
---
# My Skill
Detailed instructions on how to use this skill...
Frontmatter Rules:
name: [Required] 1-64 characters, lowercase alphanumeric and hyphens. Should match the directory name.description: [Required] 1-1024 characters.To create a new skill, create a directory and a SKILL.md file.
mkdir path/to/skill-nameSKILL.md with appropriate frontmatter.To package a skill into an artifact:
skr build path/to/skill-name --tag my-skill:v1
SKILL.md for zero-latency execution.references/ directory for deep-dive technical documentation to keep SKILL.md concise.