@bilig/workbook 0.131.1 → 0.131.3

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 +5 -5
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  Generic workbook intent for agents and runtimes.
4
4
 
5
- Build `@bilig/workbook` so an agent would love using it: simple, generic,
6
- predictable, inspectable, verifiable, and never dependent on hardcoded business
7
- models or human spreadsheet UI assumptions.
5
+ `@bilig/workbook` defines generic, inspectable workbook intent for agents and
6
+ runtimes. It does not depend on hardcoded business models or human spreadsheet
7
+ UI assumptions.
8
8
 
9
9
  Use this package when a consumer wants to define their own workbook model and
10
10
  hand a runtime a portable plan. Bilig supplies the generic model API, selectors,
@@ -69,7 +69,7 @@ const result = await runWorkbookPlan(prepared.planData, adapter, { strict: true
69
69
  const resultForLogs = describeRunResult(result)
70
70
  ```
71
71
 
72
- The core flow is deliberately boring:
72
+ The core flow:
73
73
 
74
74
  1. `defineModel` freezes a consumer-defined model.
75
75
  2. `find` returns generic refs.
@@ -164,7 +164,7 @@ const adapter = {
164
164
  ```
165
165
 
166
166
  Use `runWorkbookPlan(planOrData, adapter, { strict: true })` when an agent needs
167
- production proof. Strict mode requires:
167
+ strict proof. Strict mode requires:
168
168
 
169
169
  - a valid plan before mutation
170
170
  - at least one planned check before mutating actions
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@bilig/workbook",
3
- "version": "0.131.1",
4
- "description": "Agent-first workbook model API and transport-neutral workbook operation language for bilig.",
3
+ "version": "0.131.3",
4
+ "description": "Transport-neutral workbook intent API for agent plans, command receipts, and formula readback checks.",
5
5
  "keywords": [
6
6
  "agent-first",
7
7
  "agent-tools",
8
8
  "ai-agents",
9
9
  "bilig",
10
10
  "command-receipts",
11
+ "formula-readback",
11
12
  "model-context-protocol",
12
13
  "models",
13
14
  "plan-data",
@@ -106,8 +107,8 @@
106
107
  "test": "cd ../.. && tsx scripts/run-vitest.ts --run packages/workbook/src/__tests__/guards.test.ts packages/workbook/src/__tests__/guards.fuzz.test.ts packages/workbook/src/__tests__/model-api.test.ts packages/workbook/src/__tests__/model-verification-api.test.ts packages/workbook/src/__tests__/transport-api.test.ts packages/workbook/src/__tests__/ref-data-boundary.test.ts packages/workbook/src/__tests__/low-level-op-api.test.ts packages/workbook/src/__tests__/check-api.test.ts packages/workbook/src/__tests__/format-api.test.ts packages/workbook/src/__tests__/formula-api.test.ts packages/workbook/src/__tests__/action-input-api.test.ts packages/workbook/src/__tests__/action-metadata-api.test.ts packages/workbook/src/__tests__/features-api.test.ts packages/workbook/src/__tests__/feature-plugin-boundary.test.ts packages/workbook/src/__tests__/command-bundle-api.test.ts packages/workbook/src/__tests__/run-api.test.ts packages/workbook/src/__tests__/run-proof-boundary.test.ts packages/workbook/src/__tests__/run-result-schema-api.test.ts packages/workbook/src/__tests__/readback-proof-api.test.ts packages/workbook/src/__tests__/run-strict-proof-api.test.ts packages/workbook/src/__tests__/run-adapter-options-api.test.ts packages/workbook/src/__tests__/requirements-api.test.ts packages/workbook/src/__tests__/plan-refs-api.test.ts packages/workbook/src/__tests__/prepare-api.test.ts packages/workbook/src/__tests__/schema-api.test.ts packages/workbook/src/__tests__/testing-api.test.ts packages/workbook/src/__tests__/package-boundary.test.ts"
107
108
  },
108
109
  "dependencies": {
109
- "@bilig/formula": "0.131.1",
110
- "@bilig/protocol": "0.131.1"
110
+ "@bilig/formula": "0.131.3",
111
+ "@bilig/protocol": "0.131.3"
111
112
  },
112
113
  "engines": {
113
114
  "node": ">=22.0.0"