git-worktree-workflow-pattern-1-feature-review

Sub-skill of git-worktree-workflow: Pattern 1: Feature + Review (+3).

5 stars

Best use case

git-worktree-workflow-pattern-1-feature-review is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of git-worktree-workflow: Pattern 1: Feature + Review (+3).

Teams using git-worktree-workflow-pattern-1-feature-review should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/pattern-1-feature-review/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/development/git-worktree-workflow/pattern-1-feature-review/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/pattern-1-feature-review/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How git-worktree-workflow-pattern-1-feature-review Compares

Feature / Agentgit-worktree-workflow-pattern-1-feature-reviewStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of git-worktree-workflow: Pattern 1: Feature + Review (+3).

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Pattern 1: Feature + Review (+3)

## Pattern 1: Feature + Review


Run development and review in parallel:

```bash
# Terminal 1: Development Codex
cd /project-feature
Codex "Implement the new authentication module"

# Terminal 2: Review Codex
cd /project
Codex "Review the authentication changes in feature-auth branch"
```

## Pattern 2: Multi-Feature Development


Work on multiple features simultaneously:

```bash
# Setup worktrees
git worktree add -b feature-api ../project-api main
git worktree add -b feature-ui ../project-ui main
git worktree add -b feature-tests ../project-tests main

# Run Codex in each (separate terminals)
cd ../project-api && Codex "Build REST API endpoints"
cd ../project-ui && Codex "Create React components"
cd ../project-tests && Codex "Write integration tests"
```

## Pattern 3: Subagent Verification


Main Codex spawns verification in separate worktree:

```bash
# Main Codex working in /project
# Creates verification worktree:
git worktree add --detach ../project-verify HEAD

# Spawns subagent to verify:
cd ../project-verify && Codex -p "Verify the implementation works correctly"
```

## Pattern 4: A/B Implementation


Compare two approaches:

```bash
# Create two worktrees from same point
git worktree add -b approach-a ../project-a main
git worktree add -b approach-b ../project-b main

# Different Codex instances try different solutions
cd ../project-a && Codex "Implement caching using Redis"
cd ../project-b && Codex "Implement caching using Memcached"

# Compare results
diff -r ../project-a/src ../project-b/src
```

Related Skills

orcaflex-reporting-fixture-proof-pattern

5
from vamseeachanta/workspace-hub

Build and extend fixture-backed OrcaFlex reporting proof paths in digitalmodel using stable metadata baselines, normalized HTML snapshots, and reusable reporting test helpers.

digitalmodel-worktree-test-execution-with-shared-venv

5
from vamseeachanta/workspace-hub

Run digitalmodel tests from isolated worktrees without uv editable-dependency failures by using the main repo's existing virtualenv and PYTHONPATH.

digitalmodel-orcawave-orcaflex-proof-workflows

5
from vamseeachanta/workspace-hub

Class-level digitalmodel OrcaWave/OrcaFlex readiness, semantic-proof, fixture-proof, and closeout workflows.

blender-worktree-test-hardening

5
from vamseeachanta/workspace-hub

Recover and harden digitalmodel Blender automation work in isolated worktrees when uv/editable dependency paths break and local machines lack a Blender executable.

plan-review-prompt-refresh-after-plan-edits

5
from vamseeachanta/workspace-hub

Refresh reviewer prompt files from the latest on-disk plan before every adversarial re-review. Prevents Codex/Gemini from critiquing stale plan text after local edits.

worktree-pre-push-bypass-for-tier1-checks

5
from vamseeachanta/workspace-hub

Handle workspace-hub integration-branch pushes from isolated git worktrees when the pre-push hook incorrectly assumes sibling tier-1 repos exist under the worktree path.

worktree-branch-sync-hygiene

5
from vamseeachanta/workspace-hub

Class-level branch, worktree, dirty-main, stash, sync, and hook hygiene for workspace-hub style multi-repo work.

tdd-verification-and-adversarial-review

5
from vamseeachanta/workspace-hub

Verify pre-written TDD tests pass, conduct adversarial code review on committed diffs, and route findings to existing issues

taxact-browser-automation-patterns

5
from vamseeachanta/workspace-hub

Patterns for automating TaxAct Business online (Ionic SPA) via Chrome browser MCP tools — field interaction, navigation, shadow DOM handling

portable-pattern-verification-workflow

5
from vamseeachanta/workspace-hub

Multi-package implementation with verification strategy for cross-platform configuration hardening

portable-config-baseline-pattern

5
from vamseeachanta/workspace-hub

Extract machine-agnostic settings into portable template files while keeping machine-specific hooks and plugins separate

portable-baseline-pattern-implementation

5
from vamseeachanta/workspace-hub

Implement portable configuration baselines by separating machine-agnostic settings from machine-specific hooks and plugins