Skip to main content

🍰 Sugar - The autonomous layer for AI coding agents. Manages task queues, runs 24/7, ships working code.

Project description

🍰 Sugar

The autonomous layer for AI coding agents.

Sugar manages your task queue, runs 24/7, and ships working code while you focus on what matters.

What It Does

Sugar adds autonomy and persistence to your AI coding workflow. Instead of one-off interactions:

  • Continuous execution - Runs 24/7, working through your task queue
  • Agent-agnostic - Works with Claude Code, OpenCode, Aider, or any AI CLI
  • Delegate and forget - Hand off tasks from any session
  • Builds features - Takes specs, implements, tests, commits working code
  • Fixes bugs - Reads error logs, investigates, implements fixes
  • GitHub integration - Creates PRs, updates issues, tracks progress

You plan the work. Sugar executes it.

Works with: Claude Code | OpenCode | Aider | Goose | Any CLI-based AI agent

Install

Recommended: pipx (install once, use everywhere)

pipx install sugarai

This gives you a global sugar command that works in any project. Each project gets its own isolated config and database in a .sugar/ folder.

Upgrade / Uninstall:

pipx upgrade sugarai    # Upgrade to latest version
pipx uninstall sugarai  # Remove completely
Other installation methods

pip (requires venv activation each session)

pip install sugarai

uv (fast alternative to pip)

uv pip install sugarai

With GitHub integration:

pipx install 'sugarai[github]'

Quick Start

Sugar is project-local - each project has its own isolated task queue and config.

# Navigate to your project
cd ~/dev/my-app

# Initialize Sugar (creates .sugar/ folder)
sugar init

# This creates:
# - .sugar/sugar.db     (task queue database)
# - .sugar/config.yaml  (project settings)
# - .sugar/prompts/     (custom prompts)

# Add tasks to the queue
sugar add "Fix authentication timeout" --type bug_fix --urgent
sugar add "Add user profile settings" --type feature

# Start the autonomous loop
sugar run

Sugar will:

  1. Pick up tasks from the queue
  2. Execute them using your configured AI agent
  3. Run tests and verify changes
  4. Commit working code
  5. Move to the next task

It keeps going until the queue is empty (or you stop it).

Delegate from Claude Code:

/sugar-task "Fix login timeout" --type bug_fix --urgent

Sugar picks it up and works on it while you keep coding.

How It Works: Project-Local Architecture

Global Installation (pipx)
└── sugar CLI (~/.local/bin/sugar)

Project A                          Project B
~/dev/frontend-app/                ~/dev/backend-api/
├── .sugar/                        ├── .sugar/
│   ├── sugar.db                   │   ├── sugar.db
│   ├── config.yaml                │   ├── config.yaml
│   └── prompts/                   │   └── prompts/
├── src/                           ├── main.py
└── tests/                         └── requirements.txt

Running `sugar` uses the .sugar/ folder in your current directory

One global CLI, many isolated projects. Like git - one installation, per-project repositories.

FAQ

Do I need to install Sugar in every project?

No! Install Sugar once with pipx install sugarai and use it everywhere.

The sugar command is globally available, but it reads configuration from the .sugar/ folder in your current directory:

  • Global CLI access: Run sugar from anywhere without venv activation
  • Project-local state: Each project's tasks and config stay isolated
  • No conflicts: Work on multiple projects simultaneously

Can I run Sugar on multiple projects at the same time?

Yes! Each project has its own isolated database.

# Terminal 1
cd ~/dev/frontend-app
sugar run

# Terminal 2 (simultaneously)
cd ~/dev/backend-api
sugar run

The two Sugar instances won't interfere with each other.

What happens if I run sugar outside a project folder?

Sugar will show a friendly error:

❌ Not a Sugar project

   Could not find: .sugar/config.yaml

   Run 'sugar init' to initialize Sugar in this directory.

Why pipx over pip?

Installation Global access? Requires venv?
pip install sugarai Only in active venv Yes
pipx install sugarai Yes, always No

With pipx, Sugar's dependencies don't conflict with your project's dependencies.

Should I commit .sugar/ to git?

Recommended .gitignore:

