一键导入
skill-artifacts
Load when writing or reviewing skills. Covers SKILL.md shape, loading mechanics, and how to structure bundled resources.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Load when writing or reviewing skills. Covers SKILL.md shape, loading mechanics, and how to structure bundled resources.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Load when writing or reviewing agent .md files. Covers agent artifact shape, frontmatter, and Meridian-specific agent conventions.
Load when writing or reviewing prompts, skills, or agents. Gives the core heuristics for writing prompts that steer LLM behavior reliably.
Load when an agent, skill, or prompt needs strict review. Focuses on failure modes, severity, and clear feedback.
| name | skill-artifacts |
| type | reference |
| description | Load when writing or reviewing skills. Covers SKILL.md shape, loading mechanics, and how to structure bundled resources. |
| model-invocable | false |
Use /prompt-principles for broader prompt design and loading strategy. This skill covers how skill artifacts are structured in Meridian.
A skill is a directory under skills/ with a SKILL.md and optional resources/, scripts/, and assets/ subdirectories. The description is the trigger surface. The body is the loaded instruction layer. resources/ carry deeper content. scripts/ are for deterministic operations that should run instead of being re-derived in context.
Skills reach agents through four paths (see /prompt-principles/resources/skill-level.md for design guidance):
load: always in the system prompt. Use for skills the agent needs every run.available: agent can self-load when model-invocable: true. Use for skills it may reach for on demand.description: caller discovery surface. List attachable skill names so parent agents know what to compose via --skills.--skills: caller injection at spawn time. Bypasses available; any bundled skill can be injected.model-invocable defaults to true; an explicit model-invocable: false makes an available skill visible but not self-loadable (caller injection via --skills still works). Keep the global model-invocable pool small; each entry costs description tokens on every turn.
Set type: to declare the skill's role: principle for always-loaded thinking guidance, guardrail for always-loaded safety boundaries, mode-shift for on-demand shifts in activity, checkpoint for phase gates, reference for operational how-to.
Descriptions should lead with when to load the skill, not just what it contains. The description is what an agent or orchestrator reads to decide whether to load. "Load when reviewing test architecture" beats "Covers test structure patterns."