Skip to main content

Hierarchical task planning and autonomous agentic execution for Claude Code

Project description

Sahaidachny

Sahaidachny

Autonomous AI agent orchestrator for hierarchical task execution in Claude Code and Codex

CI PyPI Python Versions

InstallationQuick StartHow It WorksDocumentation


Named after Petro Sahaidachny, the legendary Ukrainian Cossack hetman known for strategic planning and decisive execution.

What is Sahaidachny?

Sahaidachny solves a fundamental problem in AI-assisted coding: how to reliably implement complex features that span multiple files, require architectural decisions, and need verification.

It's a Claude Code plugin for planning plus a runner-agnostic execution loop that enables:

  • Structured Planning — Build hierarchical task specifications with user stories, design decisions, API contracts, and test specs
  • Autonomous Execution — Run agentic loops across multiple context windows that implement, verify, and iterate
  • State Persistence — Maintain learnings and progress between iterations, enabling resume after interruption

Why Not Just Prompt Claude?

Aspect Simple Prompting Sahaidachny
Task structure Single prompt Hierarchical artifacts
Planning Ad-hoc Guided workflow
Implementation One-shot Iterative with feedback
Verification Manual Automated DoD checks
Code quality Hope for the best Ruff, ty, complexity checks
State Lost on context switch Persisted to disk

Installation

Complete Installation Guide (From Scratch)

Don't have Python or any tools installed? No problem! Follow these steps:

Step 1: Install Python 3.11+

macOS:

# Using Homebrew (recommended)
brew install python@3.11

Linux (Ubuntu/Debian):

sudo apt update
sudo apt install python3.11 python3.11-venv python3-pip

Windows: Download from python.org (version 3.11 or higher)

Step 2: Install uv (Fast Python Package Manager)

# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Restart your terminal after installation.

Step 3: Install Sahaidachny

uv tool install sahaidachny

Alternative options:

Using pipx (recommended for CLI tools):

pipx install sahaidachny

Using pip:

pip install sahaidachny

Step 4: Install a CLI for Planning

Claude Code is recommended for /saha:* slash-command planning:

# macOS/Linux
curl -fsSL https://install.claude.ai | sh

# Verify installation
claude --version

For Windows or detailed instructions, see: https://docs.anthropic.com/en/docs/claude-code

Optional CLIs:

# Codex CLI
codex --version

# Gemini CLI
gemini --version

Step 5: Verify Everything Works

# Check Sahaidachny
saha version
saha tools

# Check Claude Code
claude --version

You should see version information for both tools. You're ready to go! 🚀

Optional: Install Quality Tools

For the execution loop to run code quality checks, install these tools:

uv tool install ruff          # Linting and formatting
uv tool install ty            # Type checking
uv tool install complexipy    # Complexity analysis
uv pip install pytest         # Testing

Install from Source (For Development)

git clone https://github.com/roman-romanov-o/sahaidachny.git
cd sahaidachny
uv tool install .

Quick Start

1. Sync Artifacts to Local CLI Directories

# Sync .claude, .codex, and .gemini in current project
saha sync --target all

2. Launch Your Preferred Planning CLI

saha claude
# or
saha codex
# or
saha gemini

/saha:* slash commands are Claude Code features. For Codex/Gemini, use synced artifacts in .codex/ or .gemini/ as local planning resources.

3. Initialize a Task

# In Claude Code:
/saha:init user-authentication --mode=full

4. Plan the Task

/saha:research      # Explore codebase (for existing projects)
/saha:task          # Define what to build
/saha:stories       # Generate user stories
/saha:verify        # Approve artifacts
/saha:plan          # Create implementation phases

5. Execute Autonomously

# Back in terminal:
saha run task-01

To run execution agents with Codex instead of Claude Code, set:

export SAHA_AGENTS__DEFAULT_RUNNER=codex

Or run a single task with Codex:

saha run task-01 --runner codex

6. Monitor Progress

saha status task-01 --verbose

How It Works

Sahaidachny operates in two phases:

Phase 1: Planning (Interactive)

You work with Claude Code using slash commands to create structured task artifacts:

/saha:init → /saha:research → /saha:task → /saha:stories → /saha:plan

This produces a task folder with:

task-01/
├── task-description.md       # What to build
├── user-stories/             # Requirements with acceptance criteria
├── design-decisions/         # Architecture decisions
├── implementation-plan/      # Phased execution steps
└── test-specs/               # Test specifications

