← ClaudeAtlas

slopstop-gh-initlisted

Bootstrap a GitHub repo for the slopstop ticket workflow. Creates status labels, writes .project-conf.toml. Invoke as /slopstop:gh-init (or /slopstop-gh-init). Idempotent — safe to re-run.
iansmith/slopstop · ★ 0 · Code & Development · score 56
Install: claude install-skill iansmith/slopstop
# /slopstop:gh-init Bootstrap a GitHub-backed project for the `slopstop` ticket workflow. **What it does (once):** - Creates `status:in-progress` (and optionally `status:in-review`) labels on the GitHub repo. - Writes `.project-conf.toml` in cwd with `system = "github"`, `key`, `prefix`, and `[status_labels]`. Safe to re-run — all actions are idempotent. ## Autonomous mode When `.project-conf.toml` will have (or already has) `[autonomous] enabled = true`, this skill runs unmodified. There are no interactive prompts that would block an autonomous session. Provide `--workflow` and `--prefix` flags to skip the two interactive questions. ## Arguments ``` /slopstop:gh-init [--workflow {3,4}] [--prefix PREFIX] [--in-progress-label NAME] (default: status:in-progress) [--in-progress-color HEX] (default: fbca04) [--in-review-label NAME] (default: status:in-review) [--in-review-color HEX] (default: 0e8a16) ``` - `--workflow 3|4` — skip the workflow question (Step 4). - `--prefix PREFIX` — skip the prefix question (Step 4). Must be 2–8 uppercase chars, filesystem-safe (e.g. `BENCH`, `BILL`). - Label name/color overrides apply to label creation only; they do not affect what gets written to `[status_labels]` in `.project-conf.toml` unless `--in-progress-label` / `--in-review-label` are provided (in which case those names are used both for creation and for the config file). ## S