Hierarchical task planning and autonomous agentic execution for Claude Code
Project description
Sahaidachny
Autonomous AI agent orchestrator for hierarchical task execution in Claude Code and Codex
Installation • Quick Start • How It Works • Documentation
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, code changes, 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 code changes |
/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
- User Guide — Complete usage guide
- Architecture — Developer reference
Status
Alpha — Actively developed. API may change.
License
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sahaidachny-0.8.0.tar.gz.
File metadata
- Download URL: sahaidachny-0.8.0.tar.gz
- Upload date:
- Size: 127.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54ebffd318b1284623b89c7c679bf758810bccc311665e6519e03674edb98448
|
|
| MD5 |
8166db21b4beb3168c0624cc3b6d76a7
|
|
| BLAKE2b-256 |
04e30988ed60073ae2983acddb5c49261cff5f287261f657bef6746300c751b1
|
Provenance
The following attestation bundles were made for sahaidachny-0.8.0.tar.gz:
Publisher:
publish.yml on roman-romanov-o/sahaidachny
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sahaidachny-0.8.0.tar.gz -
Subject digest:
54ebffd318b1284623b89c7c679bf758810bccc311665e6519e03674edb98448 - Sigstore transparency entry: 1247255268
- Sigstore integration time:
-
Permalink:
roman-romanov-o/sahaidachny@bda3c86cc7d583c531dcc40380d05c469cab6b8e -
Branch / Tag:
refs/tags/v0.8.0 - Owner: https://github.com/roman-romanov-o
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bda3c86cc7d583c531dcc40380d05c469cab6b8e -
Trigger Event:
release
-
Statement type:
File details
Details for the file sahaidachny-0.8.0-py3-none-any.whl.
File metadata
- Download URL: sahaidachny-0.8.0-py3-none-any.whl
- Upload date:
- Size: 174.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
894204ebef2d95d1fb406055c799f57080f77bb281f4e2375b02a4dc6099f6f6
|
|
| MD5 |
c70135816db716a5fa6c3b7db3e03190
|
|
| BLAKE2b-256 |
79215c2d864fd93f24cc6dec579a6ac74a614b3c680768f585607cb076bc65cc
|
Provenance
The following attestation bundles were made for sahaidachny-0.8.0-py3-none-any.whl:
Publisher:
publish.yml on roman-romanov-o/sahaidachny
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sahaidachny-0.8.0-py3-none-any.whl -
Subject digest:
894204ebef2d95d1fb406055c799f57080f77bb281f4e2375b02a4dc6099f6f6 - Sigstore transparency entry: 1247255292
- Sigstore integration time:
-
Permalink:
roman-romanov-o/sahaidachny@bda3c86cc7d583c531dcc40380d05c469cab6b8e -
Branch / Tag:
refs/tags/v0.8.0 - Owner: https://github.com/roman-romanov-o
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bda3c86cc7d583c531dcc40380d05c469cab6b8e -
Trigger Event:
release
-
Statement type: