Supervised action bridge between Claude Code and the host system. Server accepts structured action requests, applies per-action policies (auto-accept/auto-deny/queue), and executes approved actions via typed handlers. Client provides CLI and module interfaces for calling the API. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
659 B
JavaScript
23 lines
659 B
JavaScript
// Conduit client module — import this when using conduit programmatically.
|
|
// Designed for use by Claude or other tools that want to call conduit actions.
|
|
|
|
const BASE_URL = process.env.CONDUIT_URL || "http://localhost:3333";
|
|
|
|
export async function callAction(action, params = {}) {
|
|
const res = await fetch(`${BASE_URL}/action`, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ action, ...params }),
|
|
});
|
|
return res.json();
|
|
}
|
|
|
|
export async function listActions() {
|
|
return callAction("list-actions");
|
|
}
|
|
|
|
export async function getQueue() {
|
|
const res = await fetch(`${BASE_URL}/queue`);
|
|
return res.json();
|
|
}
|