piv-run-full-loop

Chains four PIV-loop skills to autonomously develop a feature from description to git commit.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/az9713/claude-code-hooks-tutorial --skill piv-run-full-loop-az9713
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: piv-run-full-loop
Source: https://github.com/az9713/claude-code-hooks-tutorial/tree/main/skills/.claude/skills/piv-run-full-loop
Command: npx skills add https://github.com/az9713/claude-code-hooks-tutorial --skill piv-run-full-loop-az9713

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building a feature end-to-end normally requires manually running separate priming, planning, implementation, and commit steps. This Skill orchestrates the entire PIV loop from a single feature description, so one command produces a planned, implemented, and committed change. ## Core Features & Use Cases - Full Pipeline Orchestration: Sequentially runs prime-codebase, piv-plan-implementation, piv-implement, and piv-commit skills in the correct order. - Context Handoff: Carries the feature name and plan file path from the planning step into the implementation step automatically. - Structured Summary: Reports the plan path, modified files, tests added, and commit hash after completion. - Use Case: Describe a feature like "add rate limiting to the API endpoints" and receive a committed implementation with a plan document at .claude/plans/ without running each phase manually. ## Quick Start Ask the agent to run the full PIV loop with a feature description such as "add user avatar upload support" and let it prime, plan, implement, and commit the change.

Frequently Asked Questions about piv-run-full-loop

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a full feature development loop from one command?▼

Invoke the piv-run-full-loop skill with a feature description as its argument. It sequentially runs the prime-codebase, piv-plan-implementation, piv-implement, and piv-commit skills, producing a committed implementation.

What skills does the PIV full loop depend on?▼

It requires four skills: prime-codebase for context loading, piv-plan-implementation for creating the plan, piv-implement for executing the plan, and piv-commit for creating the git commit. All four must be present under .claude/skills/.

Where is the implementation plan saved during the PIV loop?▼

The planning step writes the plan to .claude/plans/[feature-name].md. The loop captures that feature name and passes the plan path to the implementation step automatically.

Can I run only part of the PIV loop instead of everything?▼

Yes, each phase is a standalone skill. You can invoke piv-plan-implementation, piv-implement, or piv-commit individually when you want manual control over a single stage rather than the full autonomous pipeline.

What happens if one step in the PIV loop fails?▼

The skill is a linear chain with no built-in retry or rollback logic, so a failure in planning or implementation stops the sequence. You would fix the issue and rerun the remaining individual skills manually.