用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gastownhall/gascity --skill gc-work命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | gc-work |
| description | Finding, creating, claiming, and closing work items (beads) |
Everything in Gas City is a bead — tasks, messages, molecules, convoys.
The gc bd CLI is the primary interface for bead CRUD.
Each rig has its own .beads/ database with its own ID prefix (e.g.
fe- for frontend, be- for beads). A bead must live in the
same database as the agent that will work on it. When you sling a bead
to a rig-scoped agent, sling operates on the agent's rig database — so
the bead must already exist there. The bead ID prefix tells you which
rig it belongs to.
Use gc rig list to see rig names, paths, and prefixes.
Use --rig to create beads in the right database. If the work will
be dispatched to a rig-scoped agent, create the bead in that agent's rig:
gc bd create "title" --rig frontend # Create in frontend's db (fe- prefix)
gc bd create "title" --rig beads # Create in beads db (be- prefix)
gc bd create "title" # Create in current directory's .beads/
gc bd create "title" -t bug # Create with type
gc bd create "title" --label priority=high # Create with labels
gc bd list # List beads in current .beads/
gc bd list --rig <rigname> # List beads in a specific rig
gc bd ready # List beads available for claiming
gc bd ready --label role:worker # Filter by label
gc bd show <id> # Show bead details
gc ready # Same frontier, federated over every store the city uses
On a city that serves a coordination class from its own [storage] binding,
gc bd ready (and gc bd list --ready) is refused with exit 1: it reads one
ledger and the city's ready set spans more than one. Use gc ready there. It
takes --assignee, --unassigned, --metadata-field, --exclude-type,
--exclude-label, --sort, --limit, --include-ephemeral, --status and
--json — not the label, parent, type or priority selectors gc bd ready
forwards.
gc bd update <id> --claim # Claim a bead (sets assignee + in_progress) — races in a multi-agent city; prefer `gc hook --claim` there
gc bd update <id> --status in_progress # Update status
gc bd update <id> --add-label <key>=<value> # Add/update labels
gc bd update <id> --append-notes "progress..." # Append a note (does not replace existing notes)
gc bd close <id> # Close a completed bead
gc bd close <id> --reason "done" # Close with reason
gc hook [agent] # Show routed work for an agent (defaults to $GC_AGENT)
gc hook --claim # Atomically claim one routed work item onto this agent's hook