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

Interactive TUI (Optional)

Cleave includes an interactive terminal UI for task decomposition. This requires additional dependencies:

# TUI with Claude backend (default)
pipx install styrene-cleave[tui]

# TUI with local inference only (Ollama, vLLM, llama.cpp)
pipx install styrene-cleave[tui-local]

# All features
pipx install styrene-cleave[full]

Launch the TUI:

cleave tui [directory]  # Launch in current directory or specified path

TUI Features

  • Chat interface with Claude Agent SDK integration
  • Multi-line input with history navigation (Up/Down arrows)
  • Live streaming of LLM responses
  • Tool use display with syntax highlighting
  • Session management with persistent history
  • CALF file support for directive management
  • Retro CRT theme with purple accents

Keyboard Shortcuts

  • Enter - Submit message
  • Shift+Enter - New line in input
  • Up/Down - Navigate input history
  • Ctrl+L - Clear chat
  • Escape - Cancel operation
  • Tab/Shift+Tab - Navigate between panels
  • q - Quit

Backend Configuration

Configure backends in ~/.cleave/settings.yaml:

# Active backend
backend: claude  # or: ollama, openai, vllm, llamacpp

# Backend-specific settings
backends:
  claude:
    default_model: claude-sonnet-4-20250514

  ollama:
    base_url: http://localhost:11434/v1
    default_model: qwen2.5-coder:7b

  openai:
    base_url: https://api.openai.com/v1
    api_key_env: OPENAI_API_KEY
    default_model: gpt-4o

Manage settings via CLI:

cleave config show              # Display current settings
cleave config set backend ollama  # Switch to Ollama backend
cleave config path              # Show settings file location

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

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

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.5.1.tar.gz (181.8 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.5.1-py3-none-any.whl (112.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: styrene_cleave-0.5.1.tar.gz
  • Upload date:
  • Size: 181.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for styrene_cleave-0.5.1.tar.gz
Algorithm Hash digest
SHA256 3255a75e7852c95467180c5f599b0a24254eaf79427ff948290bae512d4ca49c
MD5 e5639b8ec29931f448f8151837164842
BLAKE2b-256 d805b40676753d85dea035e7a984d962ed8796d63243713d3d693d21f11f0325

See more details on using hashes here.

File details

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

File metadata

  • Download URL: styrene_cleave-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 112.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for styrene_cleave-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 834b7dad39884a867f9f08e357dfc605adf8ba2057bf87a169569cc4bd094a41
MD5 1a9cbb0a3801ef154369e437f8b9a61b
BLAKE2b-256 7d51dcec86c422451d1253668041e178c4ffe748bcd38c6394f1d0e05da300bc

See more details on using hashes here.

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