savepoint 1.0.11 → 1.2.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/README.md +50 -2
- package/package.json +3 -2
- package/savepoint.exe +0 -0
package/README.md
CHANGED
|
@@ -62,7 +62,56 @@ 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
|
+
## 🐛 Defect Workflow
|
|
71
|
+
|
|
72
|
+
When a bug surfaces during a build or after a release, create a defect file instead of a new task. Defects live in `.savepoint/releases/{release}/defects/` and are tracked separately from the epic backlog so the audit trail stays clean.
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
.savepoint/releases/v1/defects/
|
|
76
|
+
D001-auth-crash.md
|
|
77
|
+
D002-slow-query.md
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Each defect file uses YAML frontmatter:
|
|
81
|
+
|
|
82
|
+
```yaml
|
|
83
|
+
---
|
|
84
|
+
id: v1/D001-auth-crash
|
|
85
|
+
release: v1
|
|
86
|
+
status: planned # planned | in_progress | done
|
|
87
|
+
severity: high # critical | high | medium | low
|
|
88
|
+
title: "Auth crash on empty token"
|
|
89
|
+
introduced: v1.0.3 # optional: version where bug appeared
|
|
90
|
+
reference: E12-slug/T003-slug # optional: related task ID
|
|
91
|
+
---
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
- Press **`d`** on the board to open the defect overlay and see all defects for the current release.
|
|
95
|
+
- `savepoint doctor` validates defect files and reports malformed frontmatter, invalid status, and broken task references.
|
|
96
|
+
|
|
97
|
+
**Use a defect when:** a regression is found in TUI testing, a build breaks after a merged epic, or a production bug is traced to a known release.
|
|
98
|
+
|
|
99
|
+
**Do NOT use a defect when:** a planned task needs rework (update the task instead), a scope changes (that is an epic), or something is a future enhancement.
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## 📦 Updating
|
|
104
|
+
|
|
105
|
+
After updating the Savepoint package:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
npm update -g savepoint
|
|
109
|
+
savepoint upgrade-assets
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
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.
|
|
113
|
+
|
|
114
|
+
Use `--dry-run` to preview changes before applying them.
|
|
66
115
|
|
|
67
116
|
---
|
|
68
117
|
|
|
@@ -76,4 +125,3 @@ I’m sharing it to prove a point: The real power of AI isn't just the size of t
|
|
|
76
125
|
|
|
77
126
|
**License:** MIT
|
|
78
127
|
**Status:** Recursive Construction (v1 MVP in progress)
|
|
79
|
-
us:** Recursive Construction (v1 MVP in progress)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "savepoint",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.0",
|
|
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
|