scrumrun 1.5.0 → 1.5.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
CHANGED
|
@@ -17,6 +17,22 @@ npx scrumrun@latest init
|
|
|
17
17
|
|
|
18
18
|
Local by default: creates `AGENTS.md` and `.scrumrun/`, adds them to `.git/info/exclude`. Use `--shared` to commit them.
|
|
19
19
|
|
|
20
|
+
### Migrating from the GitHub installer
|
|
21
|
+
|
|
22
|
+
Older installations used `npx github:leandercosta/scrumrun`. Replace the installed client commands and skill with the npm release by running once:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npx scrumrun@latest update all
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
This overwrites only the ScrumRun integrations for Codex, Claude Code, and OpenCode. It does not remove or reset project data, `.scrumrun/`, `AGENTS.md`, knowledge, history, decisions, backlog, or the local vault.
|
|
29
|
+
|
|
30
|
+
From then on, use `npx scrumrun@latest ...`. Projects using the legacy pre-`.scrumrun/` file layout can additionally run:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npx scrumrun@latest migrate
|
|
34
|
+
```
|
|
35
|
+
|
|
20
36
|
---
|
|
21
37
|
|
|
22
38
|
## Usage
|
|
@@ -24,10 +40,10 @@ Local by default: creates `AGENTS.md` and `.scrumrun/`, adds them to `.git/info/
|
|
|
24
40
|
Once initialized, talk to your agent in natural language:
|
|
25
41
|
|
|
26
42
|
```
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
43
|
+
add a save button to the profile form
|
|
44
|
+
checkout charges twice after refresh
|
|
45
|
+
study the payments module
|
|
46
|
+
run the next sprint
|
|
31
47
|
```
|
|
32
48
|
|
|
33
49
|
The agent runs intake (read-only), classifies the request, proposes a route, and asks for approval before touching artifacts or code. No configuration silently grants blanket implementation permission.
|
package/bin/scrumrun.js
CHANGED
|
@@ -6,6 +6,7 @@ const os = require("os");
|
|
|
6
6
|
|
|
7
7
|
const root = path.resolve(__dirname, "..");
|
|
8
8
|
const templates = path.join(root, "templates");
|
|
9
|
+
const { version } = require(path.join(root, "package.json"));
|
|
9
10
|
|
|
10
11
|
const COMMANDS = [
|
|
11
12
|
"sc-help",
|
|
@@ -35,6 +36,7 @@ function usage() {
|
|
|
35
36
|
console.log(`ScrumRun
|
|
36
37
|
|
|
37
38
|
Usage:
|
|
39
|
+
scrumrun --version
|
|
38
40
|
scrumrun install [all|codex|opencode|claude] [--force]
|
|
39
41
|
scrumrun update [all|codex|opencode|claude]
|
|
40
42
|
scrumrun init [--local|--shared] [--no-agent-hint] [--force]
|
|
@@ -1118,6 +1120,8 @@ const noAgentHint = args.includes("--no-agent-hint") || args.includes("-n");
|
|
|
1118
1120
|
|
|
1119
1121
|
if (!command || command === "--help" || command === "-h") {
|
|
1120
1122
|
usage();
|
|
1123
|
+
} else if (command === "--version" || command === "-v") {
|
|
1124
|
+
console.log(`ScrumRun ${version}`);
|
|
1121
1125
|
} else if (command === "install" || command === "update") {
|
|
1122
1126
|
const target = ["all", "codex", "opencode", "claude"].includes(args[1]) ? args[1] : "all";
|
|
1123
1127
|
install(target, true);
|
package/package.json
CHANGED
|
@@ -3,4 +3,6 @@ description: Update installed ScrumRun commands and skill to latest version
|
|
|
3
3
|
argument-hint: optional target: all, codex, opencode, or claude
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
Update installed ScrumRun commands and skill
|
|
6
|
+
Update installed ScrumRun commands and skill from the canonical npm package: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
Use `npx scrumrun@latest update all` when migrating an installation that previously used `npx github:leandercosta/scrumrun`. Preserve all project-local ScrumRun data.
|
|
@@ -3,4 +3,6 @@ description: Update installed ScrumRun commands and skill to latest version
|
|
|
3
3
|
argument-hint: optional target: all, codex, opencode, or claude
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
Update installed ScrumRun commands and skill
|
|
6
|
+
Update installed ScrumRun commands and skill from the canonical npm package: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
Use `npx scrumrun@latest update all` when migrating an installation that previously used `npx github:leandercosta/scrumrun`. Preserve all project-local ScrumRun data.
|