134d8cf59e
- app.md - call_monitor - db.go - main.go - operations.db - operations.db-shm - operations.db-wal - migrations/006_function_sequences.sql - migrations/007_calls_command_snippet.sql - sequences.go - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
943 B
SQL
19 lines
943 B
SQL
-- function_sequences: secuencias A→B(→C) repetidas de calls del agente.
|
|
-- Issue 0087 parte B. Candidatas a promoverse a pipeline one-shot.
|
|
-- Aditivo. Idempotente. Aplicado via embed.FS al abrir operations.db.
|
|
|
|
CREATE TABLE IF NOT EXISTS function_sequences (
|
|
seq_hash TEXT PRIMARY KEY,
|
|
function_ids TEXT NOT NULL, -- JSON array ["fn_a","fn_b"] o ["fn_a","fn_b","fn_c"]
|
|
length INTEGER NOT NULL,
|
|
occurrences INTEGER NOT NULL DEFAULT 0,
|
|
sessions_count INTEGER NOT NULL DEFAULT 0,
|
|
success_count INTEGER NOT NULL DEFAULT 0,
|
|
last_seen INTEGER NOT NULL,
|
|
first_seen INTEGER NOT NULL
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_function_sequences_occurrences ON function_sequences(occurrences);
|
|
CREATE INDEX IF NOT EXISTS idx_function_sequences_last_seen ON function_sequences(last_seen);
|
|
CREATE INDEX IF NOT EXISTS idx_function_sequences_length ON function_sequences(length);
|