@knowsuchagency/fulcrum 4.14.3 → 5.0.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 +1 -16
- package/bin/fulcrum.js +5 -573
- package/dist/assets/{index-BRRVbzA_.js → index-C0A-0TCb.js} +1 -1
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/server/index.js +937 -1214
package/README.md
CHANGED
|
@@ -20,7 +20,6 @@ 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.
|
|
24
23
|
- **MCP-First Architecture** — 100+ tools exposed via Model Context Protocol. Agents discover what they need.
|
|
25
24
|
|
|
26
25
|
## MCP-First Architecture
|
|
@@ -237,7 +236,7 @@ The Fulcrum plugin enables seamless integration:
|
|
|
237
236
|
- **Automatic Status Sync** — Task moves to "In Review" when Claude stops, "In Progress" when you respond
|
|
238
237
|
- **Session Continuity** — Sessions tied to task IDs
|
|
239
238
|
- **MCP Server** — Task management tools available directly to Claude
|
|
240
|
-
- **Slash Commands** — `/review`, `/pr`, `/notify`, `/linear`, `/task-info
|
|
239
|
+
- **Slash Commands** — `/review`, `/pr`, `/notify`, `/linear`, `/task-info`
|
|
241
240
|
|
|
242
241
|
```bash
|
|
243
242
|
claude plugin marketplace add knowsuchagency/fulcrum
|
|
@@ -273,7 +272,6 @@ Both plugins include an MCP server with 100+ tools:
|
|
|
273
272
|
| **Gmail** | List Google accounts, manage Gmail drafts, send emails |
|
|
274
273
|
| **Jobs** | List, create, update, delete, enable/disable, and run systemd timers and launchd jobs |
|
|
275
274
|
| **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) |
|
|
277
275
|
|
|
278
276
|
Use `search_tools` to discover available tools by keyword or category.
|
|
279
277
|
|
|
@@ -355,8 +353,6 @@ fulcrum down # Stop server
|
|
|
355
353
|
fulcrum status # Check server status
|
|
356
354
|
fulcrum doctor # Check all dependencies
|
|
357
355
|
fulcrum mcp # Start MCP server (stdio)
|
|
358
|
-
fulcrum board read # Read agent coordination board
|
|
359
|
-
fulcrum board post "msg" --type claim --tag port:5173 # Claim a resource
|
|
360
356
|
```
|
|
361
357
|
|
|
362
358
|
### Current Task (auto-detected from worktree)
|
|
@@ -379,17 +375,6 @@ fulcrum opencode install # Install OpenCode plugin + MCP server
|
|
|
379
375
|
fulcrum opencode uninstall # Remove plugin + MCP server
|
|
380
376
|
```
|
|
381
377
|
|
|
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
|
-
|
|
393
378
|
### Notifications
|
|
394
379
|
|
|
395
380
|
```bash
|