handoff-mcp-server 0.25.0 → 0.26.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/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.26.0"
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.26.0"
4
4
  edition = "2021"
5
5
  description = "MCP server that gives AI coding agents persistent memory across sessions"
6
6
  license = "MIT"
@@ -25,5 +25,6 @@ pulldown-cmark = "0.13"
25
25
  serde_yaml = "0.9"
26
26
 
27
27
  [dev-dependencies]
28
+ serde_json = "1"
28
29
  tempfile = "3.27.0"
29
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handoff-mcp-server",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
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
+ interface:
2
+ display_name: "Handoff"
3
+ short_description: "Load and save session context, track tasks, and manage project state across sessions"
4
+ default_prompt: "Use $handoff to run the session handoff workflow"
5
+
6
+ dependencies:
7
+ tools:
8
+ - type: "mcp"
9
+ value: "handoff"
10
+ description: "Handoff MCP server for session management"
11
+ transport: "stdio"
12
+ command: "handoff-mcp"
@@ -0,0 +1,12 @@
1
+ interface:
2
+ display_name: "Handoff Docs"
3
+ short_description: "Save, read, search, and traverse structured project documents (specs, designs, ADRs)"
4
+ default_prompt: "Use $handoff-docs to manage project documents"
5
+
6
+ dependencies:
7
+ tools:
8
+ - type: "mcp"
9
+ value: "handoff"
10
+ description: "Handoff MCP server for session management"
11
+ transport: "stdio"
12
+ command: "handoff-mcp"
@@ -0,0 +1,12 @@
1
+ interface:
2
+ display_name: "Handoff Import"
3
+ short_description: "Import existing documents into structured .handoff/ task and session management"
4
+ default_prompt: "Use $handoff-import to import a document into handoff"
5
+
6
+ dependencies:
7
+ tools:
8
+ - type: "mcp"
9
+ value: "handoff"
10
+ description: "Handoff MCP server for session management"
11
+ transport: "stdio"
12
+ command: "handoff-mcp"
@@ -0,0 +1,12 @@
1
+ interface:
2
+ display_name: "Handoff Load"
3
+ short_description: "Load the previous session's handoff context and show what to work on next"
4
+ default_prompt: "Use $handoff-load to load the handoff context for this project"
5
+
6
+ dependencies:
7
+ tools:
8
+ - type: "mcp"
9
+ value: "handoff"
10
+ description: "Handoff MCP server for session management"
11
+ transport: "stdio"
12
+ command: "handoff-mcp"
@@ -0,0 +1,12 @@
1
+ interface:
2
+ display_name: "Handoff Memory"
3
+ short_description: "Save, query, merge, and clean up durable project knowledge across sessions"
4
+ default_prompt: "Use $handoff-memory to query project memories for relevant knowledge"
5
+
6
+ dependencies:
7
+ tools:
8
+ - type: "mcp"
9
+ value: "handoff"
10
+ description: "Handoff MCP server for session management"
11
+ transport: "stdio"
12
+ command: "handoff-mcp"
@@ -0,0 +1,12 @@
1
+ interface:
2
+ display_name: "Handoff Refer"
3
+ short_description: "Send a cross-project referral to another project's handoff store"
4
+ default_prompt: "Use $handoff-refer to send a referral to another project"
5
+
6
+ dependencies:
7
+ tools:
8
+ - type: "mcp"
9
+ value: "handoff"
10
+ description: "Handoff MCP server for session management"
11
+ transport: "stdio"
12
+ command: "handoff-mcp"
@@ -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.