원클릭으로
feature-development-loop
(Gemini) Workflow to coordinate multi-step delivery through implementation, review, triage, and commit decisions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
(Gemini) Workflow to coordinate multi-step delivery through implementation, review, triage, and commit decisions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Template starter skill for documenting a reusable development workflow. Use this as a base when creating project-specific skills.
(Gemini) Main-agent workflow for multi-step delivery — delegates discovery, implementation, and review to specialized subagents.
(Gemini) Reviews dashboard and data-heavy admin pages for scanability, KPI hierarchy, chart-task fit, and actionability; produces prioritized UI improvements and implementation tasks.
(Gemini) Frontend implementation guidance for this app. Use before coding visible UI, including forms, dashboards, tables, filters, overlays, navigation, layout, microcopy, accessibility, and i18n.
(Gemini) Use the shared issue workflow runner to generate a ranked backlog or execute a ranked issue subset with an explicit target.
(Gemini) Automates browser interactions for web testing, form filling, screenshots, and data extraction.
| name | feature-development-loop |
| description | (Gemini) Workflow to coordinate multi-step delivery through implementation, review, triage, and commit decisions. |
Use this skill when work should be broken into explicit tasks with review and triage between them.
If you need a tool that is not available (e.g. gh CLI not installed or not authenticated, a network service unreachable), stop and tell the user what tool you need, why, and what they should do to provide access. Do not invent ad-hoc alternatives (temp scripts, curl workarounds, manual API calls) to replace missing tools.
When posting multi-line GitHub comments or close messages, do not pass long bodies inline in shell-quoted arguments.
gh issue comment ... --body-file <path> and write UTF-8 text to that file first.--body-file and then run gh issue close ... separately.invoke_agent("implementation-lead", ...) for all implementation tasks.invoke_agent("code-review", ...) for all review tasks when the triggers are met.orchestrator-workflow skill to map the feature area and propose a plan.Before starting discovery, isolate the task in a dedicated git branch.
git checkout -b task/<slug> (derive a kebab-case slug from the task name).origin/main before discovery: git fetch origin; git merge --ff-only origin/main. If sync fails or conflicts appear, stop and ask the user how to proceed.orchestrator-workflow skill and follow its Step 1 (Discover and propose) to design the plan.Implement: Hand the task to the implementation-lead subagent: invoke_agent("implementation-lead", "Implement <task description> with done criteria: <criteria>").
Review: Invoke the code-review subagent only when at least one of these is true:
Call: invoke_agent("code-review", "Review the following changes: <handoff packet>").
If none apply, skip review and proceed to triage with no findings.
Triage: Triage findings from the code-review:
Before commit, run full validation:
Commit only the files belonging to the task, and only after validation passes.
Report progress and next step.
Before cleanup, sync completed task work back into main by merging the task branch directly or through a PR, following the user's preferred flow. If conflicts or branch protections block merge, stop and ask the user how to proceed.
After merge to main is complete, clean up the task branch: git branch -d task/<slug>.