scrumrun 2.7.2 → 2.7.3

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes follow Semantic Versioning.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## 2.7.3 - 2026-08-22
8
+
9
+ ### Added
10
+
11
+ - **Manual Task/Feature/Sprint creation via CLI.** `sc plan task --add`, `sc plan feature --add`, and `sc plan sprint --add` now create canonical artifacts directly (previously these documented actions fell through to the "Agent workflow" hint without writing anything). `--add` parks intent only — a Task lands in `backlog` with no Run, and `sc plan task --start TASK-NNN` remains the explicit approval that creates the first Run. `sc plan task --add` accepts `--type fix|task|docs|discovery` and `--status backlog|proposed`; Feature and Sprint default to their initial statuses. `--list`/`--show` now also cover Feature and Sprint artifacts.
12
+
7
13
  ## 2.7.2 - 2026-08-21
8
14
 
9
15
  ### Fixed
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ScrumRun gives an agent a small command surface and a precise project memory: what should be done, how each attempt happened, which decisions constrain the code, and why the architecture exists in its current form.
6
6
 
7
- **Package:** `2.7.2` · **Method target:** `2.0.0` · **Runtime:** Node.js `>=22.13.0` · **License:** MIT
7
+ **Package:** `2.7.3` · **Method target:** `2.0.0` · **Runtime:** Node.js `>=22.13.0` · **License:** MIT
8
8
 
9
9
  **New here?** Read the [Quickstart](docs/QUICKSTART.md) — first Run in under 10 minutes, no `SPEC.md` reading required. Full docs map in [`docs/INDEX.md`](docs/INDEX.md).
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scrumrun",
3
- "version": "2.7.2",
3
+ "version": "2.7.3",
4
4
  "description": "Evidence-driven Agile runtime and semantic project memory for AI coding agents.",
5
5
  "bin": {
6
6
  "scrumrun": "bin/scrumrun.js",
package/types/index.d.ts CHANGED
@@ -396,6 +396,7 @@ export function renderState(repository: ArtifactRepository): string;
396
396
  export function stateFingerprint(repository: ArtifactRepository): string;
397
397
  export function stateIsStale(scrumDir: string): boolean;
398
398
  export function nextId(repository: ArtifactRepository, kind: ArtifactKind): string;
399
+ export function addPlanArtifact(projectRoot: string, kind: ArtifactKind, label: string, options?: { type?: string | null; status?: string | null }): ParsedArtifact & { file: string };
399
400
 
400
401
  // ---------------------------------------------------------------------------
401
402
  // lib/runtime/mutation-gateway