用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LibPDF-js/core --skill create-plan命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | create-plan |
| description | Create a new plan file in .agents/plans/ |
You are creating a new plan file in the .agents/plans/ directory.
First, read .agents/ARCHITECTURE.md to understand the project's layered architecture and design principles. This is crucial for planning features that fit into the high-level/low-level API structure.
When planning features, consider the two API layers:
PDF, PDFPage, PDFForm)PdfDict, PdfArray, PdfStream)Most features should follow this pattern:
Example: A gradient feature might have:
createAxialShading(), registerShading() - direct PDF object creationpage.drawGradient() - user-friendly method on PDFPageThe script will automatically:
happy-blue-moon){id}-{slug}.md in .agents/plans/If you have the content ready, run:
bun scripts/create-plan.ts "<slug>" "Your plan content here"
For multi-line content, use heredoc:
bun scripts/create-plan.ts "<slug>" << HEREDOC
Your multi-line
plan content
goes here
HEREDOC
You can also pipe content:
echo "Your content" | bun scripts/create-plan.ts "<slug>"
The created file will have:
---
date: 2026-01-21
title: Plan Title
---
Your content here
The title is automatically formatted from the slug (e.g., my-feature → My Feature).
user-authentication, api-integration)Create a plan file using an appropriate slug based on the conversation context and content for the planning task.