Phase 2: Execution (Autonomous)

The agentic loop runs without intervention:

┌─────────────────┐
│ Implementation  │ ← Write code according to plan
└────────┬────────┘
         ▼
┌─────────────────┐
│       QA        │ ← Verify acceptance criteria
└────────┬────────┘
         │
    DoD achieved? ──No──┐
         │              │
        Yes             │
         ▼              │
┌─────────────────┐     │
│  Code Quality   │     │
└────────┬────────┘     │
         │              │
   Quality passed? ─No──┤
         │              │
        Yes             │
         ▼              ▼
┌─────────────────┐  ┌──────────┐
│    Manager      │  │ fix_info │
└────────┬────────┘  └────┬─────┘
         ▼                │
┌─────────────────┐       │
│   DoD Check     │       │
└────────┬────────┘       │
         │                │
   Task complete? ──No────┘
         │
        Yes
         ▼
      DONE

Each iteration learns from previous failures via fix_info, enabling targeted fixes.

Planning Commands

Command Purpose
/saha:init Create task folder structure
/saha:research Explore codebase patterns
/saha:task Define task description
/saha:stories Generate user stories
/saha:decide Record design decisions
/saha:contracts Define API contracts
/saha:test-specs Write test specifications
/saha:plan Create implementation phases
/saha:verify Approve artifacts
/saha:status Show planning progress

Execution Commands

Command Purpose
saha run <task-id> Execute task autonomously
saha resume <task-id> Resume interrupted execution
saha status [task-id] Check execution status
saha tools List available quality tools
saha clean [task-id] Remove execution state
saha sync [--target ...] Sync local CLI artifacts
saha claude Launch Claude Code with plugin
saha codex Launch Codex CLI with synced artifacts
saha gemini Launch Gemini CLI with synced artifacts

To stop a running loop, press Ctrl+C. Sahaidachny will stop the current agent, run the Manager to update task artifacts, and mark the task as stopped so you can resume later.

Code Quality Tools

The execution loop integrates with:

  • Ruff — Fast Python linter
  • ty — Fast Python type checker
  • complexipy — Cognitive complexity analyzer
  • pytest — Test runner

Configuration

Configure via environment variables (prefix: SAHA_) or .env file:

SAHA_MAX_ITERATIONS=15
SAHA_RUNNER=claude
SAHA_TOOL_COMPLEXITY_THRESHOLD=20
SAHA_HOOK_NTFY_ENABLED=true

# Use Codex for execution agents
# SAHA_AGENTS__DEFAULT_RUNNER=codex
# SAHA_CODEX_MODEL=o3
# SAHA_CODEX_DANGEROUSLY_BYPASS_SANDBOX=false
# SAHA_CLAUDE_DANGEROUSLY_SKIP_PERMISSIONS=false

Documentation

Status

Alpha — Actively developed. API may change.

License

MIT


Built for Claude Code planning and multi-runner execution (Claude Code, Codex, Gemini)

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

sahaidachny-0.7.4.tar.gz (124.1 kB view details)

Uploaded Source

Built Distribution

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

sahaidachny-0.7.4-py3-none-any.whl (171.0 kB view details)

Uploaded Python 3

File details

Details for the file sahaidachny-0.7.4.tar.gz.

File metadata

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

File hashes

Hashes for sahaidachny-0.7.4.tar.gz
Algorithm Hash digest
SHA256 a3268711103480a2172ea5e82f95d803859caa08e29da9107f1213e3b4450534
MD5 2400b02a5926002248b3e6cdbf084929
BLAKE2b-256 29124d9a2fcbdb5dc75a3ba6e0ce84c3964a30ff4816cbf18d838ea9e82c0c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for sahaidachny-0.7.4.tar.gz:

Publisher: publish.yml on roman-romanov-o/sahaidachny

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

File details

Details for the file sahaidachny-0.7.4-py3-none-any.whl.

File metadata

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

File hashes

Hashes for sahaidachny-0.7.4-py3-none-any.whl
Algorithm Hash digest
SHA256 c6d7c90c6e4307eff84f5f2ec985dcc21db09861f7d21387a7d75666c1cc845c
MD5 79e3ae782290337002d2b76201b52924
BLAKE2b-256 fe0fbd5a893312e582be7027115224c45df333a4e48f5953f52f417f0876917f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sahaidachny-0.7.4-py3-none-any.whl:

Publisher: publish.yml on roman-romanov-o/sahaidachny

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