session-collab-mcp 0.7.0 → 0.8.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/README.md +30 -1
- package/dist/cli.js +1784 -77
- package/dist/cli.js.map +1 -1
- package/migrations/0011_working_memory.sql +38 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -110,6 +110,15 @@ Configure behavior with `collab_config`:
|
|
|
110
110
|
| `smart` (default) | Auto-proceed with safe content, ask for blocked |
|
|
111
111
|
| `bypass` | Proceed despite conflicts (warn only) |
|
|
112
112
|
|
|
113
|
+
### Auto-Release Options
|
|
114
|
+
|
|
115
|
+
| Option | Default | Description |
|
|
116
|
+
|--------|---------|-------------|
|
|
117
|
+
| `auto_release_immediate` | `false` | Auto-release claims after Edit/Write |
|
|
118
|
+
| `auto_release_stale` | `false` | Auto-release claims exceeding threshold |
|
|
119
|
+
| `stale_threshold_hours` | `2` | Hours before claim is considered stale |
|
|
120
|
+
| `auto_release_delay_minutes` | `5` | Grace period for stale release |
|
|
121
|
+
|
|
113
122
|
## MCP Tools Reference
|
|
114
123
|
|
|
115
124
|
### Session Management
|
|
@@ -130,6 +139,7 @@ Configure behavior with `collab_config`:
|
|
|
130
139
|
| `collab_claim` | Reserve files or symbols before modifying |
|
|
131
140
|
| `collab_check` | Check if files/symbols are claimed by others |
|
|
132
141
|
| `collab_release` | Release claimed files/symbols |
|
|
142
|
+
| `collab_auto_release` | Auto-release claims after editing a file |
|
|
133
143
|
| `collab_claims_list` | List all WIP claims |
|
|
134
144
|
|
|
135
145
|
### Inter-Session Communication
|
|
@@ -242,7 +252,11 @@ session-collab-mcp/
|
|
|
242
252
|
│ ├── 0003_config.sql # Session config
|
|
243
253
|
│ ├── 0004_symbols.sql # Symbol-level claims
|
|
244
254
|
│ ├── 0005_references.sql # Reference tracking
|
|
245
|
-
│
|
|
255
|
+
│ ├── 0006_composite_indexes.sql # Query optimization
|
|
256
|
+
│ ├── 0007_priority.sql # Claim priority
|
|
257
|
+
│ ├── 0008_history.sql # Audit history
|
|
258
|
+
│ ├── 0009_queue.sql # Claim queue
|
|
259
|
+
│ └── 0010_notifications.sql # Notifications
|
|
246
260
|
├── plugin/ # Claude Code Plugin
|
|
247
261
|
│ ├── .claude-plugin/
|
|
248
262
|
│ │ ├── plugin.json # Plugin manifest
|
|
@@ -281,6 +295,21 @@ session-collab-mcp/
|
|
|
281
295
|
|
|
282
296
|
## Changelog
|
|
283
297
|
|
|
298
|
+
### v0.7.1
|
|
299
|
+
|
|
300
|
+
- Add `collab_auto_release` tool for releasing claims after editing
|
|
301
|
+
- Add auto-release config options: `auto_release_immediate`, `auto_release_stale`
|
|
302
|
+
- Add `cleanupStaleClaims()` for automatic stale claim cleanup
|
|
303
|
+
- Add PostToolUse hook to remind auto-release after Edit/Write
|
|
304
|
+
|
|
305
|
+
### v0.7.0
|
|
306
|
+
|
|
307
|
+
- Add priority system for claims (0-100 with levels: critical/high/normal/low)
|
|
308
|
+
- Add claim queue system (`collab_queue_join`, `collab_queue_leave`, `collab_queue_list`)
|
|
309
|
+
- Add notification system (`collab_notifications_list`, `collab_notifications_mark_read`)
|
|
310
|
+
- Add audit history tracking (`collab_history_list`)
|
|
311
|
+
- Add `collab_claim_update_priority` for escalating urgent work
|
|
312
|
+
|
|
284
313
|
### v0.6.0
|
|
285
314
|
|
|
286
315
|
- Optimize database queries with composite indexes
|