handoff-mcp-server 0.18.1 → 0.18.3

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
@@ -136,7 +136,7 @@ dependencies = [
136
136
 
137
137
  [[package]]
138
138
  name = "handoff-mcp"
139
- version = "0.18.1"
139
+ version = "0.18.3"
140
140
  dependencies = [
141
141
  "anyhow",
142
142
  "chrono",
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "handoff-mcp"
3
- version = "0.18.1"
3
+ version = "0.18.3"
4
4
  edition = "2021"
5
5
  description = "MCP server that gives AI coding agents persistent memory across sessions"
6
6
  license = "MIT"
package/README.md CHANGED
@@ -52,6 +52,17 @@ npm install -g handoff-mcp-server
52
52
  This registers the MCP server and all skills automatically — no manual
53
53
  `.mcp.json` or skill file setup needed.
54
54
 
55
+ **Optional: task loop (automated TDD + research workflows)**
56
+
57
+ ```bash
58
+ /plugin install handoff-task-loop@handoff-mcp-marketplace
59
+ /plugin enable handoff-task-loop
60
+ ```
61
+
62
+ Adds `/session-loop` (parallel TDD implementation, adversarial testing, Opus
63
+ review) and `/research-loop` (multi-agent investigation, verification, spec
64
+ drafting). See [plugin-task-loop/README.md](plugin-task-loop/README.md).
65
+
55
66
  **Optional: memory auto-injection hooks**
56
67
 
57
68
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handoff-mcp-server",
3
- "version": "0.18.1",
3
+ "version": "0.18.3",
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>",