@precisionutilityguild/liquid-shadow 1.0.7 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/data/migrations/000_baseline.sql +10 -0
- package/dist/data/migrations/013_file_claims.sql +18 -0
- package/dist/entry/cli/index.js +259 -204
- package/dist/entry/ember/index.js +81 -28
- package/dist/entry/mcp/server.js +281 -226
- package/dist/index.js +282 -227
- package/dist/logic/parser/index.js +16 -14
- package/dist/web-manifest.json +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
</p>
|
|
7
7
|
|
|
8
8
|
<p align="center">
|
|
9
|
-
<img src="https://img.shields.io/badge/version-1.0.
|
|
9
|
+
<img src="https://img.shields.io/badge/version-1.0.9-blue.svg" alt="Version">
|
|
10
10
|
<img src="https://img.shields.io/badge/License-Apache--2.0-blue.svg" alt="License">
|
|
11
11
|
<img src="https://img.shields.io/badge/build-passing-brightgreen.svg" alt="Build">
|
|
12
12
|
<img src="https://img.shields.io/badge/MCP-First-6D28D9.svg" alt="MCP First">
|
|
@@ -42,7 +42,7 @@ Change one function, see the ripple. Trace execution flows and predict the **Bla
|
|
|
42
42
|
|
|
43
43
|
---
|
|
44
44
|
|
|
45
|
-
## The Tactical Suite (
|
|
45
|
+
## The Tactical Suite (43 Atomic Tools)
|
|
46
46
|
|
|
47
47
|
Organized into specialized intelligence suites for the modern agent:
|
|
48
48
|
|
|
@@ -80,7 +80,7 @@ liquid-shadow dashboard
|
|
|
80
80
|
|
|
81
81
|
### 3. The Skills-First Loop
|
|
82
82
|
|
|
83
|
-
Liquid Shadow is designed for **Autonomy**. While it provides
|
|
83
|
+
Liquid Shadow is designed for **Autonomy**. While it provides 43 atomic tools, the primary interface for an agent is the **Skills** system. Running `liquid-shadow init` automatically injects these high-level workflows into the agent's environment.
|
|
84
84
|
|
|
85
85
|
#### High-Signal Workflows
|
|
86
86
|
|
|
@@ -195,6 +195,14 @@ CREATE TABLE IF NOT EXISTS working_set (
|
|
|
195
195
|
FOREIGN KEY(symbol_id) REFERENCES exports(id) ON DELETE CASCADE
|
|
196
196
|
);
|
|
197
197
|
|
|
198
|
+
CREATE TABLE IF NOT EXISTS file_claims (
|
|
199
|
+
file_path TEXT PRIMARY KEY,
|
|
200
|
+
mission_id INTEGER NOT NULL,
|
|
201
|
+
claimed_at REAL DEFAULT (unixepoch()),
|
|
202
|
+
updated_at REAL DEFAULT (unixepoch()),
|
|
203
|
+
FOREIGN KEY(mission_id) REFERENCES missions(id) ON DELETE CASCADE
|
|
204
|
+
);
|
|
205
|
+
|
|
198
206
|
CREATE TABLE IF NOT EXISTS cross_repo_links (
|
|
199
207
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
200
208
|
mission_id INTEGER NOT NULL,
|
|
@@ -295,6 +303,8 @@ CREATE INDEX IF NOT EXISTS idx_intent_crystal ON intent_logs(crystal_i
|
|
|
295
303
|
CREATE INDEX IF NOT EXISTS idx_intent_crystallized ON intent_logs(is_crystallized);
|
|
296
304
|
CREATE INDEX IF NOT EXISTS idx_intent_embedding ON intent_logs(id) WHERE embedding IS NOT NULL;
|
|
297
305
|
CREATE INDEX IF NOT EXISTS idx_working_set_mission ON working_set(mission_id);
|
|
306
|
+
CREATE INDEX IF NOT EXISTS idx_file_claims_mission_id ON file_claims(mission_id);
|
|
307
|
+
CREATE INDEX IF NOT EXISTS idx_file_claims_updated_at ON file_claims(updated_at DESC);
|
|
298
308
|
CREATE INDEX IF NOT EXISTS idx_cross_repo_mission ON cross_repo_links(mission_id);
|
|
299
309
|
CREATE INDEX IF NOT EXISTS idx_mission_artifacts_mission ON mission_artifacts(mission_id);
|
|
300
310
|
CREATE INDEX IF NOT EXISTS idx_mission_artifacts_embedding ON mission_artifacts(id) WHERE embedding IS NOT NULL;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
-- File-level mission claims for atomic coordination.
|
|
2
|
+
-- SQLite UNIQUE(file_path) provides lock semantics without external lock files.
|
|
3
|
+
|
|
4
|
+
CREATE TABLE IF NOT EXISTS file_claims (
|
|
5
|
+
file_path TEXT PRIMARY KEY,
|
|
6
|
+
mission_id INTEGER NOT NULL,
|
|
7
|
+
claimed_at REAL DEFAULT (unixepoch()),
|
|
8
|
+
updated_at REAL DEFAULT (unixepoch()),
|
|
9
|
+
FOREIGN KEY(mission_id) REFERENCES missions(id) ON DELETE CASCADE
|
|
10
|
+
);
|
|
11
|
+
|
|
12
|
+
CREATE INDEX IF NOT EXISTS idx_file_claims_mission_id ON file_claims(mission_id);
|
|
13
|
+
CREATE INDEX IF NOT EXISTS idx_file_claims_updated_at ON file_claims(updated_at DESC);
|
|
14
|
+
|
|
15
|
+
-- DOWN
|
|
16
|
+
DROP INDEX IF EXISTS idx_file_claims_updated_at;
|
|
17
|
+
DROP INDEX IF EXISTS idx_file_claims_mission_id;
|
|
18
|
+
DROP TABLE IF EXISTS file_claims;
|