@vibe-x/agent-better-checkpoint 0.3.1 → 0.3.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/package.json +1 -1
- package/skill/SKILL.md +9 -6
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: agent-better-checkpoint
|
|
|
3
3
|
description: "Automatically creates semantic Git checkpoint commits during AI coding sessions. Replaces opaque platform checkpoints with transparent, queryable Git commits using Conventional Commits format with Git Trailers. You MUST follow this skill whenever you make code changes — commit after each meaningful edit."
|
|
4
4
|
license: MIT
|
|
5
5
|
metadata:
|
|
6
|
-
version: "0.3.
|
|
6
|
+
version: "0.3.2"
|
|
7
7
|
author: "alienzhou"
|
|
8
8
|
category: "version-control"
|
|
9
9
|
---
|
|
@@ -18,17 +18,20 @@ You are an AI coding assistant with **checkpoint awareness**. Every meaningful e
|
|
|
18
18
|
|
|
19
19
|
## 🔧 Installation Check
|
|
20
20
|
|
|
21
|
-
Before your first commit, verify the checkpoint scripts are available
|
|
21
|
+
Before your first commit, verify the checkpoint scripts are available.
|
|
22
22
|
|
|
23
|
-
**
|
|
24
|
-
|
|
23
|
+
**IMPORTANT: Use your file-listing/read tools (NOT shell `test -f`) to check existence.** Shell relative paths break when CWD ≠ workspace root.
|
|
24
|
+
|
|
25
|
+
Check in order (stop at first hit):
|
|
26
|
+
1. **Project-local (preferred):** `.vibe-x/agent-better-checkpoint/checkpoint.sh` (or `.ps1`) relative to workspace root.
|
|
27
|
+
2. **Global fallback:** `~/.vibe-x/agent-better-checkpoint/scripts/checkpoint.sh` (or `.ps1`).
|
|
25
28
|
|
|
26
29
|
Both `.sh` and `.ps1` are always installed regardless of current OS.
|
|
27
30
|
|
|
28
31
|
If neither exists, run:
|
|
29
32
|
|
|
30
33
|
```bash
|
|
31
|
-
npx @vibe-x/agent-better-checkpoint@0.3.
|
|
34
|
+
npx @vibe-x/agent-better-checkpoint@0.3.2
|
|
32
35
|
```
|
|
33
36
|
|
|
34
37
|
Without `--target`: installs globally. With `--target .`: project-only (skill + hooks in `.cursor/`, scripts in `.vibe-x/`), no global changes.
|
|
@@ -164,4 +167,4 @@ This should feel natural — commit as you go, like any good developer.
|
|
|
164
167
|
|
|
165
168
|
---
|
|
166
169
|
|
|
167
|
-
**Version**: 0.3.
|
|
170
|
+
**Version**: 0.3.2
|