.agents/skills/create-issue/SKILL.md
Interactively defines one or more issues with the user. Triggered by: bun nvst create issue --agent <provider>.
npx skillsauth add lpng-plenge/frontend-IA create-issueInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Define one or more issues interactively with the user and write them to the output file using write-json.
Important: Do NOT fix the issues. Just gather information and produce the output file.
title and description for each issue.write-json command to write the issues file (see Output section).CRITICAL: Ask ONE question at a time. Wait for the user's answer before asking the next question.
When you have collected all issues, write the file by running:
bun run src/cli.ts write-json --schema issues --out .agents/flow/it_{iteration}_ISSUES.json --data '<json>'
Replace {iteration} with the value from Context (e.g. 000009). The JSON must be a valid array where each element has:
id: ISSUE-{iteration}-001, ISSUE-{iteration}-002, etc. (sequential, zero-padded)title: concise summary (one sentence)description: detailed explanation including context, reproduction steps, or expected behaviourstatus: always "open"Example:
[
{"id": "ISSUE-000009-001", "title": "Short issue title", "description": "Detailed description.", "status": "open"},
{"id": "ISSUE-000009-002", "title": "Another issue", "description": "More details.", "status": "open"}
]
You must run the write-json command. Do not output JSON to stdout alone. The calling system expects the file to exist.
Before running write-json:
titledescriptionid (ISSUE-{iteration}-NNN) and status ("open")bun run src/cli.ts write-json ...testing
Refines an existing test plan based on user feedback or adversarial challenge mode. Triggered by: bun nvst refine test-plan.
development
Refines an existing refactor plan based on user feedback or adversarial challenge mode. Triggered by: bun nvst refine refactor-plan.
development
Refines .agents/PROJECT_CONTEXT.md via editor mode or challenge mode. Challenge mode validates the document against the actual codebase and detects compliance issues. Triggered by: bun nvst refine project-context.
documentation
Updates an existing product requirement document based on user feedback. Triggered by: bun nvst refine requirement.