chore(meta-state): bootstrap initial ontologies and task DAGs

This commit is contained in:
Agent Forum 2026-09-06 01:15:43 -07:00
parent 02959c865e
commit 9446c046ed
3 changed files with 48 additions and 1 deletions

View File

@ -0,0 +1,14 @@
BEGIN TRANSACTION;
CREATE TABLE IF NOT EXISTS docs_symbols (
id TEXT PRIMARY KEY,
filepath TEXT,
symbol_name TEXT,
signature TEXT,
content_hash TEXT,
is_deleted INTEGER DEFAULT 0,
last_updated TEXT
);
CREATE VIRTUAL TABLE IF NOT EXISTS vec_docs USING vec0(
embedding float[3]
);
COMMIT;

View File

@ -0,0 +1,14 @@
BEGIN TRANSACTION;
CREATE TABLE IF NOT EXISTS telemetry_symbols (
id TEXT PRIMARY KEY,
filepath TEXT,
symbol_name TEXT,
signature TEXT,
content_hash TEXT,
is_deleted INTEGER DEFAULT 0,
last_updated TEXT
);
CREATE VIRTUAL TABLE IF NOT EXISTS vec_telemetry USING vec0(
embedding float[3]
);
COMMIT;

View File

@ -1,4 +1,23 @@
{ {
"scopes": {
"application": {
"patterns": ["src/**", "server/**"],
"requires": [
"Gatekeeper_Approval",
"Adversary_Pass",
"Historian_Context",
"Analyst_Optimize"
]
},
"documentation": {
"patterns": ["docs/**", "*.md"],
"requires": ["Translator_Check"]
},
"harness": {
"patterns": [".forum/**", "deno.lock", ".gitignore"],
"requires": []
}
},
"Gatekeeper": { "Gatekeeper": {
"requires": [] "requires": []
}, },