# Migrate storage from SQLite to PostgreSQL — full dashboard cutover Migrates Fusion's storage layer to the embedded PostgreSQL `AsyncDataLayer` (the default backend) and **completes the satellite-store + feature cutover** so every dashboard and Command Center surface works in PG mode. ## Status — every surface works in embedded-PG mode Verified live against a running embedded-Postgres dashboard (all **200**, zero 5xx) and gate-tested (**23 files / 99 tests** on embedded PG, plus engine-core 294 and ci-shape 63 in the blocking merge gate; core/engine/cli/dashboard typecheck clean). | Area | Surfaces | State | |---|---|---| | Satellite stores | workflows, todos, insights, research, missions, goals, mailbox | ✅ | | Views | artifacts, documents, evals | ✅ | | Command Center | activity, productivity, team, tokens, tools, **workflows**, **github**, **signals**, **plugin-activations**, **live** (all 10) | ✅ | | Run execution | insight generation, research run execution | ✅ (store-path; AI step needs a provider) | | Live updates | SSE push for mission/research/insight events | ✅ | | Workflow editing | create / update / delete / select (+ id counter) | ✅ | | Engine | mission autopilot, incident-signal ingestion, regression storm-guard, agent wake-on-message | ✅ | | Core | tasks, agents, secrets, automations, memory, chat, usage, PRs, git | ✅ | ## Approach Each satellite store gets an `Async<Store>` wrapper exposing the sync store's method names over the existing `async-*-store.ts` helpers; `get<Store>Store()` returns a `Sync | Async` union; consumers `await` (harmless on sync), and engine/CLI paths that can't convert use `instanceof Sync` graceful fallback. Analytics aggregators branch on `"ping" in dbOrLayer` to run schema-qualified raw SQL over `project.*` (snake_case) in PG. Executors/orchestrators/autopilot are await-converted to drive the union store; the async store wrappers extend `EventEmitter` so SSE live-push fires in both backends. Not-yet-ported capabilities degrade gracefully (never 500) and are individually called out in commits. ## Sync with main The branch is kept continuously merged with `main` (currently through FN-7845, 2026-07-12); the earlier "final rebase deferred" note no longer applies. Use **Create a merge commit** (or squash) to land it — GitHub's rebase-merge cannot replay a merge-maintained branch. ## Residual Review Findings Multi-agent code review of the PostgreSQL satellite-store ports (U1–U5) applied 3 safe fixes (see `fix(review): apply autofix feedback`). The following are **real but gated** — recorded here as follow-up work rather than auto-applied. All are SQLite→PostgreSQL **concurrency/atomicity regressions**: the sync stores were immune only by SQLite's single-writer, single-threaded-handler execution; the async ports open multi-await read-modify-write windows. **Reachability is low today** because the execution engines that generate concurrent same-run mutations (insight run executor, research orchestrator/dispatcher) are `instanceof`-gated to sync mode in PG. No process-crash class survived (all engine fallbacks correctly guard the sync store). - **[P1] Research `appendResearchEvent` dual-write is non-atomic** (`packages/core/src/async-research-store.ts`, corroborated: adversarial + reliability). The `research_run_events` insert (own transaction) and the `run.events` jsonb update are separate writes — a crash between them, or two concurrent appends, splits the table count from the jsonb array. **Fix:** perform the seq-insert and the jsonb update in one `layer.transactionImmediate`. - **[P1] Research run terminal-reversion via stale full-row persist** (`async-research-store.ts` `persistResearchRun`/`updateResearchStatus`). Concurrent `PATCH /runs/:id/status` + `POST /runs/:id/events` can revert a terminal run to `running` by overwriting the whole row, bypassing the transition guard. **Fix:** scoped column `UPDATE`s with a `WHERE status …` guard, or optimistic version column. - **[P2] `updateResearchRun`/`updateInsightRun` read-then-write TOCTOU** — concurrent PATCHes last-writer-wins on the lifecycle merge. **Fix:** `SELECT … FOR UPDATE` / enclosing transaction. - **[P2] `upsertRun`/`createRunOrThrowConflict` check-then-create race** (`async-insight-store.ts`) — two callers can each create an "active" run. **Fix:** partial unique index on `(projectId, trigger) WHERE status IN ('pending','running')`. - **[P3] `createResearchRetryRun` return-value divergence** — sync returns the pre-update `queued` snapshot; async returns the reloaded `retry_waiting` run (persisted state is identical). Pick one side for cross-backend parity. - **[P2/perf] Mission `getMissionWithHierarchy`/`getMissionHealth` N+1 fan-out** — O(milestones×slices) sequential round-trips hold one pool slot per request; can starve the pool for large hierarchies. **Fix:** batched/joined reads. - **Testing gaps:** no PG-mode concurrency tests (interleaved status/event mutations), no sync↔async parity assertion for the lifecycle-error codes, and no mission status/health rollup parity test vs the sync `MissionStore`. ~~Out of scope (deferred): AI run *execution* (insight/research) + mission autopilot + live SSE mission events remain sync-gated/degraded in PG mode.~~ **Since ported** — insight/research run execution, mission autopilot, and SSE live push all run on the async layer now, which also makes the concurrency findings above genuinely reachable; they remain open follow-ups. --- ## Update — 2026-07-12: production-readiness hardening & live acceptance Everything below landed on this branch since the description above was written: **Production blockers from review — fixed** - `recoverStaleTransitionPending` ported to the async layer (backend moves write + clear the crash-safe marker; startup/maintenance sweeps no longer throw). - Lost-update class fixed: `atomicWriteTaskJson`/`WithAudit` write changed columns only (full-row upserts silently resurrected stale fields across concurrent store instances — the "task stuck unplanned forever" bug). - First-boot **auto-migration**: booting the PG backend over a project with a legacy `fusion.db` migrates it automatically (loud failure, SQLite kept as backup), and the dashboard shows a one-time **"your data was migrated" banner** with the backup paths and a Need-help Discord link. - `pg_dump`/`pg_restore` discovered from common install locations for embedded-mode backups. - The PG suite is part of the blocking merge gate (`test:pg-gate`). **Multi-project isolation (PR #2007, merged into this branch)** - `project_id` partition key on tasks / archived tasks / config, `taskProjectScope` threaded through every scan/claim/count, per-project config rows, layer bound to the project at startup. - Review P1 follow-up: the shared cold-storage `archive.archived_tasks` table is also partitioned and all archived-board reads/counts/searches are scoped. - Schema drift self-heal generalized to schema-qualified columns so existing databases upgrade in place. **Other changes** - Node settings sync **removed** in PG mode (409 `settings-sync-disabled-postgres`) — nodes share state by connecting to the same database; auth sync kept (per-machine file). - Perf (review findings): `listTasks` pushes column filter + ORDER BY + LIMIT/OFFSET into SQL; `getConversation` capped to the most recent 200 messages. - Fixed a false "operator action required" pause-abort log fired on every successfully auto-merged task. **Live acceptance — PASSED (2026-07-12)** A sandboxed instance (isolated HOME, embedded PG, real Opus executor) ran a task through the complete cycle: create → triage (AI spec) → execute → in-review → AI squash-merge landed on the project's `main` → done. A write+read sweep of every data surface (settings, comments, documents, attachments + artifact bridge + artifact edit, chat with real generation, goals, missions, agent mail, secrets, workflows, memory, CC analytics) was green on embedded PG. **Known remaining work** - The per-project `config` PK re-key has no upgrade path for pre-isolation embedded-PG databases (needs a real `DROP CONSTRAINT`/re-key migration; fresh databases are fine). - `pg_dump`/`pg_restore` binaries are not yet bundled in release artifacts (PATH/common-location discovery only). - The satellite-store concurrency findings listed above. --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Co-authored-by: Phil Larson <hello@phillarson.xyz> Co-authored-by: fusion-merge <fusion-merge@local>
527 lines
20 KiB
TypeScript
527 lines
20 KiB
TypeScript
import { sql } from "drizzle-orm";
|
|
import type { Database } from "./db.js";
|
|
import type { AsyncDataLayer } from "./postgres/data-layer.js";
|
|
import { BUILTIN_WORKFLOWS, getBuiltinWorkflow, isBuiltinWorkflowId } from "./builtin-workflows.js";
|
|
import { costFor, type CostResult, type ModelPricingOverrides } from "./model-pricing.js";
|
|
import type { TokenTotals } from "./token-analytics.js";
|
|
|
|
export interface WorkflowAnalyticsQuery {
|
|
/** ISO-8601 lower bound (inclusive). */
|
|
from?: string;
|
|
/** ISO-8601 upper bound (inclusive). */
|
|
to?: string;
|
|
/** Epoch ms "now" used only for pricing-staleness. */
|
|
now?: number;
|
|
/** User-managed pricing overrides that take precedence over the built-in baseline. */
|
|
pricingOverrides?: ModelPricingOverrides;
|
|
/** Workflow id used for tasks without an explicit task_workflow_selection row. */
|
|
defaultWorkflowId?: string;
|
|
}
|
|
|
|
export interface WorkflowMetricTotals {
|
|
tokens: TokenTotals;
|
|
cost: CostResult;
|
|
filesChanged: number;
|
|
tasksCompleted: number;
|
|
tasksInProgress: number;
|
|
tasksInReview: number;
|
|
}
|
|
|
|
export interface WorkflowSummary extends WorkflowMetricTotals {
|
|
workflowId: string;
|
|
workflowName: string;
|
|
workflowIcon?: string;
|
|
isBuiltin: boolean;
|
|
}
|
|
|
|
export interface WorkflowAnalytics {
|
|
from: string | null;
|
|
to: string | null;
|
|
totals: WorkflowMetricTotals;
|
|
workflows: WorkflowSummary[];
|
|
}
|
|
|
|
interface WorkflowNameRow {
|
|
id: string;
|
|
name: string | null;
|
|
icon: string | null;
|
|
}
|
|
|
|
interface TaskTokenRow {
|
|
workflowId: string;
|
|
inputTokens: number | null;
|
|
outputTokens: number | null;
|
|
cachedTokens: number | null;
|
|
cacheWriteTokens: number | null;
|
|
totalTokens: number | null;
|
|
modelProvider: string | null;
|
|
modelId: string | null;
|
|
tokenUsageModelProvider: string | null;
|
|
tokenUsageModelId: string | null;
|
|
}
|
|
|
|
interface CountByWorkflowRow {
|
|
workflowId: string;
|
|
count: number;
|
|
}
|
|
|
|
interface ModifiedFilesRow {
|
|
workflowId: string;
|
|
modifiedFiles: string | null;
|
|
}
|
|
|
|
function emptyTokenTotals(): TokenTotals {
|
|
return {
|
|
inputTokens: 0,
|
|
outputTokens: 0,
|
|
cachedTokens: 0,
|
|
cacheWriteTokens: 0,
|
|
totalTokens: 0,
|
|
nTasks: 0,
|
|
};
|
|
}
|
|
|
|
interface CostAccumulator {
|
|
usd: number;
|
|
anyPriced: boolean;
|
|
anyUnavailable: boolean;
|
|
anyStale: boolean;
|
|
}
|
|
|
|
function emptyCostAccumulator(): CostAccumulator {
|
|
return { usd: 0, anyPriced: false, anyUnavailable: false, anyStale: false };
|
|
}
|
|
|
|
function finalizeCost(acc: CostAccumulator): CostResult {
|
|
return {
|
|
usd: acc.anyPriced ? acc.usd : null,
|
|
unavailable: acc.anyUnavailable,
|
|
stale: acc.anyStale,
|
|
};
|
|
}
|
|
|
|
function addTokenRow(totals: TokenTotals, row: TaskTokenRow): void {
|
|
totals.inputTokens += row.inputTokens ?? 0;
|
|
totals.outputTokens += row.outputTokens ?? 0;
|
|
totals.cachedTokens += row.cachedTokens ?? 0;
|
|
totals.cacheWriteTokens += row.cacheWriteTokens ?? 0;
|
|
totals.totalTokens +=
|
|
row.totalTokens ??
|
|
(row.inputTokens ?? 0) +
|
|
(row.outputTokens ?? 0) +
|
|
(row.cachedTokens ?? 0) +
|
|
(row.cacheWriteTokens ?? 0);
|
|
totals.nTasks += 1;
|
|
}
|
|
|
|
function addRowCost(
|
|
acc: CostAccumulator,
|
|
row: TaskTokenRow,
|
|
now?: number,
|
|
pricingOverrides?: ModelPricingOverrides,
|
|
): void {
|
|
const result = costFor(
|
|
{
|
|
inputTokens: row.inputTokens ?? 0,
|
|
outputTokens: row.outputTokens ?? 0,
|
|
cachedTokens: row.cachedTokens ?? 0,
|
|
cacheWriteTokens: row.cacheWriteTokens ?? 0,
|
|
},
|
|
{
|
|
/*
|
|
* FNXC:CommandCenter 2026-07-10-08:25:
|
|
* Workflow cost analytics must mirror token analytics by pricing the actually-used token-usage model snapshot before legacy task model columns. FN-7757's static catalog rows could not help rows whose legacy model columns are NULL, so this fixes the durable resolution path without guessing prices for unknown models.
|
|
*/
|
|
provider: row.tokenUsageModelProvider ?? row.modelProvider,
|
|
model: row.tokenUsageModelId ?? row.modelId,
|
|
},
|
|
now,
|
|
pricingOverrides,
|
|
);
|
|
if (result.stale) acc.anyStale = true;
|
|
if (result.unavailable || result.usd === null) {
|
|
acc.anyUnavailable = true;
|
|
} else {
|
|
acc.usd += result.usd;
|
|
acc.anyPriced = true;
|
|
}
|
|
}
|
|
|
|
function emptyMetricTotals(): WorkflowMetricTotals {
|
|
return {
|
|
tokens: emptyTokenTotals(),
|
|
cost: { usd: null, unavailable: false, stale: false },
|
|
filesChanged: 0,
|
|
tasksCompleted: 0,
|
|
tasksInProgress: 0,
|
|
tasksInReview: 0,
|
|
};
|
|
}
|
|
|
|
function countModifiedFiles(value: string | null): number {
|
|
if (!value) return 0;
|
|
let files: unknown;
|
|
try {
|
|
files = JSON.parse(value);
|
|
} catch {
|
|
return 0;
|
|
}
|
|
if (!Array.isArray(files)) return 0;
|
|
let count = 0;
|
|
for (const file of files) {
|
|
if (typeof file === "string" && file.length > 0) count += 1;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
function addRangeClauses(column: string, clauses: string[], params: string[], query: WorkflowAnalyticsQuery): void {
|
|
if (query.from !== undefined) {
|
|
clauses.push(`${column} >= ?`);
|
|
params.push(query.from);
|
|
}
|
|
if (query.to !== undefined) {
|
|
clauses.push(`${column} <= ?`);
|
|
params.push(query.to);
|
|
}
|
|
}
|
|
|
|
/** Resolve a workflow's display name + builtin flag from a name lookup. */
|
|
type WorkflowNameResolver = (workflowId: string) => { workflowName: string; workflowIcon?: string; isBuiltin: boolean };
|
|
|
|
function resolveWorkflowNameSync(db: Database, workflowId: string): { workflowName: string; workflowIcon?: string; isBuiltin: boolean } {
|
|
const builtin = getBuiltinWorkflow(workflowId) ?? BUILTIN_WORKFLOWS.find((workflow) => workflow.id === workflowId);
|
|
if (builtin) return { workflowName: builtin.name, isBuiltin: true };
|
|
const row = db.prepare("SELECT id, name, icon FROM workflows WHERE id = ?").get(workflowId) as WorkflowNameRow | undefined;
|
|
return {
|
|
workflowName: row?.name && row.name.length > 0 ? row.name : workflowId,
|
|
...(row?.icon && row.icon.length > 0 ? { workflowIcon: row.icon } : {}),
|
|
isBuiltin: isBuiltinWorkflowId(workflowId),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* FNXC:PostgresCommandCenterAnalytics 2026-06-28-09:30:
|
|
* Async (PostgreSQL) name resolver. Workflow names are prefetched once from
|
|
* project.workflows into a Map (the async connection cannot issue per-id sync
|
|
* prepared reads), so per-workflow name resolution is an in-memory lookup that
|
|
* mirrors resolveWorkflowNameSync's builtin-first / NULLIF-empty fallback.
|
|
*/
|
|
function resolveWorkflowNameFromMap(
|
|
names: Map<string, string>,
|
|
workflowId: string,
|
|
): { workflowName: string; isBuiltin: boolean } {
|
|
const builtin = getBuiltinWorkflow(workflowId) ?? BUILTIN_WORKFLOWS.find((workflow) => workflow.id === workflowId);
|
|
if (builtin) return { workflowName: builtin.name, isBuiltin: true };
|
|
const name = names.get(workflowId);
|
|
return {
|
|
workflowName: name && name.length > 0 ? name : workflowId,
|
|
isBuiltin: isBuiltinWorkflowId(workflowId),
|
|
};
|
|
}
|
|
|
|
function makeSummary(resolveName: WorkflowNameResolver, workflowId: string): WorkflowSummary {
|
|
return {
|
|
workflowId,
|
|
...resolveName(workflowId),
|
|
...emptyMetricTotals(),
|
|
};
|
|
}
|
|
|
|
/** Pre-fetched per-workflow row sets shared by the sync + async aggregation. */
|
|
interface WorkflowAnalyticsRows {
|
|
tokenRows: TaskTokenRow[];
|
|
completedRows: CountByWorkflowRow[];
|
|
currentRows: Array<CountByWorkflowRow & { columnName: string }>;
|
|
fileRows: ModifiedFilesRow[];
|
|
}
|
|
|
|
/**
|
|
* FNXC:PostgresCommandCenterAnalytics 2026-06-28-09:30:
|
|
* Pure per-workflow aggregation shared by the sync (SQLite) and async
|
|
* (PostgreSQL) fetch paths. No I/O — takes already-fetched row sets and a name
|
|
* resolver, so both backends produce byte-identical totals/sorting/cost
|
|
* semantics.
|
|
*/
|
|
function buildWorkflowAnalytics(
|
|
rows: WorkflowAnalyticsRows,
|
|
query: WorkflowAnalyticsQuery,
|
|
resolveName: WorkflowNameResolver,
|
|
): WorkflowAnalytics {
|
|
const summaries = new Map<string, WorkflowSummary>();
|
|
const costAccumulators = new Map<string, CostAccumulator>();
|
|
const totalTokens = emptyTokenTotals();
|
|
const totalCost = emptyCostAccumulator();
|
|
const pricingOverrides = query.pricingOverrides;
|
|
|
|
const ensureSummary = (workflowId: string): WorkflowSummary => {
|
|
const existing = summaries.get(workflowId);
|
|
if (existing) return existing;
|
|
const created = makeSummary(resolveName, workflowId);
|
|
summaries.set(workflowId, created);
|
|
costAccumulators.set(workflowId, emptyCostAccumulator());
|
|
return created;
|
|
};
|
|
|
|
for (const row of rows.tokenRows) {
|
|
const summary = ensureSummary(row.workflowId);
|
|
const workflowCost = costAccumulators.get(row.workflowId) ?? emptyCostAccumulator();
|
|
costAccumulators.set(row.workflowId, workflowCost);
|
|
addTokenRow(summary.tokens, row);
|
|
addTokenRow(totalTokens, row);
|
|
addRowCost(workflowCost, row, query.now, pricingOverrides);
|
|
addRowCost(totalCost, row, query.now, pricingOverrides);
|
|
}
|
|
|
|
for (const row of rows.completedRows) {
|
|
ensureSummary(row.workflowId).tasksCompleted = row.count;
|
|
}
|
|
|
|
for (const row of rows.currentRows) {
|
|
const summary = ensureSummary(row.workflowId);
|
|
if (row.columnName === "in-progress") summary.tasksInProgress = row.count;
|
|
if (row.columnName === "in-review") summary.tasksInReview = row.count;
|
|
}
|
|
|
|
for (const row of rows.fileRows) {
|
|
ensureSummary(row.workflowId).filesChanged += countModifiedFiles(row.modifiedFiles);
|
|
}
|
|
|
|
for (const [workflowId, summary] of summaries) {
|
|
summary.cost = finalizeCost(costAccumulators.get(workflowId) ?? emptyCostAccumulator());
|
|
}
|
|
|
|
let filesChanged = 0;
|
|
let tasksCompleted = 0;
|
|
let tasksInProgress = 0;
|
|
let tasksInReview = 0;
|
|
for (const summary of summaries.values()) {
|
|
filesChanged += summary.filesChanged;
|
|
tasksCompleted += summary.tasksCompleted;
|
|
tasksInProgress += summary.tasksInProgress;
|
|
tasksInReview += summary.tasksInReview;
|
|
}
|
|
|
|
const sortedWorkflows = [...summaries.values()].sort((a, b) => {
|
|
const tokenCmp = b.tokens.totalTokens - a.tokens.totalTokens;
|
|
if (tokenCmp !== 0) return tokenCmp;
|
|
return a.workflowId.localeCompare(b.workflowId);
|
|
});
|
|
|
|
return {
|
|
from: query.from ?? null,
|
|
to: query.to ?? null,
|
|
totals: {
|
|
tokens: totalTokens,
|
|
cost: finalizeCost(totalCost),
|
|
filesChanged,
|
|
tasksCompleted,
|
|
tasksInProgress,
|
|
tasksInReview,
|
|
},
|
|
workflows: sortedWorkflows,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Aggregate store-derived per-workflow Command Center metrics over a date range.
|
|
*
|
|
* FNXC:CommandCenter 2026-06-27-12:00:
|
|
* Per-workflow analytics derive from tasks ⨝ task_workflow_selection, with the project default workflow backfilling unselected tasks. The HTTP layer passes an already project-scoped Database handle, so this pure read-only aggregator adds observability for custom workflows without introducing schema or cross-project reads.
|
|
*
|
|
* FNXC:PostgresCommandCenterAnalytics 2026-06-28-09:30:
|
|
* Now accepts a `Database | AsyncDataLayer` and is async. In backend (PostgreSQL)
|
|
* mode it branches on `"ping" in dbOrLayer` and runs schema-qualified `project.*`
|
|
* snake_case queries via the async layer; the sync SQLite branch is unchanged.
|
|
*/
|
|
export async function aggregateWorkflowAnalytics(
|
|
dbOrLayer: Database | AsyncDataLayer,
|
|
query: WorkflowAnalyticsQuery = {},
|
|
): Promise<WorkflowAnalytics> {
|
|
const defaultWorkflowId = query.defaultWorkflowId ?? "builtin:coding";
|
|
if ("ping" in dbOrLayer) {
|
|
return aggregateWorkflowAnalyticsAsync(dbOrLayer, query, defaultWorkflowId);
|
|
}
|
|
const db = dbOrLayer as Database;
|
|
|
|
const workflowExpr = "COALESCE(NULLIF(s.workflowId, ''), ?)";
|
|
|
|
const tokenClauses = ["t.tokenUsageLastUsedAt IS NOT NULL"];
|
|
const tokenParams: string[] = [defaultWorkflowId];
|
|
addRangeClauses("t.tokenUsageLastUsedAt", tokenClauses, tokenParams, query);
|
|
const tokenRows = db
|
|
.prepare(
|
|
`SELECT
|
|
${workflowExpr} AS workflowId,
|
|
t.tokenUsageInputTokens AS inputTokens,
|
|
t.tokenUsageOutputTokens AS outputTokens,
|
|
t.tokenUsageCachedTokens AS cachedTokens,
|
|
t.tokenUsageCacheWriteTokens AS cacheWriteTokens,
|
|
t.tokenUsageTotalTokens AS totalTokens,
|
|
t.modelProvider,
|
|
t.modelId,
|
|
t.tokenUsageModelProvider,
|
|
t.tokenUsageModelId
|
|
FROM tasks t
|
|
LEFT JOIN task_workflow_selection s ON s.taskId = t.id
|
|
WHERE ${tokenClauses.join(" AND ")}`,
|
|
)
|
|
.all(...tokenParams) as TaskTokenRow[];
|
|
|
|
const completedClauses = [`t."column" = 'done'`, "t.columnMovedAt IS NOT NULL"];
|
|
const completedParams: string[] = [defaultWorkflowId];
|
|
addRangeClauses("t.columnMovedAt", completedClauses, completedParams, query);
|
|
const completedRows = db
|
|
.prepare(
|
|
`SELECT ${workflowExpr} AS workflowId, COUNT(*) AS count
|
|
FROM tasks t
|
|
LEFT JOIN task_workflow_selection s ON s.taskId = t.id
|
|
WHERE ${completedClauses.join(" AND ")}
|
|
GROUP BY workflowId`,
|
|
)
|
|
.all(...completedParams) as CountByWorkflowRow[];
|
|
|
|
const currentClauses = [`t."column" IN ('in-progress', 'in-review')`];
|
|
const currentParams: string[] = [defaultWorkflowId];
|
|
/*
|
|
* FNXC:CommandCenter 2026-06-27-17:45:
|
|
* The Workflows tab describes all task counts as range-scoped analytics. Count active workflow tasks only when their current column transition (or updatedAt fallback for legacy rows) falls inside the selected range so stale in-progress/review tasks do not suppress the empty state for unrelated windows.
|
|
*/
|
|
addRangeClauses("COALESCE(t.columnMovedAt, t.updatedAt)", currentClauses, currentParams, query);
|
|
const currentRows = db
|
|
.prepare(
|
|
`SELECT ${workflowExpr} AS workflowId, t."column" AS columnName, COUNT(*) AS count
|
|
FROM tasks t
|
|
LEFT JOIN task_workflow_selection s ON s.taskId = t.id
|
|
WHERE ${currentClauses.join(" AND ")}
|
|
GROUP BY workflowId, t."column"`,
|
|
)
|
|
.all(...currentParams) as Array<CountByWorkflowRow & { columnName: string }>;
|
|
|
|
const filesClauses = ["t.modifiedFiles IS NOT NULL", "t.modifiedFiles NOT IN ('', '[]')"];
|
|
const filesParams: string[] = [defaultWorkflowId];
|
|
addRangeClauses("t.updatedAt", filesClauses, filesParams, query);
|
|
const fileRows = db
|
|
.prepare(
|
|
`SELECT ${workflowExpr} AS workflowId, t.modifiedFiles
|
|
FROM tasks t
|
|
LEFT JOIN task_workflow_selection s ON s.taskId = t.id
|
|
WHERE ${filesClauses.join(" AND ")}`,
|
|
)
|
|
.all(...filesParams) as ModifiedFilesRow[];
|
|
|
|
return buildWorkflowAnalytics(
|
|
{ tokenRows, completedRows, currentRows, fileRows },
|
|
query,
|
|
(workflowId) => resolveWorkflowNameSync(db, workflowId),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* FNXC:PostgresCommandCenterAnalytics 2026-06-28-09:30:
|
|
* PostgreSQL fetch path for {@link aggregateWorkflowAnalytics}. Every table is
|
|
* schema-qualified (`project.*`) with snake_case columns because the async
|
|
* connection has no `project` on the search_path. The `COALESCE(NULLIF(...))`
|
|
* default-workflow backfill, range columns, GROUP BY shape, and integer
|
|
* coercion mirror the sync branch exactly. `modified_files` is jsonb (postgres-js
|
|
* returns it parsed) so it is re-stringified to feed the shared
|
|
* countModifiedFiles helper unchanged.
|
|
*/
|
|
async function aggregateWorkflowAnalyticsAsync(
|
|
layer: AsyncDataLayer,
|
|
query: WorkflowAnalyticsQuery,
|
|
defaultWorkflowId: string,
|
|
): Promise<WorkflowAnalytics> {
|
|
const wfExpr = sql`COALESCE(NULLIF(s.workflow_id, ''), ${defaultWorkflowId})`;
|
|
|
|
const tokFrom = query.from !== undefined ? sql`AND t.token_usage_last_used_at >= ${query.from}` : sql``;
|
|
const tokTo = query.to !== undefined ? sql`AND t.token_usage_last_used_at <= ${query.to}` : sql``;
|
|
const tokenRowsRaw = (await layer.db.execute(
|
|
sql`SELECT
|
|
${wfExpr} AS "workflowId",
|
|
t.token_usage_input_tokens AS "inputTokens",
|
|
t.token_usage_output_tokens AS "outputTokens",
|
|
t.token_usage_cached_tokens AS "cachedTokens",
|
|
t.token_usage_cache_write_tokens AS "cacheWriteTokens",
|
|
t.token_usage_total_tokens AS "totalTokens",
|
|
t.model_provider AS "modelProvider",
|
|
t.model_id AS "modelId",
|
|
t.token_usage_model_provider AS "tokenUsageModelProvider",
|
|
t.token_usage_model_id AS "tokenUsageModelId"
|
|
FROM project.tasks t
|
|
LEFT JOIN project.task_workflow_selection s ON s.task_id = t.id
|
|
WHERE t.token_usage_last_used_at IS NOT NULL ${tokFrom} ${tokTo}`,
|
|
)) as Array<Record<string, unknown>>;
|
|
const tokenRows: TaskTokenRow[] = tokenRowsRaw.map((r) => ({
|
|
workflowId: String(r.workflowId),
|
|
inputTokens: r.inputTokens == null ? null : Number(r.inputTokens),
|
|
outputTokens: r.outputTokens == null ? null : Number(r.outputTokens),
|
|
cachedTokens: r.cachedTokens == null ? null : Number(r.cachedTokens),
|
|
cacheWriteTokens: r.cacheWriteTokens == null ? null : Number(r.cacheWriteTokens),
|
|
totalTokens: r.totalTokens == null ? null : Number(r.totalTokens),
|
|
modelProvider: (r.modelProvider as string | null) ?? null,
|
|
modelId: (r.modelId as string | null) ?? null,
|
|
tokenUsageModelProvider: (r.tokenUsageModelProvider as string | null) ?? null,
|
|
tokenUsageModelId: (r.tokenUsageModelId as string | null) ?? null,
|
|
}));
|
|
|
|
const compFrom = query.from !== undefined ? sql`AND t.column_moved_at >= ${query.from}` : sql``;
|
|
const compTo = query.to !== undefined ? sql`AND t.column_moved_at <= ${query.to}` : sql``;
|
|
const completedRowsRaw = (await layer.db.execute(
|
|
sql`SELECT ${wfExpr} AS "workflowId", count(*)::int AS count
|
|
FROM project.tasks t
|
|
LEFT JOIN project.task_workflow_selection s ON s.task_id = t.id
|
|
WHERE t."column" = 'done' AND t.column_moved_at IS NOT NULL ${compFrom} ${compTo}
|
|
GROUP BY 1`,
|
|
)) as Array<{ workflowId: string; count: number }>;
|
|
const completedRows: CountByWorkflowRow[] = completedRowsRaw.map((r) => ({
|
|
workflowId: String(r.workflowId),
|
|
count: Number(r.count),
|
|
}));
|
|
|
|
const curFrom = query.from !== undefined ? sql`AND COALESCE(t.column_moved_at, t.updated_at) >= ${query.from}` : sql``;
|
|
const curTo = query.to !== undefined ? sql`AND COALESCE(t.column_moved_at, t.updated_at) <= ${query.to}` : sql``;
|
|
const currentRowsRaw = (await layer.db.execute(
|
|
sql`SELECT ${wfExpr} AS "workflowId", t."column" AS "columnName", count(*)::int AS count
|
|
FROM project.tasks t
|
|
LEFT JOIN project.task_workflow_selection s ON s.task_id = t.id
|
|
WHERE t."column" IN ('in-progress', 'in-review') ${curFrom} ${curTo}
|
|
GROUP BY 1, t."column"`,
|
|
)) as Array<{ workflowId: string; columnName: string; count: number }>;
|
|
const currentRows: Array<CountByWorkflowRow & { columnName: string }> = currentRowsRaw.map((r) => ({
|
|
workflowId: String(r.workflowId),
|
|
columnName: String(r.columnName),
|
|
count: Number(r.count),
|
|
}));
|
|
|
|
const filesFrom = query.from !== undefined ? sql`AND t.updated_at >= ${query.from}` : sql``;
|
|
const filesTo = query.to !== undefined ? sql`AND t.updated_at <= ${query.to}` : sql``;
|
|
const fileRowsRaw = (await layer.db.execute(
|
|
sql`SELECT ${wfExpr} AS "workflowId", t.modified_files AS "modifiedFiles"
|
|
FROM project.tasks t
|
|
LEFT JOIN project.task_workflow_selection s ON s.task_id = t.id
|
|
WHERE t.modified_files IS NOT NULL
|
|
AND jsonb_typeof(t.modified_files) = 'array'
|
|
AND jsonb_array_length(t.modified_files) > 0
|
|
${filesFrom} ${filesTo}`,
|
|
)) as Array<{ workflowId: string; modifiedFiles: unknown }>;
|
|
const fileRows: ModifiedFilesRow[] = fileRowsRaw.map((r) => ({
|
|
workflowId: String(r.workflowId),
|
|
modifiedFiles: r.modifiedFiles == null ? null : JSON.stringify(r.modifiedFiles),
|
|
}));
|
|
|
|
// Prefetch all custom workflow names once; builtins resolve in-memory.
|
|
const workflowNameRows = (await layer.db.execute(
|
|
sql`SELECT id, name FROM project.workflows`,
|
|
)) as Array<{ id: string; name: string | null }>;
|
|
const names = new Map<string, string>();
|
|
for (const row of workflowNameRows) {
|
|
if (row.name) names.set(String(row.id), row.name);
|
|
}
|
|
|
|
return buildWorkflowAnalytics(
|
|
{ tokenRows, completedRows, currentRows, fileRows },
|
|
query,
|
|
(workflowId) => resolveWorkflowNameFromMap(names, workflowId),
|
|
);
|
|
}
|