feat(plugins): make CCAM installable straight from a Claude Code plugin

Adds a root `ccam` plugin (`.claude-plugin/plugin.json`, `"source": "./"`) so
`/plugin marketplace add` + `/plugin install ccam@...` is enough on a machine
with nothing but Claude Code: no clone, no npm run setup, no manual npm start.

- scripts/plugin-bootstrap.js: SessionStart hook. Fast-path exit, Node >=22.5
  gate (node:sqlite), mkdir lock with stale reclaim, deps installed into
  ~/.claude/agent-dashboard/runtime/ (never the plugin cache), legacy
  checkout-hook cleanup (backed up), ~/.local/bin/ccam launcher, eager UI
  build so client routes like /run work immediately, detached server spawn.
- scripts/plugin-open.js, scripts/plugin-doctor.js: /ccam-open, /ccam-doctor.
- server/index.js: DASHBOARD_CLIENT_DIST override (plugin cache is read-only).
- mcp/build/ is committed (plugin MCP servers start before any bootstrap could
  build them) and kept honest by scripts/check-mcp-build.js (content hash,
  not mtime), enforced by pre-commit when mcp/src changes.
- plugins/ccam-dashboard/.mcp.json moved under plugins/ccam/ with a working
  ${CLAUDE_PLUGIN_ROOT} path (the old relative path never resolved from a
  marketplace-cached subdir).
- Docs: README, INSTALL, SETUP, ARCHITECTURE, CLAUDE.md, docs/PLUGINS.md,
  docs/MCP.md, docs/CLI.md, docs/HOOKS.md.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-08-10 16:05:37 +07:00
