@lssm/lib.ai-agent 0.3.0 → 0.4.0

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +10 -7
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # @lssm/lib.ai-agent
2
2
 
3
- Stateful AI agent orchestration for ContractSpec apps. The library wraps LLM providers, tool execution, knowledge bindings, and per-tenant guardrails so that agents can triage tickets, run growth experiments, or automate DevOps tasks with the same primitives used by workflows.
3
+ **AI governance for ContractSpec** Constrain what AI agents can change, enforce contracts they must respect.
4
+
5
+ Stateful AI agent orchestration with type-safe specs, tool execution, knowledge bindings, and per-tenant guardrails. Agents read contracts as their source of truth, enabling triage, growth experiments, and DevOps automation with contract-enforced safety.
4
6
 
5
7
  ## Features
6
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/lib.ai-agent",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -10,6 +10,7 @@
10
10
  "README.md"
11
11
  ],
12
12
  "scripts": {
13
+ "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
13
14
  "build": "bun build:bundle && bun build:types",
14
15
  "build:bundle": "tsdown",
15
16
  "build:types": "tsc --noEmit",
@@ -18,17 +19,16 @@
18
19
  "lint": "bun lint:fix",
19
20
  "lint:fix": "eslint src --fix",
20
21
  "lint:check": "eslint src",
21
- "test": "vitest run"
22
+ "test": "bun run"
22
23
  },
23
24
  "dependencies": {
24
- "@lssm/lib.contracts": "*"
25
+ "@lssm/lib.contracts": "1.11.0"
25
26
  },
26
27
  "devDependencies": {
27
- "@lssm/tool.tsdown": "*",
28
- "@lssm/tool.typescript": "*",
28
+ "@lssm/tool.tsdown": "0.12.0",
29
+ "@lssm/tool.typescript": "0.11.0",
29
30
  "tsdown": "^0.16.6",
30
- "typescript": "^5.9.3",
31
- "vitest": "^1.6.0"
31
+ "typescript": "^5.9.3"
32
32
  },
33
33
  "exports": {
34
34
  ".": "./dist/index.js",
@@ -43,5 +43,8 @@
43
43
  "./tools/executor": "./dist/tools/executor.js",
44
44
  "./types": "./dist/types.js",
45
45
  "./*": "./*"
46
+ },
47
+ "publishConfig": {
48
+ "access": "public"
46
49
  }
47
50
  }