freshcrate
Skin:/
Home > MCP Servers > sugar

sugar

Persistent memory for AI coding agents. Cross-session context, global knowledge, and autonomous task execution.

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

Persistent memory for AI coding agents. Cross-session context, global knowledge, and autonomous task execution.

README

Sugar

Autonomous issue resolution for AI-assisted development.

Security scanners find vulnerabilities. Dependabot opens issues. Copilot flags problems. Sugar reads the issue, writes the fix, runs the tests, and opens the PR.

  • Discovers - watches your GitHub repo for labeled issues (security, bug, dependabot)
  • Resolves - reads each issue and implements a fix using Claude
  • Verifies - runs your test suite and quality gates before committing
  • Ships - opens a PR referencing the original issue, ready for your review

No issue left sitting in a backlog waiting for someone to have time.

How Sugar Compares

Most AI dev tools stop at the discovery layer:

GitHub Copilot CLI  ->  scan  ->  open issues
Snyk                ->  scan  ->  open issues
Dependabot          ->  scan  ->  open issues

Sugar is the resolution layer:

Labeled issue appears on GitHub
  -> Sugar picks it up (label filter: "security", "dependabot", "bug")
  -> AI agent reads the issue, analyzes the affected code
  -> Fix implemented, tests run locally
  -> PR opened - you review and merge

Configure which labels Sugar watches, point it at your repo, and run sugar run.

See workflow examples for security auto-fix, bug triage, test coverage, and more.

What Sugar Does

Sugar combines persistent memory with autonomous task execution:

  • Project memory - Decisions, preferences, error patterns, and research stored per-project
  • Global memory - Standards and guidelines shared across every project you work on
  • GitHub integration - Watches for labeled issues and resolves them autonomously
  • Semantic search - Retrieve relevant context by meaning, not just keywords
  • MCP integration - Your AI agent reads and writes memory directly during sessions
  • Task queue - Hand off work to run autonomously, powered by the same memory layer

Quick Start

# Install once, use in any project
pipx install sugarai

# Initialize in your project
cd ~/dev/my-app
sugar init

# Store what you know
sugar remember "We use async/await everywhere, never callbacks" --type preference
sugar remember "JWT tokens use RS256, expire in 15 min - see auth/tokens.py" --type decision
sugar remember "When tests fail with import errors, check __init__.py exports first" --type error_pattern

# Retrieve it later
sugar recall "authentication"
sugar recall "how do we handle async"

Your AI agent can also read and write memory directly - no copy-pasting required.

MCP Integration

Connect Sugar's memory to your AI agent so it can access project context automatically.

Claude Code - Memory server (primary):

claude mcp add sugar -- sugar mcp memory

Claude Code - Task server (optional):

claude mcp add sugar-tasks -- sugar mcp tasks

Once connected, Claude can call store_learning to save context mid-session and search_memories to pull relevant knowledge before starting work. The memory server works from any directory - global memory is always available even outside a Sugar project.

Other MCP clients (Goose, Claude Desktop):

# Goose
goose configure
# Select "Add Extension" -> "Command-line Extension"
# Name: sugar
# Command: sugar mcp memory

# OpenCode - one command setup
sugar opencode setup

Global Memory (New in 3.9)

Some knowledge belongs to you, not just one project. Coding standards, preferred patterns, security practices - these should follow you everywhere.

# Store a guideline that applies to all your projects
sugar remember "Always validate and sanitize user input before any DB query" \
  --type guideline --global

sugar remember "Use conventional commits: feat/fix/chore/docs/test" \
  --type guideline --global

# View your global guidelines
sugar recall "security" --global
sugar memories --global

# Search works project-first, but guidelines always surface
sugar recall "database queries"
# Returns: project-specific memories + relevant global guidelines

Global memory lives at ~/.sugar/memory.db. Project memory lives at .sugar/memory.db. When you search, project context wins - but guideline type memories from global always appear in results so your standards stay visible.

Via MCP, pass scope: "global" to store_learning to save cross-project knowledge directly from your AI session.

