用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/robzolkos/zolkos-agent-skills --skill plan2json命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | plan2json |
| description | Convert feature requirements into structured end-to-end test cases as JSON. |
| argument-hint | <spec-file> |
| disable-model-invocation | true |
| allowed-tools | Read, Write |
You are creating the foundation for an autonomous development process. Your job is to convert a project specification into a comprehensive feature list that serves as the single source of truth for what needs to be built.
Read the file at $1 to get the complete project specification. Read it carefully before proceeding.
Based on the spec file, create feature_list.json with detailed end-to-end test cases.
[
{
"category": "functional",
"description": "Brief description of the feature and what this test verifies",
"steps": [
"Step 1: Navigate to relevant page",
"Step 2: Perform action",
"Step 3: Verify expected result"
],
"passes": false
},
{
"category": "style",
"description": "Brief description of UI/UX requirement",
"steps": [
"Step 1: Navigate to page",
"Step 2: Take screenshot",
"Step 3: Verify visual requirements"
],
"passes": false
}
]
"functional" and "style" categories"passes": falseWrite the JSON array to feature_list.json in the current working directory.