@bolt-foundry/gambit 0.6.7 → 0.6.8

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/CHANGELOG.md +2 -72
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,79 +5,9 @@ since = "225456917f75e92cc095af525201373c4be37944"
5
5
 
6
6
  # Changelog
7
7
 
8
- ## Unreleased (v0.6.3)
8
+ ## Unreleased (v0.6.8)
9
9
 
10
- - TBD
11
-
12
- ## v0.6.2
13
-
14
- ### Release and packaging
15
-
16
- - Bump gambit + gambit-core to 0.6.2.
17
-
18
- ## v0.6.1
19
-
20
- ### Release and packaging
21
-
22
- - Bump gambit + gambit-core to 0.6.1.
23
-
24
- ## v0.6.0
25
-
26
- ### Release and packaging
27
-
28
- - Add an npm CLI wrapper that downloads prebuilt Gambit binaries with checksum
29
- verification.
30
- - Normalize release binary asset names and checksum generation for predictable
31
- npm downloads.
32
- - Fix the npm build to resolve gambit-core in the gambitmono layout and derive
33
- import-map targets from the detected path.
34
- - Add `@deno/dnt` to the Gambit package and refresh release/npm docs.
35
-
36
- ## v0.5.5
37
-
38
- ### Release and packaging
39
-
40
- - Publish a minimal `@bolt-foundry/gambit` npm package alongside gambit-core
41
- (runtime-only; no CLI/bin yet).
42
- - Document DNT/npm status and release notes for the npm publish flow.
43
-
44
- ## v0.5.0
45
-
46
- ### Runtime and API
47
-
48
- - Synthetic tools refreshed: `gambit_init`, `gambit_respond`, `gambit_complete`
49
- (function-style tools, underscore names).
50
- - Envelope simplification: init carries run/action IDs plus guardrails/model
51
- hints; respond wraps payload/message/status/code/meta (default status 200 for
52
- success, 500 for handled errors unless overridden).
53
- - Runtime behavior: child completions and handled errors emit `gambit_complete`;
54
- interval handlers surface mid-run updates; roots stay conversational-only.
55
- - `gambit_init` only fires when `--init` is provided and its payload is the raw
56
- input (no run/action metadata).
57
- - Added trace timestamps for latency metrics and persisted streamed assistant
58
- text before tool calls.
59
- - Added OpenAI chat completions compatibility (`renderDeck` plus wrapper).
60
- - Increased default guardrail `maxPasses`.
61
-
62
- ### Simulator UI and test bot
63
-
64
- - New React simulator UI with sessions, recents, nested trace hierarchy, and
65
- session notes/ratings.
66
- - Pivoted the simulator to debug/test/calibrate workflows with a new editor
67
- assistant endpoint and UI tab.
68
- - Test bot upgrades: per-run streaming + debug link, init/scenario panels,
69
- default scenario schema, deck input config, feedback on all bubbles, and
70
- session routing/persistence.
71
- - Calibration/grading updates: deck-defined grading flows, streamed results,
72
- reference samples, compact context previews, and renaming calibration runs to
73
- grading runs.
74
-
75
- ### Decks and examples (voice front desk)
76
-
77
- - Added voice front desk example decks and modularized the deck set.
78
- - Added new patient intake + additional voice front desk test decks.
79
- - Added appointment lookup orchestration and scheduling confirmation flow.
80
- - Enabled scheduling service deck and shared patient identity test input schema.
10
+ - Repl fixes.
81
11
  - Replaced voice front desk graders and expanded FAQ persona/grading coverage.
82
12
 
83
13
  ### CLI and UX
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bolt-foundry/gambit",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "description": "Agent harness framework for building, running, and verifying LLM workflows in Markdown and code.",
5
5
  "homepage": "https://github.com/bolt-foundry/gambit",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "gambit": "bin/gambit.cjs"
25
25
  },
26
26
  "dependencies": {
27
- "@bolt-foundry/gambit-core": "^0.6.7",
27
+ "@bolt-foundry/gambit-core": "^0.6.8",
28
28
  "zod": "^3.23.8",
29
29
  "@deno/shim-deno": "~0.18.0"
30
30
  },