@cleocode/cleo 2026.3.15 → 2026.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +4037 -1776
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +3894 -1643
- package/dist/mcp/index.js.map +4 -4
- package/drizzle/20260306193138_young_morbius/migration.sql +22 -0
- package/drizzle/20260306193138_young_morbius/snapshot.json +3162 -0
- package/drizzle/20260306194959_sticky_captain_flint/migration.sql +23 -0
- package/drizzle/20260306194959_sticky_captain_flint/snapshot.json +3388 -0
- package/package.json +3 -2
- package/schemas/config.schema.json +23 -0
- package/schemas/project-context.schema.json +3 -3
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
CREATE TABLE `pipeline_manifest` (
|
|
2
|
+
`id` text PRIMARY KEY,
|
|
3
|
+
`session_id` text,
|
|
4
|
+
`task_id` text,
|
|
5
|
+
`epic_id` text,
|
|
6
|
+
`type` text NOT NULL,
|
|
7
|
+
`content` text NOT NULL,
|
|
8
|
+
`content_hash` text,
|
|
9
|
+
`status` text DEFAULT 'active' NOT NULL,
|
|
10
|
+
`distilled` integer DEFAULT false NOT NULL,
|
|
11
|
+
`brain_obs_id` text,
|
|
12
|
+
`source_file` text,
|
|
13
|
+
`metadata_json` text,
|
|
14
|
+
`created_at` text NOT NULL,
|
|
15
|
+
`archived_at` text
|
|
16
|
+
);
|
|
17
|
+
--> statement-breakpoint
|
|
18
|
+
CREATE INDEX `idx_pipeline_manifest_task_id` ON `pipeline_manifest` (`task_id`);--> statement-breakpoint
|
|
19
|
+
CREATE INDEX `idx_pipeline_manifest_session_id` ON `pipeline_manifest` (`session_id`);--> statement-breakpoint
|
|
20
|
+
CREATE INDEX `idx_pipeline_manifest_distilled` ON `pipeline_manifest` (`distilled`);--> statement-breakpoint
|
|
21
|
+
CREATE INDEX `idx_pipeline_manifest_status` ON `pipeline_manifest` (`status`);--> statement-breakpoint
|
|
22
|
+
CREATE INDEX `idx_pipeline_manifest_content_hash` ON `pipeline_manifest` (`content_hash`);
|