一键导入
nf-task-intake
Converts rough requests into issue-ready structured output with title, scope, acceptance criteria, difficulty, and routing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Converts rough requests into issue-ready structured output with title, scope, acceptance criteria, difficulty, and routing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Prepares a change for safe release with readiness checks, rollout planning, rollback triggers, and post-launch follow-through.
Evaluate PR review threads from bots (CodeRabbit, Copilot, gitar), judge comment validity, resolve threads, then merge when all CI checks pass.
Runs a reusable merge-readiness review across correctness, readability, architecture, security, performance, and verification evidence.
Refines vague product or workflow ideas into a focused direction, MVP scope, assumptions, and the right next nForma workflow.
| name | nf:task-intake |
| description | Converts rough requests into issue-ready structured output with title, scope, acceptance criteria, difficulty, and routing. |
Create a small, opinionated pipeline that converts a user request or idea into a ready-to-open GitHub/GitLab issue. The goal is to remove ambiguity, normalize language, and produce structured issue content (title, description, user story, acceptance criteria, light task decomposition, difficulty estimate, and routing recommendation).
Always return a JSON object (for programmatic consumption) with the following keys:
Input: "Our checkout sometimes duplicates orders when users click pay twice. Need to prevent duplicates and show clear feedback."
Output (JSON): { "title": "Prevent duplicate orders when users click pay twice", "description": "Users can submit duplicate orders if they click the payment button more than once while the request is in flight. This causes duplicate charges and inventory problems.", "user_story": "As a shopper, I want the checkout to prevent duplicate submissions so that I am not charged twice and inventory remains correct.", "acceptance_criteria": [ "Given a user clicks pay multiple times, only one order is created and one payment is processed", "Payment gateway receives a single charge per intended order", "UI shows a pending state or disables the pay button after first click" ], "decomposition": [ "Investigate current checkout flow to find where duplicate orders are created", "Add idempotency key or client-side disable to prevent duplicate calls", "Add backend check to detect and ignore duplicate submissions", "Add tests for duplicate submission scenarios", "Roll out and monitor metrics for duplicate orders" ], "difficulty": "M", "difficulty_reasoning": "Medium — requires changes in both frontend and backend and careful payment handling, but scope is limited and solution patterns exist.", "routing": {"executor": "Codex", "reason": "Execution-heavy: touches payments and backend idempotency — prefer execution-capable model or engineer."}, "original_input": "Our checkout sometimes duplicates orders when users click pay twice. Need to prevent duplicates and show clear feedback.", "suggested_labels": ["backend","bug","priority:P1"] }
Inspired by product-manager-prompts (https://github.com/deanpeters/product-manager-prompts). This skill is an original transformation and summarization tool intended for use inside the nForma tooling.