shinpr/rashomon · Archived

worktree-execution

Creates, pins, and cleans isolated Git worktree pairs for comparison trials. Use only when a Rashomon prompt or skill evaluation needs paired execution environments or orphan recovery.

First seen Jul 26, 2026

Installation

$ npx skills add shinpr/rashomon --skill worktree-execution

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from shinpr/rashomon.

npx skills add shinpr/rashomon

Browse all from shinpr/rashomon

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 14
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,632 B
  • docs SUMMARY.md 210 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Worktree Execution Skill

Architecture

Two isolated worktrees enable parallel prompt execution.

Orchestrator
    │
    ├── Create Worktrees (in ${TMPDIR:-/tmp}/)
    │       ├── worktree-rashomon-original-{timestamp}
    │       └── worktree-rashomon-optimized-{timestamp}
    │
    ├── Parallel Execution (Agent tool)
    │       ├── Execution 1 → worktree-rashomon-original
    │       └── Execution 2 → worktree-rashomon-optimized
    │
    ├── Collect Results (await both)
    │
    └── Cleanup Worktrees (always)

Worktree Management

Creation

Script: scripts/worktree-create.sh

# Default labels (original/optimized) for prompt eval
./scripts/worktree-create.sh [repo_root]

# Custom labels for skill eval
./scripts/worktree-create.sh [repo_root] baseline with-skill
./scripts/worktree-create.sh [repo_root] old-version new-version

# Pin every pair in an evaluation run to the same commit
./scripts/worktree-create.sh [repo_root] trial-a trial-b [base_sha]

Output (stdout):

/tmp/worktree-rashomon-{label_a}-20260114-123456
/tmp/worktree-rashomon-{label_b}-20260114-123456

Properties:

  • Location: ${TMPDIR:-/tmp}/
  • Naming: worktree-rashomon-{label}-{timestamp}
  • Branch: Detached HEAD at the pinned base commit
  • Base commit: Caller-supplied SHA, resolved once per evaluation
  • Active marker: Git worktree lock containing run ID, owner PID, start time, and lease expiry
  • Labels default to original / optimized if not specified

Cleanup

Script: scripts/worktree-cleanup.sh

# Remove all rashomon worktrees
./scripts/worktree-cleanup.sh [repo_root]

# Remove specific worktrees
./scripts/worktree-cleanup.sh [repo_root] path1 path2

# Remove registered orphaned worktrees, including expired Rashomon locks
./scripts/worktree-cleanup.sh --orphans [repo_root]

Cleanup Triggers:

  • After successful report generation
  • In finally block on any failure
  • On timeout
  • On startup (orphan detection)

Parallel Execution Principle

Key: To achieve true parallel execution, send both Agent invocations in a single message.

The calling command determines which agents to invoke and how to structure the Agent invocations. This skill provides only the worktree infrastructure.

Error Handling (Worktree Operations)

Scenario Behavior
Creation fails Report git error, suggest checking repository state
Cleanup fails Log warning, attempt orphan cleanup on next run
Unlocked orphan Remove registered Rashomon worktree after 1 hour
Crashed locked run Remove after owner disappearance plus orphan age, or after lease expiry
Active long run Set RASHOMONLEASESECONDS before creation so the lease covers the run

Scripts Reference

worktree-create.sh

Exit Code Meaning
0 Success
1 Not a git repository
2 Creation failed

worktree-cleanup.sh

Exit Code Meaning
0 Success (or nothing to clean)
1 Not a git repository
2 Cleanup partially failed

Constraints

  • No concurrent comparisons: One rashomon execution per repository
  • Git required: A version supporting git worktree lock
  • Disk space: Sufficient space for worktree copies