gemini-execute-phase

Executes Gemini lane plans with git preflight, owned-file boundaries, and verification.

2|1|Updated Jun 25, 2026
One-click install
npx skills add https://github.com/Consiliency/agent-harness --skill gemini-execute-phase-consiliency
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gemini-execute-phase
Source: https://github.com/Consiliency/agent-harness/tree/main/skills-src/gemini/gemini-execute-phase
Command: npx skills add https://github.com/Consiliency/agent-harness --skill gemini-execute-phase-consiliency

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Implementing a multi-lane phase plan by hand risks touching files owned by other lanes, losing track of verification results, and leaving the git worktree in an ambiguous state. This Skill gives Gemini a disciplined execution loop that enforces lane ownership, runs per-lane and phase-level verification, and produces a machine-readable closeout the phase-loop runner can reconcile. ## Core Features & Use Cases - Lane-scoped execution: Parses the plan's lane DAG, owned files, and interface gates, then executes lanes in topological order without crossing ownership boundaries. - Git preflight and closeout audit: Checks git status before and after work, classifies dirty paths, runs the closeout audit for ignored outputs, and blocks on unowned or unauthorized changes. - Optional worker fanout: Supports explicit parallel worker subagents for disjoint lanes, with strict per-worker ownership briefs. - Use Case: After gemini-plan-phase produces plans/phase-plan-*.md, run this Skill to implement each lane, run its verification commands, and emit a shared automation: closeout with next-phase routing for the runner. ## Quick Start Ask Gemini to execute the latest phase plan from the plans directory, for example: run gemini-execute-phase on plans/phase-plan-v2.md and report verification results.

Frequently Asked Questions about gemini-execute-phase

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

FAQPage Schema
How do I execute a phase plan with Gemini?▼

Point the Skill at a plan file such as plans/phase-plan-*.md, or let it resolve the latest handoff from gemini-plan-phase. It parses the lane DAG, executes lanes in topological order, runs verification, and emits a closeout.

How do I run lanes in parallel with worker subagents?▼

Parallel execution happens only when the user explicitly requests subagents or parallel work and the DAG-ready lanes are disjoint. Each worker gets exact owned files, read-only files, and must report changed paths, tests, and blockers.

What happens if execution touches files owned by another lane?▼

The Skill stops immediately on an ownership violation and requires the plan to be revised before continuing. It never edits peer-owned files and confirms this with git diff and git status after each lane.

Does gemini-execute-phase commit or push changes automatically?▼

No. It never commits, pushes, or merges unless the user explicitly asks. In runner-managed or governed mode the runner owns closeout and publication; interactive runs may push a draft PR on the first commit.

Why does closeout report dirty_worktree_conflict?▼

The conflict is reported when unowned generated files, unknown ignored outputs from the closeout audit, or content derived from unauthorized private reads remain in the worktree. Phase-owned outputs awaiting runner closeout do not trigger it.