.sugar/sugar.db       # Task queue is personal
.sugar/sugar.log      # Logs contain local paths
.sugar/*.db-*         # SQLite temp files

DO commit: .sugar/config.yaml and .sugar/prompts/ to share settings with your team.

Features

Task Management

  • Rich task context with priorities and metadata
  • Custom task types for your workflow
  • Queue management and filtering

Task Orchestration

  • Auto-decomposes complex features into subtasks
  • 4-stage workflow: Research → Planning → Implementation → Review
  • Specialist agent routing (frontend, backend, QA, security, DevOps)
  • Parallel execution with dependency management

Autonomous Execution

  • Specialized task agents (UX, backend, QA, security, DevOps)
  • Automatic retries on failures
  • Quality checks and testing

GitHub Integration

  • Reads issues, creates PRs
  • Updates issue status automatically
  • Commits with proper messages

Ralph Wiggum Integration

  • Iterative execution for complex tasks
  • Self-correcting loops until tests pass
  • Prevents single-shot failures

Full docs: docs/ralph-wiggum.md

Configuration

.sugar/config.yaml is auto-generated on sugar init. Key settings:

sugar:
  dry_run: false              # Set to true for testing
  loop_interval: 300          # 5 minutes between cycles
  max_concurrent_work: 3      # Parallel task execution

claude:
  enable_agents: true         # Use specialized Claude agents

discovery:
  github:
    enabled: true
    repo: "user/repository"
  error_logs:
    enabled: true
    paths: ["logs/errors/"]

Integrations

Claude Code Plugin

Sugar has native Claude Code integration. Delegate work directly from your Claude sessions.

/plugin install roboticforce/sugar

Inside a Claude Code session:

You: "I'm working on auth but need to fix these test failures.
     Can you handle the tests while I finish?"

Claude: "I'll create a Sugar task for the test fixes."

/sugar-task "Fix authentication test failures" --type test --urgent

Available Slash Commands:

  • /sugar-task - Create tasks with rich context
  • /sugar-status - Check queue and progress
  • /sugar-run - Start autonomous mode

MCP Server Integration

Sugar provides an MCP server for Goose, Claude Desktop, and other MCP clients.

Using with Goose:

goose configure
# Select "Add Extension" → "Command-line Extension"
# Name: sugar
# Command: npx -y sugarai-mcp

Using with Claude Desktop:

{
  "mcpServers": {
    "sugar": {
      "command": "npx",
      "args": ["-y", "sugarai-mcp"],
      "env": {
        "SUGAR_PROJECT_ROOT": "/path/to/your/project"
      }
    }
  }
}

Advanced Usage

Task Orchestration

sugar add "Add OAuth authentication" --type feature --orchestrate

# Sugar will:
# 1. RESEARCH - Search best practices, analyze codebase
# 2. PLAN - Create implementation plan with subtasks
# 3. IMPLEMENT - Route subtasks to specialists in parallel
# 4. REVIEW - Code review and test verification

sugar orchestrate <task_id> --stages

Ralph Wiggum (iterative execution)

sugar add "Implement rate limiting" --ralph --max-iterations 10
# Iterates until tests pass, not just until code is written

Custom Task Types

sugar task-type add deployment --name "Deployment" --emoji "🚀"
sugar add "Deploy to staging" --type deployment

Complex Tasks with Context

sugar add "User Dashboard" --json --description '{
  "priority": 5,
  "context": "Complete dashboard redesign",
  "agent_assignments": {
    "frontend_developer": "Implementation",
    "qa_test_engineer": "Testing"
  }
}'

Troubleshooting

Sugar not finding Claude CLI?

# .sugar/config.yaml
claude:
  command: "/full/path/to/claude"

Tasks not executing?

cat .sugar/config.yaml | grep dry_run  # Check dry_run is false
tail -f .sugar/sugar.log                # Monitor logs
sugar run --once                        # Test single cycle

More help:

Documentation

Requirements

Contributing

Contributions welcome! See CONTRIBUTING.md.

git clone https://github.com/roboticforce/sugar.git
cd sugar
uv pip install -e ".[dev,test,github]"
pytest tests/ -v

License

Dual License: AGPL-3.0 + Commercial


Sugar v3.4 - The autonomous layer for AI coding agents

⚠️ Sugar is provided "AS IS" without warranty. Review all AI-generated code before use.

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

sugarai-3.4.4.tar.gz (303.2 kB view details)

Uploaded Source

Built Distribution

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

sugarai-3.4.4-py3-none-any.whl (253.0 kB view details)

Uploaded Python 3

File details

Details for the file sugarai-3.4.4.tar.gz.

File metadata

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

File hashes

Hashes for sugarai-3.4.4.tar.gz
Algorithm Hash digest
SHA256 e4e5f5b30da07cb98637d7c3784ee0643fcbc8aed54107b53b4c78aebe3189c6
MD5 4e4f4398b5aa1f112adfdceef1f23b01
BLAKE2b-256 e032ded25ef7de56b7ef5ebf671b15bde18b1ddd87978b28ac531507f97cdb9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sugarai-3.4.4.tar.gz:

Publisher: release.yml on roboticforce/sugar

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

File details

Details for the file sugarai-3.4.4-py3-none-any.whl.

File metadata

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

File hashes

Hashes for sugarai-3.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 daeb71cd03852e576fd736cdf690b77fab25698399cbf39543cf8f9e9be72044
MD5 44504db76d6d6ba2cb6bfcec67ce5629
BLAKE2b-256 6e0ca7a81f5f11f7616a1a92e2b0975391faea296540799d262e0da66ab207a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sugarai-3.4.4-py3-none-any.whl:

Publisher: release.yml on roboticforce/sugar

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