scrumrun 2.6.1 → 2.6.2
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/README.md +15 -3
- package/bin/scrumrun.js +9 -5
- package/package.json +1 -1
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.6.
|
|
7
|
+
**Package:** `2.6.2` · **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
|
|
|
@@ -33,11 +33,23 @@ See [`docs/SCHEMA.md`](docs/SCHEMA.md) for the generated executable contract and
|
|
|
33
33
|
|
|
34
34
|
## Install
|
|
35
35
|
|
|
36
|
+
Install the CLI globally (recommended — avoids `npx` cache quirks):
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm i -g scrumrun@latest
|
|
40
|
+
scrumrun install
|
|
41
|
+
scrumrun init
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
To upgrade later:
|
|
45
|
+
|
|
36
46
|
```bash
|
|
37
|
-
|
|
38
|
-
|
|
47
|
+
npm i -g scrumrun@latest
|
|
48
|
+
scrumrun update
|
|
39
49
|
```
|
|
40
50
|
|
|
51
|
+
`npx scrumrun@latest <command>` also works if you prefer not to install globally, but pin the version explicitly (`@latest` or `@2.6.1`) — `npx scrumrun` alone will happily reuse a stale cached version.
|
|
52
|
+
|
|
41
53
|
`install` adds the client integration; `init` creates the project tree. Initialization is local by default: `.scrumrun/` and the generated agent hint are added to `.git/info/exclude`. Use `--shared` when the team wants to commit the project memory.
|
|
42
54
|
|
|
43
55
|
ScrumRun installs one canonical agent command:
|
package/bin/scrumrun.js
CHANGED
|
@@ -63,12 +63,16 @@ Usage:
|
|
|
63
63
|
scrumrun doctor [all|codex|opencode|claude] [--strict] [--recover]
|
|
64
64
|
scrumrun uninstall [--force]
|
|
65
65
|
|
|
66
|
+
Install:
|
|
67
|
+
npm i -g scrumrun@latest # recommended
|
|
68
|
+
npx scrumrun@latest <command> # also works; pin @latest to avoid stale npx cache
|
|
69
|
+
|
|
66
70
|
Examples:
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
71
|
+
scrumrun install
|
|
72
|
+
scrumrun init
|
|
73
|
+
scrumrun status
|
|
74
|
+
scrumrun sc knowledge decision --list
|
|
75
|
+
scrumrun migrate --to 2 --dry-run
|
|
72
76
|
`);
|
|
73
77
|
}
|
|
74
78
|
|