Skip to main content

Recursive task decomposition for Claude Code - domain-aware splitting and reunification

Project description

Cleave

Recursive task decomposition for Claude Code. Split complex directives along domain boundaries, execute in parallel, reunify with conflict detection.

Etymology

"Cleave" holds contradictory meanings: to split apart AND to hold fast together. This duality captures the tool's essence—we cleave tasks into independent pieces, then cleave the results back into a unified whole.

Installation

Both the CLI tool and Claude Code skill are required for full functionality.

Option 1: pipx (Recommended)

Install in isolated environment with automatic skill installation:

# Install from PyPI
pipx install styrene-cleave

# Install the skill (creates symlink or copy as needed)
cleave install-skill

# Verify
cleave --help

Updates:

pipx upgrade styrene-cleave
cleave install-skill  # Auto-detects and updates stale installations

Option 2: pip

# Install from PyPI
pip install styrene-cleave

# Install the skill
cleave install-skill

# Verify
cleave --help

Option 3: Development (Editable)

# Clone the repo
git clone git@github.com:styrene-lab/cleave.git ~/projects/cleave

# Install in editable mode
pip install -e ~/projects/cleave

# Install the skill
cleave install-skill

# Verify
cleave --help

Updates:

cd ~/projects/cleave && git pull
cleave install-skill  # Updates if version changed

Windows Users

On Windows 11, cleave install-skill will:

  • Try to create a symlink (requires Developer Mode or admin privileges)
  • Automatically fall back to directory copy if symlink fails
  • Track version and auto-update on upgrades

To enable symlinks (optional, for better performance):

  1. Open Settings → System → For developers
  2. Enable "Developer Mode"
  3. Run cleave install-skill again

Usage

Within Claude Code

Invoke via /cleave in any Claude Code session:

/cleave

Implement user authentication with JWT tokens, ensuring backwards
compatibility with existing session-based auth. Include migration
path and tests.

Claude will:

  1. Assess complexity
  2. Split into 2-3 child tasks if needed
  3. Execute children (parallel or sequential)
  4. Reunify results with conflict detection

CLI Commands

# Assess complexity of a directive
cleave assess --directive "Add user auth with JWT"

# Match against known patterns
cleave match --directive "Add Stripe payments"

# Initialize workspace for manual execution
cleave init --directive "Add auth" --children '["Backend", "Frontend"]'

# Detect conflicts between task results
cleave conflicts --results ".cleave/0-task.md,.cleave/1-task.md"

# Reunify completed tasks
cleave reunify --workspace .cleave

Concepts

Complexity Assessment

Formula: complexity = (1 + systems) × (1 + 0.5 × modifiers)

  • Systems: Distinct architectural boundaries (UI, API, DB, external services)
  • Modifiers: State coordination, error handling, concurrency, security, etc.

If complexity > threshold, the directive gets cleaved.

Splitting Strategy

  • Binary (2): Clean frontend/backend or data/logic seams
  • Ternary (3): Multi-layer stacks (UI/API/DB)
  • Never 4+: Coordination overhead exceeds benefits

Workspace Structure

.cleave/
├── manifest.yaml      # Intent, ancestry, children, assessment
├── siblings.yaml      # Sibling coordination, file claims
├── 0-task.md          # Child 0 task file
├── 1-task.md          # Child 1 task file
├── metrics.yaml       # Telemetry
├── merge.md           # Reunification report
└── review.md          # Adversarial review

Workspaces are auto-generated with unique names based on the directive to prevent collisions:

  • cleave init -d "Add JWT auth" -c '["A", "B"]'.cleave-add-jwt-auth/
  • cleave init -d "Optimize queries" -c '["X", "Y"]'.cleave-optimize-queries/

If a workspace already exists, a numeric suffix is added (.cleave-add-jwt-auth-2/). To override, use --output explicitly: cleave init -d "..." -c '[...]' -o .cleave-custom/

All .cleave* directories are gitignored; they are ephemeral artifacts consumed by cleave reunify and should be removed once the workspace is closed.

Conflict Detection

Four conflict types detected during reunification:

  1. File Overlap - Multiple children modified same file
  2. Decision Contradiction - Incompatible choices (Redis vs Memcached)
  3. Interface Mismatch - Different signatures for same function
  4. Assumption Violation - Child assumption contradicts sibling decision

Configuration

Modes

  • Lean (default): Terse output, fast-path assessment
  • Robust: Verbose reasoning, sequential thinking for all assessments

Flags

  • --no-tdd: Skip TDD workflow instructions in task files
  • --no-review: Skip adversarial review during reunification
  • --infer-permissions: Detect required bash permissions upfront

Development

Running Tests

The test suite includes unit tests and integration tests.

# Install development dependencies
pip install -e ".[dev]"

# Run all tests
pytest

# Run with coverage
pytest --cov=cleave --cov-report=html

# Run specific test files
pytest tests/test_assessment.py
pytest tests/test_probe_integration.py

# Run only unit tests (fast)
pytest tests/ -k "not integration"

# Run only integration tests
pytest tests/test_probe_integration.py

# Run with verbose output
pytest -v

Integration Test Coverage

Probe Integration Tests (tests/test_probe_integration.py):

  • Real project probing (uses cleave codebase as test subject)
  • Stack detection for Python, TypeScript, JavaScript, Go, Rust
  • Infrastructure detection (Docker, Kubernetes, Terraform)
  • Relevant file discovery based on directive keywords
  • Context-aware question generation
  • Pattern matching integration
  • Edge cases and error handling

Test Requirements

Integration tests require:

  • pytest>=8.0

Install all test dependencies:

pip install -e ".[dev]"

Requirements

  • Python 3.11+
  • Claude Code CLI (for skill usage)
  • Sequential Thinking MCP server (recommended for complex assessments)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

styrene_cleave-0.9.7.tar.gz (261.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

styrene_cleave-0.9.7-py3-none-any.whl (139.1 kB view details)

Uploaded Python 3

File details

Details for the file styrene_cleave-0.9.7.tar.gz.

File metadata

  • Download URL: styrene_cleave-0.9.7.tar.gz
  • Upload date:
  • Size: 261.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for styrene_cleave-0.9.7.tar.gz
Algorithm Hash digest
SHA256 66c41e2b4ddddeeb76355dea9772c0d2ec41bc01f0aa23d115b745aee0ca0b26
MD5 15884df382cd6d70851b2fd37316cabd
BLAKE2b-256 bdb69245954d1c1a81e91d7367c6246f4dec1c5975c6a5e8dd15cdee7a13efb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for styrene_cleave-0.9.7.tar.gz:

Publisher: release.yml on styrene-lab/cleave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file styrene_cleave-0.9.7-py3-none-any.whl.

File metadata

  • Download URL: styrene_cleave-0.9.7-py3-none-any.whl
  • Upload date:
  • Size: 139.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for styrene_cleave-0.9.7-py3-none-any.whl
Algorithm Hash digest
SHA256 890f3eec90ee90ed20227f8ed0279ead427f6f0a48824514ba9a1b7654ff4179
MD5 b9e7e9fe88c92f93006ed220798a8642
BLAKE2b-256 3560d57cd028ae551de4626e04f9a4f9b5ce3568a37de3cf841dea09468ca615

See more details on using hashes here.

Provenance

The following attestation bundles were made for styrene_cleave-0.9.7-py3-none-any.whl:

Publisher: release.yml on styrene-lab/cleave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page