一键导入
meta-skill-creator
Create new agent skills following the Agent Skills specification. Use when building reusable skills with proper structure and frontmatter.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create new agent skills following the Agent Skills specification. Use when building reusable skills with proper structure and frontmatter.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bosun configuration — models, sandbox, daemon, Pi settings. Use when changing models, editing config, or understanding how bosun is set up.
Bootstrap a new project using bosun as a foundation — via bun dependency (recommended) or git submodule. Creates a downstream project that inherits bosun's multi-agent infrastructure while adding custom agents, skills, and extensions. Works standalone — fetchable by any pi agent via raw GitHub URL.
Search curated markdown memory like sessions, plans, docs, and skills. Use when recalling prior context or looking for relevant historical/project knowledge.
Analyze Pi session JSONL files using jq patterns. Use when extracting metrics, tool usage, costs, or reviewing session history. Load for session export, summarization, or workflow analysis.
Session-based browser plan review primitives for Bosun. Provides a local-first state model, markdown-aware anchor extraction, and review-session persistence for reviewing existing plan files in dedicated CDP browser windows. Triggers: "plan-review", "review this plan", "review markdown plan".
Session-based browser diff review primitives for Bosun. Provides transport- agnostic v1 schemas plus local state and git snapshot helpers for immutable review rounds. Triggers: "diff-review", "reround", "review round", "snapshot-backed review".
| name | meta-skill-creator |
| description | Create new agent skills following the Agent Skills specification. Use when building reusable skills with proper structure and frontmatter. |
| license | MIT |
| compatibility | pi |
| metadata | {"audience":"developers","category":"meta","spec-version":"1.0"} |
Create agent skills following the Agent Skills specification.
SKILL.md filesskill-name/
├── SKILL.md # Required - main skill file (ALL CAPS!)
├── scripts/ # Optional - executable code
├── references/ # Optional - detailed docs (loaded on demand)
└── assets/ # Optional - static resources
Locations:
.pi/skills/<name>/SKILL.md~/.pi/agent/skills/<name>/SKILL.md---
name: my-skill
description: Does X when user needs Y. Use when working with Z.
---
# My Skill
## What I Do
- Action 1
- Action 2
## When to Use Me
Use this skill when:
- Scenario 1
- Scenario 2
Do NOT use for:
- Anti-pattern 1
## Instructions
Step-by-step guidance here...
---
name: skill-name # Must match directory name
description: ... # What it does AND when to use it
---
Name rules:
| Level | Content | Budget |
|---|---|---|
| Metadata | name + description | ~100 tokens |
| Instructions | SKILL.md body | < 5000 tokens |
| Resources | references/, scripts/ | As needed |
Key guidelines:
references/.pi/skills/<name>/SKILL.md with frontmatter