Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

sugarsugar 命令行

Agent Skill

sugar 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

210

周安装

9

GitHub Stars

公开资料未说明

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sugar(sugar 命令行)
来源仓库:https://github.com/scando1993/sugar
仓库路径:skills/sugar
安装命令:
npx skills add https://github.com/scando1993/sugar --skill sugar
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/scando1993/sugar --skill sugar

简介

sugar 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前无原始 SKILL.md 内容可参考,功能描述基于通用模板生成。

SKILL.md

Phased Software Engineering Execution

Task

$ARGUMENTS


Reference

Subagent execution follows the Ralph pattern. Each phase workspace is a self-contained Ralph environment: CLAUDE.md (agent instructions), prd.json (story state machine), progress.txt (learning persistence). Subagents are autonomous — they read their workspace instructions and execute independently.

The Sugar library (src/lib/) is the source of truth for all execution logic. Skills delegate to sugar CLI commands for workspace management, story state, consensus, and pattern propagation. Do not embed procedural bash scripts or Python one-liners — use Sugar CLI instead.


Prompt reinforcement

Use prompt repetition at every decision boundary: state the task, provide context, give the instruction, restate context briefly, repeat the instruction. Apply at skill level (restate $ARGUMENTS before each phase), subagent level (each workspace CLAUDE.md repeats the task), and per-story (restate acceptance criteria before implementing).


Core behavior

Execute in strict phases. Never move to the next phase without explicit user approval.

Before every phase, restate: "The original task is: $ARGUMENTS. This phase's goal is: [phase goal]."


Phase 1 — Planning

Goal

Analyze the task and produce a complete execution plan. Do not implement any code.

Restate: The original task is $ARGUMENTS. This phase produces plan.md and todo.md only.

Actions

Use the /prd skill approach: analyze the task, ask clarifying questions if ambiguous, then produce structured requirements.

Create plan.md at the repo root containing:

  • objective, scope, assumptions, constraints, risks
  • dependency map — which parts depend on other parts
  • architecture / refactor / testing strategy as relevant
  • execution phases with explicit dependency annotations
  • blockers

Create todo.md at the repo root containing:

  • small, actionable, idempotent tasks grouped by phase
  • checkbox progress tracking (- [])
  • dependency annotations per task
  • completion criteria per phase

Rules

  • Do not implement anything or create branches
  • Stop after Phase 1 and wait for user approval

Phase 2 — Workspace and branch setup

Goal

Create an isolated Ralph workspace for each execution phase.

Restate: The original task is $ARGUMENTS. This phase creates one git worktree per phase, each pre-loaded with the Ralph agent structure.

Preconditions

Only start after explicit user approval.

Actions

Use the Sugar CLI to create workspaces:

# Create workspace for each phase
sugar workspace create <phase-name>

# List created workspaces
sugar workspace list

Branch naming: phase-a-<scope>, phase-b-<scope>, etc.

Rules

  • One worktree per phase, one branch per phase
  • Do not start implementation unless user approves Phase 3
  • Document setup problems in plan.md

Phase 3 — Dependency analysis, PRD generation, and parallel implementation

Preconditions

Only start after explicit user approval.

Restate: The original task is $ARGUMENTS. This phase analyzes dependencies, generates Ralph workspaces with prd.json and CLAUDE.md per phase, then launches all independent phases as parallel subagents.

Sub-phases: 3a → 3b → 3c.


Phase 3a — Dependency analysis

Read plan.md thoroughly. For each phase determine:

  1. Produces: artifacts, files, APIs, types, state changes
  2. Consumes: what it needs from other phases
  3. Hard dependencies: must complete before this starts
  4. Soft dependencies: helpful but not blocking
  5. Independence: zero overlap with other phases

Build the dependency graph. Identify parallel groups, sequential chains, and the critical path.


Phase 3b — Generate execution.md, prd.json, and CLAUDE.md per workspace

The Sugar library generates all workspace files. Use the Orchestrator class or CLI commands:

# Initialize config if not present
sugar config init

# The orchestrator generates: execution.md, prd.json, CLAUDE.md, VERIFY.md, ralph-loop.sh per workspace

For each workspace, the library generates:

  • prd.json — Ralph-format user stories with consensus state machine
  • CLAUDE.md — Agent instructions with iron laws, quality protocol, red flags
  • VERIFY.md — Verifier agent instructions with vote format
  • ralph-loop.sh — Iteration engine that spawns fresh agents per story
  • execution.md at repo root — dependency graph, parallel groups, model strategy

Story rules: completable in one pass, ordered by dependency (schema → backend → UI), verifiable criteria, always include "Typecheck passes".

Rules

  • Every workspace must have: prd.json, progress.txt, CLAUDE.md, ralph-loop.sh, VERIFY.md
  • Do not proceed to 3c until all workspaces are fully set up
  • Validate each prd.json: sugar validate <workspace>/prd.json

Phase 3c — Parallel execution via ralph-loop.sh

Goal

Launch the Ralph iteration loop for each phase in parallel.

How iteration works

ralph-loop.sh (the loop — runs in bash)
  ├── Iteration 1: claude < CLAUDE.md → implements US-001 → exits
  ├── Iteration 2: claude < CLAUDE.md → implements US-002 → exits
  ├── Iteration 3: claude < CLAUDE.md → implements US-003 → outputs PHASE_COMPLETE
  └── Loop exits successfully

