@buildautomaton/cli 0.1.29 → 0.1.31

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.
@@ -0,0 +1,10 @@
1
+ CREATE TABLE IF NOT EXISTS acp_capability_cache (
2
+ workspace_id TEXT NOT NULL,
3
+ agent_type TEXT NOT NULL,
4
+ agent_id TEXT NOT NULL DEFAULT '',
5
+ config_options_json TEXT NOT NULL,
6
+ updated_at TEXT NOT NULL,
7
+ PRIMARY KEY (workspace_id, agent_type, agent_id)
8
+ );
9
+
10
+ CREATE INDEX IF NOT EXISTS idx_acp_capability_cache_workspace ON acp_capability_cache(workspace_id);
@@ -0,0 +1,10 @@
1
+ CREATE TABLE IF NOT EXISTS agent_capabilities (
2
+ workspace_id TEXT NOT NULL,
3
+ agent_type TEXT NOT NULL,
4
+ config_options_json TEXT NOT NULL,
5
+ content_hash TEXT NOT NULL,
6
+ updated_at TEXT NOT NULL,
7
+ PRIMARY KEY (workspace_id, agent_type)
8
+ );
9
+
10
+ CREATE INDEX IF NOT EXISTS idx_agent_capabilities_workspace ON agent_capabilities(workspace_id);
@@ -0,0 +1,10 @@
1
+ CREATE TABLE IF NOT EXISTS agent_capability_cache (
2
+ workspace_id TEXT NOT NULL,
3
+ agent_type TEXT NOT NULL,
4
+ config_options_json TEXT NOT NULL,
5
+ content_hash TEXT NOT NULL,
6
+ updated_at TEXT NOT NULL,
7
+ PRIMARY KEY (workspace_id, agent_type)
8
+ );
9
+
10
+ CREATE INDEX IF NOT EXISTS idx_agent_capability_cache_workspace ON agent_capability_cache(workspace_id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buildautomaton/cli",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
4
4
  "description": "CLI for BuildAutomaton: ACP client, WebSocket bridge to backend, and skills (e.g. preview)",
5
5
  "type": "module",
6
6
  "bin": {