Create a new plan file in .agents/plans/
52
57%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./.opencode/skills/create-plan/SKILL.mdYou 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
HEREDOCYou 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 hereThe 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.
36bf165
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.