Each iteration is a fresh agent instance with clean context. Memory persists via:

  • prd.json — which stories are done (status: "passed"/"pending"/"rejected")
  • progress.txt — learnings and codebase patterns
  • git history — all committed code

Execution

Follow execution.md group ordering. Launch ralph loops per group:

# Launch all independent phases in parallel
/tmp/<repo>-phases/phase-a/ralph-loop.sh 20 sonnet &
/tmp/<repo>-phases/phase-b/ralph-loop.sh 20 sonnet &
wait

# Propagate patterns between groups
sugar propagate-patterns --base /tmp/<repo>-phases

# Launch next group
/tmp/<repo>-phases/phase-c/ralph-loop.sh 20 sonnet &
wait

The ralph-loop.sh uses Sugar CLI for state management:

  • sugar pick-story — get next story
  • sugar story-update — update story status in prd.json
  • sugar snapshot — create git snapshot tag before each attempt

Model selection per phase

  • Sonnet (default): Well-scoped implementation tasks
  • Haiku: Mechanical tasks — config changes, boilerplate
  • Opus: Complex architectural decisions, ambiguous requirements

Auto-escalates to Opus on 2+ consecutive failures.

Completion tracking

  • Phase complete when ralph-loop.sh exits 0
  • After each group: sugar propagate-patterns to extract and inject patterns
  • Monitor progress: sugar status-all /tmp/<repo>-phases

Rules

  • Never launch a dependent phase before prerequisites are confirmed complete
  • Propagate codebase patterns between groups
  • One story per commit, all commits must pass quality checks

Phase 4 — Merge

Goal

Safely integrate all completed phase branches.

Restate: The original task is $ARGUMENTS. All phases complete. Merge in dependency order.

Preconditions

Only start after explicit user approval.

Actions

# View workspace status first
sugar status-all /tmp/<repo>-phases

Create merge_order.md at repo root with:

  • merge order aligned with dependency graph (foundations first)
  • rationale for ordering
  • expected conflict areas
  • conflict resolution notes
  • validation steps after each merge

Automatic merge:

  • Merge in documented order
  • Resolve conflicts using best engineering judgment
  • Validate after each merge: run quality checks
  • Update merge_order.md with actual conflict notes

Post-merge validation

Phase 4 is not complete until the final merged result passes all checks.

Cleanup

sugar workspace cleanup

Iron Laws

Three inviolable rules enforced in every workspace:

  1. ONE STORY per iteration — no "while I'm here" additions
  2. NEVER COMMIT BROKEN code — every commit must pass all quality checks
  3. READ PROGRESS.TXT FIRST — check codebase patterns before writing

Red Flags — If You Catch Yourself Thinking:

ThoughtReality
"I'll just implement two quick stories in one iteration"ONE story per iteration. The loop handles iteration. No exceptions.
"The tests mostly pass, I'll commit and fix later"ALL commits must pass quality checks. Broken commits poison every future iteration.
"This dependency isn't really needed, I'll skip it"The dependency graph exists for a reason. Never start dependent work before prerequisites complete.
"I know what changed, I don't need to read progress.txt"Progress.txt IS your memory. You have NO context without it. Read it FIRST.
"This is a trivial change, I don't need to run checks"Every commit gets checked. No exceptions. The one you skip is the one that breaks everything.
"I'll refactor this while I'm here"Stay in scope. Implement the story. Nothing more.

How to interpret user requests

User saysStart from
Planning only / no qualifierPhase 1
Planning is approvedPhase 2
Setup is donePhase 3 (3a → 3b → 3c)
PRDs exist, ready to implementPhase 3c
All branches done, wants mergePhase 4
Testing onlyPhase 1 (testing strategy), then normal flow

Execution rules

Source of truth

  • Before Phase 3c: todo.md
  • During Phase 3c: each workspace's prd.json
  • After each phase completes: sync back to todo.md

Commits

  • One per story: feat: [Story ID] - [Story Title]
  • Must pass quality checks
  • Never bundle unrelated changes

General

  • Never skip phases or continue without approval
  • Keep all tracking files current
  • Document assumptions and blockers explicitly
  • Propagate codebase patterns between groups

Managed files

FileLocationCreated in
plan.mdrepo rootPhase 1
todo.mdrepo rootPhase 1
execution.mdrepo rootPhase 3b
prd.jsoneach worktreePhase 3b
progress.txteach worktreePhase 2
CLAUDE.mdeach worktreePhase 3b
ralph-loop.sheach worktreePhase 3b
VERIFY.mdeach worktreePhase 3b
patterns.jsonrepo rootPhase 3c (between groups)
merge_order.mdrepo rootPhase 4

The first deliverable is always Phase 1 planning only, unless the user explicitly states that a later phase is already approved.

Restate: Given the task $ARGUMENTS — start with Phase 1. Produce plan.md and todo.md. Stop and wait for approval.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.78%
按下载量换算25

Claude

29.61%
按下载量换算22

Cursor

20.15%
按下载量换算15

Gemini CLI

9.94%
按下载量换算7

安全审计

Gen Agent Trust Hub

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills