scrumrun 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CORE.md +381 -0
- package/DECISIONS.md +212 -0
- package/README.md +123 -0
- package/SPEC.md +324 -0
- package/bin/claude-install.js +147 -0
- package/bin/scrumrun.js +1194 -0
- package/package.json +48 -0
- package/templates/codex/prompts/sc-agent.md +14 -0
- package/templates/codex/prompts/sc-backlog.md +13 -0
- package/templates/codex/prompts/sc-challenge.md +57 -0
- package/templates/codex/prompts/sc-config.md +18 -0
- package/templates/codex/prompts/sc-context.md +24 -0
- package/templates/codex/prompts/sc-decisions.md +8 -0
- package/templates/codex/prompts/sc-feature.md +16 -0
- package/templates/codex/prompts/sc-fix.md +21 -0
- package/templates/codex/prompts/sc-goal.md +14 -0
- package/templates/codex/prompts/sc-golden.md +14 -0
- package/templates/codex/prompts/sc-help.md +12 -0
- package/templates/codex/prompts/sc-init.md +14 -0
- package/templates/codex/prompts/sc-intake.md +22 -0
- package/templates/codex/prompts/sc-know.md +75 -0
- package/templates/codex/prompts/sc-map.md +13 -0
- package/templates/codex/prompts/sc-review.md +13 -0
- package/templates/codex/prompts/sc-sprint.md +28 -0
- package/templates/codex/prompts/sc-study.md +23 -0
- package/templates/codex/prompts/sc-uninstall.md +14 -0
- package/templates/codex/prompts/sc-update.md +6 -0
- package/templates/codex/prompts/sc-vault.md +27 -0
- package/templates/codex/skills/scrumrun/SKILL.md +412 -0
- package/templates/opencode/commands/sc-agent.md +14 -0
- package/templates/opencode/commands/sc-backlog.md +13 -0
- package/templates/opencode/commands/sc-challenge.md +57 -0
- package/templates/opencode/commands/sc-config.md +18 -0
- package/templates/opencode/commands/sc-context.md +24 -0
- package/templates/opencode/commands/sc-decisions.md +8 -0
- package/templates/opencode/commands/sc-feature.md +16 -0
- package/templates/opencode/commands/sc-fix.md +21 -0
- package/templates/opencode/commands/sc-goal.md +14 -0
- package/templates/opencode/commands/sc-golden.md +14 -0
- package/templates/opencode/commands/sc-help.md +12 -0
- package/templates/opencode/commands/sc-init.md +14 -0
- package/templates/opencode/commands/sc-intake.md +22 -0
- package/templates/opencode/commands/sc-know.md +75 -0
- package/templates/opencode/commands/sc-map.md +13 -0
- package/templates/opencode/commands/sc-review.md +13 -0
- package/templates/opencode/commands/sc-sprint.md +28 -0
- package/templates/opencode/commands/sc-study.md +23 -0
- package/templates/opencode/commands/sc-uninstall.md +14 -0
- package/templates/opencode/commands/sc-update.md +6 -0
- package/templates/opencode/commands/sc-vault.md +27 -0
- package/templates/opencode/skills/scrumrun/SKILL.md +412 -0
- package/templates/project/.scrumrun/agents.md +36 -0
- package/templates/project/.scrumrun/backlog.md +7 -0
- package/templates/project/.scrumrun/config.md +13 -0
- package/templates/project/.scrumrun/context.md +61 -0
- package/templates/project/.scrumrun/features/.gitkeep +1 -0
- package/templates/project/.scrumrun/goals/main/decisions.md +9 -0
- package/templates/project/.scrumrun/goals/main/history.md +51 -0
- package/templates/project/.scrumrun/goals/main/sprint.md +54 -0
- package/templates/project/.scrumrun/golden-rules.md +9 -0
- package/templates/project/.scrumrun/knowledge.md +15 -0
- package/templates/project/.scrumrun/map.md +20 -0
- package/templates/project/.scrumrun/project.md +26 -0
- package/templates/project/.scrumrun/reviews/.gitkeep +1 -0
- package/templates/project/.scrumrun/runbook.md +101 -0
- package/templates/project/.scrumrun/token-policy.md +43 -0
- package/templates/project/AGENTS.md +59 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Show ScrumRun commands grouped by workflow
|
|
3
|
+
argument-hint: optional command or topic
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Show ScrumRun help for the current project.
|
|
7
|
+
|
|
8
|
+
Read `.scrumrun/config.md` if it exists to honor the response language. Explain commands by category: project, study/challenge intake, local vault, knowledge, context economy, config, golden rules, map, goals, sprint automation, features, sprints, agents, reviews, decisions, and CLI maintenance.
|
|
9
|
+
|
|
10
|
+
If a command or topic is provided, focus on that topic and include examples.
|
|
11
|
+
|
|
12
|
+
Topic: $ARGUMENTS
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Initialize ScrumRun project files locally by default
|
|
3
|
+
argument-hint: optional --local|-l, --shared|-s, --no-agent-hint|-n, or project goal/context
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Initialize the project with ScrumRun control files.
|
|
7
|
+
|
|
8
|
+
By default, recommend `scrumrun init` for existing projects. It behaves like `scrumrun init --local` (`-l`): create `AGENTS.md` and `.scrumrun/`, add both to `.git/info/exclude`, and keep ScrumRun out of commits. Use `--no-agent-hint` (`-n`) to skip `AGENTS.md`.
|
|
9
|
+
|
|
10
|
+
For teams that want ScrumRun committed, use `scrumrun init --shared` (`-s`).
|
|
11
|
+
|
|
12
|
+
If files already exist, ask before overwriting.
|
|
13
|
+
|
|
14
|
+
Project goal or options: $ARGUMENTS
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Route a natural-language request through ScrumRun and ask before acting
|
|
3
|
+
argument-hint: problem, desired change, or idea
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Run ScrumRun natural-language intake for: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
Read `AGENTS.md`, `.scrumrun/core.md`, `.scrumrun/golden-rules.md`, `.scrumrun/config.md`, `.scrumrun/token-policy.md`, `.scrumrun/context.md`, `.scrumrun/map.md`, `.scrumrun/project.md`, `.scrumrun/knowledge.md`, and only the backlog, plans, history, decisions, feature files, and source areas relevant to classifying this request. Relevant history is mandatory. Use only approved knowledge as planning truth.
|
|
9
|
+
|
|
10
|
+
Determine the desired outcome, urgency, scope, risk, uncertainty, and relationship to the main goal. Route the request to exactly one recommended workflow:
|
|
11
|
+
|
|
12
|
+
- quick task;
|
|
13
|
+
- knowledge or discovery;
|
|
14
|
+
- main-goal sprint;
|
|
15
|
+
- corrective fix linked to prior work;
|
|
16
|
+
- backlog candidate;
|
|
17
|
+
- isolated feature lane;
|
|
18
|
+
- reject or defer.
|
|
19
|
+
|
|
20
|
+
Follow `Interaction Mode`, `Execution Approval`, and `Quick Tasks` from `.scrumrun/config.md`. In guided mode, return the classification, recommendation with rationale, important evidence, material risks or unknowns, and at most two useful alternatives. Ask one clear approval question when required; otherwise state which configured policy authorizes the next transition.
|
|
21
|
+
|
|
22
|
+
Intake is read-only. Do not create or update planning records, modify application code, run tests as implementation verification, execute a sprint, or interpret an ambiguous acknowledgement as approval. After explicit approval, invoke the matching canonical workflow using `--add`, `--set`, `--update`, `--remove`, `--run`, `--audit`, `--approve`, or `--reject` as appropriate.
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Add, approve, reject, update, rename, annotate, remove, show, or list project knowledge
|
|
3
|
+
argument-hint: --add <topic>, --approve <id>, --reject <id>, --update <id>, --rename <id> "title", --insight <id> <text>, --remove <id>, --show [id], --list
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Manage ScrumRun project knowledge in `.scrumrun/knowledge.md`: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
Read `.scrumrun/golden-rules.md`, `.scrumrun/config.md`, `.scrumrun/map.md`, `.scrumrun/project.md`, `.scrumrun/knowledge.md`, `.scrumrun/goals/main/history.md`, feature histories when relevant, and source files needed to verify the topic.
|
|
9
|
+
|
|
10
|
+
Identifiers:
|
|
11
|
+
|
|
12
|
+
- Each knowledge entry uses a stable id in the form `K-NNN` (for example `K-001`), assigned sequentially.
|
|
13
|
+
|
|
14
|
+
Flags (may be combined):
|
|
15
|
+
|
|
16
|
+
- `--add`: investigate a topic and create a pending proposal. A bare topic is a legacy alias.
|
|
17
|
+
- `--approve`: approve one pending proposal with explicit owner consent. Positional `approve` is a legacy alias.
|
|
18
|
+
- `--reject`: reject one pending proposal. Positional `reject` is a legacy alias.
|
|
19
|
+
- `--deep` (`-d`): study the topic deeply and add a code map (see below).
|
|
20
|
+
- `--update` (`--edit`, `-e` legacy aliases): rewrite an existing `K-NNN` entry; see edit mode.
|
|
21
|
+
- `--rename` (`-rn`): change only the title of an existing `K-NNN` entry; the id never changes.
|
|
22
|
+
- `--insight` (`-i`): append a dated reasoning to an existing `K-NNN` entry without rewriting it.
|
|
23
|
+
- `--remove` (`-r`, or `--delete`): delete an existing `K-NNN` entry.
|
|
24
|
+
- `--show` (`--resume`, `-s` legacy aliases): render knowledge as a clean, readable summary; read-only.
|
|
25
|
+
|
|
26
|
+
Modes:
|
|
27
|
+
|
|
28
|
+
1. `list`: show approved knowledge, pending proposals, and rejected proposals. Do not modify files.
|
|
29
|
+
2. `approve <id>`: move a pending proposal into `Approved Knowledge` only if the user's approval is explicit. Preserve source references, caveats, date, and approver.
|
|
30
|
+
3. `reject <id>`: move a pending proposal into `Rejected Proposals` with the reason when provided.
|
|
31
|
+
4. `remove <id>` or `<id> --remove`: delete that `K-NNN` entry from whichever section it is in, and report what was removed.
|
|
32
|
+
5. `<id> --edit [text]`: recreate the existing `K-NNN` entry under the same id. If text is supplied, use it as the new basis. If no text is supplied, reuse the entry's current title and insight and re-investigate from source. Combine with `--deep` to rewrite it deeply. The rewritten entry becomes a pending proposal under the same id and must be re-approved.
|
|
33
|
+
6. `<id> --rename "new title"`: change only the title of that `K-NNN` entry. The id never changes, and verified facts, code map, status, insights, date, and approver are all preserved. Mention the previous title in the change.
|
|
34
|
+
7. `<id> --insight <text>`: append a new dated insight — a reasoning, observation, or hypothesis — to that `K-NNN` entry under an `Insights` log, without changing its verified facts, code map, or status. Insights accumulate: never overwrite earlier ones, and mark them as insights, not verified facts. Create the `Insights` section if it does not exist yet.
|
|
35
|
+
8. `<id> --resume` or `--resume` (`-s`): render knowledge as a clean, readable summary instead of raw markdown. With a `K-NNN` id, present that single entry; with no id, present an organized overview of the whole base. Read-only — do not modify files. See the resume output format below.
|
|
36
|
+
9. any other text: investigate the topic and create a new pending knowledge proposal with the next `K-NNN` id. Do not put it directly into `Approved Knowledge`. With `--deep`, also build a code map.
|
|
37
|
+
|
|
38
|
+
For a new or rewritten pending proposal, include:
|
|
39
|
+
|
|
40
|
+
1. stable id in `K-NNN` form;
|
|
41
|
+
2. title;
|
|
42
|
+
3. user insight, if supplied;
|
|
43
|
+
4. verified facts with file references;
|
|
44
|
+
5. assumptions and uncertainty;
|
|
45
|
+
6. risks if this knowledge is wrong;
|
|
46
|
+
7. affected modules;
|
|
47
|
+
8. suggested use in future challenges or sprints;
|
|
48
|
+
9. approval prompt;
|
|
49
|
+
10. code map, only when `--deep` is used: key functions or symbols with `file:line` or `file:start-end` references, the main entry points and call sites, and the relevant types, config, or storage touchpoints. Short signatures or excerpts are allowed when they clarify behavior. Treat function and symbol names as the stable anchor and line numbers as point-in-time for the proposal date.
|
|
50
|
+
|
|
51
|
+
Resume output (`--resume`):
|
|
52
|
+
|
|
53
|
+
Render a scannable digest, not the raw file. For a single `K-NNN` entry, use clear sections:
|
|
54
|
+
|
|
55
|
+
- a heading line with the id, title, and a status label (Approved, Pending, or Rejected);
|
|
56
|
+
- **What it is**: one or two plain-language sentences;
|
|
57
|
+
- **Key facts**: bullets, each with its `file:line` reference;
|
|
58
|
+
- **Affected modules**: a short list;
|
|
59
|
+
- **Code map**: only if the entry has one — functions or symbols with `file:line`, entry points, and call sites;
|
|
60
|
+
- **Assumptions & risks**: brief bullets;
|
|
61
|
+
- **Suggested use**: where this should inform challenges or sprints;
|
|
62
|
+
- a compact footer with status, date, and approver when present.
|
|
63
|
+
|
|
64
|
+
For the whole base (no id), group entries under Approved, Pending, and Rejected, and show each as a compact card — `K-NNN — Title`, a one-line summary, and its status — sorted by id. Read-only.
|
|
65
|
+
|
|
66
|
+
Rules:
|
|
67
|
+
|
|
68
|
+
1. Approved knowledge can influence `/sc-challenge`, `/sc-sprint --add`, `/sc-sprint --run`, and feature planning.
|
|
69
|
+
2. Pending proposals are not planning truth. Mention them only as unapproved context.
|
|
70
|
+
3. Rejected proposals must not be used for planning except to avoid repeating a known bad assumption.
|
|
71
|
+
4. Editing an approved entry returns it to pending for re-approval; never silently keep edited content as approved.
|
|
72
|
+
5. Insights are additive, dated annotations: advisory context, not verified planning truth. Adding an insight never rewrites the entry or changes its status. If an insight should become verified knowledge, use `--edit`.
|
|
73
|
+
6. Renaming changes only an entry's title; the `K-NNN` id is permanent and must never change.
|
|
74
|
+
7. Do not change application code.
|
|
75
|
+
8. Do not create sprints, backlog items, feature lanes, or history entries unless the user explicitly asks with another command.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Manage the project map — build, view
|
|
3
|
+
argument-hint: --build|-b, --view|-v
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Manage the project map in `.scrumrun/map.md`: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
If no action flag is present in `$ARGUMENTS`, list the actions below and stop without guessing an action.
|
|
9
|
+
|
|
10
|
+
Actions:
|
|
11
|
+
|
|
12
|
+
- `--build` (`-b`): build or refresh `.scrumrun/map.md` with the project structure, important paths, modules, and key files. Do not include secrets.
|
|
13
|
+
- `--view` (`-v`): show a concise project structure view using `.scrumrun/map.md` and current folders without modifying files.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Run a ScrumRun review — full codebase or a single file range
|
|
3
|
+
argument-hint: --code|-c [focus], --file|-f <path:start_end>
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Run a ScrumRun review: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
If no action flag is present in `$ARGUMENTS`, list the actions below and stop without guessing an action.
|
|
9
|
+
|
|
10
|
+
Actions:
|
|
11
|
+
|
|
12
|
+
- `--code` (`-c`) `[focus]`: review the full codebase and save a timestamped report under `.scrumrun/reviews/`. Order findings by severity with file and line references. Do not modify code unless explicitly requested.
|
|
13
|
+
- `--file` (`-f`) `<path:start_end>`: review the requested file range only, without changing code unless explicitly asked.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Manage main-goal sprints — add, list, status, show, rename, run, audit, fix, discuss, bypass, commit-message
|
|
3
|
+
argument-hint: --add [* name], --list|-l, --status|-st [id], --show|-s <id>, --rename|-rn <id> "name", --run|-r [--backlog|-k] <id>, --audit|-a <id>, --fix|-f <id>, --discuss|-d <id>, --bypass|-b, --commit-message|-cm <id>
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Manage main-goal sprints in `.scrumrun/goals/main/`: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
If no action flag is present in `$ARGUMENTS`, list the actions below and stop without guessing an action.
|
|
9
|
+
|
|
10
|
+
Before any planning or execution action, read `.scrumrun/knowledge.md` and use only `Approved Knowledge` as planning truth.
|
|
11
|
+
|
|
12
|
+
Important: `.scrumrun/goals/main/sprint.md` is the planned catalog — it lists what *should* happen. `.scrumrun/goals/main/history.md` is the executed truth — it records what *did* happen. Sprint execution status (completed, partial, blocked, pending) is determined solely from `history.md`. Never infer status from `sprint.md` alone. Every status query (`--list`, `--status`, `--show`) must cross-reference both files; neither is sufficient on its own.
|
|
13
|
+
|
|
14
|
+
Actions:
|
|
15
|
+
|
|
16
|
+
- `--add` (`--new` and `-n` are legacy aliases) `[*] <name>`: create a new sprint in `.scrumrun/goals/main/sprint.md`; prefix the name with `*` to mark priority. Read `.scrumrun/golden-rules.md`, `.scrumrun/config.md`, `.scrumrun/knowledge.md`, `.scrumrun/goals/main/sprint.md`, and `.scrumrun/goals/main/history.md` first. Assign the next available sprint number and add goal, scope, acceptance criteria, dependencies, and suggested verification.
|
|
17
|
+
- `--list` (`-l`): cross-reference `.scrumrun/goals/main/sprint.md` and `.scrumrun/goals/main/history.md` now — never assume status from sprint.md alone. Show current sprint status (completed, pending, blocked, next steps) as recorded in history.md. Do not use cached context. Do not modify files.
|
|
18
|
+
- `--status` (`-st`) `[id]`: cross-reference `.scrumrun/goals/main/sprint.md` and `.scrumrun/goals/main/history.md` now — status comes from history.md, not sprint.md. Output only a compact Markdown table with exactly three columns: `Sprint | Breve descricao | Status`. If `[id]` is present, show only that sprint; otherwise show one row per sprint. Keep descriptions brief, derived from the sprint title or goal. Use status labels with emojis: `✅ feito` for completed, `🚧 parcial` for partial, `⛔ bloqueado` for blocked, and `⏳ pendente` when no history entry exists. Do not add narrative before or after the table. Do not modify files.
|
|
19
|
+
- `--show` (`-s`) `<id>`: cross-reference both sprint.md and history.md now and show the requested sprint with a clear non-technical Goal first, plus scope, acceptance, and its history entry (the executed truth).
|
|
20
|
+
- `--rename` (`-rn`) `<id> "new name"`: change only the sprint's descriptive label in `.scrumrun/goals/main/sprint.md`; keep its number/id unchanged, since history and backlog reference the number. Note the change in `.scrumrun/goals/main/history.md` as "renamed from X to Y". Do not modify application code.
|
|
21
|
+
- `--run` (`-r`) `<id>`: execute the requested sprint with history check, the ScrumRun protocol, and handoff. If `$ARGUMENTS` also includes `--backlog` (`-k`) or `--to-backlog`, do not execute: add the sprint candidate to `.scrumrun/backlog.md`, report the entry, and stop.
|
|
22
|
+
- `--audit` (`-a`) `<id>`: read `.scrumrun/goals/main/sprint.md`, `.scrumrun/goals/main/history.md`, and the sprint's changed files now, then audit from current file state. Do not use cached context.
|
|
23
|
+
- `--fix` (`-f`) `<id>`: corrective pass on a sprint that went wrong. First ask the user what went wrong and wait for the answer — do not guess. Then propose an executable corrective child sprint and, once the user confirms, create it as `Sprint <id>.M` (a dotted child such as `02.1`, then `02.2`) in `.scrumrun/goals/main/sprint.md`: derive its goal, scope, and acceptance from the problem and link it to parent `<id>`. Leave the parent sprint's recorded plan intact and mark it as patched by the child. Record what happened in `.scrumrun/goals/main/history.md`, capture the lesson in `.scrumrun/knowledge.md` (a pending proposal, or an insight on the relevant `K-NNN` entry — never auto-approved; ask the user to approve it), and log any decision or risk in `.scrumrun/goals/main/decisions.md`. The fix is run later with `/sc-sprint --run <id>.M`. A fix that itself needs fixing becomes a sibling (`<id>.M+1`), not a deeper nest. Also register the fix in `.scrumrun/fixes.md` as `F-NNN` linked to both `<id>` and `<id>.M`. Do not change application code.
|
|
24
|
+
- `--commit-message` (`-cm`) `<id>`: return a single, succinct commit message summarizing what that sprint delivered. Read `.scrumrun/goals/main/sprint.md` and `.scrumrun/goals/main/history.md`, plus the sprint's changed files when helpful. Output only the message: one line, imperative mood, lowercase, no trailing period, and as few characters as possible while staying clear. Do not stage, commit, or modify any files.
|
|
25
|
+
- `--discuss` (`-d`) `<id>`: read the sprint and history, discuss the user's concern about the approach, and explore better paths.
|
|
26
|
+
- `--bypass` (`-b`) `[context]`: set `.scrumrun/config.md` to `Sprint Automation: backlog` for legacy or hand-managed projects, so suggested sprints are treated as backlog candidates until the user chooses what to run. Keep other preferences intact, note the change in `.scrumrun/project.md` or `.scrumrun/goals/main/decisions.md`, and prefer `/sc-backlog --add` and `/sc-backlog --list` for candidate management.
|
|
27
|
+
|
|
28
|
+
Do not modify application code.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Deep-study the project — stack, architecture, permissions, risks, and backlog candidates
|
|
3
|
+
argument-hint: optional focus area
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Run a deep ScrumRun study of the project and produce a complete operational understanding. Do not modify files: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
Read ScrumRun control files first, then inspect the repository deeply enough to understand:
|
|
9
|
+
|
|
10
|
+
1. product purpose and active goals;
|
|
11
|
+
2. stack, frameworks, package managers, runtime versions, and local commands;
|
|
12
|
+
3. architecture, entry points, routing, controllers, services, jobs, and important modules;
|
|
13
|
+
4. auth, authorization, roles, permissions, policies, guards, and access boundaries;
|
|
14
|
+
5. data model, migrations, seeds, storage, queues, caches, and external state;
|
|
15
|
+
6. env/config requirements, secret handling, third-party integrations, and webhooks;
|
|
16
|
+
7. deployment/infrastructure clues, CI, test strategy, and observability;
|
|
17
|
+
8. legacy risks, security concerns, performance hotspots, brittle areas, and unknowns;
|
|
18
|
+
9. current sprint plan, history, decisions, feature lanes, review agents, and backlog.
|
|
19
|
+
10. approved knowledge, pending knowledge proposals, and rejected assumptions from `.scrumrun/knowledge.md`.
|
|
20
|
+
|
|
21
|
+
Prefer precise file references over generic statements. If an area cannot be verified from the repo, say it is unknown and explain what evidence is missing.
|
|
22
|
+
|
|
23
|
+
When recommending sprints, present them as backlog candidates. Do not create, run, or mark sprints unless the user explicitly asks for `/sc-sprint --add`, `/sc-backlog --add`, or `/sc-sprint --run`.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Remove ScrumRun from the current project
|
|
3
|
+
argument-hint: optional --force|-f
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Remove ScrumRun from the current project.
|
|
7
|
+
|
|
8
|
+
Default behavior is conservative: remove ScrumRun entries from `.git/info/exclude` and show what would be removed.
|
|
9
|
+
|
|
10
|
+
With `--force` (`-f`), remove `.scrumrun/` and remove `AGENTS.md` only if it is recognized as ScrumRun-generated.
|
|
11
|
+
|
|
12
|
+
Do not remove application code or unrelated project files.
|
|
13
|
+
|
|
14
|
+
Options: $ARGUMENTS
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Manage local development secrets in .scrumrun/vault.local.md
|
|
3
|
+
argument-hint: --add|-a <name:value>, --list|-l, --show|-s <name>, --remove|-r <name>
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Manage the local development vault in `.scrumrun/vault.local.md`: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
This vault is for development-only credentials and local test values. It is plaintext Markdown, not encrypted storage, and must never be committed or used for production secrets.
|
|
9
|
+
|
|
10
|
+
Rules:
|
|
11
|
+
|
|
12
|
+
1. Store values only in `.scrumrun/vault.local.md`.
|
|
13
|
+
2. Ensure `.scrumrun/vault.local.md` is listed in `.git/info/exclude` when the project is a Git repository.
|
|
14
|
+
3. Never copy vault values into sprint history, backlog, knowledge, reviews, decisions, commits, logs, or normal answers.
|
|
15
|
+
4. For `--list`, show ids/names only and redact values.
|
|
16
|
+
5. For `--show`, reveal only the explicitly requested local value.
|
|
17
|
+
6. For `--add`, accept either `<name:value>`, `<name=value>`, or `<name> <value>`.
|
|
18
|
+
7. For `--remove`, delete the requested entry.
|
|
19
|
+
8. Do not modify application code.
|
|
20
|
+
|
|
21
|
+
Actions:
|
|
22
|
+
|
|
23
|
+
- `--add` (`-a`) `<name:value>`: add or append a local development secret.
|
|
24
|
+
- `--list` (`-l`): list local vault entries with values redacted.
|
|
25
|
+
- `--show` (`-s`) `<id|name>`: show one local value.
|
|
26
|
+
- `--remove` (`-r`) `<id|name>`: remove one local value.
|
|
27
|
+
- `--path`: show the vault file path.
|