chore: auto-commit (11 archivos)

- 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>
This commit is contained in:
2026-05-14 02:06:45 +02:00
parent c4f08bc0c3
commit 134d8cf59e
12 changed files with 735 additions and 6 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ type tableCount struct {
}
func (d *DB) tableCounts() ([]tableCount, error) {
tables := []string{"sessions", "calls", "code_writes", "test_runs", "e2e_runs_fn", "violations", "patterns", "function_versions", "copied_code"}
tables := []string{"sessions", "calls", "code_writes", "test_runs", "e2e_runs_fn", "violations", "patterns", "function_versions", "copied_code", "function_sequences"}
out := make([]tableCount, 0, len(tables))
for _, t := range tables {
var n int64