ワンクリックで
gse-backlog
View and manage project backlog. Triggered when user asks about tasks, work items, what's left to do.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
View and manage project backlog. Triggered when user asks about tasks, work items, what's left to do.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deploy the current project to a Hetzner server via Coolify. Adapts to the user's situation: from zero infrastructure (solo) to a pre-configured shared server (training). Triggered by /gse:deploy.
Reload checkpoint, verify worktrees, brief user. Triggered by /gse:resume.
Deploy the current project to a Hetzner server via Coolify. Adapts to the user's situation: from zero infrastructure (solo) to a pre-configured shared server (training). Triggered by /gse:deploy.
Reload checkpoint, verify worktrees, brief user. Triggered by /gse:resume.
Route capitalized solutions to their targets. Triggered by /gse:integrate after compound.
Full GSE-One orchestrator methodology — load when you need the complete invariant text, failure modes, and edge cases beyond the condensed AGENTS.md summary.
| name | gse-backlog |
| description | View and manage project backlog. Triggered when user asks about tasks, work items, what's left to do. |
Arguments: $ARGUMENTS
| Flag / Sub-command | Description |
|---|---|
| (no args) | Display the full backlog grouped by sprint and pool |
add <description> | Add a new work item to the pool |
sprint | Show only items in the current sprint |
pool | Show only items in the unassigned pool |
--type <type> | Filter by artefact type (code, requirement, design, test, doc, config, import, spike) |
sync | Synchronize backlog with GitHub Issues (bidirectional) |
--help | Show this command's usage summary |
Before executing, read:
.gse/backlog.yaml — current backlog state.gse/status.yaml — current sprint number.gse/config.yaml — GitHub integration settings (if enabled).gse/profile.yaml — user profile (apply P9 Adaptive Communication to all output).gse/plan.yaml — living sprint plan (used for desync detection in the sprint sub-command)Workflow structure note.
/gse:backlogexposes three disjoint modes (Display, Add, Sync). Each mode defines its own Step sequence (#### Step 1..N), numbering resets per mode. The user invokes exactly one mode per call. This multi-mode### Mode → #### Step Nstructure is shared with/gse:plan,/gse:collect,/gse:learn; see CLAUDE.md — §Activity structural conventions for the full catalog.
sprint / pool)Read .gse/backlog.yaml and parse all work items.
Display items grouped by assignment:
Sprint S02 (current)
─────────────────────
TASK-007 [code] ● in-progress feat/user-auth Implement JWT authentication
TASK-008 [test] ○ planned feat/user-auth-test Write auth endpoint tests
TASK-009 [doc] ○ planned — Document auth API
Sprint S01 (delivered)
─────────────────────
TASK-001 [code] ⇧ delivered feat/project-init Initialize project structure
TASK-002 [design] ⇧ delivered feat/db-schema Design database schema
TASK-003 [test] ⇧ delivered feat/db-schema-test Write schema migration tests
Pool (unassigned)
─────────────────
TASK-010 [code] ◌ pool — Add rate limiting middleware
TASK-011 [design] ◌ pool — Design notification system
TASK-012 [requirement] ◌ pool — Define admin role permissions
Status symbols:
✓ done● in-progress○ planned (assigned to sprint but not started)◌ open (displayed as "Pool" — unassigned to any sprint)◐ review (under review)✔ reviewed (review passed)◑ fixing (review findings being addressed)⊘ deferred (moved out of the sprint)⇧ delivered (shipped in a delivered sprint)Show totals: "12 items total: 3 done, 1 in-progress, 2 planned, 6 in pool"
.gse/plan.yaml exists with status: active)Compute the set of TASK IDs currently in the sprint from backlog.yaml (filter: sprint == current_sprint AND status != delivered) and compare to plan.yaml.tasks[].id.
⚠ Plan out of sync: {N} task(s) added/removed since PLAN.
Run `/gse:plan --tactical` to sync `.gse/plan.yaml` with the backlog.
For beginners, translate per P9: "Your task list has changed since we organized the work. I should re-organize it — want me to do that now?"This is an Inform-tier detection — it does not block backlog display or any other operation. It is the early-warning counterpart to the orchestrator's coherence check at activity transitions (which runs later, only when a transition happens).
Skip this step in Micro mode (no plan.yaml exists) and for the pool sub-command (pool items are always unplanned).
add <description>)Read .gse/backlog.yaml, find the highest TASK-NNN ID, increment by 1.
From the description, infer the most likely type:
| Keywords | Inferred Type |
|---|---|
| implement, build, create, add feature, code | code |
| test, verify, validate, check | test |
| design, architect, structure, schema | design |
| require, must, should, user story | requirement |
| document, write docs, README | doc |
| configure, setup, CI, deploy | config |
If ambiguous, default to code and note the assumption.
Add to .gse/backlog.yaml:
- id: TASK-013
artefact_type: code
title: "Add rate limiting middleware"
description: "Implement rate limiting for API endpoints using token bucket algorithm"
sprint: null # null = pool (unplanned)
status: open # open | planned | in-progress | review | reviewed | fixing | done | delivered | deferred
priority: should # default, can be changed
complexity: null # set during planning
origin: user # plan | review | collect | user | import | ad-hoc
created: 2026-01-20T10:30:00Z
git:
branch: null
branch_status: null # null | planned | active | merged | deleted
traces:
derives_from: []
github_issue: null # top-level, aligned with backlog.yaml template
Read .gse/plan.yaml (if it exists). If plan.yaml.status: active (a sprint is currently in flight, not yet delivered):
Display a short pedagogical note after the item is created, before the GitHub Issue step:
ℹ Sprint S{NN} is currently active. TASK-{NNN} was added to the pool (unassigned),
not to the active sprint — the active sprint scope was already fixed at PLAN time.
What this means for you:
• If TASK-{NNN} can wait until next sprint: nothing to do (it stays in pool).
• If TASK-{NNN} should be tackled now: run `/gse:plan --tactical` to pull it
into Sprint S{NN}. This re-evaluates the complexity budget.
• If TASK-{NNN} is a bug found in the just-delivered work: see /gse:plan
--strategic to open a successor "live-validation" sprint instead.
For beginners (P9), simplify: "This new item is parked for later. The current sprint is still running with its original plan. Tell me if you want to add it to the current work instead."
This note appears once per add — never repeat it for the same TASK creation. Skip the note entirely when:
plan.yaml does not exist (Micro mode, or pre-PLAN state)plan.yaml.status ∈ {completed, abandoned} — no active sprint to be confused with/gse:backlog add from inside another activity (e.g., REVIEW promoting a finding to a TASK) — that flow already has its own routing logicRationale: in observed sessions, users repeatedly added items mid-sprint without realising they were not picked up by the current sprint plan (the silent fall-through to the pool was correct methodologically but confusing pragmatically). This single sentence closes the gap pedagogically without adding a Gate.
If .gse/config.yaml → github.enabled: true AND github.sync_mode ∈ {on-activity, real-time}:
github_issue (top-level field, not nested in traces)sync)Fetch all open GitHub Issues for the repository:
For each TASK with github_issue: null and (github.enabled: true AND github.sync_mode ∈ {on-activity, real-time}):
Map statuses between GSE-One and GitHub:
| GSE-One Status (+ condition) | GitHub State |
|---|---|
open AND sprint: null (pool) | open (label: pool) |
planned | open (label: sprint-NN) |
in-progress | open (label: in-progress) |
review | open (label: review) |
reviewed | open (label: reviewed) |
fixing | open (label: fixing) |
deferred | open (label: deferred) |
done | closed |
delivered | closed (label: delivered) |
Report sync summary: "Synced 15 items. 2 new from GitHub, 1 status updated, 12 unchanged."
Other GSE-One activities create backlog items automatically:
| Source Skill | Created Items |
|---|---|
| REVIEW | Fix items from review findings (e.g., TASK-014 from RVW-002) |
| PLAN | Promotes pool items to sprint, may split large items |
| COLLECT | Import items from external sources (e.g., GitHub Issues from scanned repos) |
| DELIVER | Close items, create follow-up items for deferred scope |
These auto-created items always include traces.derives_from linking to the source artefact.