
Issue To Prompt
- 1 installs
- 2 repo stars
- Updated June 19, 2026
- andrewtliem/ai-native-app-builder-skills
Issue to Prompt is a Claude Code skill that turns one implementation issue into a focused AI coding prompt with context, constraints, expected behavior, and verification.
About
Issue to Prompt is a Claude skill that converts a single implementation issue into a focused AI coding prompt. A developer uses it when ready to work one issue with an AI coding tool. The prompt includes only relevant PRD and architecture context, the files to inspect first, constraints and forbidden changes, the exact expected output, and the checks to run, and it requires the AI to explain assumptions and report verification.
- Turns one implementation issue into a focused AI coding prompt with context, constraints, expected behavior, verificatio
- Tells the AI which files to inspect first and forbids unrelated changes
- Requires the AI to explain assumptions and report verification results before finishing
Issue To Prompt by the numbers
- 1 all-time installs (skills.sh)
- Ranked #14,102 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 7, 2026 (Skillselion catalog sync)
issue-to-prompt capabilities & compatibility
- Capabilities
- planning · code review
- Use cases
- documentation · planning
What issue-to-prompt says it does
Use this skill to turn one implementation issue into a focused AI coding prompt that includes context, constraints, expected behavior, verification, and boundaries.
Use when a student is ready to work on one issue with an AI coding tool.
Do not combine many unrelated issues into one prompt.
npx skills add https://github.com/andrewtliem/ai-native-app-builder-skills --skill issue-to-promptAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 2 |
| Last updated | June 19, 2026 |
| Repository | andrewtliem/ai-native-app-builder-skills ↗ |
What it does
Convert one implementation issue into a scoped AI coding prompt with verification and boundaries.
Who is it for?
Preparing a scoped, single-issue prompt for an AI coding tool with clear boundaries and verification.
Skip if: Combining many unrelated issues into one prompt.
When should I use this skill?
A student is ready to work on one issue with an AI coding tool, after architecture-to-issues and agent-rules.
What you get
A single-issue prompt states the goal, relevant context, files to inspect, constraints, expected output, and required checks.
- docs/ai-native/07-issue-prompt.md with a scoped AI coding prompt
By the numbers
- 9-step process from restate goal to loop handoff
- Prompt covers one issue only
Files
Issue to Prompt
Stage: Phase 3 — Build with AI
Purpose
Use this skill to turn one implementation issue into a focused AI coding prompt that includes context, constraints, expected behavior, verification, and boundaries.
Shared Principles
These skills are based on two YouTube talks about AI-native software engineering, interpreted through ATL’s own teaching perspective.
- Shift left on intent: clarify goals, users, constraints, tradeoffs, and success before coding.
- Delegate tasks, not judgment: AI may draft, compare, or implement; the student remains responsible for decisions.
- Verification is the bottleneck: every output must include checks, acceptance criteria, or evidence.
- No vibe coding: do not jump from idea directly to generated code without intent, design, and review.
- Small loops beat big guesses: move one step at a time, verify, then continue.
- AI amplifies the system: unclear intent creates faster confusion; clear intent creates faster learning.
When to Use
- Use when a student is ready to work on one issue with an AI coding tool.
- Use after
architecture-to-issuesandagent-rules. - Use before
run-the-loop, so the build loop starts with a focused prompt. - Do not combine many unrelated issues into one prompt.
Inputs
- One issue from the issue list.
- Relevant PRD section.
- Relevant architecture notes.
- Project rules or AGENTS.md.
Process
1. Restate the issue goal. 2. Include only relevant context from PRD and architecture. 3. Tell AI what files to inspect first. 4. State constraints and forbidden changes. 5. Define exact expected output. 6. Include tests/checks to run. 7. Ask AI to explain assumptions and summarize changes. 8. Require no unrelated changes. 9. State that the output should feed into run-the-loop for review, test, fix, and acceptance decisions.
Artifact Discipline
This skill must not only answer in chat. It must produce or update a project file so the next skill has a stable source of truth.
- Write/update this file:
docs/ai-native/07-issue-prompt.md - Artifact title: Issue Coding Prompt
- Read these previous artifacts first:
docs/ai-native/03-prd.mddocs/ai-native/04-architecture.mddocs/ai-native/05-issues.mdAGENTS.md- If the project does not have
docs/ai-native/, create it. - If the target file already exists, update it carefully instead of creating a duplicate.
- Do not draft from memory: follow the Source Loading Protocol below before writing this file.
- End the response with a short
Saved artifact:line naming the file path. - Do not continue to the next skill until the user or student confirms this artifact is acceptable.
Source Loading Protocol
Before producing this skill's output, the agent must explicitly load the upstream artifact files from the current project. Do not rely on pasted chat history if the files exist.
1. Check whether each required upstream file exists:
docs/ai-native/03-prd.mddocs/ai-native/04-architecture.mddocs/ai-native/05-issues.mdAGENTS.md
2. Read every existing required file before drafting this artifact. 3. If a required upstream file is missing, stop and ask the student to run the previous skill or provide the missing file. Do not silently recreate or guess the missing source of truth. 4. In the saved artifact, include a short Sources Read section listing the files actually read. 5. If the student pasted newer content than the saved file, ask whether to update the upstream artifact first before continuing.
Output Format
# AI Coding Prompt
You are working on Issue X: ...
## Goal
...
## Relevant Context
...
## Files to Inspect First
- ...
## Constraints
- ...
## Do Not
- ...
## Expected Output
- ...
## Verification
Run/check: ...
## Loop Handoff
After the build attempt, use `run-the-loop` with the changed files, review findings, and test evidence.
## Before You Finish
- Summarize changed files.
- Explain assumptions.
- Report verification results.Final Response Contract
When this skill finishes, respond briefly and include:
Saved artifact: docs/ai-native/07-issue-prompt.md
Next recommended skill: <next-skill-or-human-review>If you cannot write the file, say exactly why and do not pretend the artifact was saved.
Quality Checklist
- [ ] Prompt covers one issue only.
- [ ] Context is enough but not bloated.
- [ ] Boundaries are explicit.
- [ ] Verification is required.
- [ ] Student can judge the final output.
Common Pitfalls
1. Dumping the whole project into the prompt. Use relevant context. 2. Asking AI to “make it better.” State exact goal. 3. No verification. AI must provide evidence, not just confidence.
Student Prompt Template
Use `issue-to-prompt`.
Here is one implementation issue plus relevant PRD/architecture/rules: [paste].
Create a focused AI coding prompt for this issue only, with goal, context, files to inspect, constraints, do-not list, expected output, verification, and finish requirements.
Save or update the artifact at `docs/ai-native/07-issue-prompt.md`. End with `Saved artifact: docs/ai-native/07-issue-prompt.md` and the next recommended skill.
Before drafting, read the required upstream artifact files listed in the skill. If any are missing, stop and report which file is missing.Related skills
FAQ
When do I use issue-to-prompt?
When you are ready to work on one issue with an AI coding tool, after architecture-to-issues and agent-rules.
Can one prompt cover several issues?
No. Do not combine many unrelated issues into one prompt; the prompt covers one issue only.