handoff-mcp-server 0.25.0 → 0.25.1
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/Cargo.lock +1 -1
- package/Cargo.toml +1 -1
- package/package.json +2 -1
- package/templates/claude-md-section.md +12 -0
package/Cargo.lock
CHANGED
package/Cargo.toml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "handoff-mcp-server",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.1",
|
|
4
4
|
"description": "MCP server that gives AI coding agents persistent memory across sessions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "AlphaElements <66808803+alphaelements@users.noreply.github.com>",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"scripts/",
|
|
32
32
|
"skills/",
|
|
33
33
|
"src/",
|
|
34
|
+
"templates/",
|
|
34
35
|
"Cargo.toml",
|
|
35
36
|
"Cargo.lock",
|
|
36
37
|
"LICENSE",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
## Session Handoff
|
|
2
|
+
|
|
3
|
+
This project uses handoff-mcp for session continuity.
|
|
4
|
+
|
|
5
|
+
- **Session start**: Call `handoff_load_context` to load previous session state.
|
|
6
|
+
If not initialized, call `handoff_init` with the project name.
|
|
7
|
+
If `session_guidance` is present, immediately call `handoff_save_context`
|
|
8
|
+
with `session_status: "active"` to establish a persistent session before
|
|
9
|
+
starting work.
|
|
10
|
+
- **Session end**: Call `handoff_save_context` with a summary, decisions, and blockers.
|
|
11
|
+
- **During work**: Use `handoff_update_task` to track progress.
|
|
12
|
+
Mark tasks `in_progress` when starting, `done` when complete.
|