一键导入
plan
Create and structure feature plans in the local documentation sandbox. Use when asked to plan a feature or create an implementation route.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and structure feature plans in the local documentation sandbox. Use when asked to plan a feature or create an implementation route.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | plan |
| description | Create and structure feature plans in the local documentation sandbox. Use when asked to plan a feature or create an implementation route. |
This skill explains how agents must structure and organize feature plans in apps/docs-dev.
[!IMPORTANT] This skill ONLY covers the structure and categorization of plans. For rules on how to author MDX, structure Fumadocs, and edit
meta.json, you must refer to the use-docs skill.
All plans must be stored in the local documentation sandbox under:
apps/docs-dev/content/tmp/plans/
When creating a plan, you must categorize it as either Simple or Complex. The user can explicitly instruct you to treat a plan as Complex even if you initially deem it Simple.
Use for small, straightforward features.
apps/docs-dev/content/tmp/plans/login.mdxUse for large features requiring in-depth explanation across multiple parts.
index.mdx, and specific topics go into subroutes.apps/docs-dev/content/tmp/plans/dashboard/
├── index.mdx (Main overview)
├── api.mdx (API design)
└── components.mdx (UI components)
If the user asks to expand a specific section of a complex plan (e.g., the API section becomes too complex for a single file), you should multi-nest it within the same folder rather than moving it outside.
api.mdx to api/index.mdx and add additional subroutes alongside it.apps/docs-dev/content/tmp/plans/dashboard/
├── index.mdx
├── api/
│ ├── index.mdx (Was api.mdx)
│ └── endpoints.mdx (New in-depth route)
└── components.mdx
When writing the content of a plan, you must decide the appropriate level of detail. Evaluate the feature's complexity and choose whether the plan should be:
Use your best judgment to provide the exact right amount of detail.
The user can demand an implementation route containing actionable phases. This route splits the overall plan into small phases, allowing the agent to execute only one phase at a time per request.
The implementation route must be named implementation.mdx. Its placement depends on the plan's category:
Place implementation.mdx directly next to the other subroutes in the feature's folder.
apps/docs-dev/content/tmp/plans/dashboard/
├── index.mdx
├── components.mdx
└── implementation.mdx <-- Actionable phases
If you created a Simple plan (e.g., feature.mdx) and the user requests an implementation route, you must refactor the plan into a folder:
feature.mdx to feature/index.mdx.feature/implementation.mdx.meta.json as instructed by the use-docs skill.apps/docs-dev/content/tmp/plans/feature/
├── index.mdx <-- Was feature.mdx
└── implementation.mdx <-- Actionable phases
implementation.mdx document, do not attempt to complete multiple phases in a single response unless explicitly asked by the user.meta.json rules, and Fumadocs structure.Instructions and guidelines for creating or adding new integration examples in the monorepo.
Instructions and guidelines on how package versioning, changelog generation, and NPM releases are managed using semantic-release in the tanstack-i18n monorepo.
Read and author Fumadocs for @wadiou/tanstack-i18n. Use when editing MDX, meta.json, or the docs app.
Write scoped Conventional Commits and run git commit in this repo. Use when the user asks to commit, amend, or draft a message.
Standardize coordination between agent sessions by creating and maintaining handoff documents in tmp/handoffs/