speckit-full
Autonomous end-to-end speckit pipeline: specify → clarify (self-answered) → plan → tasks → implement → open PR. No human input required.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Autonomous end-to-end speckit pipeline: specify → clarify (self-answered) → plan → tasks → implement → open PR. No human input required.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Capture stable lessons from a speckit run into persistent project memory and create/update helper skills when repeated repo-specific workflows emerge.
Investigate SonarCloud quality gate failures for the current GitHub pull request. Use when a PR has a failing SonarCloud check, when the user asks where duplication or other Sonar failures come from, or when you need to trace a GitHub Sonar check into SonarCloud file-level and block-level details.
Use when the user wants to work through the automata CLI feature-delivery loop: pick up the next GitHub issue with `automata implement-next`, monitor PR status and CI checks with `automata git get-pr-info`, inspect unresolved review threads with `automata git get-pr-comments`, address reviewer feedback, and finish a merged feature with `automata git finish-feature`. Also use when the user asks how automata works for day-to-day implementation flow in this repository.
| name | speckit-full |
| description | Autonomous end-to-end speckit pipeline: specify → clarify (self-answered) → plan → tasks → implement → open PR. No human input required. |
| compatibility | Requires spec-kit project structure with .specify/ directory and gh CLI |
| metadata | {"author":"azdo-cli"} |
$ARGUMENTS
The text after the command invocation is the feature description. You MUST use it — do not ask the user to repeat it.
Run the full speckit pipeline completely autonomously through to a merged-ready pull request. At every step where the standard workflow would pause and ask the user a question, answer it yourself using:
src/CLAUDE.md and .specify/memory/constitution.md.specify/memory/speckit-memory.md (if present).agents/skills/ (if present)Document every autonomous decision as an assumption in the spec's Assumptions section.
Before Phase 1, load .specify/memory/speckit-memory.md if it exists. Treat it as reusable project memory, not as authority: current code, the constitution, and the active feature spec always win if they conflict.
If a project-local helper skill exists for a repo-specific workflow discovered in prior runs, follow it rather than re-deriving the process from scratch.
Execute the full speckit-specify workflow using $ARGUMENTS as the feature description.
Autonomous clarification rule: If the specify step generates any [NEEDS CLARIFICATION] markers or presents multiple-choice questions, do NOT wait for user input. Instead:
## Assumptions section as: - [AUTO] <topic>: chose <answer> because <one-line rationale>Proceed when the spec file is written and the checklist passes.
Execute the speckit-clarify workflow, but answer every question yourself without pausing.
For each question the clarify step raises:
src/ (read relevant files if needed)CLAUDE.md tech stack and conventions.specify/memory/constitution.md principles- Q: <question> → A: <answer> [AUTO: <rationale>] to the ## Clarifications section in the spec.If the clarify step reports "No critical ambiguities detected", proceed immediately.
Stop after all questions are processed (max 5 per clarify rules). Save the updated spec.
Execute the full speckit-plan workflow.
Autonomous clarification rule: If the plan step encounters any NEEDS CLARIFICATION items during Phase 0 research, resolve them autonomously using the same approach as Phase 2. Document each resolution in research.md under an ## Autonomous Decisions section.
Proceed when plan.md, research.md, and all Phase 1 artifacts are written. Ensure planning decisions remain explicit in research.md using the standard Decision / Rationale / Alternatives considered structure so they can be transferred into the separate PR appendix later.
Execute the full speckit-tasks workflow.
Generate tasks.md following the standard task generation rules. No user interaction required.
Before implementation begins, initialise the reviewer-facing PR artifacts from their templates so they can be incrementally updated during implementation while keeping summary and planning decisions separate.
Read .specify/templates/pr-report-template.md and .specify/templates/spec-decisions-template.md.
Pre-fill every placeholder in pr-report-template.md that is already known at this point:
[FEATURE NAME] → feature name from the spec header[###-feature-name] → output of git rev-parse --abbrev-ref HEAD[DATE] → today's date in YYYY-MM-DD format[Link to spec.md …] → relative path from repo root to spec.mdWhat's New, Testing, and optional sections as placeholders — they are completed in Phase 7.Pre-fill spec-decisions-template.md using planning artifacts:
[FEATURE NAME] → feature name from the spec header[###-feature-name] → output of git rev-parse --abbrev-ref HEAD[DATE] → today's date in YYYY-MM-DD format[Link to spec.md …], [Link to plan.md …], [Link to research.md …] → relative paths from repo rootresearch.md, plus any explicit structure decision recorded in plan.md, into one bullet containing the chosen approach, rationale, and alternatives consideredpr-report.mdWrite the files to FEATURE_DIR/pr-report.md and FEATURE_DIR/spec-decisions.md.
Commit them to the feature branch:
git add FEATURE_DIR/pr-report.md FEATURE_DIR/spec-decisions.md
git commit -m "docs: initialise PR artifacts for [FEATURE NAME]"
Execute the full speckit-implement workflow.
tasks.md and mark each as [X] when done.npm test && npm run lint (or project equivalent) after all tasks are complete. Fix any failures before proceeding.After implementation is confirmed green, complete the remaining PR artifacts.
Load FEATURE_DIR/pr-report.md (already partially filled in Phase 5) and complete the remaining sections:
| Section | How to fill |
|---|---|
| What's New | One bullet per meaningful concern (command, service, config key, etc.) — not per file. Derive from completed tasks in tasks.md and architecture sections of plan.md. |
| New Libraries / Dependencies | List only packages that did not exist before this branch. Pull versions from package.json. Remove the section if none were added. |
| Breaking Changes | Include only if existing public behaviour (CLI flags, config keys, API contracts) changed. Remove section if none. |
| Testing | List test types used (unit, integration, e2e, manual) and what each covers. Derive from test tasks in tasks.md. |
| Notes | Known limitations, deferred scope, or follow-up issues. Remove section if none. |
Then validate FEATURE_DIR/spec-decisions.md against the final plan.md and research.md:
Replace ALL remaining […] markers across both files. Remove optional sections that do not apply.
Commit the finalised artifacts:
git add FEATURE_DIR/pr-report.md FEATURE_DIR/spec-decisions.md
git commit -m "docs: finalise PR artifacts for [FEATURE NAME]"
After implementation is green and PR artifacts are final, persist reusable lessons from this execution for later runs.
Execute the speckit-memory workflow in .agents/skills/speckit-memory/SKILL.md.
Update .specify/memory/speckit-memory.md with stable, reusable lessons from this run only.
If this run revealed a repeatable repo-specific workflow that deserves its own helper skill, create or update that skill under .agents/skills/.
If the memory file or helper skill files changed, commit them:
git add .specify/memory/speckit-memory.md <helper-skill-paths>
git commit -m "docs: refresh speckit memory for [FEATURE NAME]"
If no memory-related files changed, continue without creating a commit.
Use the completed pr-report.md followed by spec-decisions.md as the PR body, keeping the two sections distinct.
Push the feature branch:
git push -u origin HEAD
Derive the PR title from the Summary section: use the first sentence, truncated to 70 characters, prefixed with feat(<branch-number>): .
Open the PR:
gh pr create \
--title "<PR title>" \
--body "$(cat FEATURE_DIR/pr-report.md && printf '\n\n---\n\n' && cat FEATURE_DIR/spec-decisions.md)" \
--base develop \
--head <feature-branch>
Report the PR URL to the user.
After all phases complete, output:
## speckit-full Complete
**Feature**: <branch name>
**Spec**: <path to spec.md>
**Plan**: <path to plan.md>
**Tasks**: <path to tasks.md>
**PR Report**: <path to pr-report.md>
**Spec Decisions**: <path to spec-decisions.md>
**Memory**: <path to .specify/memory/speckit-memory.md>
**Helper Skills Updated**: <list or "none">
**Pull Request**: <PR URL>
**Autonomous decisions made**: <count>
<list each AUTO decision with its rationale>
gh is not installed or not authenticated, print the contents of pr-report.md followed by spec-decisions.md with a clear separator and instruct the user to open the PR manually..specify/memory/speckit-memory.md before exiting when possible.