Files
OpenClaw-bot-review/app/api/ingest-usage/route.ts
T
Faisal C f59116866f feat: productionize self-improvement and R&D council workflows
- add canonical self-improvement/R&D Council data helpers, APIs, and tests

- persist council decisions, evidence telemetry, and work-order handoff

- harden operator UI states and require operator token by default

- ignore local R&D runtime artifacts
2026-04-30 21:43:45 -05:00

6 lines
191 B
TypeScript

import { runSelfImprovementCommand } from "../self-improvement-command";
export async function POST(request: Request) {
return runSelfImprovementCommand("ingest-usage" as any, request);
}