Memory types: decision, preference, file_context, error_pattern, research, outcome, guideline

Full docs: Memory System Guide

How Memory Works

Sugar uses two SQLite databases and a tiered search strategy.

Two stores:

  • Project store (.sugar/memory.db) - context specific to one project
  • Global store (~/.sugar/memory.db) - knowledge that applies everywhere

Seven memory types, each with different retrieval behavior:

Type Purpose TTL
decision Architecture and implementation choices Never
preference How you like things done Never
file_context What files and modules do Never
error_pattern Bugs and their fixes 90 days
research API docs, library findings 60 days
outcome What worked, what didn't 30 days
guideline Cross-project standards and best practices Never

Search strategy - project-first with reserved guideline slots:

  1. Search the project store first (local context always wins)
  2. Reserve slots for global guidelines (cross-project standards always surface)
  3. Fill remaining slots with other global results
  4. Deduplicate across both stores

This means a mature project's local context dominates results. A new project with no local memory gets global knowledge automatically. And your guidelines are always visible regardless.

Search engine: Semantic search via sentence-transformers (all-MiniLM-L6-v2, 384-dim vectors) with sqlite-vec. Falls back to SQLite FTS5 keyword search, then LIKE queries. No external API calls - everything runs locally.

# Install with semantic search (recommended)
pipx install 'sugarai[memory]'

# Works without it too - just uses keyword matching
pipx install sugarai

MCP tools available to your AI agent:

Tool What it does
search_memory Search both stores, returns results with scope labels
store_learning Save a memory (pass scope: "global" for cross-project)
recall Get formatted markdown context for a topic
get_project_context Full project summary including global guidelines
list_recent_memories Browse recent memories by type

MCP resources:

  • sugar://project/context - project summary
  • sugar://preferences - coding preferences
  • sugar://global/guidelines - cross-project standards

Task Queue

The task queue lets you hand off work and let it run autonomously. It reads from the same memory store, so Sugar already knows your preferences and patterns before it starts.

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

# Start the autonomous loop
sugar run

Sugar picks up tasks, executes them with your configured AI agent, runs tests, commits working code, and moves to the next task. It runs until the queue is empty or you stop it.

Delegate from Claude Code mid-session:

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

Advanced task options:

# Orchestrated execution (research -> plan -> implement -> review)
sugar add "Add OAuth authentication" --type feature --orchestrate

# Iterative mode - loops until tests pass
sugar add "Implement rate limiting" --ralph --max-iterations 10

# Check queue status
sugar list
sugar status

Full docs: Task Orchestration

Supported AI Tools

Works with any CLI-based AI coding agent:

Agent Memory MCP Task MCP Notes
Claude Code Yes Yes Full support
OpenCode Yes Yes sugar opencode setup
Goose Yes Yes Via MCP
Aider Via CLI Via CLI Manual recall

Installation

Recommended: pipx - installs once, available everywhere, no venv conflicts:

pipx install sugarai

Upgrade / Uninstall:

pipx upgrade sugarai
pipx uninstall sugarai
Other installation methods

pip (requires venv activation each session)

pip install sugarai

uv

uv pip install sugarai

With semantic search (recommended for memory):

pipx install 'sugarai[memory]'

With GitHub integration:

pipx install 'sugarai[github]'

All features:

pipx install 'sugarai[all]'

Sugar is project-local by default. Each project gets its own .sugar/ folder with its own database and config. Global memory lives at ~/.sugar/. Like git - one installation, per-project state.

Project Structure

~/.sugar/
└── memory.db          # Global memory (guidelines, cross-project knowledge)

~/dev/my-app/
├── .sugar/
│   ├── sugar.db       # Project memory + task queue
│   ├── config.yaml    # Project settings
│   └── prompts/       # Custom agent prompts
└── src/

Recommended .gitignore:

