@kingkyylian/handoffkit 0.2.0 → 0.4.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/CHANGELOG.md +15 -0
- package/README.md +22 -1
- package/dist/index.js +471 -127
- package/dist/index.js.map +1 -1
- package/docs/CACHE.md +57 -0
- package/docs/RELEASE.md +3 -1
- package/examples/cache-backed-handoff.md +26 -0
- package/package.json +3 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Cache-Backed Handoff Example
|
|
2
|
+
|
|
3
|
+
Use this flow when you want the next agent session to reuse local verification or resume context without manually opening `.handoffkit` JSON files.
|
|
4
|
+
|
|
5
|
+
## Capture
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
handoffkit verify --cache
|
|
9
|
+
handoffkit resume previous-handoff.md --goal "Continue release work" --cache
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Inspect
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
handoffkit cache list
|
|
16
|
+
handoffkit cache show resume latest
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Reuse
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
handoffkit resume --from-cache latest --goal "Continue cached session"
|
|
23
|
+
handoffkit pack --goal "Prepare cache-aware handoff" --include-cache
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
The cache remains local and ignored by Git. `pack --include-cache` includes artifact summaries, not full cache payloads.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kingkyylian/handoffkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Clean handoff packets for interrupted AI coding sessions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,6 +49,8 @@
|
|
|
49
49
|
"SECURITY.md",
|
|
50
50
|
"CONTRIBUTING.md",
|
|
51
51
|
"CODE_OF_CONDUCT.md",
|
|
52
|
+
"examples",
|
|
53
|
+
"docs/CACHE.md",
|
|
52
54
|
"docs/RELEASE.md"
|
|
53
55
|
],
|
|
54
56
|
"scripts": {
|