npx skills add smithery/neversight --skill plan2json
robzolkos/zolkos-agent-skills · Archived
plan2json
Convert feature requirements into structured end-to-end test cases as JSON.
Installation
npx skills add robzolkos/zolkos-agent-skills --skill plan2json
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Catch up on codebase changes by reviewing the diff from master and reading relevant spec files.
9 installsReset the working directory for the next task by ensuring no uncommitted changes exist, then sw…
8 installsQuick user-centric interview to capture requirements from a time-poor stakeholder.
8 installsPrime yourself on a codebase by listing files and reading the README.
7 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsPostgres best practices maintained by Supabase, for Postgres running anywhere. Load this skill …
391.6K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsAlso in this package
Other skills from robzolkos/zolkos-agent-skills.
npx skills add robzolkos/zolkos-agent-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
master
Skill metadata
Parsed from SKILL.md frontmatter.
Read, WritePackage contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,696 B -
docs
SUMMARY.md92 B
History
- First seen on skills.sh
- First recorded snapshot · 8 installs
SKILL.md
Plan to JSON
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.
Input
Read the file at $1 to get the complete project specification. Read it carefully before proceeding.
Output: feature_list.json
Based on the spec file, create feature_list.json with detailed end-to-end test cases.
Format
[
{
"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
}
]
Requirements
- Minimum 200 features total with testing steps for each
- Both
"functional"and"style"categories - Mix of narrow tests (2-5 steps) and comprehensive tests (10+ steps)
- At least 25 tests MUST have 10+ steps each
- Order features by priority: fundamental features first
- ALL tests start with
"passes": false - Cover every feature in the spec exhaustively
Write the JSON array to feature_list.json in the current working directory.