@crewx/sdk 0.9.0-rc.78 → 0.9.0-rc.79
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/context-budget/continuity.d.ts +9 -1
- package/dist/context-budget/index.d.ts +2 -1
- package/dist/conversation/sqlite-provider.d.ts +2 -1
- package/dist/conversation/types.d.ts +13 -0
- package/dist/esm/index.js +113 -106
- package/dist/esm/plugins/index.js +113 -113
- package/dist/esm/repository/index.js +15 -15
- package/dist/facade/Crewx.d.ts +3 -3
- package/dist/highlight/thread-highlight-prompt.d.ts +1 -0
- package/dist/highlight/thread-highlighter.d.ts +12 -1
- package/dist/index.browser.js +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +114 -107
- package/dist/layout/types.d.ts +2 -0
- package/dist/plugins/index.js +113 -113
- package/dist/repository/index.js +15 -15
- package/dist/repository/thread-history.repository.d.ts +1 -0
- package/package.json +1 -1
- package/templates/agents/default.yaml +17 -10
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import*as
|
|
1
|
+
import*as ct from'path';import ct__default,{join,dirname}from'path';import {fileURLToPath}from'url';import {existsSync,mkdirSync,writeFileSync,appendFileSync,readFileSync}from'fs';import rr,{homedir}from'os';import {createHash,randomBytes}from'crypto';import {sql,eq,desc,and,isNull,lt,or as or$1,notLike,asc,like,inArray,gte,isNotNull,ne}from'drizzle-orm';import {sqliteTable,text,integer,real,index,check,uniqueIndex,unique,primaryKey}from'drizzle-orm/sqlite-core';var Yt=(n=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(n,{get:(t,e)=>(typeof require<"u"?require:t)[e]}):n)(function(n){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+n+'" is not supported')});var Vn=()=>fileURLToPath(import.meta.url),Xn=()=>ct__default.dirname(Vn()),k=Xn();var Tt=class{detach(t){}};function je(n){let t=e=>String(e).padStart(2,"0");return `${n.getFullYear()}${t(n.getMonth()+1)}${t(n.getDate())}T${t(n.getHours())}${t(n.getMinutes())}${t(n.getSeconds())}`}function fe(n){let t=n.toISOString();return `${t.slice(0,10)} ${t.slice(11,19)} UTC`}var me=class extends Tt{name="file-logger";unsubs=[];logFiles=new Map;logsDir;version;constructor(t){super(),this.logsDir=join(t?.workspaceRoot??process.cwd(),".crewx","logs"),this.version=t?.version??"unknown";}attach(t){this.unsubs.push(t.on("task:start",e=>{try{existsSync(this.logsDir)||mkdirSync(this.logsDir,{recursive:!0});let r=je(e.timestamp),s=join(this.logsDir,`${r}_${e.traceId}.log`);this.logFiles.set(e.traceId,s);let i=`=== TASK LOG: ${e.traceId} ===
|
|
2
2
|
CrewX Version: ${this.version}
|
|
3
3
|
Mode: ${e.mode}
|
|
4
4
|
Agent: ${e.agentRef}
|
|
5
|
-
Started: ${
|
|
5
|
+
Started: ${fe(e.timestamp)}
|
|
6
6
|
Message: ${e.message}
|
|
7
7
|
|
|
8
|
-
`;writeFileSync(i,
|
|
9
|
-
`,"utf8");}catch{}}),t.on("task:end",e=>{try{let r=this.logFiles.get(e.traceId);if(!r)return;let
|
|
10
|
-
[${
|
|
11
|
-
`;appendFileSync(r,a,"utf8"),this.logFiles.delete(e.traceId);}catch{}}));}detach(t){this.unsubs.forEach(e=>e()),this.unsubs=[],this.logFiles.clear();}};function
|
|
8
|
+
`;writeFileSync(s,i,{encoding:"utf8",mode:384});}catch{}}),t.on("task:output",e=>{try{let r=this.logFiles.get(e.traceId);if(!r)return;let s=new Date().toISOString();appendFileSync(r,`[${s}] STDOUT: ${e.output}
|
|
9
|
+
`,"utf8");}catch{}}),t.on("task:end",e=>{try{let r=this.logFiles.get(e.traceId);if(!r)return;let s=fe(new Date),i=e.error?`failed: ${e.error.message}`:"completed successfully",a=`[${s}] INFO: Task ${i} in ${e.durationMs}ms
|
|
10
|
+
[${s}] INFO: Process closed with exit code: ${e.error?1:0}
|
|
11
|
+
`;appendFileSync(r,a,"utf8"),this.logFiles.delete(e.traceId);}catch{}}));}detach(t){this.unsubs.forEach(e=>e()),this.unsubs=[],this.logFiles.clear();}};function tr(n){let t=ct.resolve(n);return process.platform==="win32"&&(t=t.replace(/\\/g,"/"),t=t.replace(/^([A-Z]):/,(e,r)=>`${r.toLowerCase()}:`)),t.length>1&&!/^[a-zA-Z]:\/$/.test(t)&&(t=t.replace(/\/+$/,"")),t}function Ge(n){let t=tr(n);return createHash("sha256").update(t).digest("hex")}var u=class extends Error{code;cause;constructor(t,e,r){super(e),this.name="RepositoryError",this.code=t,this.cause=r,Object.setPrototypeOf(this,new.target.prototype);}};var Y=class{resolveDbPath(){return process.env.CREWX_DB?process.env.CREWX_DB:process.env.CREWX_TRACES_DB?process.env.CREWX_TRACES_DB:join(rr.homedir(),".crewx","crewx.db")}resolveDbPaths(){return [this.resolveDbPath()]}isMissingTableError(t){return t instanceof Error&&/no such table:/i.test(t.message)}dbExists(t){return existsSync(t??this.resolveDbPath())}};var or=32*1024*1024;function A(n){let t=Yt("better-sqlite3"),{drizzle:e}=Yt("drizzle-orm/better-sqlite3"),r=new t(n);return r.exec("PRAGMA journal_mode = WAL"),r.exec(`PRAGMA journal_size_limit = ${or}`),r.exec("PRAGMA busy_timeout = 5000"),r.exec("PRAGMA foreign_keys = ON"),r.exec("PRAGMA analysis_limit = 400"),{db:e(r),runRaw:(s,i=[])=>r.prepare(s).run(...i),close:()=>r.close()}}var Ke=new Set,ir={agent_id:"TEXT",status:"TEXT DEFAULT 'running'",started_at:"TEXT",trace_id:"TEXT",parent_task_id:"TEXT",crewx_version:"TEXT",pid:"INTEGER",thread_id:"TEXT",workspace_id:"TEXT",workspace_ref:"TEXT",workspace_name:"TEXT",project_id:"TEXT",project_name:"TEXT",command:"TEXT"};function ke(n,t){return (n.get(`SELECT count(*) as cnt FROM sqlite_master WHERE type='table' AND name='${t}'`)?.cnt??0)>0}function ar(n,t){if(t>0||!ke(n,"tasks"))return;let e=n.all("PRAGMA table_info(tasks)"),r=new Set(e.map(s=>s.name));for(let[s,i]of Object.entries(ir))r.has(s)||n.run(`ALTER TABLE tasks ADD COLUMN ${s} ${i}`);}var dr={"0002_normalize_task_names":{workspace_name:"TEXT",project_name:"TEXT"},"0015_panoramic_gorilla_man":{project_id:"TEXT",workspace_id:"TEXT"},"0019_backfill_task_thread_ids":{command:"TEXT",thread_id:"TEXT"}};function cr(n,t,e){if(!ke(n,"__drizzle_migrations")||!ke(n,"tasks"))return;let r=n.all(e`SELECT hash FROM __drizzle_migrations`),s=new Set(r.map(a=>a.hash)),i=JSON.parse(readFileSync(ct__default.join(t,"meta/_journal.json"),"utf-8"));for(let a of i.entries){let d=dr[a.tag];if(!d)continue;let c=ct__default.join(t,`${a.tag}.sql`);if(!existsSync(c))continue;let l=readFileSync(c,"utf-8"),_=createHash("sha256").update(l).digest("hex");if(s.has(_))continue;let p=n.all("PRAGMA table_info(tasks)"),g=new Set(p.map(f=>f.name));for(let[f,x]of Object.entries(d))g.has(f)||(n.run(`ALTER TABLE tasks ADD COLUMN ${f} ${x}`),g.add(f));}}function lr(n,t,e){let r=n.all(e`SELECT hash FROM __drizzle_migrations`),s=new Set(r.map(a=>a.hash)),i=JSON.parse(readFileSync(ct__default.join(t,"meta/_journal.json"),"utf-8"));for(let a of i.entries){let d=ct__default.join(t,`${a.tag}.sql`);if(!existsSync(d))continue;let c=readFileSync(d,"utf-8"),l=createHash("sha256").update(c).digest("hex");if(s.has(l))continue;let _=/ALTER\s+TABLE\s+[`"]?(\w+)[`"]?\s+ADD\s+[`"]?(\w+)[`"]?/gi,p=[],g;for(;(g=_.exec(c))!==null;)p.push({table:g[1],column:g[2]});if(p.length===0||!c.split(/-->\s*statement-breakpoint/).map(O=>O.trim()).filter(Boolean).every(O=>/^ALTER\s+TABLE\s+.+\s+ADD\s+/i.test(O)))continue;p.every(({table:O,column:N})=>n.all(`PRAGMA table_info("${O}")`).some(j=>j.name===N))&&n.run(e`INSERT INTO __drizzle_migrations (hash, created_at) VALUES (${l}, ${a.when})`);}}function ur(n){let{migrate:t}=Yt("drizzle-orm/better-sqlite3/migrator"),{sql:e}=Yt("drizzle-orm"),r=[ct__default.join(k,"../migrations"),ct__default.join(k,"migrations"),ct__default.join(k,"../../../../drizzle/migrations"),ct__default.join(process.cwd(),"drizzle/migrations")],s=r.find(l=>existsSync(ct__default.join(l,"meta/_journal.json")));if(!s)throw new Error(`migrations folder not found. Searched:
|
|
12
12
|
${r.join(`
|
|
13
|
-
`)}`);let o=n.get(e`SELECT count(*) as cnt FROM sqlite_master WHERE type='table' AND name='__drizzle_migrations'`),a=0;o?.cnt&&(a=n.get(e`SELECT count(*) as cnt FROM __drizzle_migrations`)?.cnt??0),zn(n,a),o?.cnt&&(Gn(n,i,e),Kn(n,i,e)),t(n,{migrationsFolder:i});let c=(n.get(e`SELECT count(*) as cnt FROM __drizzle_migrations`)?.cnt??0)-a;if(c>0){let l=o?.cnt?"Database migrated":"Database initialized";console.error(`[crewx] ${l} (${c} migration${c>1?"s":""} applied).`);}}function gt(n,t){$e.has(t)||(Xn(n),$e.add(t));}var Rt=sqliteTable("workspaces",{id:text("id").primaryKey(),slug:text("slug").notNull().unique(),name:text("name").notNull(),workspace_path:text("workspace_path"),description:text("description"),is_active:integer("is_active").notNull().default(1),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()});var s=sqliteTable("tasks",{id:text("id").primaryKey(),agent_id:text("agent_id").notNull(),user_id:text("user_id"),prompt:text("prompt").notNull(),mode:text("mode").notNull().default("execute"),status:text("status").notNull().default("running"),result:text("result"),error:text("error"),started_at:text("started_at").notNull(),completed_at:text("completed_at"),duration_ms:integer("duration_ms"),metadata:text("metadata"),workspace_id:text("workspace_id"),trace_id:text("trace_id"),parent_task_id:text("parent_task_id"),caller_agent_id:text("caller_agent_id"),model:text("model"),platform:text("platform").default("cli"),crewx_version:text("crewx_version"),input_tokens:integer("input_tokens").default(0),output_tokens:integer("output_tokens").default(0),cost_usd:real("cost_usd").default(0),pid:integer("pid"),rendered_prompt:text("rendered_prompt"),command:text("command"),coding_agent_command:text("coding_agent_command"),exit_code:integer("exit_code"),logs:text("logs"),log_storage:text("log_storage",{enum:["blob","events"]}).notNull().default("blob"),last_log_seq:integer("last_log_seq").notNull().default(0),log_revision:integer("log_revision").notNull().default(0),thread_id:text("thread_id"),workspace_ref:text("workspace_ref"),project_id:text("project_id"),project_ref:text("project_ref"),cached_input_tokens:integer("cached_input_tokens").default(0),run_epoch:integer("run_epoch").default(0)},n=>({log_storage_check:check("tasks_log_storage_ck",sql`${n.log_storage} IN ('blob', 'events')`),idx_tasks_agent_id:index("idx_tasks_agent_id").on(n.agent_id),idx_tasks_status:index("idx_tasks_status").on(n.status),idx_tasks_started_at:index("idx_tasks_started_at").on(n.started_at),idx_tasks_trace_id:index("idx_tasks_trace_id").on(n.trace_id),idx_tasks_parent_task_id:index("idx_tasks_parent_task_id").on(n.parent_task_id),idx_tasks_crewx_version:index("idx_tasks_crewx_version").on(n.crewx_version),idx_tasks_pid:index("idx_tasks_pid").on(n.pid),idx_tasks_thread_id:index("idx_tasks_thread_id").on(n.thread_id),idx_tasks_workspace_id:index("idx_tasks_workspace_id").on(n.workspace_id),idx_tasks_workspace_ref:index("idx_tasks_workspace_ref").on(n.workspace_ref),idx_tasks_project_id:index("idx_tasks_project_id").on(n.project_id),idx_tasks_ws_started:index("idx_tasks_ws_started").on(n.workspace_id,n.started_at)}));var Q=sqliteTable("task_log_events",{id:integer("id").primaryKey(),task_id:text("task_id").notNull().references(()=>s.id,{onDelete:"cascade"}),seq:integer("seq").notNull(),timestamp:text("timestamp").notNull(),level:text("level").notNull(),message:text("message").notNull()},n=>({taskSeqUnique:uniqueIndex("task_log_events_task_seq_uq").on(n.task_id,n.seq)}));var sr="json_extract(metadata, '$.threadTitle.state')",ir="json_extract(metadata, '$.threadTitle.priority')",p=sqliteTable("threads",{id:text("id").primaryKey(),workspace_id:text("workspace_id").references(()=>Rt.id,{onDelete:"set null"}),platform:text("platform").notNull().default("cli"),title:text("title"),first_message:text("first_message"),last_message:text("last_message"),message_count:integer("message_count").notNull().default(0),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull(),metadata:text("metadata"),title_locked:integer("title_locked").notNull().default(0),pinned:integer("pinned").notNull().default(0),starred:integer("starred").notNull().default(0)},n=>({idx_threads_updated_at:index("idx_threads_updated_at").on(n.updated_at),idx_threads_workspace_id:index("idx_threads_workspace_id").on(n.workspace_id),idx_threads_ws_updated:index("idx_threads_ws_updated").on(n.workspace_id,n.updated_at),idx_threads_title:index("idx_threads_title").on(n.title),idx_threads_workspace_thread_state:index("idx_threads_workspace_thread_state").on(n.workspace_id,sql.raw(sr)),idx_threads_workspace_thread_priority:index("idx_threads_workspace_thread_priority").on(n.workspace_id,sql.raw(ir))}));var dr=sqliteTable("spans",{id:text("id").primaryKey(),task_id:text("task_id").references(()=>s.id,{onDelete:"set null"}),parent_span_id:text("parent_span_id").references(()=>dr.id,{onDelete:"set null"}),name:text("name").notNull(),kind:text("kind").notNull().default("internal"),status:text("status").notNull().default("ok"),started_at:text("started_at").notNull(),completed_at:text("completed_at"),duration_ms:integer("duration_ms"),input:text("input"),output:text("output"),error:text("error"),attributes:text("attributes")},n=>({idx_spans_task_id:index("idx_spans_task_id").on(n.task_id),idx_spans_parent_span_id:index("idx_spans_parent_span_id").on(n.parent_span_id)}));sqliteTable("tool_calls",{id:text("id").primaryKey(),task_id:text("task_id").references(()=>s.id,{onDelete:"cascade"}),session_id:text("session_id"),tool_name:text("tool_name").notNull(),files:text("files"),input:text("input"),output:text("output"),duration_ms:integer("duration_ms"),timestamp:text("timestamp").notNull()},n=>({idx_tool_calls_task_id:index("idx_tool_calls_task_id").on(n.task_id),idx_tool_calls_tool_name:index("idx_tool_calls_tool_name").on(n.tool_name),idx_tool_calls_timestamp:index("idx_tool_calls_timestamp").on(n.timestamp)}));sqliteTable("thread_boxes",{id:text("id").primaryKey(),thread_id:text("thread_id").notNull().references(()=>p.id,{onDelete:"cascade"}),seq:integer("seq").notNull(),first_task_id:text("first_task_id").notNull(),mid_task_id:text("mid_task_id").notNull(),last_task_id:text("last_task_id").notNull(),task_count:integer("task_count").notNull(),summary:text("summary"),source_tokens:integer("source_tokens").notNull(),summary_tokens:integer("summary_tokens"),created_at:text("created_at").notNull()},n=>({idx_thread_boxes_thread_id:index("idx_thread_boxes_thread_id").on(n.thread_id),idx_thread_boxes_seq:index("idx_thread_boxes_seq").on(n.thread_id,n.seq),uniq_thread_boxes_thread_seq:unique().on(n.thread_id,n.seq)}));sqliteTable("request_logs",{id:text("id").primaryKey(),path:text("path").notNull(),method:text("method").notNull(),status_code:integer("status_code").notNull(),duration_ms:integer("duration_ms").notNull(),ip:text("ip"),request_headers:text("request_headers"),response_headers:text("response_headers"),request_body:text("request_body"),response_body:text("response_body"),query:text("query"),user_id:text("user_id"),project_id:text("project_id"),partition_key:text("partition_key").notNull(),timestamp:text("timestamp").notNull().default(sql`(datetime('now'))`),metadata:text("metadata")},n=>({idx_request_logs_timestamp:index("idx_request_logs_timestamp").on(n.timestamp),idx_request_logs_path:index("idx_request_logs_path").on(n.path),idx_request_logs_status_code:index("idx_request_logs_status_code").on(n.status_code),idx_request_logs_partition_key:index("idx_request_logs_partition_key").on(n.partition_key)}));sqliteTable("usage_limit_snapshots",{id:text("id").primaryKey(),provider:text("provider").notNull(),account_ref:text("account_ref").notNull().default("default"),limit_window:text("limit_window").notNull(),bucket_start:text("bucket_start").notNull(),captured_at:text("captured_at").notNull(),used_percent:integer("used_percent").notNull(),remaining_percent:integer("remaining_percent").notNull(),resets_at:text("resets_at"),source:text("source").notNull(),metadata:text("metadata")},n=>({uniq_usage_limit_snapshots_bucket:uniqueIndex("uniq_usage_limit_snapshots_bucket").on(n.provider,n.account_ref,n.limit_window,n.bucket_start),idx_usage_limit_snapshots_window_bucket:index("idx_usage_limit_snapshots_window_bucket").on(n.limit_window,n.bucket_start),idx_usage_limit_snapshots_provider_window_bucket:index("idx_usage_limit_snapshots_provider_window_bucket").on(n.provider,n.limit_window,n.bucket_start)}));sqliteTable("usage_reports",{id:text("id").primaryKey(),workspace_id:text("workspace_id").notNull(),month:text("month").notNull(),generated_at:text("generated_at").notNull(),source_range:text("source_range").notNull(),tier:text("tier").notNull(),total_tokens:integer("total_tokens").notNull(),total_cost_usd:real("total_cost_usd").notNull(),payload:text("payload").notNull(),payload_hash:text("payload_hash"),signature:text("signature"),signed_at:text("signed_at"),issuer:text("issuer")},n=>({uniq_usage_reports_ws_month:uniqueIndex("uniq_usage_reports_ws_month").on(n.workspace_id,n.month)}));sqliteTable("notifications",{id:text("id").primaryKey(),workspace_id:text("workspace_id").notNull(),agent_id:text("agent_id"),task_id:text("task_id"),thread_id:text("thread_id"),source:text("source").notNull().default("agent"),level:text("level").notNull().default("info"),title:text("title").notNull(),body:text("body"),target_user_id:text("target_user_id"),created_at:text("created_at").notNull(),metadata:text("metadata")},n=>({idx_notifications_ws_created:index("idx_notifications_ws_created").on(n.workspace_id,sql`${n.created_at} DESC`)}));sqliteTable("notification_reads",{notification_id:text("notification_id").notNull(),user_id:text("user_id").notNull(),read_at:text("read_at").notNull()},n=>({pk:primaryKey({columns:[n.notification_id,n.user_id]})}));sqliteTable("agent_suggestions",{id:text("id").primaryKey(),workspace_id:text("workspace_id").notNull(),agent_id:text("agent_id").notNull(),task_id:text("task_id"),type:text("type").notNull(),status:text("status").notNull().default("pending"),payload:text("payload").notNull(),applied_commit_sha:text("applied_commit_sha"),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()},n=>({idx_agent_suggestions_ws_agent:index("idx_agent_suggestions_ws_agent").on(n.workspace_id,n.agent_id),idx_agent_suggestions_ws_created:index("idx_agent_suggestions_ws_created").on(n.workspace_id,n.created_at)}));sqliteTable("ui_instances",{id:text("id").primaryKey().notNull(),definition_id:text("definition_id").notNull(),definition_version:integer("definition_version").notNull(),definition_hash:text("definition_hash").notNull(),workspace_id:text("workspace_id").notNull(),thread_id:text("thread_id").notNull(),anchor_task_id:text("anchor_task_id"),domain_ref_json:text("domain_ref_json").notNull(),state_json:text("state_json").notNull(),revision:integer("revision").notNull().default(0),status:text("status").notNull().default("active"),granted_capabilities_json:text("granted_capabilities_json").notNull().default("[]"),created_at:integer("created_at").notNull(),updated_at:integer("updated_at").notNull()},n=>({idCheck:check("ui_instances_id_ck",sql`length(${n.id}) BETWEEN 5 AND 128 AND ${n.id} GLOB 'uic_*'`),definitionIdCheck:check("ui_instances_definition_id_ck",sql`length(${n.definition_id}) BETWEEN 1 AND 128`),definitionVersionCheck:check("ui_instances_definition_version_ck",sql`${n.definition_version} >= 1`),definitionHashCheck:check("ui_instances_definition_hash_ck",sql`length(${n.definition_hash}) = 64 AND ${n.definition_hash} NOT GLOB '*[^0-9a-f]*'`),workspaceIdCheck:check("ui_instances_workspace_id_ck",sql`length(${n.workspace_id}) BETWEEN 1 AND 256`),threadIdCheck:check("ui_instances_thread_id_ck",sql`length(${n.thread_id}) BETWEEN 1 AND 256`),domainRefJsonCheck:check("ui_instances_domain_ref_json_ck",sql`json_valid(${n.domain_ref_json}) AND json_type(${n.domain_ref_json}) = 'object'`),stateJsonCheck:check("ui_instances_state_json_ck",sql`json_valid(${n.state_json}) AND json_type(${n.state_json}) = 'object'`),revisionCheck:check("ui_instances_revision_ck",sql`${n.revision} >= 0`),statusCheck:check("ui_instances_status_ck",sql`${n.status} IN ('active', 'completed', 'expired', 'revoked', 'unsupported')`),grantedCapabilitiesJsonCheck:check("ui_instances_granted_capabilities_json_ck",sql`json_valid(${n.granted_capabilities_json}) AND json_type(${n.granted_capabilities_json}) = 'array'`),createdAtCheck:check("ui_instances_created_at_ck",sql`${n.created_at} >= 0`),updatedAtCheck:check("ui_instances_updated_at_ck",sql`${n.updated_at} >= ${n.created_at}`),workspaceThreadIdx:index("ui_instances_workspace_thread_idx").on(n.workspace_id,n.thread_id)}));sqliteTable("ui_action_receipts",{id:text("id").primaryKey().notNull(),instance_id:text("instance_id").notNull(),request_id:text("request_id").notNull(),action_id:text("action_id").notNull(),actor_json:text("actor_json").notNull(),source:text("source").notNull(),expected_revision:integer("expected_revision").notNull(),before_revision:integer("before_revision").notNull(),after_revision:integer("after_revision"),status:text("status").notNull(),outcome:text("outcome"),input_json:text("input_json").notNull(),result_json:text("result_json"),error_code:text("error_code"),requested_at:integer("requested_at").notNull(),settled_at:integer("settled_at")},n=>({idCheck:check("ui_action_receipts_id_ck",sql`length(${n.id}) BETWEEN 5 AND 128`),instanceIdCheck:check("ui_action_receipts_instance_id_ck",sql`length(${n.instance_id}) BETWEEN 1 AND 128`),requestIdCheck:check("ui_action_receipts_request_id_ck",sql`length(${n.request_id}) BETWEEN 1 AND 128`),actionIdCheck:check("ui_action_receipts_action_id_ck",sql`length(${n.action_id}) BETWEEN 1 AND 128`),actorJsonCheck:check("ui_action_receipts_actor_json_ck",sql`json_valid(${n.actor_json}) AND json_type(${n.actor_json}) = 'object'`),sourceCheck:check("ui_action_receipts_source_ck",sql`${n.source} IN ('ui_host', 'cli', 'system')`),expectedRevisionCheck:check("ui_action_receipts_expected_revision_ck",sql`${n.expected_revision} >= 0`),beforeRevisionCheck:check("ui_action_receipts_before_revision_ck",sql`${n.before_revision} >= 0`),afterRevisionCheck:check("ui_action_receipts_after_revision_ck",sql`${n.after_revision} IS NULL OR ${n.after_revision} >= 0`),statusCheck:check("ui_action_receipts_status_ck",sql`${n.status} IN ('requested', 'settled')`),outcomeCheck:check("ui_action_receipts_outcome_ck",sql`${n.outcome} IS NULL OR ${n.outcome} IN ('succeeded', 'rejected', 'failed', 'conflicted', 'expired')`),inputJsonCheck:check("ui_action_receipts_input_json_ck",sql`json_valid(${n.input_json}) AND json_type(${n.input_json}) = 'object'`),resultJsonCheck:check("ui_action_receipts_result_json_ck",sql`${n.result_json} IS NULL OR (json_valid(${n.result_json}) AND json_type(${n.result_json}) = 'object')`),requestedAtCheck:check("ui_action_receipts_requested_at_ck",sql`${n.requested_at} >= 0`),settledAtCheck:check("ui_action_receipts_settled_at_ck",sql`${n.settled_at} IS NULL OR ${n.settled_at} >= ${n.requested_at}`),statusTransitionCheck:check("ui_action_receipts_status_transition_ck",sql`(
|
|
13
|
+
`)}`);let i=n.get(e`SELECT count(*) as cnt FROM sqlite_master WHERE type='table' AND name='__drizzle_migrations'`),a=0;i?.cnt&&(a=n.get(e`SELECT count(*) as cnt FROM __drizzle_migrations`)?.cnt??0),ar(n,a),i?.cnt&&(lr(n,s,e),cr(n,s,e)),t(n,{migrationsFolder:s});let c=(n.get(e`SELECT count(*) as cnt FROM __drizzle_migrations`)?.cnt??0)-a;if(c>0){let l=i?.cnt?"Database migrated":"Database initialized";console.error(`[crewx] ${l} (${c} migration${c>1?"s":""} applied).`);}}function nt(n,t){Ke.has(t)||(ur(n),Ke.add(t));}var Ct=sqliteTable("workspaces",{id:text("id").primaryKey(),slug:text("slug").notNull().unique(),name:text("name").notNull(),workspace_path:text("workspace_path"),description:text("description"),is_active:integer("is_active").notNull().default(1),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()});var o=sqliteTable("tasks",{id:text("id").primaryKey(),agent_id:text("agent_id").notNull(),user_id:text("user_id"),prompt:text("prompt").notNull(),mode:text("mode").notNull().default("execute"),status:text("status").notNull().default("running"),result:text("result"),error:text("error"),started_at:text("started_at").notNull(),completed_at:text("completed_at"),duration_ms:integer("duration_ms"),metadata:text("metadata"),workspace_id:text("workspace_id"),trace_id:text("trace_id"),parent_task_id:text("parent_task_id"),caller_agent_id:text("caller_agent_id"),model:text("model"),platform:text("platform").default("cli"),crewx_version:text("crewx_version"),input_tokens:integer("input_tokens").default(0),output_tokens:integer("output_tokens").default(0),cost_usd:real("cost_usd").default(0),pid:integer("pid"),rendered_prompt:text("rendered_prompt"),command:text("command"),coding_agent_command:text("coding_agent_command"),exit_code:integer("exit_code"),logs:text("logs"),log_storage:text("log_storage",{enum:["blob","events"]}).notNull().default("blob"),last_log_seq:integer("last_log_seq").notNull().default(0),log_revision:integer("log_revision").notNull().default(0),thread_id:text("thread_id"),workspace_ref:text("workspace_ref"),project_id:text("project_id"),project_ref:text("project_ref"),cached_input_tokens:integer("cached_input_tokens").default(0),run_epoch:integer("run_epoch").default(0)},n=>({log_storage_check:check("tasks_log_storage_ck",sql`${n.log_storage} IN ('blob', 'events')`),idx_tasks_agent_id:index("idx_tasks_agent_id").on(n.agent_id),idx_tasks_status:index("idx_tasks_status").on(n.status),idx_tasks_started_at:index("idx_tasks_started_at").on(n.started_at),idx_tasks_trace_id:index("idx_tasks_trace_id").on(n.trace_id),idx_tasks_parent_task_id:index("idx_tasks_parent_task_id").on(n.parent_task_id),idx_tasks_crewx_version:index("idx_tasks_crewx_version").on(n.crewx_version),idx_tasks_pid:index("idx_tasks_pid").on(n.pid),idx_tasks_thread_id:index("idx_tasks_thread_id").on(n.thread_id),idx_tasks_workspace_id:index("idx_tasks_workspace_id").on(n.workspace_id),idx_tasks_workspace_ref:index("idx_tasks_workspace_ref").on(n.workspace_ref),idx_tasks_project_id:index("idx_tasks_project_id").on(n.project_id),idx_tasks_ws_started:index("idx_tasks_ws_started").on(n.workspace_id,n.started_at)}));var rt=sqliteTable("task_log_events",{id:integer("id").primaryKey(),task_id:text("task_id").notNull().references(()=>o.id,{onDelete:"cascade"}),seq:integer("seq").notNull(),timestamp:text("timestamp").notNull(),level:text("level").notNull(),message:text("message").notNull()},n=>({taskSeqUnique:uniqueIndex("task_log_events_task_seq_uq").on(n.task_id,n.seq)}));var yr="json_extract(metadata, '$.threadTitle.state')",Er="json_extract(metadata, '$.threadTitle.priority')",h=sqliteTable("threads",{id:text("id").primaryKey(),workspace_id:text("workspace_id").references(()=>Ct.id,{onDelete:"set null"}),platform:text("platform").notNull().default("cli"),title:text("title"),first_message:text("first_message"),last_message:text("last_message"),message_count:integer("message_count").notNull().default(0),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull(),metadata:text("metadata"),title_locked:integer("title_locked").notNull().default(0),pinned:integer("pinned").notNull().default(0),starred:integer("starred").notNull().default(0)},n=>({idx_threads_updated_at:index("idx_threads_updated_at").on(n.updated_at),idx_threads_workspace_id:index("idx_threads_workspace_id").on(n.workspace_id),idx_threads_ws_updated:index("idx_threads_ws_updated").on(n.workspace_id,n.updated_at),idx_threads_title:index("idx_threads_title").on(n.title),idx_threads_workspace_thread_state:index("idx_threads_workspace_thread_state").on(n.workspace_id,sql.raw(yr)),idx_threads_workspace_thread_priority:index("idx_threads_workspace_thread_priority").on(n.workspace_id,sql.raw(Er))}));var Ir=sqliteTable("spans",{id:text("id").primaryKey(),task_id:text("task_id").references(()=>o.id,{onDelete:"set null"}),parent_span_id:text("parent_span_id").references(()=>Ir.id,{onDelete:"set null"}),name:text("name").notNull(),kind:text("kind").notNull().default("internal"),status:text("status").notNull().default("ok"),started_at:text("started_at").notNull(),completed_at:text("completed_at"),duration_ms:integer("duration_ms"),input:text("input"),output:text("output"),error:text("error"),attributes:text("attributes")},n=>({idx_spans_task_id:index("idx_spans_task_id").on(n.task_id),idx_spans_parent_span_id:index("idx_spans_parent_span_id").on(n.parent_span_id)}));sqliteTable("tool_calls",{id:text("id").primaryKey(),task_id:text("task_id").references(()=>o.id,{onDelete:"cascade"}),session_id:text("session_id"),tool_name:text("tool_name").notNull(),files:text("files"),input:text("input"),output:text("output"),duration_ms:integer("duration_ms"),timestamp:text("timestamp").notNull()},n=>({idx_tool_calls_task_id:index("idx_tool_calls_task_id").on(n.task_id),idx_tool_calls_tool_name:index("idx_tool_calls_tool_name").on(n.tool_name),idx_tool_calls_timestamp:index("idx_tool_calls_timestamp").on(n.timestamp)}));sqliteTable("thread_boxes",{id:text("id").primaryKey(),thread_id:text("thread_id").notNull().references(()=>h.id,{onDelete:"cascade"}),seq:integer("seq").notNull(),first_task_id:text("first_task_id").notNull(),mid_task_id:text("mid_task_id").notNull(),last_task_id:text("last_task_id").notNull(),task_count:integer("task_count").notNull(),summary:text("summary"),source_tokens:integer("source_tokens").notNull(),summary_tokens:integer("summary_tokens"),created_at:text("created_at").notNull()},n=>({idx_thread_boxes_thread_id:index("idx_thread_boxes_thread_id").on(n.thread_id),idx_thread_boxes_seq:index("idx_thread_boxes_seq").on(n.thread_id,n.seq),uniq_thread_boxes_thread_seq:unique().on(n.thread_id,n.seq)}));sqliteTable("request_logs",{id:text("id").primaryKey(),path:text("path").notNull(),method:text("method").notNull(),status_code:integer("status_code").notNull(),duration_ms:integer("duration_ms").notNull(),ip:text("ip"),request_headers:text("request_headers"),response_headers:text("response_headers"),request_body:text("request_body"),response_body:text("response_body"),query:text("query"),user_id:text("user_id"),project_id:text("project_id"),partition_key:text("partition_key").notNull(),timestamp:text("timestamp").notNull().default(sql`(datetime('now'))`),metadata:text("metadata")},n=>({idx_request_logs_timestamp:index("idx_request_logs_timestamp").on(n.timestamp),idx_request_logs_path:index("idx_request_logs_path").on(n.path),idx_request_logs_status_code:index("idx_request_logs_status_code").on(n.status_code),idx_request_logs_partition_key:index("idx_request_logs_partition_key").on(n.partition_key)}));sqliteTable("usage_limit_snapshots",{id:text("id").primaryKey(),provider:text("provider").notNull(),account_ref:text("account_ref").notNull().default("default"),limit_window:text("limit_window").notNull(),bucket_start:text("bucket_start").notNull(),captured_at:text("captured_at").notNull(),used_percent:integer("used_percent").notNull(),remaining_percent:integer("remaining_percent").notNull(),resets_at:text("resets_at"),source:text("source").notNull(),metadata:text("metadata")},n=>({uniq_usage_limit_snapshots_bucket:uniqueIndex("uniq_usage_limit_snapshots_bucket").on(n.provider,n.account_ref,n.limit_window,n.bucket_start),idx_usage_limit_snapshots_window_bucket:index("idx_usage_limit_snapshots_window_bucket").on(n.limit_window,n.bucket_start),idx_usage_limit_snapshots_provider_window_bucket:index("idx_usage_limit_snapshots_provider_window_bucket").on(n.provider,n.limit_window,n.bucket_start)}));sqliteTable("usage_reports",{id:text("id").primaryKey(),workspace_id:text("workspace_id").notNull(),month:text("month").notNull(),generated_at:text("generated_at").notNull(),source_range:text("source_range").notNull(),tier:text("tier").notNull(),total_tokens:integer("total_tokens").notNull(),total_cost_usd:real("total_cost_usd").notNull(),payload:text("payload").notNull(),payload_hash:text("payload_hash"),signature:text("signature"),signed_at:text("signed_at"),issuer:text("issuer")},n=>({uniq_usage_reports_ws_month:uniqueIndex("uniq_usage_reports_ws_month").on(n.workspace_id,n.month)}));sqliteTable("notifications",{id:text("id").primaryKey(),workspace_id:text("workspace_id").notNull(),agent_id:text("agent_id"),task_id:text("task_id"),thread_id:text("thread_id"),source:text("source").notNull().default("agent"),level:text("level").notNull().default("info"),title:text("title").notNull(),body:text("body"),target_user_id:text("target_user_id"),created_at:text("created_at").notNull(),metadata:text("metadata")},n=>({idx_notifications_ws_created:index("idx_notifications_ws_created").on(n.workspace_id,sql`${n.created_at} DESC`)}));sqliteTable("notification_reads",{notification_id:text("notification_id").notNull(),user_id:text("user_id").notNull(),read_at:text("read_at").notNull()},n=>({pk:primaryKey({columns:[n.notification_id,n.user_id]})}));sqliteTable("agent_suggestions",{id:text("id").primaryKey(),workspace_id:text("workspace_id").notNull(),agent_id:text("agent_id").notNull(),task_id:text("task_id"),type:text("type").notNull(),status:text("status").notNull().default("pending"),payload:text("payload").notNull(),applied_commit_sha:text("applied_commit_sha"),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()},n=>({idx_agent_suggestions_ws_agent:index("idx_agent_suggestions_ws_agent").on(n.workspace_id,n.agent_id),idx_agent_suggestions_ws_created:index("idx_agent_suggestions_ws_created").on(n.workspace_id,n.created_at)}));sqliteTable("ui_instances",{id:text("id").primaryKey().notNull(),definition_id:text("definition_id").notNull(),definition_version:integer("definition_version").notNull(),definition_hash:text("definition_hash").notNull(),workspace_id:text("workspace_id").notNull(),thread_id:text("thread_id").notNull(),anchor_task_id:text("anchor_task_id"),domain_ref_json:text("domain_ref_json").notNull(),state_json:text("state_json").notNull(),revision:integer("revision").notNull().default(0),status:text("status").notNull().default("active"),granted_capabilities_json:text("granted_capabilities_json").notNull().default("[]"),created_at:integer("created_at").notNull(),updated_at:integer("updated_at").notNull()},n=>({idCheck:check("ui_instances_id_ck",sql`length(${n.id}) BETWEEN 5 AND 128 AND ${n.id} GLOB 'uic_*'`),definitionIdCheck:check("ui_instances_definition_id_ck",sql`length(${n.definition_id}) BETWEEN 1 AND 128`),definitionVersionCheck:check("ui_instances_definition_version_ck",sql`${n.definition_version} >= 1`),definitionHashCheck:check("ui_instances_definition_hash_ck",sql`length(${n.definition_hash}) = 64 AND ${n.definition_hash} NOT GLOB '*[^0-9a-f]*'`),workspaceIdCheck:check("ui_instances_workspace_id_ck",sql`length(${n.workspace_id}) BETWEEN 1 AND 256`),threadIdCheck:check("ui_instances_thread_id_ck",sql`length(${n.thread_id}) BETWEEN 1 AND 256`),domainRefJsonCheck:check("ui_instances_domain_ref_json_ck",sql`json_valid(${n.domain_ref_json}) AND json_type(${n.domain_ref_json}) = 'object'`),stateJsonCheck:check("ui_instances_state_json_ck",sql`json_valid(${n.state_json}) AND json_type(${n.state_json}) = 'object'`),revisionCheck:check("ui_instances_revision_ck",sql`${n.revision} >= 0`),statusCheck:check("ui_instances_status_ck",sql`${n.status} IN ('active', 'completed', 'expired', 'revoked', 'unsupported')`),grantedCapabilitiesJsonCheck:check("ui_instances_granted_capabilities_json_ck",sql`json_valid(${n.granted_capabilities_json}) AND json_type(${n.granted_capabilities_json}) = 'array'`),createdAtCheck:check("ui_instances_created_at_ck",sql`${n.created_at} >= 0`),updatedAtCheck:check("ui_instances_updated_at_ck",sql`${n.updated_at} >= ${n.created_at}`),workspaceThreadIdx:index("ui_instances_workspace_thread_idx").on(n.workspace_id,n.thread_id)}));sqliteTable("ui_action_receipts",{id:text("id").primaryKey().notNull(),instance_id:text("instance_id").notNull(),request_id:text("request_id").notNull(),action_id:text("action_id").notNull(),actor_json:text("actor_json").notNull(),source:text("source").notNull(),expected_revision:integer("expected_revision").notNull(),before_revision:integer("before_revision").notNull(),after_revision:integer("after_revision"),status:text("status").notNull(),outcome:text("outcome"),input_json:text("input_json").notNull(),result_json:text("result_json"),error_code:text("error_code"),requested_at:integer("requested_at").notNull(),settled_at:integer("settled_at")},n=>({idCheck:check("ui_action_receipts_id_ck",sql`length(${n.id}) BETWEEN 5 AND 128`),instanceIdCheck:check("ui_action_receipts_instance_id_ck",sql`length(${n.instance_id}) BETWEEN 1 AND 128`),requestIdCheck:check("ui_action_receipts_request_id_ck",sql`length(${n.request_id}) BETWEEN 1 AND 128`),actionIdCheck:check("ui_action_receipts_action_id_ck",sql`length(${n.action_id}) BETWEEN 1 AND 128`),actorJsonCheck:check("ui_action_receipts_actor_json_ck",sql`json_valid(${n.actor_json}) AND json_type(${n.actor_json}) = 'object'`),sourceCheck:check("ui_action_receipts_source_ck",sql`${n.source} IN ('ui_host', 'cli', 'system')`),expectedRevisionCheck:check("ui_action_receipts_expected_revision_ck",sql`${n.expected_revision} >= 0`),beforeRevisionCheck:check("ui_action_receipts_before_revision_ck",sql`${n.before_revision} >= 0`),afterRevisionCheck:check("ui_action_receipts_after_revision_ck",sql`${n.after_revision} IS NULL OR ${n.after_revision} >= 0`),statusCheck:check("ui_action_receipts_status_ck",sql`${n.status} IN ('requested', 'settled')`),outcomeCheck:check("ui_action_receipts_outcome_ck",sql`${n.outcome} IS NULL OR ${n.outcome} IN ('succeeded', 'rejected', 'failed', 'conflicted', 'expired')`),inputJsonCheck:check("ui_action_receipts_input_json_ck",sql`json_valid(${n.input_json}) AND json_type(${n.input_json}) = 'object'`),resultJsonCheck:check("ui_action_receipts_result_json_ck",sql`${n.result_json} IS NULL OR (json_valid(${n.result_json}) AND json_type(${n.result_json}) = 'object')`),requestedAtCheck:check("ui_action_receipts_requested_at_ck",sql`${n.requested_at} >= 0`),settledAtCheck:check("ui_action_receipts_settled_at_ck",sql`${n.settled_at} IS NULL OR ${n.settled_at} >= ${n.requested_at}`),statusTransitionCheck:check("ui_action_receipts_status_transition_ck",sql`(
|
|
14
14
|
(${n.status} = 'requested' AND ${n.after_revision} IS NULL AND ${n.outcome} IS NULL AND ${n.settled_at} IS NULL)
|
|
15
15
|
OR
|
|
16
16
|
(${n.status} = 'settled' AND ${n.after_revision} IS NOT NULL AND ${n.outcome} IS NOT NULL AND ${n.settled_at} IS NOT NULL)
|
|
17
|
-
)`),instanceRequestUnique:uniqueIndex("ui_action_receipts_instance_request_uq").on(n.instance_id,n.request_id),instanceIdIdx:index("ui_action_receipts_instance_id_idx").on(n.instance_id),requestedAtIdx:index("ui_action_receipts_requested_at_idx").on(n.requested_at)}));var Xe=sqliteTable("projects",{id:text("id").primaryKey().notNull(),workspace_id:text("workspace_id").notNull(),name:text("name").notNull(),outcome:text("outcome").notNull(),due_date:text("due_date"),scene:text("scene").notNull().default("planning"),stages_json:text("stages_json").notNull(),stage_index:integer("stage_index").notNull(),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull(),accepted_at:text("accepted_at"),archived_at:text("archived_at")},n=>({idCheck:check("projects_id_ck",sql`${n.id} GLOB 'prj_*'`),sceneCheck:check("projects_scene_ck",sql`${n.scene} IN ('planning', 'plan_review', 'running', 'human_wait', 'limit_wait', 'failed_stop', 'analyzing_feedback', 'replanned', 'awaiting_review', 'accepted')`),stagesJsonCheck:check("projects_stages_json_ck",sql`json_valid(${n.stages_json}) AND json_type(${n.stages_json}) = 'array'`),stageIndexCheck:check("projects_stage_index_ck",sql`${n.stage_index} >= 1`)}));sqliteTable("project_criteria",{id:text("id").primaryKey().notNull(),project_id:text("project_id").notNull().references(()=>Xe.id,{onDelete:"cascade"}),position:integer("position").notNull(),statement:text("statement").notNull(),verify_status:text("verify_status").notNull().default("pending"),verified_at:text("verified_at"),evidence_json:text("evidence_json").notNull().default("[]"),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()},n=>({idCheck:check("project_criteria_id_ck",sql`${n.id} GLOB 'pjc_*'`),verifyStatusCheck:check("project_criteria_verify_status_ck",sql`${n.verify_status} IN ('pending', 'verifying', 'passed', 'failed')`),evidenceJsonCheck:check("project_criteria_evidence_json_ck",sql`json_valid(${n.evidence_json}) AND json_type(${n.evidence_json}) = 'array'`),projectPositionUnique:uniqueIndex("project_criteria_project_position_uq").on(n.project_id,n.position)}));sqliteTable("project_events",{id:text("id").primaryKey().notNull(),project_id:text("project_id").notNull().references(()=>Xe.id,{onDelete:"restrict"}),seq:integer("seq").notNull(),actor_type:text("actor_type").notNull(),actor_id:text("actor_id"),type:text("type").notNull(),title:text("title").notNull(),summary:text("summary"),payload_json:text("payload_json").notNull().default("{}"),created_at:text("created_at").notNull()},n=>({idCheck:check("project_events_id_ck",sql`${n.id} GLOB 'pje_*'`),actorTypeCheck:check("project_events_actor_type_ck",sql`${n.actor_type} IN ('user', 'project_manager', 'system')`),payloadJsonCheck:check("project_events_payload_json_ck",sql`json_valid(${n.payload_json}) AND json_type(${n.payload_json}) = 'object'`),projectSeqUnique:uniqueIndex("project_events_project_seq_uq").on(n.project_id,n.seq)}));sqliteTable("common_codes",{code_group:text("code_group").notNull(),code:text("code").notNull(),code_name:text("code_name"),color:text("color").notNull().default("gray"),sort_order:integer("sort_order").notNull(),workspace_id:text("workspace_id"),is_builtin:integer("is_builtin").notNull().default(0),is_archived:integer("is_archived").notNull().default(0),metadata:text("metadata"),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()},n=>({pk:primaryKey({columns:[n.code_group,n.code]}),metadataCheck:check("common_codes_metadata_ck",sql`${n.metadata} IS NULL OR (json_valid(${n.metadata}) AND json_type(${n.metadata}) = 'object')`),builtinCheck:check("common_codes_builtin_ck",sql`${n.is_builtin} IN (0, 1)`),archivedCheck:check("common_codes_archived_ck",sql`${n.is_archived} IN (0, 1)`),idxCommonCodesSelection:index("idx_common_codes_group_archived_order").on(n.code_group,n.is_archived,n.sort_order)}));var Qe=["thread.snapshot.imported","thread.title.changed","thread.priority.changed","thread.state.changed","thread.highlight.created","thread.highlight.updated","thread.highlight.deleted"],Ze=["user","agent","system"],tn=["auto","manual"],en=["decision","judgment","issue","result","pivot"];var S=sqliteTable("thread_events",{id:text("id").primaryKey().notNull(),thread_id:text("thread_id").notNull().references(()=>p.id,{onDelete:"cascade"}),seq:integer("seq").notNull(),type:text("type").notNull(),actor_type:text("actor_type").notNull(),payload_json:text("payload_json").notNull(),created_at:text("created_at").notNull(),actor_id:text("actor_id"),task_id:text("task_id"),highlight_id:text("highlight_id")},n=>({typeCheck:check("thread_events_type_ck",sql`${n.type} IN ('thread.snapshot.imported', 'thread.title.changed', 'thread.priority.changed', 'thread.state.changed', 'thread.highlight.created', 'thread.highlight.updated', 'thread.highlight.deleted')`),actorTypeCheck:check("thread_events_actor_type_ck",sql`${n.actor_type} IN ('user', 'agent', 'system')`),payloadJsonCheck:check("thread_events_payload_json_ck",sql`json_valid(${n.payload_json}) AND json_type(${n.payload_json}) = 'object'`),threadSeqIndex:index("idx_thread_events_thread_seq").on(n.thread_id,n.seq),threadCreatedIndex:index("idx_thread_events_thread_created").on(n.thread_id,n.created_at),threadSeqUnique:uniqueIndex("thread_events_thread_seq_uq").on(n.thread_id,n.seq)})),E=sqliteTable("thread_highlights",{id:text("id").primaryKey().notNull(),thread_id:text("thread_id").notNull().references(()=>p.id,{onDelete:"cascade"}),source:text("source").notNull(),kind:text("kind").notNull(),status:text("status").notNull().default("active"),text:text("text"),covers_from_task_id:text("covers_from_task_id").notNull(),covers_to_task_id:text("covers_to_task_id").notNull(),revision:integer("revision").notNull().default(0),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull(),agent_id:text("agent_id"),source_task_id:text("source_task_id"),detector_version:text("detector_version"),content_fingerprint:text("content_fingerprint"),dismissed_at:text("dismissed_at")},n=>({sourceCheck:check("thread_highlights_source_ck",sql`${n.source} IN ('auto', 'manual')`),kindCheck:check("thread_highlights_kind_ck",sql`${n.kind} IN ('decision', 'judgment', 'issue', 'result', 'pivot')`),statusCheck:check("thread_highlights_status_ck",sql`${n.status} IN ('active', 'dismissed')`),activeTextCheck:check("thread_highlights_active_text_ck",sql`${n.status} = 'dismissed' OR (${n.text} IS NOT NULL AND length(${n.text}) > 0)`),coversCheck:check("thread_highlights_covers_ck",sql`length(${n.covers_from_task_id}) > 0 AND length(${n.covers_to_task_id}) > 0`),autoKeyCheck:check("thread_highlights_auto_key_ck",sql`${n.source} = 'manual' OR (${n.source} = 'auto' AND ${n.source_task_id} IS NOT NULL AND ${n.detector_version} IS NOT NULL AND ${n.content_fingerprint} IS NOT NULL AND length(${n.source_task_id}) > 0 AND length(${n.detector_version}) > 0 AND length(${n.content_fingerprint}) > 0)`),threadStatusCreatedIndex:index("idx_thread_highlights_thread_status_created").on(n.thread_id,n.status,n.created_at),threadCoversIndex:index("idx_thread_highlights_thread_covers").on(n.thread_id,n.covers_from_task_id,n.covers_to_task_id),autoIdempotencyUnique:uniqueIndex("thread_highlights_auto_idempotency_uq").on(n.thread_id,n.source_task_id,n.detector_version,n.content_fingerprint).where(sql`${n.source} = 'auto'`)}));function nn(n){let t=n.toLowerCase().trim();t=t.replace(/\[[^\]]*\]$/g,"");let e=t.lastIndexOf("/");return e>=0&&(t=t.slice(e+1)),t=t.replace(/-\d{8}$/,""),t}function dn(n,t){let e=t===void 0?"":` at index ${t}`;if(!n||typeof n!="object")throw new _("VALIDATION",`Task log entry${e} must be an object`);if(typeof n.timestamp!="string"||typeof n.level!="string"||typeof n.message!="string")throw new _("VALIDATION",`Task log entry${e} must contain string timestamp, level, and message fields`);return {timestamp:n.timestamp,level:n.level,message:n.message}}function on(n,t){if(t===null||t.trim()==="")return [];let e;try{e=JSON.parse(t);}catch(r){throw new _("DB_ERROR",`Malformed legacy task logs: ${n}`,r)}if(!Array.isArray(e))throw new _("DB_ERROR",`Malformed legacy task logs: ${n} (expected an array)`);try{return e.map((r,i)=>dn(r,i))}catch(r){throw r instanceof _?new _("DB_ERROR",`Malformed legacy task logs: ${n}`,r):r}}function cn(n){if(n.log_storage!=="blob"&&n.log_storage!=="events")throw new _("DB_ERROR",`Invalid task log storage for task: ${n.id}`);if(!Number.isInteger(n.last_log_seq)||n.last_log_seq<0)throw new _("DB_ERROR",`Invalid task log sequence for task: ${n.id}`);if(!Number.isInteger(n.log_revision)||n.log_revision<0)throw new _("DB_ERROR",`Invalid task log revision for task: ${n.id}`);return n.log_storage}function an(n){return {taskId:n.id,source:cn(n),revision:n.log_revision,lastSeq:n.last_log_seq}}function qr(n){if(!Number.isInteger(n)||n<0)throw new _("VALIDATION","Task log tail limit must be a non-negative integer")}var Yt=class extends J{dbPath;constructor(t={}){super(),t.dbPath?this.dbPath=t.dbPath:t.dbRoot&&(this.dbPath=join(t.dbRoot,".crewx","crewx.db"));}resolveDbPath(){return this.dbPath?this.dbPath:super.resolveDbPath()}openHandle(t){let e=this.resolveDbPath();if(t){let i=dirname(e);existsSync(i)||mkdirSync(i,{recursive:true});}else if(!existsSync(e))throw new _("NOT_FOUND","Database not found");let r=A(e);if(t)try{gt(r.db,e);}catch(i){throw r.close(),i}return r}findStateRow(t,e){return t.db.select({id:s.id,log_storage:s.log_storage,last_log_seq:s.last_log_seq,log_revision:s.log_revision,logs:s.logs}).from(s).where(eq(s.id,e)).limit(1).get()}findStateRowInTransaction(t,e){return t.select({id:s.id,log_storage:s.log_storage,last_log_seq:s.last_log_seq,log_revision:s.log_revision,logs:s.logs}).from(s).where(eq(s.id,e)).limit(1).get()}requireStateRowInTransaction(t,e){let r=this.findStateRowInTransaction(t,e);if(!r)throw new _("NOT_FOUND",`Task not found: ${e}`);return r}appendLog(t,e){return this.appendLogs(t,[e])}appendLogs(t,e){let r=e.map((o,a)=>dn(o,a));if(r.length===0){let o=this.getLogState(t);if(!o)throw new _("NOT_FOUND",`Task not found: ${t}`);return o}let i=this.openHandle(true);try{return i.db.transaction(a=>{let d=this.requireStateRowInTransaction(a,t),c=cn(d);if(c==="blob"){let g=on(t,d.logs);if(a.update(s).set({logs:JSON.stringify([...g,...r]),log_revision:sql`${s.log_revision} + 1`}).where(eq(s.id,t)).run().changes!==1)throw new _("NOT_FOUND",`Task not found: ${t}`);return {taskId:t,source:c,revision:d.log_revision+1,lastSeq:d.last_log_seq}}let l=d.last_log_seq+1,u=d.last_log_seq+r.length;if(a.insert(Q).values(r.map((g,f)=>({task_id:t,seq:l+f,timestamp:g.timestamp,level:g.level,message:g.message}))).run(),a.update(s).set({last_log_seq:u,log_revision:sql`${s.log_revision} + 1`}).where(eq(s.id,t)).run().changes!==1)throw new _("NOT_FOUND",`Task not found: ${t}`);return {taskId:t,source:c,revision:d.log_revision+1,lastSeq:u}},{behavior:"immediate"})}catch(o){throw o instanceof _?o:new _("DB_ERROR","Failed to append task log",o)}finally{i.close();}}getLogState(t){if(!this.dbExists())return;let e=this.openHandle(false);try{let r=this.findStateRow(e,t);return r?an(r):void 0}catch(r){throw r instanceof _?r:new _("DB_ERROR","Failed to read task log state",r)}finally{e.close();}}readLogs(t){return this.readLogsInternal(t)}readLogsTail(t,e){return qr(e),this.readLogsInternal(t,e)}readTail(t,e){return this.readLogsTail(t,e)}readLogsInternal(t,e){if(!this.dbExists())return;let r=this.openHandle(false);try{return r.db.transaction(i=>{let o=this.findStateRowInTransaction(i,t);if(!o)return;let a=an(o);if(a.source==="blob"){let u=on(t,o.logs);return {...a,entries:e===void 0?u:u.slice(Math.max(0,u.length-e))}}let d=i.select({seq:Q.seq,timestamp:Q.timestamp,level:Q.level,message:Q.message}).from(Q).where(eq(Q.task_id,t)).orderBy(e===void 0?asc(Q.seq):desc(Q.seq)),l=(e===void 0?d.all():d.limit(e).all()).map(({timestamp:u,level:h,message:g})=>({timestamp:u,level:h,message:g}));return e!==void 0&&l.reverse(),{...a,entries:l}},{behavior:"deferred"})}catch(i){throw i instanceof _?i:new _("DB_ERROR","Failed to read task logs",i)}finally{r.close();}}};var ke=40,ut="2026-05-09",Wr="0.8.9-rc.13",_t=10,pt=parseInt(Wr.split("rc.")[1]);function ln(){let n=sql`
|
|
17
|
+
)`),instanceRequestUnique:uniqueIndex("ui_action_receipts_instance_request_uq").on(n.instance_id,n.request_id),instanceIdIdx:index("ui_action_receipts_instance_id_idx").on(n.instance_id),requestedAtIdx:index("ui_action_receipts_requested_at_idx").on(n.requested_at)}));var an=sqliteTable("projects",{id:text("id").primaryKey().notNull(),workspace_id:text("workspace_id").notNull(),name:text("name").notNull(),outcome:text("outcome").notNull(),due_date:text("due_date"),scene:text("scene").notNull().default("planning"),stages_json:text("stages_json").notNull(),stage_index:integer("stage_index").notNull(),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull(),accepted_at:text("accepted_at"),archived_at:text("archived_at")},n=>({idCheck:check("projects_id_ck",sql`${n.id} GLOB 'prj_*'`),sceneCheck:check("projects_scene_ck",sql`${n.scene} IN ('planning', 'plan_review', 'running', 'human_wait', 'limit_wait', 'failed_stop', 'analyzing_feedback', 'replanned', 'awaiting_review', 'accepted')`),stagesJsonCheck:check("projects_stages_json_ck",sql`json_valid(${n.stages_json}) AND json_type(${n.stages_json}) = 'array'`),stageIndexCheck:check("projects_stage_index_ck",sql`${n.stage_index} >= 1`)}));sqliteTable("project_criteria",{id:text("id").primaryKey().notNull(),project_id:text("project_id").notNull().references(()=>an.id,{onDelete:"cascade"}),position:integer("position").notNull(),statement:text("statement").notNull(),verify_status:text("verify_status").notNull().default("pending"),verified_at:text("verified_at"),evidence_json:text("evidence_json").notNull().default("[]"),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()},n=>({idCheck:check("project_criteria_id_ck",sql`${n.id} GLOB 'pjc_*'`),verifyStatusCheck:check("project_criteria_verify_status_ck",sql`${n.verify_status} IN ('pending', 'verifying', 'passed', 'failed')`),evidenceJsonCheck:check("project_criteria_evidence_json_ck",sql`json_valid(${n.evidence_json}) AND json_type(${n.evidence_json}) = 'array'`),projectPositionUnique:uniqueIndex("project_criteria_project_position_uq").on(n.project_id,n.position)}));sqliteTable("project_events",{id:text("id").primaryKey().notNull(),project_id:text("project_id").notNull().references(()=>an.id,{onDelete:"restrict"}),seq:integer("seq").notNull(),actor_type:text("actor_type").notNull(),actor_id:text("actor_id"),type:text("type").notNull(),title:text("title").notNull(),summary:text("summary"),payload_json:text("payload_json").notNull().default("{}"),created_at:text("created_at").notNull()},n=>({idCheck:check("project_events_id_ck",sql`${n.id} GLOB 'pje_*'`),actorTypeCheck:check("project_events_actor_type_ck",sql`${n.actor_type} IN ('user', 'project_manager', 'system')`),payloadJsonCheck:check("project_events_payload_json_ck",sql`json_valid(${n.payload_json}) AND json_type(${n.payload_json}) = 'object'`),projectSeqUnique:uniqueIndex("project_events_project_seq_uq").on(n.project_id,n.seq)}));var ve=["THREAD_STATE","THREAD_PRIORITY"],Ne=["gray","blue","violet","green","amber","orange","red","pink"],m=sqliteTable("common_codes",{code_group:text("code_group").notNull(),code:text("code").notNull(),code_name:text("code_name"),color:text("color").notNull().default("gray"),sort_order:integer("sort_order").notNull(),workspace_id:text("workspace_id"),is_builtin:integer("is_builtin").notNull().default(0),is_archived:integer("is_archived").notNull().default(0),metadata:text("metadata"),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull()},n=>({pk:primaryKey({columns:[n.code_group,n.code]}),metadataCheck:check("common_codes_metadata_ck",sql`${n.metadata} IS NULL OR (json_valid(${n.metadata}) AND json_type(${n.metadata}) = 'object')`),builtinCheck:check("common_codes_builtin_ck",sql`${n.is_builtin} IN (0, 1)`),archivedCheck:check("common_codes_archived_ck",sql`${n.is_archived} IN (0, 1)`),idxCommonCodesSelection:index("idx_common_codes_group_archived_order").on(n.code_group,n.is_archived,n.sort_order)}));var un=["thread.snapshot.imported","thread.title.changed","thread.priority.changed","thread.state.changed","thread.highlight.created","thread.highlight.updated","thread.highlight.deleted"],_n=["user","agent","system"],hn=["auto","manual"],pn=["decision","judgment","issue","result","pivot"];var S=sqliteTable("thread_events",{id:text("id").primaryKey().notNull(),thread_id:text("thread_id").notNull().references(()=>h.id,{onDelete:"cascade"}),seq:integer("seq").notNull(),type:text("type").notNull(),actor_type:text("actor_type").notNull(),payload_json:text("payload_json").notNull(),created_at:text("created_at").notNull(),actor_id:text("actor_id"),task_id:text("task_id"),highlight_id:text("highlight_id")},n=>({typeCheck:check("thread_events_type_ck",sql`${n.type} IN ('thread.snapshot.imported', 'thread.title.changed', 'thread.priority.changed', 'thread.state.changed', 'thread.highlight.created', 'thread.highlight.updated', 'thread.highlight.deleted')`),actorTypeCheck:check("thread_events_actor_type_ck",sql`${n.actor_type} IN ('user', 'agent', 'system')`),payloadJsonCheck:check("thread_events_payload_json_ck",sql`json_valid(${n.payload_json}) AND json_type(${n.payload_json}) = 'object'`),threadSeqIndex:index("idx_thread_events_thread_seq").on(n.thread_id,n.seq),threadCreatedIndex:index("idx_thread_events_thread_created").on(n.thread_id,n.created_at),threadSeqUnique:uniqueIndex("thread_events_thread_seq_uq").on(n.thread_id,n.seq)})),R=sqliteTable("thread_highlights",{id:text("id").primaryKey().notNull(),thread_id:text("thread_id").notNull().references(()=>h.id,{onDelete:"cascade"}),source:text("source").notNull(),kind:text("kind").notNull(),status:text("status").notNull().default("active"),text:text("text"),covers_from_task_id:text("covers_from_task_id").notNull(),covers_to_task_id:text("covers_to_task_id").notNull(),revision:integer("revision").notNull().default(0),created_at:text("created_at").notNull(),updated_at:text("updated_at").notNull(),agent_id:text("agent_id"),source_task_id:text("source_task_id"),detector_version:text("detector_version"),content_fingerprint:text("content_fingerprint"),dismissed_at:text("dismissed_at")},n=>({sourceCheck:check("thread_highlights_source_ck",sql`${n.source} IN ('auto', 'manual')`),kindCheck:check("thread_highlights_kind_ck",sql`${n.kind} IN ('decision', 'judgment', 'issue', 'result', 'pivot')`),statusCheck:check("thread_highlights_status_ck",sql`${n.status} IN ('active', 'dismissed')`),activeTextCheck:check("thread_highlights_active_text_ck",sql`${n.status} = 'dismissed' OR (${n.text} IS NOT NULL AND length(${n.text}) > 0)`),coversCheck:check("thread_highlights_covers_ck",sql`length(${n.covers_from_task_id}) > 0 AND length(${n.covers_to_task_id}) > 0`),autoKeyCheck:check("thread_highlights_auto_key_ck",sql`${n.source} = 'manual' OR (${n.source} = 'auto' AND ${n.source_task_id} IS NOT NULL AND ${n.detector_version} IS NOT NULL AND ${n.content_fingerprint} IS NOT NULL AND length(${n.source_task_id}) > 0 AND length(${n.detector_version}) > 0 AND length(${n.content_fingerprint}) > 0)`),threadStatusCreatedIndex:index("idx_thread_highlights_thread_status_created").on(n.thread_id,n.status,n.created_at),threadCoversIndex:index("idx_thread_highlights_thread_covers").on(n.thread_id,n.covers_from_task_id,n.covers_to_task_id),autoIdempotencyUnique:uniqueIndex("thread_highlights_auto_idempotency_uq").on(n.thread_id,n.source_task_id,n.detector_version,n.content_fingerprint).where(sql`${n.source} = 'auto'`)}));function gn(n){let t=n.toLowerCase().trim();t=t.replace(/\[[^\]]*\]$/g,"");let e=t.lastIndexOf("/");return e>=0&&(t=t.slice(e+1)),t=t.replace(/-\d{8}$/,""),t}function wn(n,t){let e=t===void 0?"":` at index ${t}`;if(!n||typeof n!="object")throw new u("VALIDATION",`Task log entry${e} must be an object`);if(typeof n.timestamp!="string"||typeof n.level!="string"||typeof n.message!="string")throw new u("VALIDATION",`Task log entry${e} must contain string timestamp, level, and message fields`);return {timestamp:n.timestamp,level:n.level,message:n.message}}function kn(n,t){if(t===null||t.trim()==="")return [];let e;try{e=JSON.parse(t);}catch(r){throw new u("DB_ERROR",`Malformed legacy task logs: ${n}`,r)}if(!Array.isArray(e))throw new u("DB_ERROR",`Malformed legacy task logs: ${n} (expected an array)`);try{return e.map((r,s)=>wn(r,s))}catch(r){throw r instanceof u?new u("DB_ERROR",`Malformed legacy task logs: ${n}`,r):r}}function yn(n){if(n.log_storage!=="blob"&&n.log_storage!=="events")throw new u("DB_ERROR",`Invalid task log storage for task: ${n.id}`);if(!Number.isInteger(n.last_log_seq)||n.last_log_seq<0)throw new u("DB_ERROR",`Invalid task log sequence for task: ${n.id}`);if(!Number.isInteger(n.log_revision)||n.log_revision<0)throw new u("DB_ERROR",`Invalid task log revision for task: ${n.id}`);return n.log_storage}function Tn(n){return {taskId:n.id,source:yn(n),revision:n.log_revision,lastSeq:n.last_log_seq}}function ns(n){if(!Number.isInteger(n)||n<0)throw new u("VALIDATION","Task log tail limit must be a non-negative integer")}var se=class extends Y{dbPath;constructor(t={}){super(),t.dbPath?this.dbPath=t.dbPath:t.dbRoot&&(this.dbPath=join(t.dbRoot,".crewx","crewx.db"));}resolveDbPath(){return this.dbPath?this.dbPath:super.resolveDbPath()}openHandle(t){let e=this.resolveDbPath();if(t){let s=dirname(e);existsSync(s)||mkdirSync(s,{recursive:true});}else if(!existsSync(e))throw new u("NOT_FOUND","Database not found");let r=A(e);if(t)try{nt(r.db,e);}catch(s){throw r.close(),s}return r}findStateRow(t,e){return t.db.select({id:o.id,log_storage:o.log_storage,last_log_seq:o.last_log_seq,log_revision:o.log_revision,logs:o.logs}).from(o).where(eq(o.id,e)).limit(1).get()}findStateRowInTransaction(t,e){return t.select({id:o.id,log_storage:o.log_storage,last_log_seq:o.last_log_seq,log_revision:o.log_revision,logs:o.logs}).from(o).where(eq(o.id,e)).limit(1).get()}requireStateRowInTransaction(t,e){let r=this.findStateRowInTransaction(t,e);if(!r)throw new u("NOT_FOUND",`Task not found: ${e}`);return r}appendLog(t,e){return this.appendLogs(t,[e])}appendLogs(t,e){let r=e.map((i,a)=>wn(i,a));if(r.length===0){let i=this.getLogState(t);if(!i)throw new u("NOT_FOUND",`Task not found: ${t}`);return i}let s=this.openHandle(true);try{return s.db.transaction(a=>{let d=this.requireStateRowInTransaction(a,t),c=yn(d);if(c==="blob"){let g=kn(t,d.logs);if(a.update(o).set({logs:JSON.stringify([...g,...r]),log_revision:sql`${o.log_revision} + 1`}).where(eq(o.id,t)).run().changes!==1)throw new u("NOT_FOUND",`Task not found: ${t}`);return {taskId:t,source:c,revision:d.log_revision+1,lastSeq:d.last_log_seq}}let l=d.last_log_seq+1,_=d.last_log_seq+r.length;if(a.insert(rt).values(r.map((g,f)=>({task_id:t,seq:l+f,timestamp:g.timestamp,level:g.level,message:g.message}))).run(),a.update(o).set({last_log_seq:_,log_revision:sql`${o.log_revision} + 1`}).where(eq(o.id,t)).run().changes!==1)throw new u("NOT_FOUND",`Task not found: ${t}`);return {taskId:t,source:c,revision:d.log_revision+1,lastSeq:_}},{behavior:"immediate"})}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to append task log",i)}finally{s.close();}}getLogState(t){if(!this.dbExists())return;let e=this.openHandle(false);try{let r=this.findStateRow(e,t);return r?Tn(r):void 0}catch(r){throw r instanceof u?r:new u("DB_ERROR","Failed to read task log state",r)}finally{e.close();}}readLogs(t){return this.readLogsInternal(t)}readLogsTail(t,e){return ns(e),this.readLogsInternal(t,e)}readTail(t,e){return this.readLogsTail(t,e)}readLogsInternal(t,e){if(!this.dbExists())return;let r=this.openHandle(false);try{return r.db.transaction(s=>{let i=this.findStateRowInTransaction(s,t);if(!i)return;let a=Tn(i);if(a.source==="blob"){let _=kn(t,i.logs);return {...a,entries:e===void 0?_:_.slice(Math.max(0,_.length-e))}}let d=s.select({seq:rt.seq,timestamp:rt.timestamp,level:rt.level,message:rt.message}).from(rt).where(eq(rt.task_id,t)).orderBy(e===void 0?asc(rt.seq):desc(rt.seq)),l=(e===void 0?d.all():d.limit(e).all()).map(({timestamp:_,level:p,message:g})=>({timestamp:_,level:p,message:g}));return e!==void 0&&l.reverse(),{...a,entries:l}},{behavior:"deferred"})}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to read task logs",s)}finally{r.close();}}};var Ce=40,ft="2026-05-09",ds="0.8.9-rc.13",mt=10,kt=parseInt(ds.split("rc.")[1]);function En(){let n=sql`
|
|
18
18
|
CASE
|
|
19
|
-
WHEN ${
|
|
20
|
-
WHEN ${
|
|
21
|
-
WHEN ${
|
|
22
|
-
WHEN ${
|
|
23
|
-
WHEN ${
|
|
24
|
-
WHEN ${
|
|
25
|
-
WHEN ${
|
|
19
|
+
WHEN ${o.model} LIKE 'claude-%' OR ${o.model} IN ('opus', 'sonnet', 'haiku', 'opus[1m]', 'sonnet[1m]') THEN 'claude'
|
|
20
|
+
WHEN ${o.model} LIKE 'gpt-%' OR ${o.model} LIKE 'codex-%' THEN 'codex'
|
|
21
|
+
WHEN ${o.model} LIKE 'gemini-%' THEN 'gemini'
|
|
22
|
+
WHEN ${o.model} LIKE 'grok-%' THEN 'grok'
|
|
23
|
+
WHEN ${o.model} LIKE 'zai-%' OR ${o.model} LIKE 'openrouter/z-ai/%' THEN 'opencode'
|
|
24
|
+
WHEN ${o.model} LIKE 'minimax/%' THEN 'minimax'
|
|
25
|
+
WHEN ${o.model} LIKE 'qwen%' THEN 'qwen'
|
|
26
26
|
ELSE 'unknown'
|
|
27
27
|
END
|
|
28
|
-
`,t=sql`json_extract(${
|
|
28
|
+
`,t=sql`json_extract(${o.metadata}, '$.provider')`,e=sql`trim(${t})`,r=sql`substr(${e}, 1, instr(${e}, '/') - 1)`,s=sql`
|
|
29
29
|
CASE
|
|
30
30
|
WHEN instr(${e}, '/') > 0
|
|
31
31
|
AND ${r} IN ('cli', 'acp', 'api', 'plugin', 'remote')
|
|
@@ -34,26 +34,26 @@ ${r.join(`
|
|
|
34
34
|
END
|
|
35
35
|
`;return sql`
|
|
36
36
|
CASE
|
|
37
|
-
WHEN ${
|
|
38
|
-
WHEN json_valid(${
|
|
39
|
-
WHEN json_type(${
|
|
40
|
-
WHEN json_type(${
|
|
41
|
-
WHEN json_type(${
|
|
37
|
+
WHEN ${o.metadata} IS NULL THEN ${n}
|
|
38
|
+
WHEN json_valid(${o.metadata}) = 0 THEN 'unknown'
|
|
39
|
+
WHEN json_type(${o.metadata}, '$') IS NOT 'object' THEN 'unknown'
|
|
40
|
+
WHEN json_type(${o.metadata}, '$.provider') IS NULL THEN ${n}
|
|
41
|
+
WHEN json_type(${o.metadata}, '$.provider') IS NOT 'text' THEN 'unknown'
|
|
42
42
|
WHEN ${e} = '' THEN 'unknown'
|
|
43
|
-
WHEN trim(${
|
|
44
|
-
ELSE ${
|
|
43
|
+
WHEN trim(${s}) = '' THEN 'unknown'
|
|
44
|
+
ELSE ${s}
|
|
45
45
|
END
|
|
46
|
-
`}var
|
|
46
|
+
`}var cs=new Set(["workflow","mcp"]),Rn=600*1e3,ie=class extends Y{dbPath;taskLogRepository;pidNullObservedSince=new Map;constructor(t={}){super(),t.dbPath?this.dbPath=t.dbPath:t.dbRoot&&(this.dbPath=join(t.dbRoot,".crewx","crewx.db")),this.taskLogRepository=new se({dbPath:this.dbPath});}resolveDbPath(){return this.dbPath?this.dbPath:super.resolveDbPath()}openHandle(t){let e=this.resolveDbPath();if(t){let s=dirname(e);existsSync(s)||mkdirSync(s,{recursive:true});}else if(!existsSync(e))throw new u("NOT_FOUND","Database not found");let r=A(e);if(t)try{nt(r.db,e);}catch(s){throw r.close(),s}return r}startTask(t){let e=this.openHandle(true);try{let r={id:t.id,agent_id:t.agentId,prompt:t.prompt,mode:t.mode,status:t.status,started_at:t.startedAt,pid:t.pid??null,parent_task_id:t.parentTaskId??null,caller_agent_id:t.callerAgentId??null,trace_id:t.traceId??null,command:t.command??null,metadata:t.metadata??null,workspace_id:t.workspaceId??null,project_id:t.projectId??null,platform:t.platform??"cli",crewx_version:t.crewxVersion??null,thread_id:t.threadId??null,model:t.model??null,rendered_prompt:t.renderedPrompt??null,coding_agent_command:t.codingAgentCommand??null,log_storage:"events"},s=i=>{e.db.insert(o).values(i).onConflictDoUpdate({target:o.id,set:{pid:sql`COALESCE(excluded.pid, ${o.pid})`},setWhere:eq(o.status,"running")}).run();};try{s(r);}catch(i){let a=i instanceof Error?i.message:typeof i=="object"&&i!==null&&"message"in i?String(i.message):String(i);if(!/log_storage/i.test(a)||!/no such column|no column named/i.test(a))throw i;e.runRaw(`INSERT INTO tasks (
|
|
47
47
|
id, agent_id, prompt, mode, status, started_at, pid,
|
|
48
48
|
parent_task_id, caller_agent_id, trace_id, command, metadata,
|
|
49
49
|
workspace_id, project_id, platform, crewx_version, thread_id,
|
|
50
50
|
model, rendered_prompt, coding_agent_command
|
|
51
51
|
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
|
52
52
|
ON CONFLICT(id) DO UPDATE SET pid = COALESCE(excluded.pid, tasks.pid)
|
|
53
|
-
WHERE tasks.status = 'running'`,[r.id,r.agent_id,r.prompt,r.mode,r.status,r.started_at,r.pid,r.parent_task_id,r.caller_agent_id,r.trace_id,r.command,r.metadata,r.workspace_id,r.project_id,r.platform,r.crewx_version,r.thread_id,r.model,r.rendered_prompt,r.coding_agent_command]);}}catch(r){throw r instanceof
|
|
53
|
+
WHERE tasks.status = 'running'`,[r.id,r.agent_id,r.prompt,r.mode,r.status,r.started_at,r.pid,r.parent_task_id,r.caller_agent_id,r.trace_id,r.command,r.metadata,r.workspace_id,r.project_id,r.platform,r.crewx_version,r.thread_id,r.model,r.rendered_prompt,r.coding_agent_command]);}}catch(r){throw r instanceof u?r:new u("DB_ERROR","Failed to start task",r)}finally{e.close();}}listTasksByProjectId(t){if(!this.dbExists())return [];let e=this.openHandle(false);try{return e.db.select().from(o).where(eq(o.project_id,t)).orderBy(desc(o.started_at)).all()}catch(r){throw r instanceof u?r:new u("DB_ERROR","Failed to list tasks by project",r)}finally{e.close();}}finishTask(t){let e=this.openHandle(true);try{let r=t.runEpoch??null;e.runRaw(`UPDATE tasks SET status=?, result=?, error=?, completed_at=?, duration_ms=?,
|
|
54
54
|
exit_code=?, input_tokens=?, output_tokens=?, cached_input_tokens=?, cost_usd=?,
|
|
55
55
|
model=COALESCE(?, model)
|
|
56
|
-
WHERE id=? AND status='running' AND COALESCE(run_epoch, 0) = COALESCE(?, 0)`,[t.status,t.result??null,t.error??null,t.completedAt,t.durationMs??null,t.exitCode??null,t.inputTokens??0,t.outputTokens??0,t.cachedInputTokens??0,t.costUsd??0,t.model??null,t.id,r]);}catch(r){throw r instanceof
|
|
56
|
+
WHERE id=? AND status='running' AND COALESCE(run_epoch, 0) = COALESCE(?, 0)`,[t.status,t.result??null,t.error??null,t.completedAt,t.durationMs??null,t.exitCode??null,t.inputTokens??0,t.outputTokens??0,t.cachedInputTokens??0,t.costUsd??0,t.model??null,t.id,r]);}catch(r){throw r instanceof u?r:new u("DB_ERROR","Failed to finish task",r)}finally{e.close();}}appendLog(t,e){this.taskLogRepository.appendLog(t,e);}appendLogs(t,e){this.taskLogRepository.appendLogs(t,e);}readLogs(t){return this.taskLogRepository.readLogs(t)}readLogsTail(t,e){return this.taskLogRepository.readLogsTail(t,e)}getLogState(t){return this.taskLogRepository.getLogState(t)}getRunningTasks(){if(!this.dbExists())return [];let t=this.openHandle(false);try{return t.db.select().from(o).where(eq(o.status,"running")).orderBy(desc(o.started_at)).all()}catch(e){throw new u("DB_ERROR","Failed to get running tasks",e)}finally{t.close();}}getAllTasks(){if(!this.dbExists())return [];let t=this.openHandle(false);try{return t.db.select().from(o).orderBy(desc(o.started_at)).limit(100).all()}catch(e){throw new u("DB_ERROR","Failed to get all tasks",e)}finally{t.close();}}getTask(t){if(!this.dbExists())return;let e=this.openHandle(false);try{return e.db.select().from(o).where(eq(o.id,t)).limit(1).get()??void 0}catch(r){throw new u("DB_ERROR","Failed to get task",r)}finally{e.close();}}killTask(t){if(!this.dbExists())return {killed:false};let e=this.openHandle(true);try{let r=e.db.select({id:o.id,status:o.status,pid:o.pid}).from(o).where(eq(o.id,t)).limit(1).get();if(!r||r.status!=="running")return {killed:!1};if(r.pid)try{process.kill(r.pid,"SIGTERM");}catch{}return e.db.update(o).set({status:"failed",error:"Killed by user",completed_at:new Date().toISOString()}).where(and(eq(o.id,t),eq(o.status,"running"))).run(),{killed:!0,pid:r.pid??void 0}}catch(r){throw r instanceof u?r:new u("DB_ERROR","Failed to kill task",r)}finally{e.close();}}reapOrphanedTasks(){if(!this.dbExists())return 0;let t=this.openHandle(true);try{let e=t.db.select({id:o.id,pid:o.pid,platform:o.platform,run_epoch:o.run_epoch}).from(o).where(eq(o.status,"running")).all(),r=Date.now(),s=new Set,i=0;for(let a of e){if(a.pid){let l=!1;try{process.kill(a.pid,0),l=!0;}catch{}l||(t.db.update(o).set({status:"failed",error:"Reaped: process not found (orphaned task)",completed_at:new Date().toISOString()}).where(and(eq(o.id,a.id),eq(o.status,"running"))).run(),i++);continue}if(cs.has(a.platform??"cli"))continue;let d=`${a.id}:${a.run_epoch??0}`;s.add(d);let c=this.pidNullObservedSince.get(d);if(c===void 0){this.pidNullObservedSince.set(d,r);continue}r-c>=Rn&&(t.db.update(o).set({status:"failed",error:"Reaped: pid never recorded after resume (stale running_instruction)",completed_at:new Date().toISOString()}).where(and(eq(o.id,a.id),eq(o.status,"running"))).run(),i++,this.pidNullObservedSince.delete(d));}for(let a of Array.from(this.pidNullObservedSince.keys()))s.has(a)||this.pidNullObservedSince.delete(a);return i}finally{t.close();}}reapRunningWorkflowTasks(t=Rn){if(!this.dbExists())return 0;let e=this.openHandle(true);try{let r=new Date(Date.now()-t).toISOString();return e.db.update(o).set({status:"failed",error:"Reaped: stale workflow run (finally not executed)",completed_at:new Date().toISOString()}).where(and(eq(o.status,"running"),eq(o.platform,"workflow"),isNull(o.pid),lt(o.started_at,r),or$1(isNull(o.metadata),and(notLike(o.metadata,'%"kind":"workflow_card"%'),notLike(o.metadata,'%"kind":"workflow_ui_instance"%'))))).run().changes??0}finally{e.close();}}findTaskStatus(t,e){let r=this.resolveDbPaths();for(let s of r){if(!existsSync(s))continue;let i=A(s);try{let a=e?eq(o.workspace_id,e):void 0,d=a?and(eq(o.id,t),a):eq(o.id,t),c=i.db.select().from(o).where(d).limit(1).get()??void 0;if(!c){let l=a?and(eq(o.thread_id,t),a):eq(o.thread_id,t);c=i.db.select().from(o).where(l).orderBy(desc(o.started_at)).limit(1).get()??void 0;}if(c)return c}catch(a){throw new u("DB_ERROR","Failed to find task status",a)}finally{i.close();}}}findChildTasks(t,e){let r=this.resolveDbPaths(),s=new Set,i=[];for(let a of r){if(!existsSync(a))continue;let d=A(a);try{let c=e?and(eq(o.parent_task_id,t),eq(o.workspace_id,e)):eq(o.parent_task_id,t),l=d.db.select().from(o).where(c).orderBy(asc(o.started_at)).all();for(let _ of l)s.has(_.id)||(s.add(_.id),i.push(_));}catch(c){throw new u("DB_ERROR","Failed to find child tasks",c)}finally{d.close();}}return i}getWorkspaceUsageSummary(t){if(!this.dbExists())return [];let e=this.openHandle(false);try{return e.db.all(t?sql`
|
|
57
57
|
SELECT
|
|
58
58
|
COALESCE(workspace_id, 'unknown') AS workspace_id,
|
|
59
59
|
COALESCE(SUM(input_tokens), 0) AS input_tokens,
|
|
@@ -74,7 +74,7 @@ ${r.join(`
|
|
|
74
74
|
FROM tasks
|
|
75
75
|
GROUP BY workspace_id
|
|
76
76
|
ORDER BY (COALESCE(SUM(input_tokens), 0) + COALESCE(SUM(output_tokens), 0)) DESC
|
|
77
|
-
`)}catch(r){throw new
|
|
77
|
+
`)}catch(r){throw new u("DB_ERROR","Failed to get workspace usage summary",r)}finally{e.close();}}getThreadTokenUsage(t,e){let r=this.resolveDbPaths(),s=new Set,i=0,a=0,d=0;for(let c of r){if(!existsSync(c))continue;let l=A(c);try{let _=eq(o.thread_id,t),p=e?and(_,eq(o.workspace_id,e)):_,g=l.db.select({id:o.id,input_tokens:o.input_tokens,output_tokens:o.output_tokens,cost_usd:o.cost_usd}).from(o).where(p).all();for(let f of g)s.has(f.id)||(s.add(f.id),i+=f.input_tokens??0,a+=f.output_tokens??0,d+=f.cost_usd??0);}catch(_){throw new u("DB_ERROR","Failed to get thread token usage",_)}finally{l.close();}}return {inputTokens:i,outputTokens:a,costUsd:d}}findTasksByThread(t,e,r){let s=this.resolveDbPaths(),i=new Set,a=[],d=r?.projection==="activity-log";for(let c of s){if(!existsSync(c))continue;let l=A(c);try{let _=eq(o.thread_id,t),p=e?and(_,eq(o.workspace_id,e)):_,g=d?l.db.select({id:o.id,thread_id:o.thread_id,agent_id:o.agent_id,parent_task_id:o.parent_task_id,started_at:o.started_at,completed_at:o.completed_at}).from(o).where(p).orderBy(asc(o.started_at)).all():l.db.select().from(o).where(p).orderBy(asc(o.started_at)).all();for(let f of g)i.has(f.id)||(i.add(f.id),a.push(f));}catch(_){throw new u("DB_ERROR","Failed to find tasks by thread",_)}finally{l.close();}}return a}parseWorkflowCardMetadata(t){if(!t)return {};try{let e=JSON.parse(t);return {kind:typeof e.kind=="string"?e.kind:void 0,workflowRunId:typeof e.workflowRunId=="string"?e.workflowRunId:void 0}}catch{return {}}}extractThreadIdFromCommand(t){return t?/--thread=(\S+)/.exec(t)?.[1]??null:null}findRunningWorkflowParentTasks(){if(!this.dbExists())return [];let t=[];for(let e of this.resolveDbPaths()){if(!existsSync(e))continue;let r=A(e);try{t.push(...r.db.select({id:o.id,agent_id:o.agent_id,thread_id:o.thread_id,workspace_id:o.workspace_id,platform:o.platform,status:o.status,error:o.error,completed_at:o.completed_at,duration_ms:o.duration_ms,started_at:o.started_at,metadata:o.metadata}).from(o).where(and(eq(o.platform,"workflow"),or$1(like(o.metadata,'%"kind":"workflow_card"%'),like(o.metadata,'%"kind":"workflow_ui_instance"%')))).orderBy(desc(o.started_at)).all());}catch(s){throw new u("DB_ERROR","Failed to find workflow parent tasks",s)}finally{r.close();}}return t}batchFetchWorkflowCards(t,e){let r=new Map;if(t.length===0)return r;let s=new Set(t),i=new Map,a=e?eq(o.workspace_id,e):void 0,d=(c,l)=>{if(!c)return;let _=i.get(c);if(_&&l.started_at<=_)return;let p=this.parseWorkflowCardMetadata(l.metadata);p.kind!=="workflow_card"&&p.kind!=="workflow_ui_instance"||(i.set(c,l.started_at),r.set(c,{taskId:l.id,workflowRunId:p.workflowRunId,raw:l.result??void 0}));};for(let c of this.resolveDbPaths()){if(!existsSync(c))continue;let l=A(c);try{let _=and(inArray(o.thread_id,t),or$1(like(o.metadata,'%"kind":"workflow_card"%'),like(o.metadata,'%"kind":"workflow_ui_instance"%'))),p=l.db.select({id:o.id,thread_id:o.thread_id,metadata:o.metadata,result:o.result,started_at:o.started_at}).from(o).where(a?and(_,a):_).all();for(let x of p)d(x.thread_id,x);let g=and(isNull(o.thread_id),or$1(like(o.metadata,'%"kind":"workflow_card"%'),like(o.metadata,'%"kind":"workflow_ui_instance"%'))),f=l.db.select({id:o.id,command:o.command,metadata:o.metadata,result:o.result,started_at:o.started_at}).from(o).where(a?and(g,a):g).all();for(let x of f){let O=this.extractThreadIdFromCommand(x.command);!O||!s.has(O)||d(O,x);}}catch(_){throw new u("DB_ERROR","Failed to batch fetch workflow cards",_)}finally{l.close();}}return r}findAllTasks(t){if(!this.dbExists())return {rows:[],total:0};let e=this.openHandle(false);try{let r=[];t.workspaceId&&r.push(eq(o.workspace_id,t.workspaceId));let s=t.agents&&t.agents.length>0?t.agents:t.agentId?[t.agentId]:null;s&&r.push(inArray(o.agent_id,s));let i=t.statuses&&t.statuses.length>0?t.statuses:t.status?[t.status]:null;i&&r.push(inArray(o.status,i));let a=t.q??t.search;a&&r.push(like(o.prompt,`%${a}%`)),t.from&&r.push(gte(o.started_at,t.from)),t.to&&r.push(lt(o.started_at,t.to));let d=r.length>0?and(...r):void 0,c=e.db.select({count:sql`count(*)`}).from(o).where(d).get(),l=(t.sortDir??"DESC")==="ASC"?asc(o.started_at):desc(o.started_at);return {rows:e.db.select().from(o).where(d).orderBy(l).limit(t.limit).offset(t.offset).all(),total:c?.count??0}}catch(r){throw new u("DB_ERROR","Failed to find all tasks",r)}finally{e.close();}}getAgentUsage(t,e,r){if(!this.dbExists())return [];let s=this.openHandle(false);try{return s.db.all(r?sql`
|
|
78
78
|
SELECT
|
|
79
79
|
t.agent_id,
|
|
80
80
|
t.workspace_id,
|
|
@@ -82,11 +82,11 @@ ${r.join(`
|
|
|
82
82
|
COALESCE(SUM(
|
|
83
83
|
COALESCE(t.input_tokens, 0)
|
|
84
84
|
+ CASE
|
|
85
|
-
WHEN t.started_at >= ${
|
|
85
|
+
WHEN t.started_at >= ${ft}
|
|
86
86
|
AND (
|
|
87
87
|
t.crewx_version IS NULL
|
|
88
88
|
OR (t.crewx_version LIKE '0.8.%' AND t.crewx_version NOT LIKE '0.8.9%')
|
|
89
|
-
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${
|
|
89
|
+
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${mt}) AS INTEGER) < ${kt})
|
|
90
90
|
)
|
|
91
91
|
THEN COALESCE(t.cached_input_tokens, 0)
|
|
92
92
|
ELSE 0
|
|
@@ -105,11 +105,11 @@ ${r.join(`
|
|
|
105
105
|
COALESCE(SUM(
|
|
106
106
|
COALESCE(t.input_tokens, 0)
|
|
107
107
|
+ CASE
|
|
108
|
-
WHEN t.started_at >= ${
|
|
108
|
+
WHEN t.started_at >= ${ft}
|
|
109
109
|
AND (
|
|
110
110
|
t.crewx_version IS NULL
|
|
111
111
|
OR (t.crewx_version LIKE '0.8.%' AND t.crewx_version NOT LIKE '0.8.9%')
|
|
112
|
-
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${
|
|
112
|
+
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${mt}) AS INTEGER) < ${kt})
|
|
113
113
|
)
|
|
114
114
|
THEN COALESCE(t.cached_input_tokens, 0)
|
|
115
115
|
ELSE 0
|
|
@@ -125,11 +125,11 @@ ${r.join(`
|
|
|
125
125
|
COALESCE(SUM(
|
|
126
126
|
COALESCE(t.input_tokens, 0)
|
|
127
127
|
+ CASE
|
|
128
|
-
WHEN t.started_at >= ${
|
|
128
|
+
WHEN t.started_at >= ${ft}
|
|
129
129
|
AND (
|
|
130
130
|
t.crewx_version IS NULL
|
|
131
131
|
OR (t.crewx_version LIKE '0.8.%' AND t.crewx_version NOT LIKE '0.8.9%')
|
|
132
|
-
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${
|
|
132
|
+
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${mt}) AS INTEGER) < ${kt})
|
|
133
133
|
)
|
|
134
134
|
THEN COALESCE(t.cached_input_tokens, 0)
|
|
135
135
|
ELSE 0
|
|
@@ -147,11 +147,11 @@ ${r.join(`
|
|
|
147
147
|
COALESCE(SUM(
|
|
148
148
|
COALESCE(t.input_tokens, 0)
|
|
149
149
|
+ CASE
|
|
150
|
-
WHEN t.started_at >= ${
|
|
150
|
+
WHEN t.started_at >= ${ft}
|
|
151
151
|
AND (
|
|
152
152
|
t.crewx_version IS NULL
|
|
153
153
|
OR (t.crewx_version LIKE '0.8.%' AND t.crewx_version NOT LIKE '0.8.9%')
|
|
154
|
-
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${
|
|
154
|
+
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${mt}) AS INTEGER) < ${kt})
|
|
155
155
|
)
|
|
156
156
|
THEN COALESCE(t.cached_input_tokens, 0)
|
|
157
157
|
ELSE 0
|
|
@@ -159,18 +159,18 @@ ${r.join(`
|
|
|
159
159
|
), 0)
|
|
160
160
|
+ COALESCE(SUM(t.output_tokens), 0)
|
|
161
161
|
) DESC
|
|
162
|
-
`).map(a=>({agentId:a.agent_id,workspaceId:a.workspace_id??null,totalTasks:a.total_tasks,inputTokens:a.input_tokens,outputTokens:a.output_tokens,cachedInputTokens:a.cached_input_tokens,costUsd:a.cost_usd,totalTokens:a.input_tokens+a.output_tokens}))}catch(
|
|
162
|
+
`).map(a=>({agentId:a.agent_id,workspaceId:a.workspace_id??null,totalTasks:a.total_tasks,inputTokens:a.input_tokens,outputTokens:a.output_tokens,cachedInputTokens:a.cached_input_tokens,costUsd:a.cost_usd,totalTokens:a.input_tokens+a.output_tokens}))}catch(i){throw new u("DB_ERROR","Failed to get agent usage",i)}finally{s.close();}}getAgentUsageTrendRaw(t,e,r){if(!this.dbExists())return [];let s=this.openHandle(false);try{return s.db.all(r?sql`
|
|
163
163
|
SELECT
|
|
164
164
|
date(t.started_at) AS date,
|
|
165
165
|
t.agent_id,
|
|
166
166
|
COALESCE(SUM(
|
|
167
167
|
COALESCE(t.input_tokens, 0)
|
|
168
168
|
+ CASE
|
|
169
|
-
WHEN t.started_at >= ${
|
|
169
|
+
WHEN t.started_at >= ${ft}
|
|
170
170
|
AND (
|
|
171
171
|
t.crewx_version IS NULL
|
|
172
172
|
OR (t.crewx_version LIKE '0.8.%' AND t.crewx_version NOT LIKE '0.8.9%')
|
|
173
|
-
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${
|
|
173
|
+
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${mt}) AS INTEGER) < ${kt})
|
|
174
174
|
)
|
|
175
175
|
THEN COALESCE(t.cached_input_tokens, 0)
|
|
176
176
|
ELSE 0
|
|
@@ -193,11 +193,11 @@ ${r.join(`
|
|
|
193
193
|
COALESCE(SUM(
|
|
194
194
|
COALESCE(t.input_tokens, 0)
|
|
195
195
|
+ CASE
|
|
196
|
-
WHEN t.started_at >= ${
|
|
196
|
+
WHEN t.started_at >= ${ft}
|
|
197
197
|
AND (
|
|
198
198
|
t.crewx_version IS NULL
|
|
199
199
|
OR (t.crewx_version LIKE '0.8.%' AND t.crewx_version NOT LIKE '0.8.9%')
|
|
200
|
-
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${
|
|
200
|
+
OR (t.crewx_version LIKE '0.8.9-rc.%' AND CAST(SUBSTR(t.crewx_version, ${mt}) AS INTEGER) < ${kt})
|
|
201
201
|
)
|
|
202
202
|
THEN COALESCE(t.cached_input_tokens, 0)
|
|
203
203
|
ELSE 0
|
|
@@ -212,98 +212,98 @@ ${r.join(`
|
|
|
212
212
|
AND t.started_at < ${e}
|
|
213
213
|
GROUP BY date(t.started_at), t.agent_id
|
|
214
214
|
ORDER BY date(t.started_at) ASC
|
|
215
|
-
`).map(a=>({date:a.date,agentId:a.agent_id,inputTokens:a.input_tokens,outputTokens:a.output_tokens,cachedInputTokens:a.cached_input_tokens,costUsd:a.cost_usd,totalTokens:a.input_tokens+a.output_tokens}))}catch(
|
|
216
|
-
COALESCE(${
|
|
215
|
+
`).map(a=>({date:a.date,agentId:a.agent_id,inputTokens:a.input_tokens,outputTokens:a.output_tokens,cachedInputTokens:a.cached_input_tokens,costUsd:a.cost_usd,totalTokens:a.input_tokens+a.output_tokens}))}catch(i){throw new u("DB_ERROR","Failed to get agent usage trend",i)}finally{s.close();}}findTaskForStop(t,e){if(!this.dbExists())return;let r=this.openHandle(false);try{return r.db.select().from(o).where(and(eq(o.id,t),eq(o.workspace_id,e))).limit(1).get()??void 0}catch(s){throw new u("DB_ERROR","Failed to find task for stop",s)}finally{r.close();}}findLatestTaskByMetadata(t){if(!this.dbExists())return null;let e=this.openHandle(false);try{return e.db.select({id:o.id,thread_id:o.thread_id,status:o.status,result:o.result,error:o.error,started_at:o.started_at,completed_at:o.completed_at,metadata:o.metadata}).from(o).where(and(eq(o.agent_id,t.agentId),eq(o.workspace_id,t.workspaceId),sql`${o.metadata} IS NOT NULL AND json_valid(${o.metadata}) AND json_extract(${o.metadata}, '$.' || ${t.metaKey}) = ${t.metaValue}`)).orderBy(desc(o.started_at)).limit(1).get()??null}catch(r){throw new u("DB_ERROR","Failed to find latest task by metadata",r)}finally{e.close();}}markTaskFailed(t,e,r){if(!this.dbExists())return;let s=this.openHandle(true);try{let i=new Date().toISOString(),a=r?and(eq(o.id,t),eq(o.status,"running"),eq(o.workspace_id,r)):and(eq(o.id,t),eq(o.status,"running"));s.db.update(o).set({status:"failed",error:e,completed_at:i}).where(a).run();}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to mark task failed",i)}finally{s.close();}}findTasksByPromptHint(t,e){let r=this.resolveDbPaths(),s=new Set,i=[];for(let a of r){if(!existsSync(a))continue;let d=A(a);try{let c=e?and(like(o.prompt,`%${t}%`),eq(o.workspace_id,e)):like(o.prompt,`%${t}%`),l=d.db.select().from(o).where(c).orderBy(asc(o.started_at)).all();for(let _ of l)s.has(_.id)||(s.add(_.id),i.push(_));}catch(c){throw new u("DB_ERROR","Failed to find tasks by prompt hint",c)}finally{d.close();}}return i}getProviderUsage(t,e,r){if(!this.dbExists())return [];let s=this.openHandle(false);try{let i=En(),a=sql`
|
|
216
|
+
COALESCE(${o.input_tokens}, 0)
|
|
217
217
|
+ CASE
|
|
218
|
-
WHEN ${
|
|
218
|
+
WHEN ${o.started_at} >= ${ft}
|
|
219
219
|
AND (
|
|
220
|
-
${
|
|
221
|
-
OR (${
|
|
222
|
-
OR (${
|
|
220
|
+
${o.crewx_version} IS NULL
|
|
221
|
+
OR (${o.crewx_version} LIKE '0.8.%' AND ${o.crewx_version} NOT LIKE '0.8.9%')
|
|
222
|
+
OR (${o.crewx_version} LIKE '0.8.9-rc.%' AND CAST(SUBSTR(${o.crewx_version}, ${mt}) AS INTEGER) < ${kt})
|
|
223
223
|
)
|
|
224
|
-
THEN COALESCE(${
|
|
224
|
+
THEN COALESCE(${o.cached_input_tokens}, 0)
|
|
225
225
|
ELSE 0
|
|
226
226
|
END
|
|
227
|
-
`,d=r?sql`WHERE ${
|
|
227
|
+
`,d=r?sql`WHERE ${o.status} IN ('completed', 'success') AND ${o.started_at} >= ${t} AND ${o.started_at} < ${e} AND ${o.workspace_id} = ${r}`:sql`WHERE ${o.status} IN ('completed', 'success') AND ${o.started_at} >= ${t} AND ${o.started_at} < ${e}`;return s.db.all(sql`
|
|
228
228
|
SELECT
|
|
229
|
-
${
|
|
229
|
+
${i} AS provider,
|
|
230
230
|
COUNT(*) AS total_tasks,
|
|
231
231
|
COALESCE(SUM(${a}), 0) AS input_tokens,
|
|
232
|
-
COALESCE(SUM(${
|
|
233
|
-
COALESCE(SUM(${
|
|
234
|
-
COALESCE(SUM(${
|
|
235
|
-
COALESCE(SUM(${
|
|
236
|
-
MAX(${
|
|
237
|
-
FROM ${
|
|
232
|
+
COALESCE(SUM(${o.output_tokens}), 0) AS output_tokens,
|
|
233
|
+
COALESCE(SUM(${o.cached_input_tokens}), 0) AS cached_input_tokens,
|
|
234
|
+
COALESCE(SUM(${o.cost_usd}), 0) AS cost_usd,
|
|
235
|
+
COALESCE(SUM(${o.duration_ms}), 0) AS active_duration_ms,
|
|
236
|
+
MAX(${o.completed_at}) AS last_active_at
|
|
237
|
+
FROM ${o}
|
|
238
238
|
${d}
|
|
239
|
-
GROUP BY ${
|
|
240
|
-
ORDER BY (COALESCE(SUM(${a}), 0) + COALESCE(SUM(${
|
|
241
|
-
`).map(l=>({provider:l.provider,totalTasks:l.total_tasks,inputTokens:l.input_tokens,outputTokens:l.output_tokens,cachedInputTokens:l.cached_input_tokens,costUsd:l.cost_usd,totalTokens:l.input_tokens+l.output_tokens,activeDurationMs:l.active_duration_ms??0,lastActiveAt:l.last_active_at??null}))}catch(
|
|
242
|
-
COALESCE(${
|
|
239
|
+
GROUP BY ${i}
|
|
240
|
+
ORDER BY (COALESCE(SUM(${a}), 0) + COALESCE(SUM(${o.output_tokens}), 0)) DESC
|
|
241
|
+
`).map(l=>({provider:l.provider,totalTasks:l.total_tasks,inputTokens:l.input_tokens,outputTokens:l.output_tokens,cachedInputTokens:l.cached_input_tokens,costUsd:l.cost_usd,totalTokens:l.input_tokens+l.output_tokens,activeDurationMs:l.active_duration_ms??0,lastActiveAt:l.last_active_at??null}))}catch(i){throw new u("DB_ERROR","Failed to get provider usage",i)}finally{s.close();}}getModelUsage(t,e,r){if(!this.dbExists())return [];let s=this.openHandle(false);try{let i=En(),a=sql`
|
|
242
|
+
COALESCE(${o.input_tokens}, 0)
|
|
243
243
|
+ CASE
|
|
244
|
-
WHEN ${
|
|
244
|
+
WHEN ${o.started_at} >= ${ft}
|
|
245
245
|
AND (
|
|
246
|
-
${
|
|
247
|
-
OR (${
|
|
248
|
-
OR (${
|
|
246
|
+
${o.crewx_version} IS NULL
|
|
247
|
+
OR (${o.crewx_version} LIKE '0.8.%' AND ${o.crewx_version} NOT LIKE '0.8.9%')
|
|
248
|
+
OR (${o.crewx_version} LIKE '0.8.9-rc.%' AND CAST(SUBSTR(${o.crewx_version}, ${mt}) AS INTEGER) < ${kt})
|
|
249
249
|
)
|
|
250
|
-
THEN COALESCE(${
|
|
250
|
+
THEN COALESCE(${o.cached_input_tokens}, 0)
|
|
251
251
|
ELSE 0
|
|
252
252
|
END
|
|
253
|
-
`,d=r?sql`WHERE ${
|
|
253
|
+
`,d=r?sql`WHERE ${o.status} IN ('completed', 'success') AND ${o.started_at} >= ${t} AND ${o.started_at} < ${e} AND ${o.workspace_id} = ${r}`:sql`WHERE ${o.status} IN ('completed', 'success') AND ${o.started_at} >= ${t} AND ${o.started_at} < ${e}`,c=s.db.all(sql`
|
|
254
254
|
SELECT
|
|
255
|
-
${
|
|
256
|
-
${
|
|
255
|
+
${o.model} AS model,
|
|
256
|
+
${i} AS provider,
|
|
257
257
|
COUNT(*) AS total_tasks,
|
|
258
258
|
COALESCE(SUM(${a}), 0) AS input_tokens,
|
|
259
|
-
COALESCE(SUM(${
|
|
260
|
-
COALESCE(SUM(${
|
|
261
|
-
COALESCE(SUM(${
|
|
262
|
-
COALESCE(SUM(${
|
|
263
|
-
MAX(${
|
|
264
|
-
FROM ${
|
|
259
|
+
COALESCE(SUM(${o.output_tokens}), 0) AS output_tokens,
|
|
260
|
+
COALESCE(SUM(${o.cached_input_tokens}), 0) AS cached_input_tokens,
|
|
261
|
+
COALESCE(SUM(${o.cost_usd}), 0) AS cost_usd,
|
|
262
|
+
COALESCE(SUM(${o.duration_ms}), 0) AS active_duration_ms,
|
|
263
|
+
MAX(${o.completed_at}) AS last_active_at
|
|
264
|
+
FROM ${o}
|
|
265
265
|
${d}
|
|
266
|
-
GROUP BY ${
|
|
267
|
-
`),l=new Map;for(let
|
|
266
|
+
GROUP BY ${o.model}, ${i}
|
|
267
|
+
`),l=new Map;for(let _ of c){let p=gn(_.model??""),g=JSON.stringify([_.provider,p]),f=l.get(g);f?(f.totalTasks+=_.total_tasks,f.inputTokens+=_.input_tokens,f.outputTokens+=_.output_tokens,f.cachedInputTokens+=_.cached_input_tokens,f.costUsd+=_.cost_usd,f.totalTokens+=_.input_tokens+_.output_tokens,f.activeDurationMs+=_.active_duration_ms??0,_.last_active_at&&(!f.lastActiveAt||_.last_active_at>f.lastActiveAt)&&(f.lastActiveAt=_.last_active_at)):l.set(g,{model:p,provider:_.provider,totalTasks:_.total_tasks,inputTokens:_.input_tokens,outputTokens:_.output_tokens,cachedInputTokens:_.cached_input_tokens,costUsd:_.cost_usd,totalTokens:_.input_tokens+_.output_tokens,activeDurationMs:_.active_duration_ms??0,lastActiveAt:_.last_active_at??null});}return Array.from(l.values()).sort((_,p)=>p.costUsd-_.costUsd)}catch(i){throw new u("DB_ERROR","Failed to get model usage",i)}finally{s.close();}}getTasksForReport(t,e,r){if(!this.dbExists())return [];let s=this.openHandle(false);try{let i=r?sql`WHERE ${o.started_at} >= ${t} AND ${o.started_at} < ${e} AND ${o.workspace_id} = ${r}`:sql`WHERE ${o.started_at} >= ${t} AND ${o.started_at} < ${e}`;return s.db.all(sql`
|
|
268
268
|
SELECT
|
|
269
|
-
${
|
|
270
|
-
${
|
|
271
|
-
${
|
|
272
|
-
${
|
|
273
|
-
${
|
|
274
|
-
${
|
|
275
|
-
FROM ${
|
|
276
|
-
${
|
|
277
|
-
ORDER BY ${
|
|
278
|
-
`).map(d=>({threadId:d.thread_id,agentId:d.agent_id,startedAt:d.started_at,status:d.status,error:d.error,exitCode:d.exit_code}))}catch(
|
|
279
|
-
COALESCE(${
|
|
269
|
+
${o.thread_id} AS thread_id,
|
|
270
|
+
${o.agent_id} AS agent_id,
|
|
271
|
+
${o.started_at} AS started_at,
|
|
272
|
+
${o.status} AS status,
|
|
273
|
+
${o.error} AS error,
|
|
274
|
+
${o.exit_code} AS exit_code
|
|
275
|
+
FROM ${o}
|
|
276
|
+
${i}
|
|
277
|
+
ORDER BY ${o.started_at} ASC
|
|
278
|
+
`).map(d=>({threadId:d.thread_id,agentId:d.agent_id,startedAt:d.started_at,status:d.status,error:d.error,exitCode:d.exit_code}))}catch(i){throw new u("DB_ERROR","Failed to get tasks for report",i)}finally{s.close();}}getDelegationMatrix(t,e,r){if(!this.dbExists())return {edges:[],truncated:false};let s=this.openHandle(false);try{let i=sql`
|
|
279
|
+
COALESCE(${o.input_tokens}, 0)
|
|
280
280
|
+ CASE
|
|
281
|
-
WHEN ${
|
|
281
|
+
WHEN ${o.started_at} >= ${ft}
|
|
282
282
|
AND (
|
|
283
|
-
${
|
|
284
|
-
OR (${
|
|
285
|
-
OR (${
|
|
283
|
+
${o.crewx_version} IS NULL
|
|
284
|
+
OR (${o.crewx_version} LIKE '0.8.%' AND ${o.crewx_version} NOT LIKE '0.8.9%')
|
|
285
|
+
OR (${o.crewx_version} LIKE '0.8.9-rc.%' AND CAST(SUBSTR(${o.crewx_version}, ${mt}) AS INTEGER) < ${kt})
|
|
286
286
|
)
|
|
287
|
-
THEN COALESCE(${
|
|
287
|
+
THEN COALESCE(${o.cached_input_tokens}, 0)
|
|
288
288
|
ELSE 0
|
|
289
289
|
END
|
|
290
|
-
`,a=r?sql`WHERE ${
|
|
290
|
+
`,a=r?sql`WHERE ${o.status} IN ('completed', 'success') AND ${o.started_at} >= ${t} AND ${o.started_at} < ${e} AND ${o.workspace_id} = ${r}`:sql`WHERE ${o.status} IN ('completed', 'success') AND ${o.started_at} >= ${t} AND ${o.started_at} < ${e}`,d=s.db.all(sql`
|
|
291
291
|
SELECT
|
|
292
|
-
${
|
|
293
|
-
${
|
|
292
|
+
${o.caller_agent_id} AS caller_agent_id,
|
|
293
|
+
${o.agent_id} AS agent_id,
|
|
294
294
|
COUNT(*) AS task_count,
|
|
295
|
-
COALESCE(SUM(${
|
|
296
|
-
COALESCE(SUM(${
|
|
297
|
-
FROM ${
|
|
295
|
+
COALESCE(SUM(${i}), 0) AS input_tokens,
|
|
296
|
+
COALESCE(SUM(${o.output_tokens}), 0) AS output_tokens
|
|
297
|
+
FROM ${o}
|
|
298
298
|
${a}
|
|
299
|
-
GROUP BY ${
|
|
300
|
-
ORDER BY task_count DESC, ${
|
|
301
|
-
LIMIT ${
|
|
302
|
-
`),c=d.length>
|
|
299
|
+
GROUP BY ${o.caller_agent_id}, ${o.agent_id}
|
|
300
|
+
ORDER BY task_count DESC, ${o.caller_agent_id} ASC, ${o.agent_id} ASC
|
|
301
|
+
LIMIT ${Ce+1}
|
|
302
|
+
`),c=d.length>Ce;return {edges:d.slice(0,Ce).map(_=>({callerAgentId:_.caller_agent_id??null,agentId:_.agent_id,taskCount:_.task_count,totalTokens:_.input_tokens+_.output_tokens,outputTokens:_.output_tokens})),truncated:c}}catch(i){throw new u("DB_ERROR","Failed to get delegation matrix",i)}finally{s.close();}}findTaskEvidence(t){if(!this.dbExists())return [];let e=this.openHandle(false);try{let r=[];t.workspaceId&&r.push(eq(o.workspace_id,t.workspaceId)),t.agents&&t.agents.length>0&&r.push(inArray(o.agent_id,t.agents)),t.statuses&&t.statuses.length>0&&r.push(inArray(o.status,t.statuses)),t.from&&r.push(gte(o.started_at,t.from)),t.to&&r.push(lt(o.started_at,t.to));let s=r.length>0?and(...r):void 0,i=(t.order??"DESC")==="ASC"?asc(o.started_at):desc(o.started_at),a={id:o.id,agent_id:o.agent_id,status:o.status,prompt:o.prompt,started_at:o.started_at,completed_at:o.completed_at,thread_id:o.thread_id};return t.limit?e.db.select(a).from(o).where(s).orderBy(i).limit(t.limit).all():e.db.select(a).from(o).where(s).orderBy(i).all()}catch(r){throw new u("DB_ERROR","Failed to find task evidence",r)}finally{e.close();}}findThreadChains(t){if(!this.dbExists())return [];let e=this.openHandle(false);try{let r=t.maxThreads??8,s=t.maxTurnsPerThread??4,i=[isNotNull(o.thread_id),isNull(o.parent_task_id),isNull(o.caller_agent_id),or$1(isNull(o.platform),ne(o.platform,"workflow")),or$1(isNull(o.metadata),and(notLike(o.metadata,'%"kind":"workflow_card"%'),notLike(o.metadata,'%"kind":"workflow_ui_instance"%'))),or$1(isNull(o.metadata),notLike(o.metadata,'%"retriedFromTaskId"%'))];t.workspaceId&&i.push(eq(o.workspace_id,t.workspaceId)),t.from&&i.push(gte(o.started_at,t.from)),t.to&&i.push(lt(o.started_at,t.to));let a=e.db.select({id:o.id,agent_id:o.agent_id,status:o.status,prompt:o.prompt,started_at:o.started_at,completed_at:o.completed_at,thread_id:o.thread_id}).from(o).where(and(...i)).orderBy(asc(o.started_at),asc(o.id)).all(),d=new Map;for(let l of a){if(!l.thread_id)continue;let _={id:l.id,agentId:l.agent_id,status:l.status,prompt:l.prompt,startedAt:l.started_at,completedAt:l.completed_at},p=d.get(l.thread_id);p?p.push(_):d.set(l.thread_id,[_]);}let c=[];for(let[l,_]of d){let p=_.filter(g=>g.agentId===t.targetAgentId).length;p<2||c.push({threadId:l,targetAgentTurnCount:p,turns:_});}return c.sort((l,_)=>{let p=l.turns[l.turns.length-1].startedAt,g=_.turns[_.turns.length-1].startedAt;return p<g?1:p>g?-1:0}),c.slice(0,r).map(l=>({threadId:l.threadId,targetAgentTurnCount:l.targetAgentTurnCount,turns:l.turns.slice(-s)}))}catch(r){throw new u("DB_ERROR","Failed to find thread chains",r)}finally{e.close();}}};var us=200,_s=200;function hs(n){if(typeof n!="object"||n===null||!("code"in n))return;let t=n.code;return typeof t=="string"&&t.length>0?t:void 0}function ps(n){let t=n instanceof u?n.code:void 0,e=n instanceof u?n.cause:n,r=hs(e);return {code:t??r??"DB_ERROR",cause:r??(e instanceof Error?e.name:t??typeof e)}}function In(n){return Buffer.byteLength(JSON.stringify(n),"utf8")}var xe=class extends Tt{name="sqlite-tracing";unsubs=[];dbPath;version;taskRepo;queues=new Map;metrics={flushCount:0,flushedEntries:0,maxQueueEntries:0,maxQueueBytes:0,appendFailureCount:0,appendFailureEntries:0,appendFailureBytes:0,appendFailureByCode:{},appendFailureByCause:{}};constructor(t){super(),this.dbPath=join(t?.dbRoot??homedir(),".crewx","crewx.db"),this.version=t?.version??"unknown";}attach(t){let e=new ie({dbPath:this.dbPath});this.taskRepo=e;let r=process.cwd(),i=existsSync(join(r,"crewx.yaml"))||existsSync(join(r,"crewx.yml"))?Ge(r):null,a=process.argv.join(" ");this.unsubs.push(t.on("task:start",d=>{try{let c=d.callerAgentId??null,l=d.parentTaskId??null,_=d.rootTraceId??d.traceId,p=d.metadata?JSON.stringify(d.metadata):JSON.stringify({provider:d.provider??"cli/claude"});e.startTask({id:d.traceId,agentId:d.agentRef.replace(/^@/,""),prompt:d.message,mode:d.mode,status:"running",pid:d.pid??null,startedAt:d.timestamp.toISOString(),crewxVersion:this.version,platform:d.platform??"cli",model:d.model??null,renderedPrompt:d.renderedPrompt??null,command:a,codingAgentCommand:d.codingAgentCommand??null,workspaceId:d.workspaceId??i,projectId:d.projectId??null,callerAgentId:c,parentTaskId:l,traceId:_,metadata:p,threadId:d.threadId??null});}catch{}}),t.on("task:output",d=>{try{this.enqueueLog(d.traceId,{timestamp:d.timestamp.toISOString(),level:d.level??"stdout",message:d.output});}catch(c){let l={timestamp:d.timestamp.toISOString(),level:d.level??"stdout",message:d.output};this.recordAppendFailure(c,[l],In(l));}}),t.on("task:end",d=>{try{this.flushTaskLogs(d.traceId);let c=typeof d.metadata?.runEpoch=="number"?d.metadata.runEpoch:null,l=d.error?JSON.stringify({code:d.error.code,message:d.error.message,...d.error.providerCode?{providerCode:d.error.providerCode}:{}}):null;e.finishTask({id:d.traceId,status:d.error?"failed":"success",result:d.result??null,error:l,completedAt:d.timestamp.toISOString(),durationMs:d.durationMs,exitCode:d.exitCode??null,inputTokens:d.inputTokens??0,outputTokens:d.outputTokens??0,cachedInputTokens:d.cachedInputTokens??0,costUsd:d.costUsd??0,model:d.model??null,runEpoch:c});}catch{}}));}detach(t){try{this.flushAllTaskLogs();}finally{this.clearAllTimers(),this.unsubs.forEach(e=>e()),this.unsubs=[],this.queues.clear(),this.taskRepo=void 0;}}getMetrics(){let t=0,e=0;for(let r of this.queues.values())t+=r.entries.length,e+=r.bytes;return {...this.metrics,appendFailureByCode:{...this.metrics.appendFailureByCode},appendFailureByCause:{...this.metrics.appendFailureByCause},pendingQueueEntries:t,pendingQueueBytes:e}}enqueueLog(t,e){let r=this.queues.get(t);if(r||(r={entries:[],bytes:0},this.queues.set(t,r)),r.entries.push(e),r.bytes+=In(e),this.metrics.maxQueueEntries=Math.max(this.metrics.maxQueueEntries,r.entries.length),this.metrics.maxQueueBytes=Math.max(this.metrics.maxQueueBytes,r.bytes),r.entries.length>=us){this.flushTaskLogs(t);return}if(!r.timer){let s=setTimeout(()=>{let i=this.queues.get(t);!i||i.timer!==s||(i.timer=void 0,this.flushTaskLogs(t));},_s);r.timer=s;}}flushTaskLogs(t){let e=this.queues.get(t);if(!e||e.entries.length===0){e?.timer&&clearTimeout(e.timer),this.queues.delete(t);return}e.timer&&(clearTimeout(e.timer),e.timer=void 0);let r=e.entries,s=e.bytes;e.entries=[],e.bytes=0,this.metrics.flushCount+=1;try{this.taskRepo?.appendLogs(t,r),this.metrics.flushedEntries+=r.length;}catch(a){this.recordAppendFailure(a,r,s);}let i=this.queues.get(t);i&&i.entries.length===0&&(i.timer&&clearTimeout(i.timer),this.queues.delete(t));}flushAllTaskLogs(){for(let t of [...this.queues.keys()])this.flushTaskLogs(t);}clearAllTimers(){for(let t of this.queues.values())t.timer&&(clearTimeout(t.timer),t.timer=void 0);}recordAppendFailure(t,e,r){let s=ps(t);this.metrics.appendFailureCount+=1,this.metrics.appendFailureEntries+=e.length,this.metrics.appendFailureBytes+=r,this.metrics.appendFailureByCode[s.code]=(this.metrics.appendFailureByCode[s.code]??0)+1,this.metrics.appendFailureByCause[s.cause]=(this.metrics.appendFailureByCause[s.cause]??0)+1,console.warn("[crewx] sqlite tracing append failed",{code:s.code,cause:s.cause,pendingEntries:e.length,pendingBytes:r});}};var xt=class extends u{reason;constructor(t,e=t){super("VALIDATION",e),this.name="ThreadTitleMetadataPatchError",this.reason=t;}};function jt(n){if(!n)return {};try{let t=JSON.parse(n);return !t||typeof t!="object"||Array.isArray(t)?{}:t}catch{return {}}}function Ts(n){let e=jt(n).threadTitle;if(!e||typeof e!="object"||Array.isArray(e))return {priority:null,state:null};let r=e;return {priority:typeof r.priority=="string"?r.priority:null,state:typeof r.state=="string"?r.state:null}}var ae=class extends Y{dbPath;constructor(t={}){super(),t.dbPath?this.dbPath=t.dbPath:t.dbRoot&&(this.dbPath=join(t.dbRoot,".crewx","crewx.db"));}resolveDbPath(){return this.dbPath?this.dbPath:super.resolveDbPath()}openHandle(t){let e=this.resolveDbPath();if(t){let s=dirname(e);existsSync(s)||mkdirSync(s,{recursive:true});}else if(!existsSync(e))throw new u("NOT_FOUND","Database not found");let r=A(e);if(t)try{nt(r.db,e);}catch(s){throw r.close(),s}return r}validateWorkspaceId(t,e){return t.db.select({id:Ct.id}).from(Ct).where(eq(Ct.id,e)).limit(1).get()?e:null}topLevelTaskPredicateSql(t="child"){return sql.raw(`NOT EXISTS (
|
|
303
303
|
SELECT 1 FROM tasks parent
|
|
304
304
|
WHERE parent.id = ${t}.parent_task_id
|
|
305
305
|
AND parent.thread_id = ${t}.thread_id
|
|
306
|
-
)`)}findAllThreads(t){let e=this.resolveDbPaths(),r=new Set,
|
|
306
|
+
)`)}findAllThreads(t){let e=this.resolveDbPaths(),r=new Set,s=[];for(let i of e){if(!existsSync(i))continue;let a=A(i);try{let d=t?eq(h.workspace_id,t):void 0,c=a.db.select().from(h).where(d).orderBy(desc(h.updated_at)).all();for(let l of c)r.has(l.id)||(r.add(l.id),s.push(l));}catch(d){throw new u("DB_ERROR","Failed to find all threads",d)}finally{a.close();}}return s}findThreadsByIdsOrTitles(t,e){if(t.length===0)return [];let r=this.resolveDbPaths(),s=new Set,i=[];for(let a of r){if(!existsSync(a))continue;let d=A(a);try{let c=or$1(inArray(h.id,t),inArray(h.title,t)),l=e?and(c,eq(h.workspace_id,e)):c,_=d.db.select().from(h).where(l).orderBy(desc(h.updated_at)).all();for(let p of _)s.has(p.id)||(s.add(p.id),i.push(p));}catch(c){throw new u("DB_ERROR","Failed to find threads by ids or titles",c)}finally{d.close();}}return i}findThreadById(t,e){let r=this.resolveDbPaths();for(let s of r){if(!existsSync(s))continue;let i=A(s);try{let a=eq(h.id,t),d=e?and(a,eq(h.workspace_id,e)):a,c=i.db.select().from(h).where(d).limit(1).get()??void 0;if(c)return c}catch(a){throw new u("DB_ERROR","Failed to find thread by id",a)}finally{i.close();}}}threadExists(t,e){let r=this.resolveDbPaths();for(let s of r){if(!existsSync(s))continue;let i=A(s);try{let a=eq(h.id,t),d=e?and(a,eq(h.workspace_id,e)):a;if(i.db.select({id:h.id}).from(h).where(d).limit(1).get())return !0}catch(a){throw new u("DB_ERROR","Failed to check thread existence",a)}finally{i.close();}}return false}aggregateTaskStats(t,e){let r=this.resolveDbPaths(),s=0,i=0,a=0,d=0,c=0,l=new Set;for(let _ of r){if(!existsSync(_))continue;let p=A(_);try{let g=p.db.get(sql`
|
|
307
307
|
SELECT
|
|
308
308
|
count(*) AS cnt,
|
|
309
309
|
COALESCE(SUM(child.input_tokens), 0) AS total_input,
|
|
@@ -314,13 +314,13 @@ ${r.join(`
|
|
|
314
314
|
WHERE child.thread_id = ${t}
|
|
315
315
|
AND ${this.topLevelTaskPredicateSql()}
|
|
316
316
|
${e?sql`AND child.workspace_id = ${e}`:sql``}
|
|
317
|
-
`);g&&(
|
|
317
|
+
`);g&&(s+=g.cnt,i+=g.total_input,a+=g.total_output,d+=g.total_cached,c+=g.total_cost);let f=p.db.all(sql`
|
|
318
318
|
SELECT DISTINCT child.agent_id FROM tasks child
|
|
319
319
|
WHERE child.thread_id = ${t}
|
|
320
320
|
AND child.agent_id IS NOT NULL AND child.agent_id != ''
|
|
321
321
|
AND ${this.topLevelTaskPredicateSql()}
|
|
322
322
|
${e?sql`AND child.workspace_id = ${e}`:sql``}
|
|
323
|
-
`);for(let
|
|
323
|
+
`);for(let x of f)l.add(x.agent_id);}catch(g){throw new u("DB_ERROR","Failed to aggregate task stats",g)}finally{p.close();}}return {taskCount:s,inputTokens:i,outputTokens:a,cachedInputTokens:d,costUsd:c,agentIds:Array.from(l)}}findTopLevelTasks(t,e,r){let s=this.resolveDbPaths(),i=new Set,a=[];for(let d of s){if(!existsSync(d))continue;let c=A(d);try{let l;r!==void 0?l=c.db.all(sql`
|
|
324
324
|
SELECT * FROM (
|
|
325
325
|
SELECT child.*,
|
|
326
326
|
ROW_NUMBER() OVER (PARTITION BY child.agent_id ORDER BY child.started_at DESC) AS rn
|
|
@@ -337,7 +337,7 @@ ${r.join(`
|
|
|
337
337
|
AND ${this.topLevelTaskPredicateSql()}
|
|
338
338
|
${e?sql`AND child.workspace_id = ${e}`:sql``}
|
|
339
339
|
ORDER BY child.started_at ASC
|
|
340
|
-
`);for(let
|
|
340
|
+
`);for(let _ of l)i.has(_.id)||(i.add(_.id),a.push(_));}catch(l){throw new u("DB_ERROR","Failed to find top-level tasks",l)}finally{c.close();}}if(r!==void 0&&s.length>1){let d=new Map;for(let c of a){let l=c.agent_id??"";d.has(l)||d.set(l,[]),d.get(l).push(c);}a=[];for(let c of d.values())c.sort((l,_)=>(_.started_at??"").localeCompare(l.started_at??"")),a.push(...c.slice(0,r));a.sort((c,l)=>(c.started_at??"").localeCompare(l.started_at??""));}return a}findAllTasks(t,e){let r=this.resolveDbPaths(),s=new Set,i=[];for(let a of r){if(!existsSync(a))continue;let d=A(a);try{let c=eq(o.thread_id,t),l=e?and(c,eq(o.workspace_id,e)):c,_=d.db.select().from(o).where(l).orderBy(asc(o.started_at)).all();for(let p of _)s.has(p.id)||(s.add(p.id),i.push(p));}catch(c){throw new u("DB_ERROR","Failed to find all tasks for thread",c)}finally{d.close();}}return i}findTaskById(t,e,r){let s=this.resolveDbPaths();for(let i of s){if(!existsSync(i))continue;let a=A(i);try{let d=and(eq(o.id,e),eq(o.thread_id,t)),c=r?and(d,eq(o.workspace_id,r)):d,l=a.db.select().from(o).where(c).limit(1).get();if(!l)continue;let _=a.db.select().from(o).where(eq(o.parent_task_id,l.id)).orderBy(asc(o.started_at)).all();return {task:l,children:_}}catch(d){throw new u("DB_ERROR","Failed to find task by id",d)}finally{a.close();}}}batchFetchTasksQuery(t,e){return sql`
|
|
341
341
|
SELECT child.id, child.thread_id, child.agent_id, child.status,
|
|
342
342
|
child.parent_task_id, child.started_at, child.completed_at,
|
|
343
343
|
child.duration_ms, child.input_tokens, child.output_tokens,
|
|
@@ -347,19 +347,19 @@ ${r.join(`
|
|
|
347
347
|
AND ${this.topLevelTaskPredicateSql()}
|
|
348
348
|
${e?sql`AND child.workspace_id = ${e}`:sql``}
|
|
349
349
|
ORDER BY child.started_at ASC
|
|
350
|
-
`}batchFetchTasks(t,e){let r=new Map;if(t.length===0)return r;let
|
|
350
|
+
`}batchFetchTasks(t,e){let r=new Map;if(t.length===0)return r;let s=this.resolveDbPaths();for(let i of s){if(!existsSync(i))continue;let a=A(i);try{let d=a.db.all(this.batchFetchTasksQuery(t,e));for(let c of d){let l=c.thread_id;r.has(l)||r.set(l,[]),r.get(l).push(c);}}catch(d){throw new u("DB_ERROR","Failed to batch fetch tasks",d)}finally{a.close();}}return r}explainBatchFetchTasksPlan(t,e){let r=this.resolveDbPaths();for(let s of r){if(!existsSync(s))continue;let i=A(s);try{return i.db.all(sql`EXPLAIN QUERY PLAN ${this.batchFetchTasksQuery(t,e)}`).map(d=>d.detail)}finally{i.close();}}return []}updateThreadTitle(t,e,r){if(!this.dbExists())return;let s=this.openHandle(true);try{let i=eq(h.id,t),a=r?and(i,eq(h.workspace_id,r)):i;if(!s.db.select({id:h.id}).from(h).where(a).limit(1).get())return;s.db.update(h).set({title:e,title_locked:1,updated_at:new Date().toISOString()}).where(eq(h.id,t)).run();}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to update thread title",i)}finally{s.close();}}upsertThread(t,e){let r=this.openHandle(true);try{let s=e.workspaceId?this.validateWorkspaceId(r,e.workspaceId):null,i=new Date().toISOString();if(r.db.select({id:h.id,message_count:h.message_count}).from(h).where(eq(h.id,t)).limit(1).get()){let d={updated_at:i};e.title!==void 0&&(d.title=e.title),e.titleLocked!==void 0&&(d.title_locked=e.titleLocked?1:0),r.db.update(h).set(d).where(eq(h.id,t)).run();}else r.db.insert(h).values({id:t,platform:e.platform,workspace_id:s,title:e.title??null,title_locked:e.titleLocked?1:0,message_count:0,created_at:i,updated_at:i}).run();}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to upsert thread",s)}finally{r.close();}}ensureThread(t,e,r){let s=this.openHandle(true);try{let i=r?this.validateWorkspaceId(s,r):null,a=s.db.select({id:h.id,platform:h.platform,workspace_id:h.workspace_id}).from(h).where(eq(h.id,t)).limit(1).get();if(a){i&&!a.workspace_id&&s.db.update(h).set({workspace_id:i}).where(eq(h.id,t)).run();return}let d=new Date().toISOString();s.db.insert(h).values({id:t,platform:e,workspace_id:i,message_count:0,created_at:d,updated_at:d}).run();}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to ensure thread",i)}finally{s.close();}}saveUserMessage(t,e,r){if(!this.dbExists())return {firstMessage:false};let s=this.openHandle(true);try{let i=new Date().toISOString();return {firstMessage:s.db.transaction(d=>{let l=d.select({message_count:h.message_count}).from(h).where(eq(h.id,t)).limit(1).get()?.message_count===0;return d.run(sql`
|
|
351
351
|
UPDATE threads
|
|
352
352
|
SET first_message = COALESCE(first_message, ${e}),
|
|
353
353
|
title = CASE WHEN title_locked = 0 AND title IS NULL THEN substr(${e}, 1, 60) ELSE title END,
|
|
354
354
|
last_message = ${e},
|
|
355
355
|
message_count = message_count + 1,
|
|
356
|
-
updated_at = ${
|
|
356
|
+
updated_at = ${i}
|
|
357
357
|
WHERE id = ${t}
|
|
358
|
-
`),l},{behavior:"immediate"})}}catch(o){throw o instanceof _?o:new _("DB_ERROR","Failed to save user message",o)}finally{i.close();}}saveAssistantMessage(t,e,r){if(!this.dbExists())return;let i=this.openHandle(true);try{let o=new Date().toISOString();i.db.update(p).set({last_message:e,updated_at:o}).where(eq(p.id,t)).run();}catch(o){throw o instanceof _?o:new _("DB_ERROR","Failed to save assistant message",o)}finally{i.close();}}updateThread(t,e){if(!this.dbExists())return;let r=this.openHandle(true);try{let i={updated_at:new Date().toISOString()};e.title!==void 0&&(i.title=e.title,i.title_locked=1),e.titleLocked!==void 0&&(i.title_locked=e.titleLocked?1:0),r.db.update(p).set(i).where(eq(p.id,t)).run();}catch(i){throw i instanceof _?i:new _("DB_ERROR","Failed to update thread",i)}finally{r.close();}}patchThreadTitleMetadata(t,e,r){let i=e;if(!i||typeof i!="object"||Array.isArray(i))return new It("THREAD_TITLE_PATCH_INVALID","Thread-title metadata patch must be an object");if(Object.keys(i).some(c=>c!=="priority"&&c!=="state"))return new It("THREAD_TITLE_PATCH_INVALID","Thread-title metadata patch only supports priority and state");let a=i;if(a.priority===void 0&&a.state===void 0)return new It("THREAD_TITLE_PATCH_EMPTY","Thread-title metadata patch must change priority or state");for(let c of [a.priority,a.state])if(c!=null&&(typeof c!="string"||c.length===0))return new It("THREAD_TITLE_PATCH_INVALID","Thread-title metadata values must be non-empty strings or null");let d=this.openHandle(true);try{let c=r?and(eq(p.id,t),eq(p.workspace_id,r)):eq(p.id,t);return d.db.transaction(l=>{let u=l.select({metadata:p.metadata}).from(p).where(c).get();if(!u)return null;let h=Ht(u.metadata),g=h.threadTitle,f=g&&typeof g=="object"&&!Array.isArray(g)?{...g}:{};a.priority===null?delete f.priority:a.priority!==void 0&&(f.priority=a.priority),a.state===null?delete f.state:a.state!==void 0&&(f.state=a.state),Object.keys(f).length>0?h.threadTitle=f:delete h.threadTitle;let b=Object.keys(h).length>0?JSON.stringify(h):null,N=new Date().toISOString();l.update(p).set({metadata:b,updated_at:N}).where(c).run();let I=l.select({metadata:p.metadata}).from(p).where(c).get();if(!I)throw new _("DB_ERROR","Thread-title metadata update could not be read back");let P=ns(I.metadata);return {threadId:t,priority:P.priority,state:P.state}},{behavior:"immediate"})}catch(c){throw c instanceof _?c:new _("DB_ERROR","Failed to patch thread-title metadata",c)}finally{d.close();}}togglePin(t,e){let r=this.openHandle(true);try{let i=e?and(eq(p.id,t),eq(p.workspace_id,e)):eq(p.id,t);return r.db.transaction(o=>{let a=o.select({pinned:p.pinned,metadata:p.metadata}).from(p).where(i).get();if(!a)return null;let d=a.pinned?0:1,c=Ht(a.metadata);if(d){let l=e?and(eq(p.pinned,1),eq(p.workspace_id,e)):eq(p.pinned,1),u=o.select({metadata:p.metadata}).from(p).where(l).all(),h=null;for(let g of u){let f=Ht(g.metadata);typeof f.pinOrder=="number"&&(h===null||f.pinOrder<h)&&(h=f.pinOrder);}c.pinOrder=h===null?0:h-1;}else delete c.pinOrder;return o.update(p).set({pinned:d,metadata:Object.keys(c).length>0?JSON.stringify(c):null}).where(i).run(),{pinned:!!d}},{behavior:"immediate"})}catch(i){throw i instanceof _?i:new _("DB_ERROR","Failed to toggle pin",i)}finally{r.close();}}reorderPins(t,e){let r=this.openHandle(true);try{r.db.transaction(i=>{for(let o=0;o<t.length;o++){let a=e?and(eq(p.id,t[o]),eq(p.workspace_id,e)):eq(p.id,t[o]),d=i.select({metadata:p.metadata}).from(p).where(a).get();if(!d)continue;let c=Ht(d.metadata);c.pinOrder=o+1,i.update(p).set({metadata:JSON.stringify(c)}).where(a).run();}},{behavior:"immediate"});}catch(i){throw i instanceof _?i:new _("DB_ERROR","Failed to reorder pins",i)}finally{r.close();}}toggleStar(t,e){let r=this.openHandle(true);try{let i=e?and(eq(p.id,t),eq(p.workspace_id,e)):eq(p.id,t),o=r.db.select({starred:p.starred}).from(p).where(i).get();if(!o)return null;let a=o.starred?0:1;return r.db.update(p).set({starred:a}).where(i).run(),{starred:!!a}}catch(i){throw i instanceof _?i:new _("DB_ERROR","Failed to toggle star",i)}finally{r.close();}}resolveOverdriveForRequest(t,e,r,i){let a=this.openHandle(true);try{let d=e?and(eq(p.id,t),eq(p.workspace_id,e)):eq(p.id,t);return a.db.transaction(l=>{let u=l.select({metadata:p.metadata}).from(p).where(d).get();if(!u)return null;let h=u.metadata?JSON.parse(u.metadata):{},g=h.overdrive??{},f=i?.defaultTurns??g.defaultTurns??3,b=i?.updatedBy??"ui",N=new Date().toISOString(),I,P,q,Nt;switch(r){case "enable-count":{let Ct=i?.turns??f,Dt=i?.consumeCurrent?Math.max(Ct-1,0):Ct;I=Dt>0?"count":"off",P=Dt,q=!0,Nt="count";break}case "enable-latch":{I="latch",P=0,q=!0,Nt="latch";break}case "disable":{I="off",P=0,q=!1;break}default:{let Ct=g.state??"off",Dt=typeof g.remaining=="number"?g.remaining:0;if(Ct==="count"&&Dt>0){let Ae=Dt-1;Ae<=0?(I="off",P=0):(I="count",P=Ae),q=!0,Nt="count";}else Ct==="latch"?(I="latch",P=0,q=!0,Nt="latch"):(I="off",P=0,q=!1);break}}return h.overdrive={state:I,remaining:P,defaultTurns:f,updatedAt:N,updatedBy:b},l.update(p).set({metadata:JSON.stringify(h),updated_at:N}).where(d).run(),{applied:q,appliedMode:Nt,state:I,remaining:P}},{behavior:"immediate"})}catch(d){throw d instanceof _?d:new _("DB_ERROR","Failed to resolve overdrive",d)}finally{a.close();}}};var kn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";function rs(n){let t=randomBytes(n*2),e="";for(let r=0;r<t.length&&e.length<n;r++){let i=t[r];i<248&&(e+=kn[i%62]);}for(;e.length<n;)e+=kn[randomBytes(1)[0]%62];return e}function ye(n){return `${n}_${rs(8)}`}var ss=["urgent","high","medium","low"],is=["investigating","in-progress","in-review","on-hold","done"],Tn="custom:";var os=new Set(ss),as=new Set(is);function Ee(n){return typeof n=="string"&&os.has(n)}function Se(n){if(typeof n!="string")return false;if(as.has(n))return true;if(n.startsWith("c_"))return n.length>2;if(!n.startsWith(Tn))return false;let t=n.slice(Tn.length);return t.length>=1&&t.length<=20}function wn(n){if(!n)return null;try{let t=JSON.parse(n);return !t||typeof t!="object"||Array.isArray(t)?null:t}catch{return null}}function Re(n){let t=wn(n);if(!t)return {};let e=t.threadTitle;if(!e||typeof e!="object"||Array.isArray(e))return {};let r=e,i={};return Ee(r.priority)&&(i.priority=r.priority),Se(r.state)&&(i.state=r.state),i}function yn(n,t){let e=wn(n)??{},r={...Re(n)};return t.priority===null?delete r.priority:t.priority!==void 0&&(r.priority=t.priority),t.state===null?delete r.state:t.state!==void 0&&(r.state=t.state),r.priority===void 0&&r.state===void 0?delete e.threadTitle:e.threadTitle=r,Object.keys(e).length===0?null:JSON.stringify(e)}var xe=class extends _{threadId;highlightId;expectedRevision;currentRevision;constructor(t,e,r,i){super("CONFLICT",`Highlight revision conflict: expected ${r}, current ${i}`),this.name="ThreadHistoryConflictError",this.threadId=t,this.highlightId=e,this.expectedRevision=r,this.currentRevision=i;}},jt=class extends xe{},us=new Set(Ze),_s=new Set(Qe),ps=new Set(tn),hs=new Set(en),gs=50,vn=100,In=280;function O(n){throw new _("VALIDATION",n)}function bt(n){throw new _("NOT_FOUND",n)}function $(n,t){(typeof n!="string"||n.trim().length===0)&&O(`${t} is required`);}function te(n={}){let t=n.actor??n,e=t.actorType??"system";return us.has(e)||O(`invalid actorType: ${String(e)}`),t.actorId!==void 0&&t.actorId!==null&&typeof t.actorId!="string"&&O("actorId must be a string or null"),{actorType:e,actorId:t.actorId??null}}function fs(n){$(n.threadId,"threadId"),n.workspaceId!==void 0&&n.workspaceId!==null&&$(n.workspaceId,"workspaceId"),n.title!==void 0&&n.title!==null&&((typeof n.title!="string"||n.title.trim().length===0)&&O("title must not be empty"),n.title.length>120&&O("title must be at most 120 characters")),n.priority!==void 0&&n.priority!==null&&!Ee(n.priority)&&O(`invalid priority: ${String(n.priority)}`),n.state!==void 0&&n.state!==null&&!Se(n.state)&&O(`invalid state: ${String(n.state)}`);}function ms(n){n.beforeSeq!==void 0&&n.afterSeq!==void 0&&O("beforeSeq and afterSeq cannot be used together");for(let[e,r]of [["beforeSeq",n.beforeSeq],["afterSeq",n.afterSeq]])r!==void 0&&(!Number.isInteger(r)||r<0)&&O(`${e} must be a non-negative integer`);let t=n.limit??gs;return (!Number.isInteger(t)||t<1||t>vn)&&O(`limit must be between 1 and ${vn}`),t}function xn(n){typeof n!="string"&&O("text is required");let t=n.trim();return t.length===0&&O("text must not be empty"),t.length>In&&O(`text must be at most ${In} characters`),t}function At(n,t){return $(n??"",t),n}function bn(n){hs.has(n)||O(`invalid highlight kind: ${String(n)}`);}function ks(n){ps.has(n)||O(`invalid highlight source: ${String(n)}`);}function Ts(n){$(n.threadId,"threadId"),$(n.workspaceId,"workspaceId");let t=n.source??"manual";ks(t),bn(n.kind);let e=xn(n.text),r=n.coversFromTaskId??n.fromTaskId??n.taskId,i=n.coversToTaskId??n.toTaskId??n.taskId;if(t==="manual"){let u=n.taskId??(r&&i&&r===i?r:void 0),h=At(u,"taskId");return (r!==h||i!==h)&&O("manual highlights must cover exactly one task"),{source:t,kind:n.kind,text:e,coversFromTaskId:h,coversToTaskId:h,agentId:n.agentId??null,sourceTaskId:null,detectorVersion:null,contentFingerprint:null}}let o=At(r,"coversFromTaskId"),a=At(i,"coversToTaskId"),d=n.sourceTaskId??o,c=n.detectorVersion??(n.idempotencyKey!==void 0?"default":null),l=n.contentFingerprint??n.idempotencyKey??null;return At(d??void 0,"sourceTaskId"),At(c??void 0,"detectorVersion"),At(l??void 0,"contentFingerprint"),{source:t,kind:n.kind,text:e,coversFromTaskId:o,coversToTaskId:a,agentId:n.agentId??null,sourceTaskId:d,detectorVersion:c,contentFingerprint:l}}function se(n){let t=Re(n.metadata);return {threadId:n.id,workspaceId:n.workspace_id,title:n.title,priority:t.priority??null,state:t.state??null,metadata:n.metadata,titleLocked:n.title_locked===1,updatedAt:n.updated_at}}function ws(n){try{let t=JSON.stringify(n);return (!t||t==="null"||t.startsWith("["))&&O("event payload must be a JSON object"),t}catch(t){throw new _("VALIDATION","event payload must be JSON serializable",t)}}function ee(n,t){return n.select({maxSeq:sql`COALESCE(MAX(${S.seq}), 0)`}).from(S).where(eq(S.thread_id,t)).get()?.maxSeq??0}function ne(n,t){return !!n.select({id:S.id}).from(S).where(eq(S.thread_id,t)).limit(1).get()}function Bt(n,t){_s.has(t.type)||O(`invalid thread event type: ${String(t.type)}`);let e=ye("the");n.insert(S).values({id:e,thread_id:t.threadId,seq:t.seq,type:t.type,actor_type:t.actorType,actor_id:t.actorId,task_id:t.taskId??null,highlight_id:t.highlightId??null,payload_json:ws(t.payload),created_at:t.createdAt}).run();let r=n.select().from(S).where(eq(S.id,e)).get();if(!r)throw new _("DB_ERROR","Thread event insert did not return a row");return r}function re(n,t,e,r,i){let o=se(t);Bt(n,{threadId:t.id,seq:i,type:"thread.snapshot.imported",actorType:e.actorType,actorId:e.actorId,createdAt:r,payload:{title:o.title,priority:o.priority,state:o.state}});}function ve(n){return {highlightId:n.id,source:n.source,kind:n.kind,status:n.status,coversFromTaskId:n.covers_from_task_id,coversToTaskId:n.covers_to_task_id,revision:n.revision,...n.dismissed_at===null?{}:{dismissedAt:n.dismissed_at}}}function Ie(n,t,e,r,i,o,a){let d=i==="thread.highlight.created"?ve(t):{before:a?ve({...t,...a,id:t.id}):void 0,after:ve(t)};return Bt(n,{threadId:t.thread_id,seq:o,type:i,actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.source==="manual"?t.covers_from_task_id:t.source_task_id??t.covers_from_task_id,highlightId:t.id,payload:d})}var ie=class extends J{dbPath;constructor(t={}){super(),t.dbPath?this.dbPath=t.dbPath:t.dbRoot&&(this.dbPath=join(t.dbRoot,".crewx","crewx.db"));}resolveDbPath(){return this.dbPath??super.resolveDbPath()}openHandle(t){let e=this.resolveDbPath();if(!t&&!existsSync(e))throw new _("NOT_FOUND","Database not found");if(t){let i=dirname(e);existsSync(i)||mkdirSync(i,{recursive:true});}let r=A(e);if(t)try{gt(r.db,e);}catch(i){throw r.close(),i}return r}findThread(t,e,r){let i=eq(p.id,e),o=r===void 0?i:r===null?and(i,isNull(p.workspace_id)):and(i,eq(p.workspace_id,r));return t.select().from(p).where(o).limit(1).get()}resolveWorkspaceId(t){if($(t,"threadId"),!existsSync(this.resolveDbPath()))return null;let e=this.openHandle(false);try{return e.db.select({workspaceId:p.workspace_id}).from(p).where(eq(p.id,t)).limit(1).get()?.workspaceId??null}catch(r){throw r instanceof _?r:new _("DB_ERROR","Failed to resolve thread workspace",r)}finally{e.close();}}updateSnapshot(t){fs(t);let e=te(t),r=new Date().toISOString(),i=this.openHandle(true);try{return i.db.transaction(o=>{let a=this.findThread(o,t.threadId,t.workspaceId);a||bt(`Thread ${t.threadId} not found`);let d=se(a),c=t.title!==void 0,l=c&&t.title!==d.title,u=c&&a.title_locked!==1,h=t.priority!==void 0&&t.priority!==d.priority,g=t.state!==void 0&&t.state!==d.state,f=l||h||g;if(!f&&!u)return d;let b=a.metadata;(h||g)&&(b=yn(a.metadata,{priority:t.priority,state:t.state}));let N={};if(f&&(N.metadata=b,N.updated_at=r),l&&(N.title=t.title),c&&(N.title_locked=1),o.update(p).set(N).where(t.workspaceId===void 0?eq(p.id,t.threadId):t.workspaceId===null?and(eq(p.id,t.threadId),isNull(p.workspace_id)):and(eq(p.id,t.threadId),eq(p.workspace_id,t.workspaceId))).run(),!f){let q={...a,title_locked:1};return se(q)}let I=ee(o,a.id)+1;ne(o,a.id)||(re(o,a,e,r,I),I+=1),l&&(Bt(o,{threadId:a.id,seq:I,type:"thread.title.changed",actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.taskId,payload:{before:d.title,after:t.title}}),I+=1),h&&(Bt(o,{threadId:a.id,seq:I,type:"thread.priority.changed",actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.taskId,payload:{before:d.priority,after:t.priority}}),I+=1),g&&Bt(o,{threadId:a.id,seq:I,type:"thread.state.changed",actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.taskId,payload:{before:d.state,after:t.state}});let P={...a,title:l?t.title:a.title,metadata:b,title_locked:c?1:a.title_locked,updated_at:r};return se(P)},{behavior:"immediate"})}catch(o){throw o instanceof _?o:new _("DB_ERROR","Failed to update thread snapshot",o)}finally{i.close();}}mutateSnapshot(t){return this.updateSnapshot(t)}updateThreadSnapshot(t){return this.updateSnapshot(t)}getLatestSeq(t,e){if($(t,"threadId"),!existsSync(this.resolveDbPath()))return null;let r=this.openHandle(false);try{return this.findThread(r.db,t,e)?r.db.select({maxSeq:sql`COALESCE(MAX(${S.seq}), 0)`}).from(S).where(eq(S.thread_id,t)).get()?.maxSeq??0:null}catch(i){throw i instanceof _?i:new _("DB_ERROR","Failed to read latest thread event sequence",i)}finally{r.close();}}listTimeline(t,e,r={}){let i=typeof t=="string"?{...r,threadId:t,workspaceId:e}:t;$(i.threadId,"threadId"),$(i.workspaceId,"workspaceId");let o=ms(i);if(!existsSync(this.resolveDbPath()))return null;let a=this.openHandle(false);try{if(!this.findThread(a.db,i.threadId,i.workspaceId))return null;let d=a.db.select({maxSeq:sql`COALESCE(MAX(${S.seq}), 0)`}).from(S).where(eq(S.thread_id,i.threadId)).get()?.maxSeq??0,c;i.beforeSeq!==void 0?c=a.db.select().from(S).where(and(eq(S.thread_id,i.threadId),lt(S.seq,i.beforeSeq))).orderBy(desc(S.seq)).limit(o+1).all().reverse():i.afterSeq!==void 0?c=a.db.select().from(S).where(and(eq(S.thread_id,i.threadId),sql`${S.seq} > ${i.afterSeq}`)).orderBy(asc(S.seq)).limit(o+1).all():c=a.db.select().from(S).where(eq(S.thread_id,i.threadId)).orderBy(desc(S.seq)).limit(o+1).all().reverse();let l=c.length>o,u=i.afterSeq!==void 0?c.slice(0,o):l?c.slice(1):c,h=!1,g=u[0];return g&&(h=!!a.db.select({id:S.id}).from(S).where(and(eq(S.thread_id,i.threadId),lt(S.seq,g.seq))).limit(1).get()),{items:u,latestSeq:d,hasMoreOlder:h}}catch(d){throw d instanceof _?d:new _("DB_ERROR","Failed to list thread timeline",d)}finally{a.close();}}listEvents(t,e,r){return this.listTimeline(t,e,r)}getTimeline(t,e,r){return this.listTimeline(t,e,r)}createHighlight(t){let e=Ts(t),r=te(t),i=new Date().toISOString(),o=this.openHandle(true);try{return o.db.transaction(a=>{let d=this.findThread(a,t.threadId,t.workspaceId);if(d||bt(`Thread ${t.threadId} not found`),e.source==="auto"){let g=a.select().from(E).where(and(eq(E.thread_id,t.threadId),eq(E.source_task_id,e.sourceTaskId),eq(E.detector_version,e.detectorVersion),eq(E.content_fingerprint,e.contentFingerprint))).orderBy(asc(E.created_at),asc(E.id)).limit(1).get();if(g)return g}let c=t.id??ye("thl"),l={id:c,thread_id:t.threadId,source:e.source,kind:e.kind,status:"active",text:e.text,covers_from_task_id:e.coversFromTaskId,covers_to_task_id:e.coversToTaskId,revision:0,created_at:i,updated_at:i,agent_id:e.agentId,source_task_id:e.sourceTaskId,detector_version:e.detectorVersion,content_fingerprint:e.contentFingerprint,dismissed_at:null};a.insert(E).values(l).run();let u=a.select().from(E).where(eq(E.id,c)).get();if(!u)throw new _("DB_ERROR","Highlight insert did not return a row");let h=ee(a,d.id)+1;return ne(a,d.id)||(re(a,d,r,i,h),h+=1),Ie(a,u,r,i,"thread.highlight.created",h),u},{behavior:"immediate"})}catch(a){throw a instanceof _?a:new _("DB_ERROR","Failed to create thread highlight",a)}finally{o.close();}}updateHighlight(t){$(t.threadId,"threadId"),$(t.workspaceId,"workspaceId"),$(t.highlightId,"highlightId"),(!Number.isInteger(t.expectedRevision)||t.expectedRevision<0)&&O("expectedRevision must be a non-negative integer"),t.text===void 0&&t.kind===void 0&&t.coversFromTaskId===void 0&&t.coversToTaskId===void 0&&O("highlight update requires at least one field"),t.kind!==void 0&&bn(t.kind);let e=t.text===void 0?void 0:xn(t.text),r=te(t),i=new Date().toISOString(),o=this.openHandle(true);try{return o.db.transaction(a=>{let d=this.findThread(a,t.threadId,t.workspaceId);d||bt(`Thread ${t.threadId} not found`);let c=a.select().from(E).where(and(eq(E.id,t.highlightId),eq(E.thread_id,d.id))).limit(1).get();if(c||bt(`Highlight ${t.highlightId} not found`),c.revision!==t.expectedRevision)throw new jt(d.id,c.id,t.expectedRevision,c.revision);if(c.status!=="active")throw new jt(d.id,c.id,t.expectedRevision,c.revision);let l=t.kind??c.kind,u=e??c.text,h=t.coversFromTaskId??c.covers_from_task_id,g=t.coversToTaskId??c.covers_to_task_id;(!u||h.length===0||g.length===0)&&O("highlight projection is incomplete");let f=l!==c.kind||u!==c.text||h!==c.covers_from_task_id||g!==c.covers_to_task_id,b=r.actorType==="user"&&c.source==="auto"&&f?"manual":c.source;if(!(f||b!==c.source))return c;let I=c.revision+1;a.update(E).set({source:b,kind:l,text:u,covers_from_task_id:h,covers_to_task_id:g,revision:I,updated_at:i}).where(and(eq(E.id,c.id),eq(E.revision,c.revision))).run();let P=a.select().from(E).where(eq(E.id,c.id)).get();if(!P)throw new _("DB_ERROR","Highlight update did not return a row");let q=ee(a,d.id)+1;return ne(a,d.id)||(re(a,d,r,i,q),q+=1),Ie(a,P,r,i,"thread.highlight.updated",q,c),P},{behavior:"immediate"})}catch(a){throw a instanceof _?a:new _("DB_ERROR","Failed to update thread highlight",a)}finally{o.close();}}dismissHighlight(t){$(t.threadId,"threadId"),$(t.workspaceId,"workspaceId"),$(t.highlightId,"highlightId"),(!Number.isInteger(t.expectedRevision)||t.expectedRevision<0)&&O("expectedRevision must be a non-negative integer");let e=te(t),r=new Date().toISOString(),i=this.openHandle(true);try{return i.db.transaction(o=>{let a=this.findThread(o,t.threadId,t.workspaceId);a||bt(`Thread ${t.threadId} not found`);let d=o.select().from(E).where(and(eq(E.id,t.highlightId),eq(E.thread_id,a.id))).limit(1).get();if(d||bt(`Highlight ${t.highlightId} not found`),d.revision!==t.expectedRevision)throw new jt(a.id,d.id,t.expectedRevision,d.revision);if(d.status==="dismissed")return d;let c=d.revision+1;o.update(E).set({status:"dismissed",text:null,revision:c,updated_at:r,dismissed_at:r}).where(and(eq(E.id,d.id),eq(E.revision,d.revision))).run();let l=o.select().from(E).where(eq(E.id,d.id)).get();if(!l)throw new _("DB_ERROR","Highlight dismissal did not return a row");let u=ee(o,a.id)+1;return ne(o,a.id)||(re(o,a,e,r,u),u+=1),Ie(o,l,e,r,"thread.highlight.deleted",u,d),l},{behavior:"immediate"})}catch(o){throw o instanceof _?o:new _("DB_ERROR","Failed to dismiss thread highlight",o)}finally{i.close();}}listActiveHighlights(t,e,r={}){if($(t,"threadId"),$(e,"workspaceId"),r.taskId!==void 0&&$(r.taskId,"taskId"),r.coversFromTaskId!==void 0&&$(r.coversFromTaskId,"coversFromTaskId"),r.coversToTaskId!==void 0&&$(r.coversToTaskId,"coversToTaskId"),!existsSync(this.resolveDbPath()))return null;let i=this.openHandle(false);try{if(!this.findThread(i.db,t,e))return null;let a=i.db.select().from(E).where(and(eq(E.thread_id,t),eq(E.status,"active"))).orderBy(asc(E.created_at),asc(E.id)).all();if(r.taskId===void 0&&r.coversFromTaskId===void 0&&r.coversToTaskId===void 0)return a;let d=i.db.all(sql`
|
|
358
|
+
`),l},{behavior:"immediate"})}}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to save user message",i)}finally{s.close();}}saveAssistantMessage(t,e,r){if(!this.dbExists())return;let s=this.openHandle(true);try{let i=new Date().toISOString();s.db.update(h).set({last_message:e,updated_at:i}).where(eq(h.id,t)).run();}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to save assistant message",i)}finally{s.close();}}updateThread(t,e){if(!this.dbExists())return;let r=this.openHandle(true);try{let s={updated_at:new Date().toISOString()};e.title!==void 0&&(s.title=e.title,s.title_locked=1),e.titleLocked!==void 0&&(s.title_locked=e.titleLocked?1:0),r.db.update(h).set(s).where(eq(h.id,t)).run();}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to update thread",s)}finally{r.close();}}patchThreadTitleMetadata(t,e,r){let s=e;if(!s||typeof s!="object"||Array.isArray(s))return new xt("THREAD_TITLE_PATCH_INVALID","Thread-title metadata patch must be an object");if(Object.keys(s).some(c=>c!=="priority"&&c!=="state"))return new xt("THREAD_TITLE_PATCH_INVALID","Thread-title metadata patch only supports priority and state");let a=s;if(a.priority===void 0&&a.state===void 0)return new xt("THREAD_TITLE_PATCH_EMPTY","Thread-title metadata patch must change priority or state");for(let c of [a.priority,a.state])if(c!=null&&(typeof c!="string"||c.length===0))return new xt("THREAD_TITLE_PATCH_INVALID","Thread-title metadata values must be non-empty strings or null");let d=this.openHandle(true);try{let c=r?and(eq(h.id,t),eq(h.workspace_id,r)):eq(h.id,t);return d.db.transaction(l=>{let _=l.select({metadata:h.metadata}).from(h).where(c).get();if(!_)return null;let p=jt(_.metadata),g=p.threadTitle,f=g&&typeof g=="object"&&!Array.isArray(g)?{...g}:{};a.priority===null?delete f.priority:a.priority!==void 0&&(f.priority=a.priority),a.state===null?delete f.state:a.state!==void 0&&(f.state=a.state),Object.keys(f).length>0?p.threadTitle=f:delete p.threadTitle;let x=Object.keys(p).length>0?JSON.stringify(p):null,O=new Date().toISOString();l.update(h).set({metadata:x,updated_at:O}).where(c).run();let N=l.select({metadata:h.metadata}).from(h).where(c).get();if(!N)throw new u("DB_ERROR","Thread-title metadata update could not be read back");let H=Ts(N.metadata);return {threadId:t,priority:H.priority,state:H.state}},{behavior:"immediate"})}catch(c){throw c instanceof u?c:new u("DB_ERROR","Failed to patch thread-title metadata",c)}finally{d.close();}}togglePin(t,e){let r=this.openHandle(true);try{let s=e?and(eq(h.id,t),eq(h.workspace_id,e)):eq(h.id,t);return r.db.transaction(i=>{let a=i.select({pinned:h.pinned,metadata:h.metadata}).from(h).where(s).get();if(!a)return null;let d=a.pinned?0:1,c=jt(a.metadata);if(d){let l=e?and(eq(h.pinned,1),eq(h.workspace_id,e)):eq(h.pinned,1),_=i.select({metadata:h.metadata}).from(h).where(l).all(),p=null;for(let g of _){let f=jt(g.metadata);typeof f.pinOrder=="number"&&(p===null||f.pinOrder<p)&&(p=f.pinOrder);}c.pinOrder=p===null?0:p-1;}else delete c.pinOrder;return i.update(h).set({pinned:d,metadata:Object.keys(c).length>0?JSON.stringify(c):null}).where(s).run(),{pinned:!!d}},{behavior:"immediate"})}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to toggle pin",s)}finally{r.close();}}reorderPins(t,e){let r=this.openHandle(true);try{r.db.transaction(s=>{for(let i=0;i<t.length;i++){let a=e?and(eq(h.id,t[i]),eq(h.workspace_id,e)):eq(h.id,t[i]),d=s.select({metadata:h.metadata}).from(h).where(a).get();if(!d)continue;let c=jt(d.metadata);c.pinOrder=i+1,s.update(h).set({metadata:JSON.stringify(c)}).where(a).run();}},{behavior:"immediate"});}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to reorder pins",s)}finally{r.close();}}toggleStar(t,e){let r=this.openHandle(true);try{let s=e?and(eq(h.id,t),eq(h.workspace_id,e)):eq(h.id,t),i=r.db.select({starred:h.starred}).from(h).where(s).get();if(!i)return null;let a=i.starred?0:1;return r.db.update(h).set({starred:a}).where(s).run(),{starred:!!a}}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to toggle star",s)}finally{r.close();}}resolveOverdriveForRequest(t,e,r,s){let a=this.openHandle(true);try{let d=e?and(eq(h.id,t),eq(h.workspace_id,e)):eq(h.id,t);return a.db.transaction(l=>{let _=l.select({metadata:h.metadata}).from(h).where(d).get();if(!_)return null;let p=_.metadata?JSON.parse(_.metadata):{},g=p.overdrive??{},f=s?.defaultTurns??g.defaultTurns??3,x=s?.updatedBy??"ui",O=new Date().toISOString(),N,H,j,$t;switch(r){case "enable-count":{let Pt=s?.turns??f,Mt=s?.consumeCurrent?Math.max(Pt-1,0):Pt;N=Mt>0?"count":"off",H=Mt,j=!0,$t="count";break}case "enable-latch":{N="latch",H=0,j=!0,$t="latch";break}case "disable":{N="off",H=0,j=!1;break}default:{let Pt=g.state??"off",Mt=typeof g.remaining=="number"?g.remaining:0;if(Pt==="count"&&Mt>0){let Ue=Mt-1;Ue<=0?(N="off",H=0):(N="count",H=Ue),j=!0,$t="count";}else Pt==="latch"?(N="latch",H=0,j=!0,$t="latch"):(N="off",H=0,j=!1);break}}return p.overdrive={state:N,remaining:H,defaultTurns:f,updatedAt:O,updatedBy:x},l.update(h).set({metadata:JSON.stringify(p),updated_at:O}).where(d).run(),{applied:j,appliedMode:$t,state:N,remaining:H}},{behavior:"immediate"})}catch(d){throw d instanceof u?d:new u("DB_ERROR","Failed to resolve overdrive",d)}finally{a.close();}}};var bn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";function ws(n){let t=randomBytes(n*2),e="";for(let r=0;r<t.length&&e.length<n;r++){let s=t[r];s<248&&(e+=bn[s%62]);}for(;e.length<n;)e+=bn[randomBytes(1)[0]%62];return e}function Oe(n){return `${n}_${ws(8)}`}var ys=["urgent","high","medium","low"],Es=["investigating","in-progress","in-review","on-hold","done"],xn="custom:";var Rs=new Set(ys),Ss=new Set(Es);function De(n){return typeof n=="string"&&Rs.has(n)}function Le(n){if(typeof n!="string")return false;if(Ss.has(n))return true;if(n.startsWith("c_"))return n.length>2;if(!n.startsWith(xn))return false;let t=n.slice(xn.length);return t.length>=1&&t.length<=20}function On(n){if(!n)return null;try{let t=JSON.parse(n);return !t||typeof t!="object"||Array.isArray(t)?null:t}catch{return null}}function $e(n){let t=On(n);if(!t)return {};let e=t.threadTitle;if(!e||typeof e!="object"||Array.isArray(e))return {};let r=e,s={};return De(r.priority)&&(s.priority=r.priority),Le(r.state)&&(s.state=r.state),s}function Dn(n,t){let e=On(n)??{},r={...$e(n)};return t.priority===null?delete r.priority:t.priority!==void 0&&(r.priority=t.priority),t.state===null?delete r.state:t.state!==void 0&&(r.state=t.state),r.priority===void 0&&r.state===void 0?delete e.threadTitle:e.threadTitle=r,Object.keys(e).length===0?null:JSON.stringify(e)}var He=class extends u{threadId;highlightId;expectedRevision;currentRevision;constructor(t,e,r,s){super("CONFLICT",`Highlight revision conflict: expected ${r}, current ${s}`),this.name="ThreadHistoryConflictError",this.threadId=t,this.highlightId=e,this.expectedRevision=r,this.currentRevision=s;}},Gt=class extends He{},As=new Set(_n),Cs=new Set(un),bs=new Set(hn),xs=new Set(pn),Os=50,Mn=100,Hn=280;function $(n){throw new u("VALIDATION",n)}function Ot(n){throw new u("NOT_FOUND",n)}function M(n,t){(typeof n!="string"||n.trim().length===0)&&$(`${t} is required`);}function de(n={}){let t=n.actor??n,e=t.actorType??"system";return As.has(e)||$(`invalid actorType: ${String(e)}`),t.actorId!==void 0&&t.actorId!==null&&typeof t.actorId!="string"&&$("actorId must be a string or null"),{actorType:e,actorId:t.actorId??null}}function Ds(n){M(n.threadId,"threadId"),n.workspaceId!==void 0&&n.workspaceId!==null&&M(n.workspaceId,"workspaceId"),n.title!==void 0&&n.title!==null&&((typeof n.title!="string"||n.title.trim().length===0)&&$("title must not be empty"),n.title.length>120&&$("title must be at most 120 characters")),n.priority!==void 0&&n.priority!==null&&!De(n.priority)&&$(`invalid priority: ${String(n.priority)}`),n.state!==void 0&&n.state!==null&&!Le(n.state)&&$(`invalid state: ${String(n.state)}`);}function Ls(n){n.beforeSeq!==void 0&&n.afterSeq!==void 0&&$("beforeSeq and afterSeq cannot be used together");for(let[e,r]of [["beforeSeq",n.beforeSeq],["afterSeq",n.afterSeq]])r!==void 0&&(!Number.isInteger(r)||r<0)&&$(`${e} must be a non-negative integer`);let t=n.limit??Os;return (!Number.isInteger(t)||t<1||t>Mn)&&$(`limit must be between 1 and ${Mn}`),t}function qn(n){typeof n!="string"&&$("text is required");let t=n.trim();return t.length===0&&$("text must not be empty"),t.length>Hn&&$(`text must be at most ${Hn} characters`),t}function Dt(n,t){return M(n??"",t),n}function Bn(n){xs.has(n)||$(`invalid highlight kind: ${String(n)}`);}function $s(n){bs.has(n)||$(`invalid highlight source: ${String(n)}`);}function Ps(n){M(n.threadId,"threadId"),M(n.workspaceId,"workspaceId");let t=n.source??"manual";$s(t),Bn(n.kind);let e=qn(n.text),r=n.coversFromTaskId??n.fromTaskId??n.taskId,s=n.coversToTaskId??n.toTaskId??n.taskId;if(t==="manual"){let _=n.taskId??(r&&s&&r===s?r:void 0),p=Dt(_,"taskId");return (r!==p||s!==p)&&$("manual highlights must cover exactly one task"),{source:t,kind:n.kind,text:e,coversFromTaskId:p,coversToTaskId:p,agentId:n.agentId??null,sourceTaskId:null,detectorVersion:null,contentFingerprint:null}}let i=Dt(r,"coversFromTaskId"),a=Dt(s,"coversToTaskId"),d=n.sourceTaskId??i,c=n.detectorVersion??(n.idempotencyKey!==void 0?"default":null),l=n.contentFingerprint??n.idempotencyKey??null;return Dt(d??void 0,"sourceTaskId"),Dt(c??void 0,"detectorVersion"),Dt(l??void 0,"contentFingerprint"),{source:t,kind:n.kind,text:e,coversFromTaskId:i,coversToTaskId:a,agentId:n.agentId??null,sourceTaskId:d,detectorVersion:c,contentFingerprint:l}}function Wt(n){let t=$e(n.metadata);return {threadId:n.id,workspaceId:n.workspace_id,title:n.title,priority:t.priority??null,state:t.state??null,metadata:n.metadata,titleLocked:n.title_locked===1,updatedAt:n.updated_at}}function Ms(n){try{let t=JSON.stringify(n);return (!t||t==="null"||t.startsWith("["))&&$("event payload must be a JSON object"),t}catch(t){throw new u("VALIDATION","event payload must be JSON serializable",t)}}function ce(n,t){return n.select({maxSeq:sql`COALESCE(MAX(${S.seq}), 0)`}).from(S).where(eq(S.thread_id,t)).get()?.maxSeq??0}function le(n,t){return !!n.select({id:S.id}).from(S).where(eq(S.thread_id,t)).limit(1).get()}function Kt(n,t){Cs.has(t.type)||$(`invalid thread event type: ${String(t.type)}`);let e=Oe("the");n.insert(S).values({id:e,thread_id:t.threadId,seq:t.seq,type:t.type,actor_type:t.actorType,actor_id:t.actorId,task_id:t.taskId??null,highlight_id:t.highlightId??null,payload_json:Ms(t.payload),created_at:t.createdAt}).run();let r=n.select().from(S).where(eq(S.id,e)).get();if(!r)throw new u("DB_ERROR","Thread event insert did not return a row");return r}function ue(n,t,e,r,s){let i=Wt(t);Kt(n,{threadId:t.id,seq:s,type:"thread.snapshot.imported",actorType:e.actorType,actorId:e.actorId,createdAt:r,payload:{title:i.title,priority:i.priority,state:i.state}});}function Pe(n){return {highlightId:n.id,source:n.source,kind:n.kind,status:n.status,coversFromTaskId:n.covers_from_task_id,coversToTaskId:n.covers_to_task_id,revision:n.revision,...n.dismissed_at===null?{}:{dismissedAt:n.dismissed_at}}}function Me(n,t,e,r,s,i,a){let d=s==="thread.highlight.created"?Pe(t):{before:a?Pe({...t,...a,id:t.id}):void 0,after:Pe(t)};return Kt(n,{threadId:t.thread_id,seq:i,type:s,actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.source==="manual"?t.covers_from_task_id:t.source_task_id??t.covers_from_task_id,highlightId:t.id,payload:d})}var _e=class extends Y{dbPath;constructor(t={}){super(),t.dbPath?this.dbPath=t.dbPath:t.dbRoot&&(this.dbPath=join(t.dbRoot,".crewx","crewx.db"));}resolveDbPath(){return this.dbPath??super.resolveDbPath()}openHandle(t){let e=this.resolveDbPath();if(!t&&!existsSync(e))throw new u("NOT_FOUND","Database not found");if(t){let s=dirname(e);existsSync(s)||mkdirSync(s,{recursive:true});}let r=A(e);if(t)try{nt(r.db,e);}catch(s){throw r.close(),s}return r}findThread(t,e,r){let s=eq(h.id,e),i=r===void 0?s:r===null?and(s,isNull(h.workspace_id)):and(s,eq(h.workspace_id,r));return t.select().from(h).where(i).limit(1).get()}resolveWorkspaceId(t){if(M(t,"threadId"),!existsSync(this.resolveDbPath()))return null;let e=this.openHandle(false);try{return e.db.select({workspaceId:h.workspace_id}).from(h).where(eq(h.id,t)).limit(1).get()?.workspaceId??null}catch(r){throw r instanceof u?r:new u("DB_ERROR","Failed to resolve thread workspace",r)}finally{e.close();}}getSnapshot(t,e){if(M(t,"threadId"),!existsSync(this.resolveDbPath()))return null;let r=this.openHandle(false);try{let s=this.findThread(r.db,t,e);return s?Wt(s):null}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to read thread snapshot",s)}finally{r.close();}}updateSnapshot(t){Ds(t);let e=de(t),r=new Date().toISOString(),s=this.openHandle(true);try{return s.db.transaction(i=>{let a=this.findThread(i,t.threadId,t.workspaceId);a||Ot(`Thread ${t.threadId} not found`);let d=Wt(a),c=t.title!==void 0,l=c&&t.title!==d.title,_=c&&a.title_locked!==1,p=t.priority!==void 0&&t.priority!==d.priority,g=t.state!==void 0&&t.state!==d.state,f=l||p||g;if(!f&&!_)return d;let x=a.metadata;(p||g)&&(x=Dn(a.metadata,{priority:t.priority,state:t.state}));let O={};if(f&&(O.metadata=x,O.updated_at=r),l&&(O.title=t.title),c&&(O.title_locked=1),i.update(h).set(O).where(t.workspaceId===void 0?eq(h.id,t.threadId):t.workspaceId===null?and(eq(h.id,t.threadId),isNull(h.workspace_id)):and(eq(h.id,t.threadId),eq(h.workspace_id,t.workspaceId))).run(),!f){let j={...a,title_locked:1};return Wt(j)}let N=ce(i,a.id)+1;le(i,a.id)||(ue(i,a,e,r,N),N+=1),l&&(Kt(i,{threadId:a.id,seq:N,type:"thread.title.changed",actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.taskId,payload:{before:d.title,after:t.title}}),N+=1),p&&(Kt(i,{threadId:a.id,seq:N,type:"thread.priority.changed",actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.taskId,payload:{before:d.priority,after:t.priority}}),N+=1),g&&Kt(i,{threadId:a.id,seq:N,type:"thread.state.changed",actorType:e.actorType,actorId:e.actorId,createdAt:r,taskId:t.taskId,payload:{before:d.state,after:t.state}});let H={...a,title:l?t.title:a.title,metadata:x,title_locked:c?1:a.title_locked,updated_at:r};return Wt(H)},{behavior:"immediate"})}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to update thread snapshot",i)}finally{s.close();}}mutateSnapshot(t){return this.updateSnapshot(t)}updateThreadSnapshot(t){return this.updateSnapshot(t)}getLatestSeq(t,e){if(M(t,"threadId"),!existsSync(this.resolveDbPath()))return null;let r=this.openHandle(false);try{return this.findThread(r.db,t,e)?r.db.select({maxSeq:sql`COALESCE(MAX(${S.seq}), 0)`}).from(S).where(eq(S.thread_id,t)).get()?.maxSeq??0:null}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to read latest thread event sequence",s)}finally{r.close();}}listTimeline(t,e,r={}){let s=typeof t=="string"?{...r,threadId:t,workspaceId:e}:t;M(s.threadId,"threadId"),M(s.workspaceId,"workspaceId");let i=Ls(s);if(!existsSync(this.resolveDbPath()))return null;let a=this.openHandle(false);try{if(!this.findThread(a.db,s.threadId,s.workspaceId))return null;let d=a.db.select({maxSeq:sql`COALESCE(MAX(${S.seq}), 0)`}).from(S).where(eq(S.thread_id,s.threadId)).get()?.maxSeq??0,c;s.beforeSeq!==void 0?c=a.db.select().from(S).where(and(eq(S.thread_id,s.threadId),lt(S.seq,s.beforeSeq))).orderBy(desc(S.seq)).limit(i+1).all().reverse():s.afterSeq!==void 0?c=a.db.select().from(S).where(and(eq(S.thread_id,s.threadId),sql`${S.seq} > ${s.afterSeq}`)).orderBy(asc(S.seq)).limit(i+1).all():c=a.db.select().from(S).where(eq(S.thread_id,s.threadId)).orderBy(desc(S.seq)).limit(i+1).all().reverse();let l=c.length>i,_=s.afterSeq!==void 0?c.slice(0,i):l?c.slice(1):c,p=!1,g=_[0];return g&&(p=!!a.db.select({id:S.id}).from(S).where(and(eq(S.thread_id,s.threadId),lt(S.seq,g.seq))).limit(1).get()),{items:_,latestSeq:d,hasMoreOlder:p}}catch(d){throw d instanceof u?d:new u("DB_ERROR","Failed to list thread timeline",d)}finally{a.close();}}listEvents(t,e,r){return this.listTimeline(t,e,r)}getTimeline(t,e,r){return this.listTimeline(t,e,r)}createHighlight(t){let e=Ps(t),r=de(t),s=new Date().toISOString(),i=this.openHandle(true);try{return i.db.transaction(a=>{let d=this.findThread(a,t.threadId,t.workspaceId);if(d||Ot(`Thread ${t.threadId} not found`),e.source==="auto"){let g=a.select().from(R).where(and(eq(R.thread_id,t.threadId),eq(R.source_task_id,e.sourceTaskId),eq(R.detector_version,e.detectorVersion),eq(R.content_fingerprint,e.contentFingerprint))).orderBy(asc(R.created_at),asc(R.id)).limit(1).get();if(g)return g}let c=t.id??Oe("thl"),l={id:c,thread_id:t.threadId,source:e.source,kind:e.kind,status:"active",text:e.text,covers_from_task_id:e.coversFromTaskId,covers_to_task_id:e.coversToTaskId,revision:0,created_at:s,updated_at:s,agent_id:e.agentId,source_task_id:e.sourceTaskId,detector_version:e.detectorVersion,content_fingerprint:e.contentFingerprint,dismissed_at:null};a.insert(R).values(l).run();let _=a.select().from(R).where(eq(R.id,c)).get();if(!_)throw new u("DB_ERROR","Highlight insert did not return a row");let p=ce(a,d.id)+1;return le(a,d.id)||(ue(a,d,r,s,p),p+=1),Me(a,_,r,s,"thread.highlight.created",p),_},{behavior:"immediate"})}catch(a){throw a instanceof u?a:new u("DB_ERROR","Failed to create thread highlight",a)}finally{i.close();}}updateHighlight(t){M(t.threadId,"threadId"),M(t.workspaceId,"workspaceId"),M(t.highlightId,"highlightId"),(!Number.isInteger(t.expectedRevision)||t.expectedRevision<0)&&$("expectedRevision must be a non-negative integer"),t.text===void 0&&t.kind===void 0&&t.coversFromTaskId===void 0&&t.coversToTaskId===void 0&&$("highlight update requires at least one field"),t.kind!==void 0&&Bn(t.kind);let e=t.text===void 0?void 0:qn(t.text),r=de(t),s=new Date().toISOString(),i=this.openHandle(true);try{return i.db.transaction(a=>{let d=this.findThread(a,t.threadId,t.workspaceId);d||Ot(`Thread ${t.threadId} not found`);let c=a.select().from(R).where(and(eq(R.id,t.highlightId),eq(R.thread_id,d.id))).limit(1).get();if(c||Ot(`Highlight ${t.highlightId} not found`),c.revision!==t.expectedRevision)throw new Gt(d.id,c.id,t.expectedRevision,c.revision);if(c.status!=="active")throw new Gt(d.id,c.id,t.expectedRevision,c.revision);let l=t.kind??c.kind,_=e??c.text,p=t.coversFromTaskId??c.covers_from_task_id,g=t.coversToTaskId??c.covers_to_task_id;(!_||p.length===0||g.length===0)&&$("highlight projection is incomplete");let f=l!==c.kind||_!==c.text||p!==c.covers_from_task_id||g!==c.covers_to_task_id,x=r.actorType==="user"&&c.source==="auto"&&f?"manual":c.source;if(!(f||x!==c.source))return c;let N=c.revision+1;a.update(R).set({source:x,kind:l,text:_,covers_from_task_id:p,covers_to_task_id:g,revision:N,updated_at:s}).where(and(eq(R.id,c.id),eq(R.revision,c.revision))).run();let H=a.select().from(R).where(eq(R.id,c.id)).get();if(!H)throw new u("DB_ERROR","Highlight update did not return a row");let j=ce(a,d.id)+1;return le(a,d.id)||(ue(a,d,r,s,j),j+=1),Me(a,H,r,s,"thread.highlight.updated",j,c),H},{behavior:"immediate"})}catch(a){throw a instanceof u?a:new u("DB_ERROR","Failed to update thread highlight",a)}finally{i.close();}}dismissHighlight(t){M(t.threadId,"threadId"),M(t.workspaceId,"workspaceId"),M(t.highlightId,"highlightId"),(!Number.isInteger(t.expectedRevision)||t.expectedRevision<0)&&$("expectedRevision must be a non-negative integer");let e=de(t),r=new Date().toISOString(),s=this.openHandle(true);try{return s.db.transaction(i=>{let a=this.findThread(i,t.threadId,t.workspaceId);a||Ot(`Thread ${t.threadId} not found`);let d=i.select().from(R).where(and(eq(R.id,t.highlightId),eq(R.thread_id,a.id))).limit(1).get();if(d||Ot(`Highlight ${t.highlightId} not found`),d.revision!==t.expectedRevision)throw new Gt(a.id,d.id,t.expectedRevision,d.revision);if(d.status==="dismissed")return d;let c=d.revision+1;i.update(R).set({status:"dismissed",text:null,revision:c,updated_at:r,dismissed_at:r}).where(and(eq(R.id,d.id),eq(R.revision,d.revision))).run();let l=i.select().from(R).where(eq(R.id,d.id)).get();if(!l)throw new u("DB_ERROR","Highlight dismissal did not return a row");let _=ce(i,a.id)+1;return le(i,a.id)||(ue(i,a,e,r,_),_+=1),Me(i,l,e,r,"thread.highlight.deleted",_,d),l},{behavior:"immediate"})}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to dismiss thread highlight",i)}finally{s.close();}}listActiveHighlights(t,e,r={}){if(M(t,"threadId"),M(e,"workspaceId"),r.taskId!==void 0&&M(r.taskId,"taskId"),r.coversFromTaskId!==void 0&&M(r.coversFromTaskId,"coversFromTaskId"),r.coversToTaskId!==void 0&&M(r.coversToTaskId,"coversToTaskId"),!existsSync(this.resolveDbPath()))return null;let s=this.openHandle(false);try{if(!this.findThread(s.db,t,e))return null;let a=s.db.select().from(R).where(and(eq(R.thread_id,t),eq(R.status,"active"))).orderBy(asc(R.created_at),asc(R.id)).all();if(r.taskId===void 0&&r.coversFromTaskId===void 0&&r.coversToTaskId===void 0)return a;let d=s.db.all(sql`
|
|
359
359
|
SELECT id, started_at FROM tasks WHERE thread_id = ${t}
|
|
360
360
|
ORDER BY started_at ASC, id ASC
|
|
361
|
-
`),c=new Map(d.map((g,f)=>[g.id,f])),l=r.taskId===void 0?void 0:c.get(r.taskId),
|
|
362
|
-
`).filter(
|
|
363
|
-
`).trim()}function
|
|
364
|
-
`):e&&typeof e=="object"&&e.result!==void 0&&(t=e.result||"");}catch{t=
|
|
365
|
-
`)[0].slice(0,200)),e.push({id:`${r.id}-assistant`,text:
|
|
361
|
+
`),c=new Map(d.map((g,f)=>[g.id,f])),l=r.taskId===void 0?void 0:c.get(r.taskId),_=r.coversFromTaskId===void 0?void 0:c.get(r.coversFromTaskId),p=r.coversToTaskId===void 0?void 0:c.get(r.coversToTaskId);return a.filter(g=>{let f=c.get(g.covers_from_task_id),x=c.get(g.covers_to_task_id);if(f===void 0||x===void 0)return !1;let O=Math.min(f,x),N=Math.max(f,x);return !(l!==void 0&&(l<O||l>N)||_!==void 0&&N<_||p!==void 0&&O>p)})}catch(i){throw i instanceof u?i:new u("DB_ERROR","Failed to list active thread highlights",i)}finally{s.close();}}listHighlights(t,e,r){return this.listActiveHighlights(t,e,r)}getActiveHighlights(t,e,r){return this.listActiveHighlights(t,e,r)}};var q=class extends u{reason;constructor(t,e="VALIDATION",r=t,s){super(e,r,s),this.name="CommonCodeRepositoryError",this.reason=t;}},jn="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";function Gs(){let n=randomBytes(16),t="";for(let e of n)t+=jn[e%jn.length];return t.slice(0,12)}function Fn(){return `c_${Gs()}`}function Ks(n){return typeof n=="string"&&ve.includes(n)}function Vs(n){return typeof n=="string"&&Ne.includes(n)}function Vt(n){if(!Ks(n))throw new q("COMMON_CODE_GROUP_INVALID","VALIDATION",`Unsupported common-code group: ${n}`)}function zn(n){if(!Vs(n))throw new q("COMMON_CODE_COLOR_INVALID","VALIDATION",`Unsupported common-code color: ${n}`)}function Wn(n){let t=typeof n=="string"?n.trim():"",e=[...t].length;if(e<1||e>20)throw new q("COMMON_CODE_NAME_INVALID","VALIDATION","Common-code names must contain 1 to 20 Unicode characters");return t}function Xt(n){if(typeof n!="string"||n.trim().length===0)throw new q("COMMON_CODE_WORKSPACE_INVALID","VALIDATION","Workspace id is required for a user common code")}function qe(n){if(typeof n!="string"||n.trim().length===0)throw new q("COMMON_CODE_CODE_INVALID","VALIDATION","Common-code code is required")}function Lt(n,t){return and(eq(m.code_group,n),or$1(isNull(m.workspace_id),eq(m.workspace_id,t)))}var pe=class extends Y{dbPath;constructor(t={}){super(),t.dbPath?this.dbPath=t.dbPath:t.dbRoot&&(this.dbPath=join(t.dbRoot,".crewx","crewx.db"));}resolveDbPath(){return this.dbPath??super.resolveDbPath()}openHandle(t){let e=this.resolveDbPath();if(!t&&!existsSync(e))throw new u("NOT_FOUND","Database not found");t&&mkdirSync(dirname(e),{recursive:true});let r=A(e);if(t)try{nt(r.db,e);}catch(s){throw r.close(),s}return r}listSelectable(t,e){if(Vt(t),Xt(e),!this.dbExists())return [];let r=this.openHandle(false);try{return r.db.select().from(m).where(and(Lt(t,e),eq(m.is_archived,0))).orderBy(asc(m.sort_order),asc(m.code)).all()}catch(s){throw new u("DB_ERROR","Failed to list selectable common codes",s)}finally{r.close();}}listForHistory(t,e){if(Vt(t),Xt(e),!this.dbExists())return [];let r=this.openHandle(false);try{return r.db.select().from(m).where(Lt(t,e)).orderBy(asc(m.sort_order),asc(m.code)).all()}catch(s){throw new u("DB_ERROR","Failed to list common-code history",s)}finally{r.close();}}resolve(t,e){if(Vt(t),qe(e),!this.dbExists())return null;let r=this.openHandle(false);try{return r.db.select().from(m).where(and(eq(m.code_group,t),eq(m.code,e))).limit(1).get()??null}catch(s){throw new u("DB_ERROR","Failed to resolve common code",s)}finally{r.close();}}createThreadState(t){Xt(t.workspaceId);let e=Wn(t.name);zn(t.color);let r=this.openHandle(true);try{return r.db.transaction(s=>{if(s.select({code:m.code}).from(m).where(and(Lt("THREAD_STATE",t.workspaceId),eq(m.is_archived,0),eq(m.code_name,e))).limit(1).get())throw new q("COMMON_CODE_NAME_CONFLICT","CONFLICT",`Common-code name is already in use: ${e}`);let a=s.select({maxSortOrder:sql`max(${m.sort_order})`}).from(m).where(Lt("THREAD_STATE",t.workspaceId)).get(),d=new Date().toISOString(),c=Fn();for(;s.select({code:m.code}).from(m).where(and(eq(m.code_group,"THREAD_STATE"),eq(m.code,c))).limit(1).get();)c=Fn();s.insert(m).values({code_group:"THREAD_STATE",code:c,code_name:e,color:t.color,sort_order:(a?.maxSortOrder??-1)+1,workspace_id:t.workspaceId,is_builtin:0,is_archived:0,metadata:null,created_at:d,updated_at:d}).run();let l=s.select().from(m).where(and(eq(m.code_group,"THREAD_STATE"),eq(m.code,c))).limit(1).get();if(!l)throw new u("DB_ERROR","Created common code could not be read back");return l},{behavior:"immediate"})}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to create thread state common code",s)}finally{r.close();}}updateDisplay(t){if(Vt(t.group),qe(t.code),Xt(t.workspaceId),t.name===void 0&&t.color===void 0)throw new q("COMMON_CODE_UPDATE_EMPTY","VALIDATION","At least one display value is required");let e=t.name===void 0||t.name===null?t.name:Wn(t.name);t.color!==void 0&&zn(t.color);let r=this.openHandle(true);try{return r.db.transaction(s=>{let i=s.select().from(m).where(and(eq(m.code_group,t.group),eq(m.code,t.code))).limit(1).get();if(!i)throw new q("COMMON_CODE_NOT_FOUND","NOT_FOUND",`Common code not found: ${t.group}/${t.code}`);if(this.assertOwnership(i,t.workspaceId),e===null&&i.is_builtin!==1)throw new q("COMMON_CODE_NAME_INVALID","VALIDATION","User common-code names cannot be cleared");if(typeof e=="string"&&i.is_archived===0){let c=and(Lt(t.group,t.workspaceId),eq(m.is_archived,0));if(s.select({code:m.code}).from(m).where(and(c,eq(m.code_name,e),sql`${m.code} <> ${t.code}`)).limit(1).get())throw new q("COMMON_CODE_NAME_CONFLICT","CONFLICT",`Common-code name is already in use: ${e}`)}let a={updated_at:new Date().toISOString()};t.name!==void 0&&(a.code_name=e??null),t.color!==void 0&&(a.color=t.color),s.update(m).set(a).where(and(eq(m.code_group,t.group),eq(m.code,t.code))).run();let d=s.select().from(m).where(and(eq(m.code_group,t.group),eq(m.code,t.code))).limit(1).get();if(!d)throw new u("DB_ERROR","Updated common code could not be read back");return d},{behavior:"immediate"})}catch(s){throw s instanceof u?s:new u("DB_ERROR","Failed to update common-code display values",s)}finally{r.close();}}archive(t,e,r,s=true){if(Vt(t),qe(e),Xt(r),typeof s!="boolean")throw new q("COMMON_CODE_ARCHIVE_INVALID","VALIDATION","Archive state must be boolean");let i=this.openHandle(true);try{return i.db.transaction(a=>{let d=a.select().from(m).where(and(eq(m.code_group,t),eq(m.code,e))).limit(1).get();if(!d)throw new q("COMMON_CODE_NOT_FOUND","NOT_FOUND",`Common code not found: ${t}/${e}`);if(d.is_builtin===1)throw new q("COMMON_CODE_BUILTIN_ARCHIVE_FORBIDDEN","VALIDATION","Builtin common codes cannot be archived");if(this.assertOwnership(d,r),!s&&d.code_name!==null&&a.select({code:m.code}).from(m).where(and(Lt(t,r),eq(m.is_archived,0),eq(m.code_name,d.code_name),ne(m.code,e))).limit(1).get())throw new q("COMMON_CODE_NAME_CONFLICT","CONFLICT",`Common-code name is already in use: ${d.code_name}`);a.update(m).set({is_archived:s?1:0,updated_at:new Date().toISOString()}).where(and(eq(m.code_group,t),eq(m.code,e))).run();let c=a.select().from(m).where(and(eq(m.code_group,t),eq(m.code,e))).limit(1).get();if(!c)throw new u("DB_ERROR","Archived common code could not be read back");return c},{behavior:"immediate"})}catch(a){throw a instanceof u?a:new u("DB_ERROR","Failed to archive common code",a)}finally{i.close();}}assertOwnership(t,e){if(t.workspace_id!==null&&t.workspace_id!==e)throw new q("COMMON_CODE_SCOPE_FORBIDDEN","VALIDATION","Workspace does not own this common code")}};function Js(n){return n.replace(/<conversation_history[^>]*>[\s\S]*?<\/conversation_history>/g,"").split(`
|
|
362
|
+
`).filter(s=>!(s.startsWith("Loaded ")&&s.includes("layouts from")||s.includes("[dotenv@")||s.includes("[Nest]")&&s.includes("DEBUG")||s.startsWith("Registered custom layout:")||s.startsWith("Updated custom layout:"))).join(`
|
|
363
|
+
`).trim()}function Qs(n){if(!n)return "";let t=n;try{let e=JSON.parse(t);Array.isArray(e)?t=e.filter(r=>r?.type==="text"&&r?.text).map(r=>r.text).join(`
|
|
364
|
+
`):e&&typeof e=="object"&&e.result!==void 0&&(t=e.result||"");}catch{t=Js(t);}return t}var ge=class{dbPath;constructor(t){this.dbPath=t??join(homedir(),".crewx","crewx.db");}getThreadRepo(){return new ae({dbPath:this.dbPath})}getThreadHistoryRepo(){return new _e({dbPath:this.dbPath})}updateThread(t,e){this.getThreadRepo().updateThread(t,{title:e.title});}async ensureThread(t,e,r){let s=this.getThreadRepo(),i=s.findThreadById(t);if(i){if(i.platform!==e)throw new Error(`Thread '${t}' already exists with platform '${i.platform}' \u2014 cannot change to '${e}' (platform is immutable)`);return {created:false}}return s.ensureThread(t,e,r),{created:true}}async fetchHistory(t,e){let r=e?.limit??100,s=this.getThreadRepo(),i=s.findThreadById(t),a=s.findTopLevelTasks(t,void 0,r),d=new Set(["queued","cancelled"]);a=a.filter(p=>(!p.status||!d.has(p.status))&&(!e?.currentTraceId||p.trace_id!==e.currentTraceId));let c=i?.platform??"cli",l=this.rowsToMessages(a),_=e?.includeHighlights===false?void 0:this.readActiveHighlights(t,i?.workspace_id??null);return {threadId:t,platform:c,messages:l,..._?{highlights:_}:{},metadata:{title:i?.title??void 0,firstMessage:i?.first_message??void 0,lastMessage:i?.last_message??void 0,messageCount:i?.message_count??0,updatedAt:i?.updated_at?new Date(i.updated_at).getTime():void 0}}}async fetchThreadState(t){try{let e=this.getThreadHistoryRepo().getSnapshot(t);if(!e)return;let r=new pe({dbPath:this.dbPath}),s=(i,a)=>{try{return r.resolve(i,a)?.code_name||a}catch{return a}};return {...e.title?{title:e.title}:{},...e.priority?{priority:{code:e.priority,name:s("THREAD_PRIORITY",e.priority)}}:{},...e.state?{state:{code:e.state,name:s("THREAD_STATE",e.state)}}:{}}}catch{return}}async fetchHighlights(t){let e=this.getThreadRepo().findThreadById(t);return this.readActiveHighlights(t,e?.workspace_id??null)}async saveUserMessage(t,e,r,s){let{firstMessage:i}=this.getThreadRepo().saveUserMessage(t,e);return {id:t,firstMessage:i}}async saveAssistantMessage(t,e,r,s){return this.getThreadRepo().saveAssistantMessage(t,e),{id:t}}close(){}normalizeStatus(t){if(t&&!["success","completed","done"].includes(t)){if(["failed","error"].includes(t))return "failed";if(t==="running")return "running"}}readActiveHighlights(t,e){if(!e)return [];try{return (this.getThreadHistoryRepo().listActiveHighlights(t,e)??[]).filter(s=>typeof s.text=="string"&&s.text.length>0).map(s=>({id:s.id,text:s.text,kind:s.kind,source:s.source,coversFromTaskId:s.covers_from_task_id,coversToTaskId:s.covers_to_task_id,createdAt:s.created_at}))}catch{return}}rowsToMessages(t){let e=[];for(let r of t){r.prompt&&e.push({id:`${r.id}-user`,text:r.prompt,isAssistant:false,timestamp:new Date(r.started_at).getTime(),taskId:r.id,metadata:{caller_agent_id:r.caller_agent_id,task_id:r.id}});let s=Qs(r.result),i=this.normalizeStatus(r.status);if(s||i==="running"||i==="failed"){let a={agent_id:r.agent_id,task_id:r.id};i&&(a.status=i),i==="failed"&&r.error&&(a.reason=r.error.split(`
|
|
365
|
+
`)[0].slice(0,200)),e.push({id:`${r.id}-assistant`,text:s,isAssistant:true,timestamp:new Date(r.started_at).getTime(),taskId:r.id,metadata:a});}}return e}};var Be=class extends Tt{name="conversation";_provider;unsubStart=null;unsubEnd=null;constructor(t){super(),this._provider=new ge(t?.dbPath);}get conversationProvider(){return this._provider}async afterUserMessage(t,e,r,s){}async afterAssistantMessage(t,e,r){}attach(t){this.unsubStart=t.on("task:start",async e=>{if(!e.threadId)return;let r=e.platform??"cli";try{let s=await this._provider.ensureThread(e.threadId,r,e.workspaceId),i=await this._provider.saveUserMessage(e.threadId,e.message??"");await this.afterUserMessage(e.threadId,i.id,s.created||i.firstMessage,e);}catch{}}),this.unsubEnd=t.on("task:end",async e=>{if(!e.result)return;let r=e.metadata?.threadId;if(!r)return;let s=e.agentRef?.replace(/^@/,"")??"";try{let{id:i}=await this._provider.saveAssistantMessage(r,e.result,s);await this.afterAssistantMessage(r,i,e);}catch{}});}detach(t){this.unsubStart?.(),this.unsubStart=null,this.unsubEnd?.(),this.unsubEnd=null,this._provider.close?.();}};export{Be as ConversationPlugin,me as FileLoggerPlugin,xe as SqliteTracingPlugin};
|