git-worktree-workflow-pattern-1-feature-review
Sub-skill of git-worktree-workflow: Pattern 1: Feature + Review (+3).
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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/pattern-1-feature-review/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How git-worktree-workflow-pattern-1-feature-review Compares
| Feature / Agent | git-worktree-workflow-pattern-1-feature-review | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/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
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
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
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
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
Class-level digitalmodel OrcaWave/OrcaFlex readiness, semantic-proof, fixture-proof, and closeout workflows.
blender-worktree-test-hardening
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
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
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
Class-level branch, worktree, dirty-main, stash, sync, and hook hygiene for workspace-hub style multi-repo work.
tdd-verification-and-adversarial-review
Verify pre-written TDD tests pass, conduct adversarial code review on committed diffs, and route findings to existing issues
taxact-browser-automation-patterns
Patterns for automating TaxAct Business online (Ionic SPA) via Chrome browser MCP tools — field interaction, navigation, shadow DOM handling
portable-pattern-verification-workflow
Multi-package implementation with verification strategy for cross-platform configuration hardening
portable-config-baseline-pattern
Extract machine-agnostic settings into portable template files while keeping machine-specific hooks and plugins separate
portable-baseline-pattern-implementation
Implement portable configuration baselines by separating machine-agnostic settings from machine-specific hooks and plugins