@conclave-ai/core
v0.12.19
Published
Conclave AI core — Agent interface, council orchestration, self-evolve substrate, efficiency gate.
Readme
@conclave-ai/core
Agent interface, council orchestration, self-evolve substrate, and efficiency gate for Conclave AI.
Skeleton status: Agent / Council interfaces + Zod schemas only. Mastra
graph, memory substrate, and efficiency gate land in subsequent PRs.
Install
pnpm add @conclave-ai/coreUsage
import { Council, type Agent, type ReviewContext } from "@conclave-ai/core";
const council = new Council({ agents: [claudeAgent, openaiAgent] });
const ctx: ReviewContext = {
diff: "...",
repo: "acme/my-app",
pullNumber: 42,
newSha: "abc123",
};
const outcome = await council.deliberate(ctx);