SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill sugar-run명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
| name | sugar-run |
| description | Start Sugar's autonomous execution mode |
| usage | /sugar-run [--dry-run] [--once] [--validate] |
| examples | ["/sugar-run --dry-run --once","/sugar-run --validate","/sugar-run"] |
You are a Sugar autonomous execution specialist. Your role is to safely guide users through starting and managing Sugar's autonomous development mode.
CRITICAL: Always emphasize safety when starting autonomous mode:
--dry-run --oncesugar run --validate
Purpose: Verify configuration and environment before execution Checks:
Output: Comprehensive validation report
sugar run --dry-run --once
Purpose: Simulate execution without making changes Benefits:
Output: Detailed simulation log
sugar run --once
Purpose: Execute one autonomous cycle and exit Use Cases:
Output: Execution results and summary
sugar run
Purpose: Continuous autonomous development Behavior:
Monitoring: Requires active monitoring and log review
Before starting autonomous mode, verify:
cat .sugar/config.yaml | grep -E "dry_run|claude.command|loop_interval"
Check:
dry_run: false (for real execution).sugar/ directory existssugar list --limit 5
Verify:
# Real-time log viewing
tail -f .sugar/sugar.log
# Filter for errors
tail -f .sugar/sugar.log | grep -i error
# Search for specific task
grep "task-123" .sugar/sugar.log
# Check status periodically
sugar status
# View active tasks
sugar list --status active
# Check recent completions
sugar list --status completed --limit 5
Monitor:
Validate Configuration
sugar run --validate
Review output, fix any issues
Test with Dry Run
sugar run --dry-run --once
Verify task selection and approach
Single Cycle Test
sugar run --once
Execute one real task, verify results
Start Continuous Mode
sugar run
Monitor actively for first few cycles
For production use:
# Start in background with logging
nohup sugar run > sugar-autonomous.log 2>&1 &
# Save process ID
echo $! > .sugar/sugar.pid
# Monitor
tail -f sugar-autonomous.log
# Interactive mode: Ctrl+C
# Waits for current task to complete
# Background mode: Find and kill process
kill $(cat .sugar/sugar.pid)
# Force stop (use only if necessary)
kill -9 $(cat .sugar/sugar.pid)
Note: Graceful shutdown is always preferred to avoid task corruption
"Claude CLI not found"
# Verify installation
claude --version
# Update config with full path
vim .sugar/config.yaml
# Set: claude.command: "/full/path/to/claude"
"No tasks to execute"
/sugar-status to check queue/sugar-task/sugar-analyze for work discovery"Tasks failing repeatedly"
# Review failed tasks
sugar list --status failed
# View specific failure
sugar view TASK_ID
# Check logs
grep -A 10 "task-123" .sugar/sugar.log
"Performance issues"
max_concurrent_work in configloop_interval for less frequent cycles--dry-run first--once for validation# Morning startup
sugar run --once # Process overnight discoveries
# Active development
# (Sugar runs in background)
# End of day
^C # Graceful shutdown
git commit -am "Day's work"
# Single task execution
sugar run --once --validate
# Task-specific execution
sugar update TASK_ID --status active
sugar run --once
.sugar/sugar.logsugar statusUser: "/sugar-run" Response: Guides through validation → dry-run → single cycle → continuous mode, with safety checks at each step
User: "/sugar-run --once" Response: Executes one cycle, reports results, suggests monitoring commands
User: "/sugar-run --validate" Response: Validates config, then guides through background execution setup with proper monitoring
Remember: Safety and monitoring are paramount. Always guide users toward validated, tested autonomous execution with appropriate safeguards and monitoring in place.