@knowsuchagency/fulcrum 4.2.1 → 4.3.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 +16 -12
- package/bin/fulcrum.js +680 -337
- package/package.json +1 -1
- package/server/index.js +54750 -52242
package/README.md
CHANGED
|
@@ -20,19 +20,19 @@ 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
|
-
- **
|
|
23
|
+
- **Skills-First Architecture** — Agents discover capabilities through skills and the `fulcrum api` CLI. MCP available for clients that support it.
|
|
24
24
|
|
|
25
|
-
##
|
|
25
|
+
## Skills-First Architecture
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Fulcrum's capabilities are exposed through skills and a unified CLI:
|
|
28
28
|
|
|
29
|
-
- **100+
|
|
30
|
-
- **
|
|
29
|
+
- **`fulcrum api` CLI** — Resource/action CLI to all 100+ API endpoints. `fulcrum api tools` prints a compact reference (~2K tokens) for context injection
|
|
30
|
+
- **Skills for Claude Code** — The Fulcrum skill teaches agents how to use `current-task`, notifications, config, and the API
|
|
31
|
+
- **MCP for other clients** — Claude Desktop, OpenCode, and other MCP-compatible agents can use the full MCP server
|
|
32
|
+
- **No context bloat** — Skills load on demand; `fulcrum api tools` replaces ~45K tokens of MCP definitions with ~2K tokens
|
|
31
33
|
- **Integrated assistant** — Built-in AI assistant with full context of your tasks, projects, and apps
|
|
32
|
-
- **External agent support** — Connect Claude Desktop, Clawdbot, or any MCP-compatible agent
|
|
33
|
-
- **No context bloat** — Agents discover and use only the tools they need
|
|
34
34
|
|
|
35
|
-
Whether you use
|
|
35
|
+
Whether you use Claude Code with skills, Claude Desktop with MCP, or any other agent, Fulcrum provides seamless access to your entire workflow.
|
|
36
36
|
|
|
37
37
|
## Proactive Digital Concierge
|
|
38
38
|
|
|
@@ -250,9 +250,9 @@ fulcrum opencode install # Install plugin + MCP server
|
|
|
250
250
|
fulcrum opencode uninstall # Remove both
|
|
251
251
|
```
|
|
252
252
|
|
|
253
|
-
##
|
|
253
|
+
## Skills & API
|
|
254
254
|
|
|
255
|
-
|
|
255
|
+
Fulcrum exposes 100+ API endpoints that agents access through skills and the `fulcrum api` CLI:
|
|
256
256
|
|
|
257
257
|
| Category | Description |
|
|
258
258
|
|----------|-------------|
|
|
@@ -273,9 +273,9 @@ Both plugins include an MCP server with 100+ tools:
|
|
|
273
273
|
| **Jobs** | List, create, update, delete, enable/disable, and run systemd timers and launchd jobs |
|
|
274
274
|
| **Assistant** | Send messages via channels (WhatsApp, Discord, Telegram, Slack, Gmail); query sweep history |
|
|
275
275
|
|
|
276
|
-
Use `
|
|
276
|
+
Use `fulcrum api tools` for a compact reference of all resources and actions, or `fulcrum api routes --search <keyword>` for detailed route discovery.
|
|
277
277
|
|
|
278
|
-
For Claude Desktop, add to your `claude_desktop_config.json`:
|
|
278
|
+
For Claude Desktop (MCP), add to your `claude_desktop_config.json`:
|
|
279
279
|
|
|
280
280
|
```json
|
|
281
281
|
{
|
|
@@ -353,6 +353,10 @@ fulcrum down # Stop server
|
|
|
353
353
|
fulcrum status # Check server status
|
|
354
354
|
fulcrum doctor # Check all dependencies
|
|
355
355
|
fulcrum mcp # Start MCP server (stdio)
|
|
356
|
+
fulcrum api tools # Compact tool reference (~2K tokens)
|
|
357
|
+
fulcrum api tasks list --search bug # Resource/action syntax
|
|
358
|
+
fulcrum api GET /api/tasks # Raw HTTP mode (backward compat)
|
|
359
|
+
fulcrum api routes # List API routes by category
|
|
356
360
|
```
|
|
357
361
|
|
|
358
362
|
### Current Task (auto-detected from worktree)
|