savepoint 1.0.11 → 1.0.12

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
@@ -62,7 +62,23 @@ Built for a cinematic, technical feel without the bloat.
62
62
  | `savepoint --version` | Print the installed Savepoint version. |
63
63
  | `savepoint init` | Scaffold the loop, write your `AGENTS.md` guide, drop the baby gates, and generate the magic prompt. |
64
64
  | `savepoint board` | Launch the Atari-Noir Kanban TUI to track the vibe. |
65
- | `savepoint doctor` | Check the integrity of the state machine. |
65
+ | `savepoint doctor` | Check the integrity of the state machine. |
66
+ | `savepoint upgrade-assets [dir] [--dry-run] [--force]` | Refresh package-owned templates and agent skills in an existing Savepoint project without touching project state. |
67
+
68
+ ---
69
+
70
+ ## 📦 Updating
71
+
72
+ After updating the Savepoint package:
73
+
74
+ ```bash
75
+ npm update -g savepoint
76
+ savepoint upgrade-assets
77
+ ```
78
+
79
+ The `upgrade-assets` command refreshes bundled `agent-skills/**/SKILL.md` files and the Savepoint-managed block in `AGENTS.md` from the latest templates. It never overwrites `.savepoint/PRD.md`, `.savepoint/Design.md`, `.savepoint/releases/**`, or any task/epic/audit files.
80
+
81
+ Use `--dry-run` to preview changes before applying them.
66
82
 
67
83
  ---
68
84
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "savepoint",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "It’s a simple, file-based state machine and cinematic Terminal UI (TUI) designed to force you—and your agent (Claude, Cursor, Aider, Gemini)—to slow down, write down what you're actually building, and check your work before moving on.",
5
5
  "keywords": [
6
6
  "board",
@@ -28,6 +28,7 @@
28
28
  "scripts": {
29
29
  "build": "go build -o savepoint.exe .",
30
30
  "test": "echo \"Run 'make test' for Go tests\"",
31
+ "postinstall": "node -e \"console.log('Run \\\"savepoint upgrade-assets\\\" in each existing Savepoint project to refresh agent skills and templates.')\"",
31
32
  "prepublishOnly": "npm run build"
32
33
  }
33
34
  }
package/savepoint.exe CHANGED
Binary file