parent 5a793e70cc
commit 8a82895c65
59 changed files with 5982 additions and 44 deletions
+270
View File
@@ -0,0 +1,270 @@
/**
* @file tool-collector.ts
* @description This module defines the collectAllTools function, which is responsible for collecting and registering all tool handlers available in the MCP application. The function takes the application configuration, a dashboard API client, and a logger as arguments, and returns an array of ToolEntry objects representing each registered tool. The tools cover various domains such as observability, session management, agent management, event handling, pricing, and maintenance. This collector is used in REPL mode to allow direct invocation of tools without requiring an MCP Server instance.
* @author Nguyễn Ngọc Trí Vĩ <vinnt@smartgift.vn>
*/
/* =============================================================================
* MODULE_GUIDE — extended in-file reference (comments only; safe to read, never executed)
* =============================================================================
* **Purpose:** Dashboard module consumed by the React client, MCP tools, or desktop shell depending on deployment mode.
*
* ## Design constraints
* - Local-first: no telemetry leaves the machine unless the user configures webhooks.
* - Fail-safe hooks path on the server must never block Claude Code; UI mirrors that
* philosophy by degrading gracefully (empty states, stale badges, reconnect loops).
* - Destructive flows stay behind explicit confirmation modals and server-side gates.
* - Internationalization: user-visible strings belong in i18n JSON, not literals here.
*
* ## Remote data & SSH
* Remote Data Sources let operators aggregate multiple machines. SSH entries describe
* how to reach a peer dashboard; the global data scope (`dataScope.ts`) narrows every
* scoped GET via `?sources=`. Health checks and import history surface in Settings.
*
* ## Observability
* Prometheus scrapes `GET /api/metrics` (see `monitoring/`). Grafana ships four
* provisioned boards (overview, sessions, tools, alerts). Native npm scripts and
* Docker Compose profiles are documented in `monitoring/README.md`.
*
* ## Internal dependencies
* - `../config/app-config.js`
* - `../clients/dashboard-api-client.js`
* - `../core/logger.js`
* - `../core/tool-registry.js`
* - `../policy/tool-guards.js`
* - `../tools/schemas.js`
*
* ## Public surface
* - `collectAllTools` — exported API; see TSDoc on the symbol for behavior.
*
* ## Testing pointers
* - Prefer colocated `__tests__` with Vitest + Testing Library for UI.
* - Server contract changes require `npm run test:server` and OpenAPI sync.
* - MCP edits: `npm run mcp:typecheck` and `npm run mcp:build`.
*
* ## Related docs
* - `ARCHITECTURE.md` — hooks → API → SQLite → WebSocket → UI pipeline.
* - `docs/API.md` — REST reference.
* - `.claude/skills/file-headers/` — mandatory `@author` header policy.
* ============================================================================= */
/* -----------------------------------------------------------------------------
* EXPORT CATALOG — quick index of symbols defined below (documentation only).
* -----------------------------------------------------------------------------
* **collectAllTools**
* Part of this module's public contract. Downstream imports should treat
* the signature and return type as stable unless release notes say otherwise.
* When behavior changes, update the `@file` overview and relevant tests.
*
* ----------------------------------------------------------------------------- */
import { createCollectorRegistrar, } from "../core/tool-registry.js";
import { assertMutationsEnabled, assertDestructiveEnabled } from "../policy/tool-guards.js";
import { z } from "zod";
/**
* Collect all tool handlers without requiring an MCP Server instance.
* Used by REPL mode to invoke tools directly.
*
* A hand-maintained, server-less mirror of `tools/index.ts`'s
* `registerAllTools`/`tools/domains/*.ts`: it re-declares the same 29
* `dashboard_*` tools using {@link createCollectorRegistrar} instead of
* {@link createToolRegistrar}, so no `McpServer` or MCP protocol overhead is
* needed — the REPL calls handlers directly and renders results with its
* own formatter. Since this duplicates rather than imports the domain
* modules' definitions, a change to a tool's args/defaults/endpoint must be
* mirrored here by hand. `index.ts`'s HTTP startup also calls this once,
* purely for an accurate startup-banner tool count — each HTTP/SSE session
* still gets its own protocol-registered tools via `buildServer`.
* @param logger Unused here — {@link createCollectorRegistrar} doesn't wrap
* handlers in logging, so errors propagate as real exceptions to the REPL.
*/
export function collectAllTools(config, api, logger) {
const tools = [];
const register = createCollectorRegistrar(tools);
// ── Observability ───────────────────────────────────────────
register("dashboard_health_check", "Check health of the local Agent Dashboard API.", {}, async () => api.get("/api/health"));
register("dashboard_get_stats", "Get dashboard overview stats.", {}, async () => api.get("/api/stats"));
register("dashboard_get_analytics", "Get analytics summary.", {}, async () => api.get("/api/analytics"));
register("dashboard_get_system_info", "Get system info, DB stats, hook status.", {}, async () => api.get("/api/settings/info"));
register("dashboard_export_data", "Export complete dashboard data payload.", {}, async () => api.get("/api/settings/export"));
register("dashboard_get_operational_snapshot", "High-signal operational snapshot.", {
recent_events_limit: z.number().int().min(1).max(50).optional(),
active_sessions_limit: z.number().int().min(1).max(100).optional(),
active_agents_limit: z.number().int().min(1).max(200).optional(),
}, async (args) => {
const eventsLimit = args.recent_events_limit ?? 20;
const sessionsLimit = args.active_sessions_limit ?? 25;
const agentsLimit = args.active_agents_limit ?? 100;
const [stats, analytics, recentEvents, activeSessions, workingAgents, connectedAgents] = await Promise.all([
api.get("/api/stats"),
api.get("/api/analytics"),
api.get("/api/events", { query: { limit: eventsLimit, offset: 0 } }),
api.get("/api/sessions", {
query: { status: "active", limit: sessionsLimit, offset: 0 },
}),
api.get("/api/agents", { query: { status: "working", limit: agentsLimit, offset: 0 } }),
api.get("/api/agents", { query: { status: "connected", limit: agentsLimit, offset: 0 } }),
]);
return {
stats,
analytics,
recent_events: recentEvents,
active_sessions: activeSessions,
active_agents: { working: workingAgents, connected: connectedAgents },
generated_at: new Date().toISOString(),
};
});
// ── Sessions ────────────────────────────────────────────────
register("dashboard_list_sessions", "List sessions with optional filter.", {}, async (args) => {
return api.get("/api/sessions", {
query: {
limit: args.limit ?? 50,
offset: args.offset ?? 0,
status: args.status,
},
});
});
register("dashboard_get_session", "Get one session with agents and events.", {}, async (args) => {
return api.get(`/api/sessions/${encodeURIComponent(args.session_id)}`);
});
register("dashboard_create_session", "Create a new session record.", {}, async (args) => {
assertMutationsEnabled(config);
return api.post("/api/sessions", {
body: {
id: args.id,
name: args.name,
cwd: args.cwd,
model: args.model,
metadata: args.metadata,
},
});
});
register("dashboard_update_session", "Update session metadata or status.", {}, async (args) => {
assertMutationsEnabled(config);
return api.patch(`/api/sessions/${encodeURIComponent(args.session_id)}`, {
body: {
name: args.name,
status: args.status,
ended_at: args.ended_at,
metadata: args.metadata,
},
});
});
// ── Agents ──────────────────────────────────────────────────
register("dashboard_list_agents", "List agents with filters.", {}, async (args) => {
return api.get("/api/agents", {
query: {
limit: args.limit ?? 50,
offset: args.offset ?? 0,
status: args.status,
session_id: args.session_id,
},
});
});
register("dashboard_get_agent", "Get a single agent by ID.", {}, async (args) => {
return api.get(`/api/agents/${encodeURIComponent(args.agent_id)}`);
});
register("dashboard_create_agent", "Create a new agent in a session.", {}, async (args) => {
assertMutationsEnabled(config);
return api.post("/api/agents", {
body: {
id: args.id,
session_id: args.session_id,
name: args.name,
type: args.type,
subagent_type: args.subagent_type,
status: args.status,
task: args.task,
parent_agent_id: args.parent_agent_id,
metadata: args.metadata,
},
});
});
register("dashboard_update_agent", "Update agent lifecycle state.", {}, async (args) => {
assertMutationsEnabled(config);
return api.patch(`/api/agents/${encodeURIComponent(args.agent_id)}`, {
body: {
name: args.name,
status: args.status,
task: args.task,
current_tool: args.current_tool,
ended_at: args.ended_at,
metadata: args.metadata,
},
});
});
// ── Events ──────────────────────────────────────────────────
register("dashboard_list_events", "List events with optional session filter.", {}, async (args) => {
return api.get("/api/events", {
query: {
limit: args.limit ?? 50,
offset: args.offset ?? 0,
session_id: args.session_id,
},
});
});
register("dashboard_ingest_hook_event", "Ingest a Claude Code hook event.", {}, async (args) => {
assertMutationsEnabled(config);
return api.post("/api/hooks/event", { body: { hook_type: args.hook_type, data: args.data } });
});
// ── Pricing ─────────────────────────────────────────────────
register("dashboard_get_pricing_rules", "List all model pricing rules.", {}, async () => api.get("/api/pricing"));
register("dashboard_get_total_cost", "Get total usage cost.", {}, async () => api.get("/api/pricing/cost"));
register("dashboard_get_session_cost", "Get cost breakdown for one session.", {}, async (args) => {
return api.get(`/api/pricing/cost/${encodeURIComponent(args.session_id)}`);
});
register("dashboard_upsert_pricing_rule", "Create or update a pricing rule.", {}, async (args) => {
assertMutationsEnabled(config);
return api.put("/api/pricing", {
body: {
model_pattern: args.model_pattern,
display_name: args.display_name,
input_per_mtok: args.input_per_mtok ?? 0,
output_per_mtok: args.output_per_mtok ?? 0,
cache_read_per_mtok: args.cache_read_per_mtok ?? 0,
cache_write_per_mtok: args.cache_write_per_mtok ?? 0,
},
});
});
register("dashboard_delete_pricing_rule", "Delete one pricing rule.", {}, async (args) => {
assertMutationsEnabled(config);
return api.delete(`/api/pricing/${encodeURIComponent(args.model_pattern)}`);
});
register("dashboard_reset_pricing_defaults", "Reset pricing rules to defaults.", {}, async () => {
assertMutationsEnabled(config);
return api.post("/api/settings/reset-pricing");
});
// ── Maintenance ─────────────────────────────────────────────
register("dashboard_cleanup_data", "Abandon stale sessions or purge old data.", {}, async (args) => {
assertMutationsEnabled(config);
const abandonHours = args.abandon_hours;
const purgeDays = args.purge_days;
if (!abandonHours && !purgeDays)
throw new Error("At least one of abandon_hours or purge_days is required.");
return api.post("/api/settings/cleanup", {
body: { abandon_hours: abandonHours, purge_days: purgeDays },
});
});
register("dashboard_reimport_history", "Re-import legacy Claude sessions.", {}, async () => {
assertMutationsEnabled(config);
return api.post("/api/settings/reimport");
});
register("dashboard_reinstall_hooks", "Reinstall Claude Code hooks.", {}, async () => {
assertMutationsEnabled(config);
return api.post("/api/settings/reinstall-hooks");
});
register("dashboard_clear_all_data", "Delete all data. Highly destructive.", {}, async (args) => {
assertDestructiveEnabled(config, args.confirmation_token);
return api.post("/api/settings/clear-data");
});
// ── Remote Data Sources ─────────────────────────────────────
register("dashboard_list_remote_sources", "List configured Remote Data Sources (SSH machines).", {}, async () => api.get("/api/remote-sources"));
register("dashboard_sync_remote_source", "Trigger an immediate SSH pull+import for one Remote Data Source.", {
source_id: z.string().min(1),
}, async (args) => {
assertMutationsEnabled(config);
return api.post(`/api/remote-sources/${encodeURIComponent(args.source_id)}/sync`);
});
register("dashboard_sync_all_remote_sources", "Trigger an immediate SSH pull+import for every enabled Remote Data Source.", {}, async () => {
assertMutationsEnabled(config);
return api.post("/api/remote-sources/sync-all");
});
return tools;
}