.sugar/sugar.db
.sugar/sugar.log
.sugar/*.db-*

Commit .sugar/config.yaml and .sugar/prompts/ to share settings with your team.

Configuration

.sugar/config.yaml is created on sugar init:

sugar:
  dry_run: false
  loop_interval: 300
  max_concurrent_work: 3

claude:
  enable_agents: true

discovery:
  github:
    enabled: true
    repo: "user/repository"

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 is provided "AS IS" without warranty. Review all AI-generated code before use.

Release History

VersionChangesUrgencyDate
v3.9.1## What's Changed - Release v3.9.1 - Security fixes, docs overhaul, new positioning - Bump version to 3.9.1.dev2 and update tagline - Fix black formatting on store.py - fix: clean up .gitignore duplicates and remove dead/unsafe code - Reposition README with autonomous issue resolution narrative - Add ARCHITECTURE.md and workflow examples - Remove unused billing module - Document hold, release, debug, logs, and task-type CLI commands - Update CHANGELOG through v3.9.0 - Pin all dependencies to exHigh4/9/2026
v3.9.0## What's Changed - chore: Release v3.9.0 - chore: Bump version to 3.9.0.dev0 for development - docs: Reposition Sugar as memory-first with new tagline - feat: Implement project-first search strategy with reserved guideline slots - style: Fix black formatting for CI version compatibility - style: Apply black formatting to global memory files - feat: Add global memory layer for cross-project knowledge - chore: Bump version to 3.8.1.dev0 for development ## Installation ```bash pip install sugarLow3/17/2026
v3.8.0## What's Changed - chore: Release v3.8.0 - docs: Add Goose integration guide and improve MCP setup instructions - chore: Bump version to 3.8.0.dev0 for development ## Installation ```bash pip install sugarai==v3.8.0 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.8.0 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.8.0 ```Low1/22/2026
v3.7.0## v3.7.0 - OpenCode Integration This release brings seamless OpenCode integration with one-command setup and memory slash commands. ### Installation ```bash pip install sugarai==3.7.0 ``` Or with pipx: ```bash pipx install 'sugarai[opencode]' ``` ### New Features #### One-Command OpenCode Setup ```bash sugar opencode setup ``` Auto-configures OpenCode with Sugar MCP servers. Supports: - `--dry-run` - Preview changes without applying - `--yes` - Non-interactive mode - `--no-memory` / `--nLow1/21/2026
v3.7.0.dev1## Development Release This is a development release with CI/CD fixes. ### Install ```bash pip install --force-reinstall git+https://github.com/roboticforce/sugar.git@v3.7.0.dev1 ``` ### Changes since v3.7.0.dev0 - **CI/CD Fixes**: Pin black version to ensure consistent formatting across platforms - **Test Fixes**: Updated OpenCode setup tests to use `--config` flag for Windows compatibility - **Formatting**: Fixed black formatting in 6 source files **Full Changelog**: https://github.com/rLow1/21/2026
v3.7.0.dev0## Development Release This is a development/preview release for testing the new OpenCode integration features. ### Install ```bash pip install --force-reinstall git+https://github.com/roboticforce/sugar.git@v3.7.0.dev0 ``` Or with pipx for the OpenCode extra: ```bash pipx install 'sugarai[opencode] @ git+https://github.com/roboticforce/sugar.git@v3.7.0.dev0' ``` ## What's New ### OpenCode Integration Enhancements - **One-command setup**: `sugar opencode setup` auto-configures OpenCode wLow1/21/2026
v3.6.0## What's Changed - chore: Release v3.6.0 - docs: Add OpenCode integration documentation - chore: Bump version to 3.6.0.dev0 - style: Format code with black 26.1.0 - style: Format code with black - docs: Update README with Claude Code and OpenCode integration highlights - feat: Add OpenCode integration for bidirectional AI agent communication - chore: Bump version to 3.5.1.dev0 for development ## Installation ```bash pip install sugarai==v3.6.0 ``` Or from source: ```bash git clone https://gLow1/21/2026
v3.5.0## What's Changed - chore: Release 3.5.0 - docs: Add token savings documentation for memory system - docs: Add token savings demo script for memory system - style: Sort imports alphabetically across codebase - fix: Improve FTS5 memory search for stemming and multi-word queries - docs: Make Memory System more prominent in README - Bump version to 3.5.0.dev0 for Memory System release - test: Update test to expect cake emoji in status - fix: Change status emoji to cake, fix flaky Windows timing teLow1/21/2026
v3.4.4## What's Changed - Prepare release v3.4.4 - Bump version to 3.4.4.dev4, fix description - Remove redundant tagline from README - Remove outdated VISION.md (content now in README) - Rewrite AGENTS.md with accurate project structure and changelog requirements - Add strict gitflow branching rules to AGENTS.md - Remove outdated slashcommands-integration-plan.md - Update local-development.md with gitflow branching strategy - Bump version to 3.4.4.dev3 for development - Rebrand Sugar as agent-agnostLow1/10/2026
v3.4.3## What's Changed - Bump version to 3.4.3 for release - Add frontmatter to sugar-thinking command - Bump version to 3.4.3.dev2 - Move research docs to private R&D - Clean up outdated files and reorganize docs - Move cake emoji to left side of Sugar for consistency - Update license section to link to licensing page - Bump version to 3.4.3.dev1 - Fix contact email in license files - Add CLA requirement and switch to AGPL-3.0 dual license - Bump version to 3.4.3.dev0 for development ## InstallatiLow1/9/2026
v3.4.2## What's Changed - Bump version to 3.4.2 for release - Bump version to 3.4.2.dev1 for development - feat: Add MCP Registry configuration for publishing - Bump version to 3.4.2.dev0 for development ## Installation ```bash pip install sugarai==v3.4.2 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.4.2 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.4.2 ```Low1/8/2026
v3.4.1## Sugar v3.4.1 🍰 **The dev team that never stops.** Major release combining v3.3 autonomous enhancements and v3.4 security/control features. ### Highlights - **New Tagline**: "The dev team that never stops" - Speaks directly to solo founders and small teams - **Security Controls**: Tier-based tool restrictions and bash permission patterns - **Task Hooks**: Pre/post execution automation with variable substitution - **Thinking Capture**: View Claude's reasoning process for debugging and learLow1/8/2026
v3.4.0-dev## What's Changed - Bump version to 3.4.0.dev0 for development - style: Apply black formatting to all modified files - fix: Correct model router test for complexity upgrade - docs: Add V3.3 feature documentation - chore: AUTO-002: Implement LEARNINGS.md progress log - Create LearningsWriter class in sugar/learning/learnings_writer.py, integrate with FeedbackProcessor to write session summaries, success/failure patterns, and recommendations to .sugar/LEARNINGS.md. Add 'sugar learnings' CLI commaLow1/7/2026
v3.3.2## What's Changed - Bump version to 3.3.2 for release - Set version to 3.3.1 for release - Fix PyPI trusted publisher config - Bump version to 3.3.2.dev0 for development - Bump version to 3.3.1 for release ## Installation ```bash pip install sugarai==v3.3.2 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.3.2 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.3.2 ```Low1/7/2026
v3.3.1.dev1## What's Changed - Bump version to 3.3.1.dev1 for development - fix: Add MCP server logging and check execution success before completion (#35) - Rebrand tagline to "Vibe coding while you sleep" - fix: Add timeout wrapper to async query generator (#34) - Bump version to 3.3.1.dev0 for development - Bump version to 3.3.0 for release - Fix flaky Windows timing test in test_subagent_manager - test: Add CLI tests for --triage flag - feat: Add intelligent task triage system - feat: Improve Ralph WiLow1/7/2026
v3.3.0## What's Changed - Bump version to 3.3.0 for release - Fix flaky Windows timing test in test_subagent_manager - test: Add CLI tests for --triage flag - feat: Add intelligent task triage system - feat: Improve Ralph Wiggum UX with --completion-promise flag and documentation - docs: Update documentation for Gitflow branching model - Bump version to 3.2.1.dev0 for development ## Installation ```bash pip install sugarai==v3.3.0 ``` Or from source: ```bash git clone https://github.com/roboticforLow1/4/2026
v3.2.0## What's Changed - Bump version to 3.2.0 for release - Feature: MCP CLI command and test improvements (#25) - Bump version to 3.1.3.dev0 for development ## Installation ```bash pip install sugarai==v3.2.0 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.2.0 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.2.0 ```Low1/3/2026
v3.1.2## What's Changed - Release v3.1.2 - Fix: Add missing Ralph Wiggum CLI integration (#24) - Bump version to 3.1.2.dev0 ## Installation ```bash pip install sugarai==v3.1.2 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.1.2 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.1.2 ```Low1/3/2026
v3.1.1## What's Changed - Release v3.1.1 - Add Ralph Wiggum integration for iterative task execution (#23) ## Installation ```bash pip install sugarai==v3.1.1 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.1.1 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.1.1 ```Low1/3/2026
v3.1.1.dev6## What's Changed - Bump version to 3.1.1.dev6 - Add custom prompt configuration for Issue Responder (#22) ## Installation ```bash pip install sugarai==v3.1.1.dev6 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.1.1.dev6 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.1.1.dev6 ```Low12/22/2025
v3.1.1.dev5## What's Changed - Bump version to 3.1.1.dev5 - Add issue responder queue integration with config and state tracking ## Installation ```bash pip install sugarai==v3.1.1.dev5 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.1.1.dev5 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.1.1.dev5 ```Low12/22/2025
v3.1.1.dev4## What's Changed - Bump version to 3.1.1.dev4 - Fix signature being truncated on long responses - Add --max-length option to issue respond command ## Installation ```bash pip install sugarai==v3.1.1.dev4 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.1.1.dev4 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.1.1.dev4 ```Low12/22/2025
v3.1.1.dev3## What's Changed - Bump version to 3.1.1.dev3 - Fix response parsing regex truncating at internal ### headers ## Installation ```bash pip install sugarai==v3.1.1.dev3 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.1.1.dev3 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.1.1.dev3 ```Low12/22/2025
v3.1.1.dev2## What's Changed - Bump version to 3.1.1.dev2 - Add Issue Responder CLI and GitHub Action (#21) - Bump version to 3.1.1.dev1 for config cleanup changes - Clean up config.yaml template for V3 - Remove deprecated agent_selection config from init template - Bump version to 3.1.1.dev0 for develop branch - Add TOON encoding utilities for token-efficient data representation - Convert ASCII diagrams to Mermaid format - Add real-world example scenarios to orchestration docs - Remove global SDK mock thLow12/22/2025
v3.0.1## What's Changed - Bump version to 3.0.1 - Add V3 benchmark script for measuring overhead improvements ## Installation ```bash pip install sugarai==v3.0.1 ``` Or from source: ```bash git clone https://github.com/roboticforce/sugar.git cd sugar git checkout v3.0.1 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/roboticforce/sugar:v3.0.1 ```Low12/21/2025
v3.0.0## What's Changed - Increase performance threshold to 1000ms - Optimize TaskTypeManager and adjust performance threshold - Fix cli-regression test to remove task before task type - Fix TaskTypeManager to self-initialize table - Fix task-type workflow: remove invalid pip install of builtin modules - Fix Windows test encoding issues - Fix Windows CI - set PYTHONIOENCODING=utf-8 for emoji support - Fix Windows CI failures - remove Unicode emoji from workflows - Fix datetime.utcnow() deprecation waLow12/21/2025
v2.2.0## 🚀 Goose Extension & MCP Server Adds official Goose integration via MCP server, enabling Sugar to work with Block's open-source AI agent. ### New Features - **Goose extension support** - Full MCP server implementation for Goose and Claude Desktop (#3) - **`sugarai-mcp` npm package** - Published to npm, installable via `npx -y sugarai-mcp` - **MCP tools exposed**: createTask, listTasks, viewTask, updateTask, removeTask, getStatus, runOnce, initSugar ### Quick Setup **Goose:** ```json { Low12/11/2025
v2.1.1## Bug Fixes This patch release fixes two bugs reported by users affecting Claude Code plugin installation and loading. ### Fixed - **hooks.json format** - Convert hooks configuration from array to object format as required by Claude Code specification. Fixes plugin loading error: "Expected object, received array" (#12) - **Plugin marketplace discovery** - Add proper `marketplace.json` with Claude Code schema and correct installation instructions. Users can now install with `/plugin install cLow12/11/2025
v2.1.0## What's Changed - chore: Release v2.1.0 - Quality Gates Implementation - docs: Update README to reflect Phase 2 & 3 completion - docs: Complete Quality Gates documentation for Phase 2 & 3 - feat: Implement Quality Gates Phase 2 and 3 - docs: Add Quality Gates integration guide - feat: Integrate Quality Gates into workflow orchestrator - feat: Implement Quality Gates Phase 1 - Mandatory Verification - feat: Add --tail option to logs command and expand CLI test coverage ## Installation ```basLow10/16/2025
v2.0.3## What's Changed - chore: Release v2.0.3 - Messaging refresh ## Installation ```bash pip install sugarai==v2.0.3 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v2.0.3 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v2.0.3 ```Low10/15/2025
v2.0.2## What's Changed - chore: Bump version to 2.0.2 - docs: Add Claude Code integration section with examples - docs: Highlight JSON task format with rich example - docs: Replace mermaid with ASCII diagram - docs: Simplify diagram to focus on priority queue loop - docs: Refresh README with minimal, focused structure ## Installation ```bash pip install sugarai==v2.0.2 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v2.0.2 pip install -e . ``` ##Low10/15/2025
v2.0.1## What's Changed - chore: Add uv package manager support (v2.0.1) - chore: Enhance GitHub repository for organic developer discovery ## Installation ```bash pip install sugarai==v2.0.1 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v2.0.1 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v2.0.1 ```Low10/15/2025
v2.0.0# Sugar 2.0.0 - Premier Claude Code Plugin 🎉 This is a **major milestone release** that transforms Sugar into a premier Claude Code plugin with full native integration! ## 🚀 What's New ### Claude Code Plugin Integration Sugar is now a **first-class Claude Code plugin** with: - **5 Slash Commands** for seamless workflow integration - `/sugar-task` - Create comprehensive tasks with rich context - `/sugar-status` - Real-time system status and metrics - `/sugar-run` - Start autonomous exLow10/15/2025
v1.9.0## What's Changed - feat: Add configurable task type system with full CRUD support ## Installation ```bash pip install sugarai==v1.9.0 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.9.0 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.9.0 ```Low9/26/2025
v1.8.0## What's Changed - feat: Add task hold/release management and enhanced output formats - docs: Add SlashCommands integration planning document - feat: Adopt 🍰 as official Sugar emoji branding ## Installation ```bash pip install sugarai==v1.8.0 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.8.0 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.8.0 ```Low9/25/2025
v1.7.6## What's Changed - chore: Bump version to 1.7.6 - fix: Update deprecated download-artifact action to v4 ## Installation ```bash pip install sugarai==v1.7.6 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.7.6 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.7.6 ```Low9/25/2025
v1.7.5## What's Changed - fix: Add GitHub Container Registry permissions to CI workflow - fix: Automate Docker version sync and enable main branch publishing - style: Apply Black formatting to sugar/main.py - docs: Update README to highlight new complex JSON input methods - feat: Add complex JSON input support to sugar add command ## Installation ```bash pip install sugarai==v1.7.5 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.7.5 pip install Low9/25/2025
v1.7.4## What's Changed - chore: Bump version to 1.7.4 - fix: Improve Docker build reliability for Claude CLI installation ## Installation ```bash pip install sugarai==v1.7.4 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.7.4 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.7.4 ```Low8/29/2025
v1.7.3## What's Changed - feat: Add AGENTS.md standard file and bump version to 1.7.3 - Add Python 3.13 support to CI/CD pipeline - Fix Windows test by using correct adapt_system_behavior method - Fix final Windows pytest failure in process_feedback test - Fix final 3 Windows pytest failures - Fix Windows pytest failures in core loop tests - Fix Windows CI async test failures - Apply Black formatting to test files - Fix async mocking issues in test suite ## Installation ```bash pip install sugarai=Low8/29/2025
v1.7.2## What's Changed - Update documentation for v1.7.2 release - Fix Black formatting and bump version to 1.7.2 ## Installation ```bash pip install sugarai==v1.7.2 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.7.2 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.7.2 ```Low8/25/2025
v1.7.1## 🚀 Major CI/CD Pipeline Improvements This release focuses on stabilizing the development pipeline and ensuring reliable builds across all platforms. ### 🔧 Test Infrastructure Fixes - **Fixed 20 out of 28 failing pytest tests** - improved pass rate from 26% to 78% - Resolved async fixture and database column issues - Updated test assertions to match current CLI output - Fixed timing tests for fast execution environments - Enhanced retry logic testing and config default handling ### 🚀 CrosLow8/25/2025
v1.7.0## What's Changed - feat: Add comprehensive sugar debug command for troubleshooting ## Installation ```bash pip install sugarai==v1.7.0 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.7.0 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.7.0 ```Low8/25/2025
v1.6.4## What's Changed - fix: Resolve CI/CD type checking failures ## Installation ```bash pip install sugarai==v1.6.4 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.6.4 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.6.4 ```Low8/25/2025
v1.6.3## What's Changed - fix: Update GitHub Actions to resolve security scan failures ## Installation ```bash pip install sugarai==v1.6.3 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.6.3 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.6.3 ```Low8/25/2025
v1.6.2## What's Changed - feat: Add comprehensive legal protections and disclaimers ## Installation ```bash pip install sugarai==v1.6.2 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.6.2 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.6.2 ```Low8/25/2025
v1.6.1## What's Changed - fix: Correct version display when installed from PyPI ## Installation ```bash pip install sugarai==v1.6.1 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.6.1 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.6.1 ```Low8/25/2025
v1.6.0## What's Changed - docs: Add comprehensive priority command documentation - feat: Add sugar priority command with shortcuts and update PyPI instructions ## Installation ```bash pip install sugarai==v1.6.0 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.6.0 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.6.0 ```Low8/25/2025
v1.5.2## What's Changed - fix: Update PyPI package name to 'sugarai' ## Installation ```bash pip install sugarai==v1.5.2 ``` Or from source: ```bash git clone https://github.com/cdnsteve/sugar.git cd sugar git checkout v1.5.2 pip install -e . ``` ## Docker ```bash docker pull ghcr.io/cdnsteve/sugar:v1.5.2 ```Low8/25/2025
v1.5.1## What's Changed - fix: Update GitHub Actions workflow to use modern release action - Release v1.5.1: PyPI publishing setup - chore: Release v1.5.0 - Enhanced Task List Interface - feat: Add task status summary header to sugar list command - chore: Release v1.4.0 - Force Stop Capability - feat: Add force option to sugar stop command - fix: Handle PID file race condition in sugar stop command - chore: Release v1.3.3 - Fix sugar stop PID file path inconsistency - chore: Release v1.3.2 - Fix shutLow8/25/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

galdrAI-powered development framework with task management, 41 agents, 83 skills, and MCP tools for Cursor, Claude Code, Gemini, Codex & OpenCode. File-based memory that survives across sessions.v1.10
roampal-coreOutcome-based persistent memory MCP server for Claude Code and OpenCode. Good advice promoted, bad advice demoted. pip install roampal.v0.5.7
antigravity-awesome-skills🌌 Explore 255+ essential skills for AI coding assistants like Claude Code and GitHub Copilot to enhance your development workflow.main@2026-06-05
mcp-videoVideo editing MCP server for AI agents. 83 tools, 858 tests collected, 3 interfaces. Works with Claude Code, Cursor, and any MCP client. Local, fast, free.v1.5.1
ring89 skills and 38 specialized agents that enforce proven engineering practices for AI-assisted development. TDD, systematic debugging, parallel code review, and 10-gate development cycles — as a Claudemain@2026-06-03

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme