Intelligence

Artifacts

Browse the repository, read documents, and manage the governance folders. Source, runtime, and infrastructure are read-only.

Repository
README.md
CONSTITUTION_COMPLIANCE_AUDIT_V1.mdREADME.md
repositories/aaf-holdings/hq01/lib/workers/config.ts
518 B
import path from "node:path";
import { CONTENT_ROOT } from "@/lib/content/config";

/**
 * Workers (PASS M7): templates are execution blueprints; instances are the
 * ephemeral records of an assignment instantiating a template, running through
 * the existing Claude engine, and terminating. No persistent agents.
 */
export const WORKERS_ROOT = path.join(CONTENT_ROOT, "workers");
export const TEMPLATES_ROOT = path.join(WORKERS_ROOT, "templates");
export const INSTANCES_ROOT = path.join(WORKERS_ROOT, "instances");

root · /srv/aaf