chore(meta-state): bootstrap initial ontologies and task DAGs
This commit is contained in:
parent
02959c865e
commit
9446c046ed
14
deltas/docs/01a075c9-9d0f-79af-982f-3e8c49c3f8bf.sql
Normal file
14
deltas/docs/01a075c9-9d0f-79af-982f-3e8c49c3f8bf.sql
Normal 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;
|
||||
14
deltas/telemetry/01a075c9-9d0f-7102-90b5-ad352a7e8ac4.sql
Normal file
14
deltas/telemetry/01a075c9-9d0f-7102-90b5-ad352a7e8ac4.sql
Normal 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;
|
||||
@ -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": {
|
||||
"requires": []
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user