@precisionutilityguild/liquid-shadow 1.0.6 → 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 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.6-blue.svg" alt="Version">
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 (40 Atomic Tools)
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 40 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.
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;