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 CHANGED
@@ -145,7 +145,7 @@ dependencies = [
145
145
 
146
146
  [[package]]
147
147
  name = "handoff-mcp"
148
- version = "0.25.0"
148
+ version = "0.25.1"
149
149
  dependencies = [
150
150
  "anyhow",
151
151
  "chrono",
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "handoff-mcp"
3
- version = "0.25.0"
3
+ version = "0.25.1"
4
4
  edition = "2021"
5
5
  description = "MCP server that gives AI coding agents persistent memory across sessions"
6
6
  license = "MIT"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handoff-mcp-server",
3
- "version": "0.25.0",
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.