@knowsuchagency/fulcrum 4.7.3 → 4.7.5
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 +16 -5
- package/bin/fulcrum.js +775 -30
- package/dist/assets/{index-DgC7t5TZ.js → index-BdwPoeFx.js} +1 -1
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/server/index.js +5695 -5396
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ Fulcrum doesn't replace your tools—it gives you leverage over them. You config
|
|
|
20
20
|
- **Project Management** — Tasks with dependencies, due dates, time estimates, priority levels, recurrence, labels, and attachments. Visual kanban boards.
|
|
21
21
|
- **Production Deployment** — Docker Compose with automatic Traefik routing and Cloudflare DNS/tunnels.
|
|
22
22
|
- **Agent Memory** — Persistent knowledge store with full-text search. Agents remember across sessions.
|
|
23
|
+
- **Agent Coordination** — Filesystem-based message board for coordinating agents across worktrees. Claim ports, share status, avoid conflicts.
|
|
23
24
|
- **MCP-First Architecture** — 100+ tools exposed via Model Context Protocol. Agents discover what they need.
|
|
24
25
|
|
|
25
26
|
## MCP-First Architecture
|
|
@@ -236,7 +237,7 @@ The Fulcrum plugin enables seamless integration:
|
|
|
236
237
|
- **Automatic Status Sync** — Task moves to "In Review" when Claude stops, "In Progress" when you respond
|
|
237
238
|
- **Session Continuity** — Sessions tied to task IDs
|
|
238
239
|
- **MCP Server** — Task management tools available directly to Claude
|
|
239
|
-
- **Slash Commands** — `/review`, `/pr`, `/notify`, `/linear`, `/task-info`
|
|
240
|
+
- **Slash Commands** — `/review`, `/pr`, `/notify`, `/linear`, `/task-info`, `/board`
|
|
240
241
|
|
|
241
242
|
```bash
|
|
242
243
|
claude plugin marketplace add knowsuchagency/fulcrum
|
|
@@ -272,6 +273,7 @@ Both plugins include an MCP server with 100+ tools:
|
|
|
272
273
|
| **Gmail** | List Google accounts, manage Gmail drafts, send emails |
|
|
273
274
|
| **Jobs** | List, create, update, delete, enable/disable, and run systemd timers and launchd jobs |
|
|
274
275
|
| **Assistant** | Send messages via channels (WhatsApp, Discord, Telegram, Slack, Gmail); query sweep history |
|
|
276
|
+
| **Agent Coordination** | Read/post to coordination board; claim and check shared resources (ports, services) |
|
|
275
277
|
|
|
276
278
|
Use `search_tools` to discover available tools by keyword or category.
|
|
277
279
|
|
|
@@ -353,10 +355,8 @@ fulcrum down # Stop server
|
|
|
353
355
|
fulcrum status # Check server status
|
|
354
356
|
fulcrum doctor # Check all dependencies
|
|
355
357
|
fulcrum mcp # Start MCP server (stdio)
|
|
356
|
-
fulcrum
|
|
357
|
-
fulcrum
|
|
358
|
-
fulcrum api GET /api/tasks # Raw HTTP mode (backward compat)
|
|
359
|
-
fulcrum api routes # List API routes by category
|
|
358
|
+
fulcrum board read # Read agent coordination board
|
|
359
|
+
fulcrum board post "msg" --type claim --tag port:5173 # Claim a resource
|
|
360
360
|
```
|
|
361
361
|
|
|
362
362
|
### Current Task (auto-detected from worktree)
|
|
@@ -379,6 +379,17 @@ fulcrum opencode install # Install OpenCode plugin + MCP server
|
|
|
379
379
|
fulcrum opencode uninstall # Remove plugin + MCP server
|
|
380
380
|
```
|
|
381
381
|
|
|
382
|
+
### Agent Coordination
|
|
383
|
+
|
|
384
|
+
```bash
|
|
385
|
+
fulcrum board read # Read recent messages (last 1h)
|
|
386
|
+
fulcrum board read --type claim # Filter by type
|
|
387
|
+
fulcrum board post "msg" --type claim --tag port:5173 # Claim a resource
|
|
388
|
+
fulcrum board check port:5173 # Check if resource is claimed
|
|
389
|
+
fulcrum board release-all # Release all your claims
|
|
390
|
+
fulcrum board clean # Remove expired messages
|
|
391
|
+
```
|
|
392
|
+
|
|
382
393
|
### Notifications
|
|
383
394
|
|
|
384
395
|
```bash
|