β All plugins
sugar
v3.4.0π° Sugar - The autonomous layer for AI coding agents
Claude Code
by Steven LeggettMIT93updated 2 weeks ago
Source
git clone https://github.com/roboticforce/sugarClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
sugar/
βββ .claude-plugin/plugin.json
Manifests1
.claude-plugin/plugin.json
{
"name": "sugar",
"version": "3.4.0",
"description": "π° Sugar - The autonomous layer for AI coding agents",
"author": {
"name": "Steven Leggett",
"email": "contact@roboticforce.io"
},
"homepage": "https://github.com/roboticforce/sugar",
"repository": "https://github.com/roboticforce/sugar",
"license": "MIT",
"keywords": [
"autonomous",
"development",
"ai",
"task-management",
"automation",
"agents",
"enterprise"
],
"requires": {
"claude-code": ">=1.0.0",
"python": ">=3.11"
},
"capabilities": {
"commands": true,
"agents": true,
"hooks": true,
"mcp": true
},
"installation": {
"prerequisites": [
"Python 3.11 or higher must be installed",
"Sugar CLI must be installed: pip install sugarai",
"Initialize Sugar in your project: sugar init"
],
"verification": [
"sugar --version",
"sugar status"
]
},
"configuration": {
"auto_detect_sugar": true,
"sugar_command": "sugar",
"enable_autonomous_mode": false,
"auto_task_creation": true
}
}