@contractspec/example.agent-console 3.7.7 → 3.8.2

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 (186) hide show
  1. package/.turbo/turbo-build.log +126 -105
  2. package/AGENTS.md +3 -1
  3. package/CHANGELOG.md +29 -0
  4. package/README.md +46 -9
  5. package/dist/agent/agent.handler.d.ts +3 -0
  6. package/dist/agent/agent.handler.js +730 -1
  7. package/dist/agent/index.js +73 -72
  8. package/dist/agent.feature.js +179 -0
  9. package/dist/browser/agent/agent.handler.js +730 -1
  10. package/dist/browser/agent/index.js +73 -72
  11. package/dist/browser/agent.feature.js +179 -0
  12. package/dist/browser/docs/agent-console.docblock.js +11 -8
  13. package/dist/browser/docs/index.js +11 -8
  14. package/dist/browser/example.js +2 -3
  15. package/dist/browser/handlers/agent.handlers.js +1883 -2
  16. package/dist/browser/handlers/index.js +2142 -8
  17. package/dist/browser/index.js +3347 -2433
  18. package/dist/browser/presentations/index.js +49 -49
  19. package/dist/browser/run/index.js +818 -812
  20. package/dist/browser/run/run.handler.js +666 -1
  21. package/dist/browser/shared/index.js +293 -1
  22. package/dist/browser/shared/mock-runs.js +5 -0
  23. package/dist/browser/tool/index.js +331 -331
  24. package/dist/browser/tool/tool.handler.js +479 -3
  25. package/dist/browser/ui/AgentDashboard.js +1204 -319
  26. package/dist/browser/ui/AgentDashboard.visualizations.js +217 -0
  27. package/dist/browser/ui/AgentRunList.js +359 -127
  28. package/dist/browser/ui/hooks/index.js +468 -18
  29. package/dist/browser/ui/hooks/useAgentMutations.js +443 -8
  30. package/dist/browser/ui/hooks/useRunList.js +25 -10
  31. package/dist/browser/ui/index.js +1293 -390
  32. package/dist/browser/ui/renderers/agent-list.markdown.js +14 -5
  33. package/dist/browser/ui/renderers/dashboard.markdown.js +207 -36
  34. package/dist/browser/ui/renderers/index.js +245 -49
  35. package/dist/browser/ui/renderers/run-list.markdown.js +9 -4
  36. package/dist/browser/ui/renderers/tool-registry.markdown.js +15 -4
  37. package/dist/browser/ui/views/RunDataTable.js +326 -0
  38. package/dist/browser/ui/views/RunListView.js +359 -127
  39. package/dist/browser/ui/views/index.js +406 -174
  40. package/dist/browser/ui/views/run-data-table.columns.js +271 -0
  41. package/dist/browser/ui/views/run-list.shared.js +177 -0
  42. package/dist/browser/visualizations/catalog.js +134 -0
  43. package/dist/browser/visualizations/index.js +187 -0
  44. package/dist/browser/visualizations/selectors.js +181 -0
  45. package/dist/docs/agent-console.docblock.js +11 -8
  46. package/dist/docs/index.js +11 -8
  47. package/dist/example.js +2 -3
  48. package/dist/example.test.d.ts +1 -0
  49. package/dist/handlers/agent.handlers.d.ts +2 -0
  50. package/dist/handlers/agent.handlers.js +1883 -2
  51. package/dist/handlers/index.d.ts +1 -3
  52. package/dist/handlers/index.js +2142 -8
  53. package/dist/handlers/mock-handlers.test.d.ts +1 -0
  54. package/dist/index.d.ts +2 -0
  55. package/dist/index.js +3347 -2433
  56. package/dist/node/agent/agent.handler.js +730 -1
  57. package/dist/node/agent/index.js +73 -72
  58. package/dist/node/agent.feature.js +179 -0
  59. package/dist/node/docs/agent-console.docblock.js +11 -8
  60. package/dist/node/docs/index.js +11 -8
  61. package/dist/node/example.js +2 -3
  62. package/dist/node/handlers/agent.handlers.js +1883 -2
  63. package/dist/node/handlers/index.js +2142 -8
  64. package/dist/node/index.js +3347 -2433
  65. package/dist/node/presentations/index.js +49 -49
  66. package/dist/node/run/index.js +818 -812
  67. package/dist/node/run/run.handler.js +666 -1
  68. package/dist/node/shared/index.js +293 -1
  69. package/dist/node/shared/mock-runs.js +5 -0
  70. package/dist/node/tool/index.js +331 -331
  71. package/dist/node/tool/tool.handler.js +479 -3
  72. package/dist/node/ui/AgentDashboard.js +1204 -319
  73. package/dist/node/ui/AgentDashboard.visualizations.js +217 -0
  74. package/dist/node/ui/AgentRunList.js +359 -127
  75. package/dist/node/ui/hooks/index.js +468 -18
  76. package/dist/node/ui/hooks/useAgentMutations.js +443 -8
  77. package/dist/node/ui/hooks/useRunList.js +25 -10
  78. package/dist/node/ui/index.js +1293 -390
  79. package/dist/node/ui/renderers/agent-list.markdown.js +14 -5
  80. package/dist/node/ui/renderers/dashboard.markdown.js +207 -36
  81. package/dist/node/ui/renderers/index.js +245 -49
  82. package/dist/node/ui/renderers/run-list.markdown.js +9 -4
  83. package/dist/node/ui/renderers/tool-registry.markdown.js +15 -4
  84. package/dist/node/ui/views/RunDataTable.js +326 -0
  85. package/dist/node/ui/views/RunListView.js +359 -127
  86. package/dist/node/ui/views/index.js +406 -174
  87. package/dist/node/ui/views/run-data-table.columns.js +271 -0
  88. package/dist/node/ui/views/run-list.shared.js +177 -0
  89. package/dist/node/visualizations/catalog.js +134 -0
  90. package/dist/node/visualizations/index.js +187 -0
  91. package/dist/node/visualizations/selectors.js +181 -0
  92. package/dist/presentations/index.js +49 -49
  93. package/dist/proof/index.d.ts +2 -0
  94. package/dist/proof/meetup-proof.d.ts +10 -0
  95. package/dist/proof/meetup-proof.runtime.d.ts +22 -0
  96. package/dist/proof/meetup-proof.scenario.d.ts +2 -0
  97. package/dist/proof/meetup-proof.suite.d.ts +1 -0
  98. package/dist/proof/meetup-proof.test.d.ts +1 -0
  99. package/dist/run/index.js +818 -812
  100. package/dist/run/run.handler.d.ts +4 -0
  101. package/dist/run/run.handler.js +666 -1
  102. package/dist/shared/demo-dashboard-data.d.ts +16 -0
  103. package/dist/shared/demo-runtime-seed.d.ts +17 -0
  104. package/dist/shared/demo-runtime.d.ts +8 -0
  105. package/dist/shared/demo-runtime.test.d.ts +1 -0
  106. package/dist/shared/index.d.ts +3 -0
  107. package/dist/shared/index.js +293 -1
  108. package/dist/shared/mock-runs.d.ts +4 -0
  109. package/dist/shared/mock-runs.js +5 -0
  110. package/dist/tool/index.js +331 -331
  111. package/dist/tool/tool.handler.d.ts +4 -1
  112. package/dist/tool/tool.handler.js +479 -3
  113. package/dist/ui/AgentDashboard.js +1204 -319
  114. package/dist/ui/AgentDashboard.sandbox.test.d.ts +1 -0
  115. package/dist/ui/AgentDashboard.visualizations.d.ts +4 -0
  116. package/dist/ui/AgentDashboard.visualizations.js +218 -0
  117. package/dist/ui/AgentRunList.js +359 -127
  118. package/dist/ui/hooks/index.js +468 -18
  119. package/dist/ui/hooks/useAgentMutations.js +443 -8
  120. package/dist/ui/hooks/useRunList.d.ts +8 -2
  121. package/dist/ui/hooks/useRunList.js +25 -10
  122. package/dist/ui/index.js +1293 -390
  123. package/dist/ui/renderers/agent-list.markdown.js +14 -5
  124. package/dist/ui/renderers/dashboard.markdown.js +207 -36
  125. package/dist/ui/renderers/index.js +245 -49
  126. package/dist/ui/renderers/run-list.markdown.js +9 -4
  127. package/dist/ui/renderers/tool-registry.markdown.d.ts +1 -1
  128. package/dist/ui/renderers/tool-registry.markdown.js +15 -4
  129. package/dist/ui/views/RunDataTable.d.ts +18 -0
  130. package/dist/ui/views/RunDataTable.js +327 -0
  131. package/dist/ui/views/RunListView.js +359 -127
  132. package/dist/ui/views/index.js +406 -174
  133. package/dist/ui/views/run-data-table.columns.d.ts +3 -0
  134. package/dist/ui/views/run-data-table.columns.js +272 -0
  135. package/dist/ui/views/run-list.shared.d.ts +14 -0
  136. package/dist/ui/views/run-list.shared.js +178 -0
  137. package/dist/visualizations/catalog.d.ts +10 -0
  138. package/dist/visualizations/catalog.js +135 -0
  139. package/dist/visualizations/index.d.ts +2 -0
  140. package/dist/visualizations/index.js +188 -0
  141. package/dist/visualizations/selectors.d.ts +3 -0
  142. package/dist/visualizations/selectors.js +182 -0
  143. package/dist/visualizations/selectors.test.d.ts +1 -0
  144. package/package.json +112 -10
  145. package/proofs/agent-console-meetup.replay.json +220 -0
  146. package/src/agent/agent.handler.ts +18 -1
  147. package/src/agent.feature.ts +3 -0
  148. package/src/docs/agent-console.docblock.ts +11 -8
  149. package/src/example.test.ts +75 -0
  150. package/src/example.ts +2 -3
  151. package/src/handlers/agent.handlers.ts +55 -2
  152. package/src/handlers/index.ts +18 -2
  153. package/src/handlers/mock-handlers.test.ts +77 -0
  154. package/src/index.ts +2 -0
  155. package/src/proof/index.ts +2 -0
  156. package/src/proof/meetup-proof.runtime.ts +196 -0
  157. package/src/proof/meetup-proof.scenario.ts +99 -0
  158. package/src/proof/meetup-proof.suite.ts +29 -0
  159. package/src/proof/meetup-proof.test.ts +28 -0
  160. package/src/proof/meetup-proof.ts +130 -0
  161. package/src/run/run.handler.ts +17 -1
  162. package/src/shared/demo-dashboard-data.ts +58 -0
  163. package/src/shared/demo-runtime-seed.ts +139 -0
  164. package/src/shared/demo-runtime.test.ts +169 -0
  165. package/src/shared/demo-runtime.ts +260 -0
  166. package/src/shared/index.ts +11 -0
  167. package/src/shared/mock-runs.ts +5 -0
  168. package/src/tool/tool.handler.ts +21 -4
  169. package/src/ui/AgentDashboard.sandbox.test.tsx +312 -0
  170. package/src/ui/AgentDashboard.tsx +4 -1
  171. package/src/ui/AgentDashboard.visualizations.tsx +35 -0
  172. package/src/ui/hooks/useAgentMutations.ts +19 -11
  173. package/src/ui/hooks/useRunList.ts +41 -9
  174. package/src/ui/renderers/agent-list.markdown.ts +31 -12
  175. package/src/ui/renderers/dashboard.markdown.ts +37 -42
  176. package/src/ui/renderers/run-list.markdown.ts +16 -8
  177. package/src/ui/renderers/tool-registry.markdown.ts +21 -9
  178. package/src/ui/views/RunDataTable.tsx +74 -0
  179. package/src/ui/views/RunListView.tsx +37 -111
  180. package/src/ui/views/run-data-table.columns.tsx +102 -0
  181. package/src/ui/views/run-list.shared.tsx +139 -0
  182. package/src/visualizations/catalog.ts +132 -0
  183. package/src/visualizations/index.ts +2 -0
  184. package/src/visualizations/selectors.test.ts +12 -0
  185. package/src/visualizations/selectors.ts +70 -0
  186. package/tsdown.config.js +17 -0
@@ -2,68 +2,75 @@ $ contractspec-bun-build prebuild
2
2
  $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
- [contractspec-bun-build] transpile target=bun root=src entries=66 noBundle=false
6
- Bundled 66 modules in 149ms
5
+ [contractspec-bun-build] transpile target=bun root=src entries=73 noBundle=false
6
+ Bundled 79 modules in 127ms
7
7
 
8
8
  ./agent.capability.js 442 bytes (entry point)
9
9
  tool/tool.test-spec.js 1.38 KB (entry point)
10
10
  shared/overlay-types.js 8 bytes (entry point)
11
11
  run/run.test-spec.js 1.37 KB (entry point)
12
12
  seeders/index.js 0.64 KB (entry point)
13
- ./index.js 202.97 KB (entry point)
14
- ui/index.js 78.21 KB (entry point)
15
- ui/views/index.js 22.0 KB (entry point)
16
- ui/renderers/index.js 14.75 KB (entry point)
17
- ui/renderers/agent-list.markdown.js 1.49 KB (entry point)
13
+ ./index.js 233.57 KB (entry point)
14
+ ui/index.js 105.30 KB (entry point)
15
+ ui/views/index.js 27.89 KB (entry point)
16
+ ui/overlays/index.js 1.46 KB (entry point)
17
+ ui/renderers/index.js 21.0 KB (entry point)
18
+ ui/renderers/agent-list.markdown.js 1.83 KB (entry point)
18
19
  ui/renderers/agent-list.renderer.js 5.91 KB (entry point)
19
- ui/renderers/dashboard.markdown.js 4.30 KB (entry point)
20
- ui/renderers/run-list.markdown.js 1.39 KB (entry point)
21
- ui/renderers/tool-registry.markdown.js 1.64 KB (entry point)
20
+ ui/renderers/dashboard.markdown.js 9.57 KB (entry point)
21
+ ui/renderers/run-list.markdown.js 1.62 KB (entry point)
22
+ ui/renderers/tool-registry.markdown.js 1.98 KB (entry point)
22
23
  ui/views/AgentListView.js 5.35 KB (entry point)
23
24
  ui/modals/index.js 22.55 KB (entry point)
24
- ui/overlays/index.js 1.46 KB (entry point)
25
25
  ui/overlays/demo-overlays.js 1.46 KB (entry point)
26
- ui/AgentDashboard.js 63.18 KB (entry point)
26
+ ui/AgentDashboard.js 89.18 KB (entry point)
27
27
  ui/modals/AgentActionsModal.js 12.32 KB (entry point)
28
28
  ui/modals/CreateAgentModal.js 10.18 KB (entry point)
29
- ui/AgentRunList.js 9.39 KB (entry point)
30
- ui/views/RunListView.js 9.33 KB (entry point)
29
+ ui/AgentDashboard.visualizations.js 6.67 KB (entry point)
30
+ ui/AgentRunList.js 15.25 KB (entry point)
31
+ ui/views/RunListView.js 15.20 KB (entry point)
32
+ ui/views/RunDataTable.js 10.33 KB (entry point)
33
+ ui/views/run-data-table.columns.js 8.65 KB (entry point)
34
+ ui/views/run-list.shared.js 5.85 KB (entry point)
31
35
  ui/AgentToolRegistry.js 6.99 KB (entry point)
32
36
  ui/views/ToolRegistryView.js 6.92 KB (entry point)
33
- ui/hooks/index.js 9.30 KB (entry point)
34
- ui/hooks/useRunList.js 1.69 KB (entry point)
37
+ ui/hooks/index.js 23.1 KB (entry point)
38
+ ui/hooks/useAgentMutations.js 16.48 KB (entry point)
39
+ ui/hooks/useRunList.js 2.15 KB (entry point)
35
40
  ui/hooks/useToolList.js 2.52 KB (entry point)
36
41
  ui/hooks/useAgentList.js 1.69 KB (entry point)
37
- ui/hooks/useAgentMutations.js 3.18 KB (entry point)
38
- tool/index.js 28.63 KB (entry point)
42
+ tool/index.js 28.61 KB (entry point)
39
43
  tool/tool.entity.js 2.65 KB (entry point)
40
44
  tool/tool.event.js 3.25 KB (entry point)
41
- tool/tool.operation.js 14.62 KB (entry point)
42
- shared/index.js 9.67 KB (entry point)
45
+ shared/index.js 21.25 KB (entry point)
43
46
  presentations/index.js 25.20 KB (entry point)
44
47
  tool/tool.presentation.js 6.41 KB (entry point)
45
- tool/tool.schema.js 4.94 KB (entry point)
46
- tool/tool.enum.js 0.52 KB (entry point)
47
- run/index.js 43.50 KB (entry point)
48
+ run/index.js 43.70 KB (entry point)
48
49
  run/run.presentation.js 8.0 KB (entry point)
49
50
  run/run.entity.js 5.11 KB (entry point)
50
51
  run/run.event.js 8.26 KB (entry point)
52
+ agent/agent.test-spec.js 1.46 KB (entry point)
53
+ agent/index.js 39.74 KB (entry point)
54
+ docs/index.js 4.20 KB (entry point)
55
+ docs/agent-console.docblock.js 4.20 KB (entry point)
56
+ ./example.js 1.22 KB (entry point)
57
+ handlers/index.js 95.78 KB (entry point)
58
+ tool/tool.handler.js 20.88 KB (entry point)
59
+ run/run.handler.js 28.35 KB (entry point)
60
+ shared/mock-runs.js 3.18 KB (entry point)
61
+ handlers/agent.handlers.js 69.20 KB (entry point)
62
+ tool/tool.operation.js 14.62 KB (entry point)
63
+ tool/tool.schema.js 4.94 KB (entry point)
64
+ tool/tool.enum.js 0.52 KB (entry point)
51
65
  run/run.operation.js 20.69 KB (entry point)
52
66
  run/run.schema.js 6.62 KB (entry point)
53
67
  run/run.enum.js 0.60 KB (entry point)
54
- agent/agent.test-spec.js 1.46 KB (entry point)
55
- agent/index.js 39.69 KB (entry point)
56
- docs/index.js 3.74 KB (entry point)
57
- docs/agent-console.docblock.js 3.74 KB (entry point)
58
- ./example.js 1.25 KB (entry point)
59
- handlers/index.js 25.34 KB (entry point)
60
- tool/tool.handler.js 6.38 KB (entry point)
61
- run/run.handler.js 7.61 KB (entry point)
62
- shared/mock-runs.js 3.0 KB (entry point)
63
- handlers/agent.handlers.js 9.24 KB (entry point)
64
- ./agent.feature.js 4.70 KB (entry point)
68
+ ./agent.feature.js 10.0 KB (entry point)
69
+ visualizations/index.js 5.52 KB (entry point)
70
+ visualizations/selectors.js 5.33 KB (entry point)
71
+ visualizations/catalog.js 3.79 KB (entry point)
65
72
  agent/agent.entity.js 3.92 KB (entry point)
66
- agent/agent.handler.js 8.88 KB (entry point)
73
+ agent/agent.handler.js 33.1 KB (entry point)
67
74
  shared/mock-tools.js 4.15 KB (entry point)
68
75
  shared/mock-agents.js 2.54 KB (entry point)
69
76
  agent/agent.operation.js 24.28 KB (entry point)
@@ -72,68 +79,75 @@ Bundled 66 modules in 149ms
72
79
  agent/agent.schema.js 8.13 KB (entry point)
73
80
  agent/agent.enum.js 467 bytes (entry point)
74
81
 
75
- [contractspec-bun-build] transpile target=node root=src entries=66 noBundle=false
76
- Bundled 66 modules in 122ms
82
+ [contractspec-bun-build] transpile target=node root=src entries=73 noBundle=false
83
+ Bundled 79 modules in 116ms
77
84
 
78
85
  ./agent.capability.js 434 bytes (entry point)
79
86
  tool/tool.test-spec.js 1.38 KB (entry point)
80
87
  shared/overlay-types.js 0 KB (entry point)
81
88
  run/run.test-spec.js 1.36 KB (entry point)
82
89
  seeders/index.js 0.63 KB (entry point)
83
- ./index.js 202.91 KB (entry point)
84
- ui/index.js 78.16 KB (entry point)
85
- ui/views/index.js 22.00 KB (entry point)
86
- ui/renderers/index.js 14.73 KB (entry point)
87
- ui/renderers/agent-list.markdown.js 1.48 KB (entry point)
90
+ ./index.js 233.51 KB (entry point)
91
+ ui/index.js 105.25 KB (entry point)
92
+ ui/views/index.js 27.88 KB (entry point)
93
+ ui/overlays/index.js 1.45 KB (entry point)
94
+ ui/renderers/index.js 21.0 KB (entry point)
95
+ ui/renderers/agent-list.markdown.js 1.83 KB (entry point)
88
96
  ui/renderers/agent-list.renderer.js 5.91 KB (entry point)
89
- ui/renderers/dashboard.markdown.js 4.29 KB (entry point)
90
- ui/renderers/run-list.markdown.js 1.39 KB (entry point)
91
- ui/renderers/tool-registry.markdown.js 1.62 KB (entry point)
97
+ ui/renderers/dashboard.markdown.js 9.56 KB (entry point)
98
+ ui/renderers/run-list.markdown.js 1.61 KB (entry point)
99
+ ui/renderers/tool-registry.markdown.js 1.96 KB (entry point)
92
100
  ui/views/AgentListView.js 5.34 KB (entry point)
93
101
  ui/modals/index.js 22.53 KB (entry point)
94
- ui/overlays/index.js 1.45 KB (entry point)
95
102
  ui/overlays/demo-overlays.js 1.45 KB (entry point)
96
- ui/AgentDashboard.js 63.15 KB (entry point)
103
+ ui/AgentDashboard.js 89.14 KB (entry point)
97
104
  ui/modals/AgentActionsModal.js 12.29 KB (entry point)
98
105
  ui/modals/CreateAgentModal.js 10.17 KB (entry point)
99
- ui/AgentRunList.js 9.38 KB (entry point)
100
- ui/views/RunListView.js 9.32 KB (entry point)
106
+ ui/AgentDashboard.visualizations.js 6.66 KB (entry point)
107
+ ui/AgentRunList.js 15.25 KB (entry point)
108
+ ui/views/RunListView.js 15.19 KB (entry point)
109
+ ui/views/RunDataTable.js 10.32 KB (entry point)
110
+ ui/views/run-data-table.columns.js 8.64 KB (entry point)
111
+ ui/views/run-list.shared.js 5.84 KB (entry point)
101
112
  ui/AgentToolRegistry.js 6.97 KB (entry point)
102
113
  ui/views/ToolRegistryView.js 6.91 KB (entry point)
103
- ui/hooks/index.js 9.29 KB (entry point)
104
- ui/hooks/useRunList.js 1.69 KB (entry point)
114
+ ui/hooks/index.js 23.0 KB (entry point)
115
+ ui/hooks/useAgentMutations.js 16.47 KB (entry point)
116
+ ui/hooks/useRunList.js 2.14 KB (entry point)
105
117
  ui/hooks/useToolList.js 2.51 KB (entry point)
106
118
  ui/hooks/useAgentList.js 1.68 KB (entry point)
107
- ui/hooks/useAgentMutations.js 3.18 KB (entry point)
108
- tool/index.js 28.62 KB (entry point)
119
+ tool/index.js 28.60 KB (entry point)
109
120
  tool/tool.entity.js 2.64 KB (entry point)
110
121
  tool/tool.event.js 3.24 KB (entry point)
111
- tool/tool.operation.js 14.62 KB (entry point)
112
- shared/index.js 9.67 KB (entry point)
122
+ shared/index.js 21.24 KB (entry point)
113
123
  presentations/index.js 25.19 KB (entry point)
114
124
  tool/tool.presentation.js 6.40 KB (entry point)
115
- tool/tool.schema.js 4.93 KB (entry point)
116
- tool/tool.enum.js 0.51 KB (entry point)
117
- run/index.js 43.49 KB (entry point)
125
+ run/index.js 43.69 KB (entry point)
118
126
  run/run.presentation.js 8.0 KB (entry point)
119
127
  run/run.entity.js 5.1 KB (entry point)
120
128
  run/run.event.js 8.25 KB (entry point)
129
+ agent/agent.test-spec.js 1.46 KB (entry point)
130
+ agent/index.js 39.73 KB (entry point)
131
+ docs/index.js 4.18 KB (entry point)
132
+ docs/agent-console.docblock.js 4.18 KB (entry point)
133
+ ./example.js 1.21 KB (entry point)
134
+ handlers/index.js 95.77 KB (entry point)
135
+ tool/tool.handler.js 20.88 KB (entry point)
136
+ run/run.handler.js 28.34 KB (entry point)
137
+ shared/mock-runs.js 3.17 KB (entry point)
138
+ handlers/agent.handlers.js 69.19 KB (entry point)
139
+ tool/tool.operation.js 14.62 KB (entry point)
140
+ tool/tool.schema.js 4.93 KB (entry point)
141
+ tool/tool.enum.js 0.51 KB (entry point)
121
142
  run/run.operation.js 20.68 KB (entry point)
122
143
  run/run.schema.js 6.61 KB (entry point)
123
144
  run/run.enum.js 0.59 KB (entry point)
124
- agent/agent.test-spec.js 1.46 KB (entry point)
125
- agent/index.js 39.68 KB (entry point)
126
- docs/index.js 3.72 KB (entry point)
127
- docs/agent-console.docblock.js 3.72 KB (entry point)
128
- ./example.js 1.24 KB (entry point)
129
- handlers/index.js 25.33 KB (entry point)
130
- tool/tool.handler.js 6.37 KB (entry point)
131
- run/run.handler.js 7.60 KB (entry point)
132
- shared/mock-runs.js 3.0 KB (entry point)
133
- handlers/agent.handlers.js 9.24 KB (entry point)
134
- ./agent.feature.js 4.69 KB (entry point)
145
+ ./agent.feature.js 10.0 KB (entry point)
146
+ visualizations/index.js 5.51 KB (entry point)
147
+ visualizations/selectors.js 5.33 KB (entry point)
148
+ visualizations/catalog.js 3.78 KB (entry point)
135
149
  agent/agent.entity.js 3.92 KB (entry point)
136
- agent/agent.handler.js 8.88 KB (entry point)
150
+ agent/agent.handler.js 33.1 KB (entry point)
137
151
  shared/mock-tools.js 4.14 KB (entry point)
138
152
  shared/mock-agents.js 2.54 KB (entry point)
139
153
  agent/agent.operation.js 24.28 KB (entry point)
@@ -142,68 +156,75 @@ Bundled 66 modules in 122ms
142
156
  agent/agent.schema.js 8.13 KB (entry point)
143
157
  agent/agent.enum.js 459 bytes (entry point)
144
158
 
145
- [contractspec-bun-build] transpile target=browser root=src entries=66 noBundle=false
146
- Bundled 66 modules in 86ms
159
+ [contractspec-bun-build] transpile target=browser root=src entries=73 noBundle=false
160
+ Bundled 79 modules in 97ms
147
161
 
148
162
  ./agent.capability.js 434 bytes (entry point)
149
163
  tool/tool.test-spec.js 1.38 KB (entry point)
150
164
  shared/overlay-types.js 0 KB (entry point)
151
165
  run/run.test-spec.js 1.36 KB (entry point)
152
166
  seeders/index.js 0.63 KB (entry point)
153
- ./index.js 202.91 KB (entry point)
154
- ui/index.js 78.16 KB (entry point)
155
- ui/views/index.js 22.00 KB (entry point)
156
- ui/renderers/index.js 14.73 KB (entry point)
157
- ui/renderers/agent-list.markdown.js 1.48 KB (entry point)
167
+ ./index.js 233.51 KB (entry point)
168
+ ui/index.js 105.25 KB (entry point)
169
+ ui/views/index.js 27.88 KB (entry point)
170
+ ui/overlays/index.js 1.45 KB (entry point)
171
+ ui/renderers/index.js 21.0 KB (entry point)
172
+ ui/renderers/agent-list.markdown.js 1.83 KB (entry point)
158
173
  ui/renderers/agent-list.renderer.js 5.91 KB (entry point)
159
- ui/renderers/dashboard.markdown.js 4.29 KB (entry point)
160
- ui/renderers/run-list.markdown.js 1.39 KB (entry point)
161
- ui/renderers/tool-registry.markdown.js 1.62 KB (entry point)
174
+ ui/renderers/dashboard.markdown.js 9.56 KB (entry point)
175
+ ui/renderers/run-list.markdown.js 1.61 KB (entry point)
176
+ ui/renderers/tool-registry.markdown.js 1.96 KB (entry point)
162
177
  ui/views/AgentListView.js 5.34 KB (entry point)
163
178
  ui/modals/index.js 22.53 KB (entry point)
164
- ui/overlays/index.js 1.45 KB (entry point)
165
179
  ui/overlays/demo-overlays.js 1.45 KB (entry point)
166
- ui/AgentDashboard.js 63.15 KB (entry point)
180
+ ui/AgentDashboard.js 89.14 KB (entry point)
167
181
  ui/modals/AgentActionsModal.js 12.29 KB (entry point)
168
182
  ui/modals/CreateAgentModal.js 10.17 KB (entry point)
169
- ui/AgentRunList.js 9.38 KB (entry point)
170
- ui/views/RunListView.js 9.32 KB (entry point)
183
+ ui/AgentDashboard.visualizations.js 6.66 KB (entry point)
184
+ ui/AgentRunList.js 15.25 KB (entry point)
185
+ ui/views/RunListView.js 15.19 KB (entry point)
186
+ ui/views/RunDataTable.js 10.32 KB (entry point)
187
+ ui/views/run-data-table.columns.js 8.64 KB (entry point)
188
+ ui/views/run-list.shared.js 5.84 KB (entry point)
171
189
  ui/AgentToolRegistry.js 6.97 KB (entry point)
172
190
  ui/views/ToolRegistryView.js 6.91 KB (entry point)
173
- ui/hooks/index.js 9.29 KB (entry point)
174
- ui/hooks/useRunList.js 1.69 KB (entry point)
191
+ ui/hooks/index.js 23.0 KB (entry point)
192
+ ui/hooks/useAgentMutations.js 16.47 KB (entry point)
193
+ ui/hooks/useRunList.js 2.14 KB (entry point)
175
194
  ui/hooks/useToolList.js 2.51 KB (entry point)
176
195
  ui/hooks/useAgentList.js 1.68 KB (entry point)
177
- ui/hooks/useAgentMutations.js 3.18 KB (entry point)
178
- tool/index.js 28.62 KB (entry point)
196
+ tool/index.js 28.60 KB (entry point)
179
197
  tool/tool.entity.js 2.64 KB (entry point)
180
198
  tool/tool.event.js 3.24 KB (entry point)
181
- tool/tool.operation.js 14.62 KB (entry point)
182
- shared/index.js 9.67 KB (entry point)
199
+ shared/index.js 21.24 KB (entry point)
183
200
  presentations/index.js 25.19 KB (entry point)
184
201
  tool/tool.presentation.js 6.40 KB (entry point)
185
- tool/tool.schema.js 4.93 KB (entry point)
186
- tool/tool.enum.js 0.51 KB (entry point)
187
- run/index.js 43.49 KB (entry point)
202
+ run/index.js 43.69 KB (entry point)
188
203
  run/run.presentation.js 8.0 KB (entry point)
189
204
  run/run.entity.js 5.1 KB (entry point)
190
205
  run/run.event.js 8.25 KB (entry point)
206
+ agent/agent.test-spec.js 1.46 KB (entry point)
207
+ agent/index.js 39.73 KB (entry point)
208
+ docs/index.js 4.18 KB (entry point)
209
+ docs/agent-console.docblock.js 4.18 KB (entry point)
210
+ ./example.js 1.21 KB (entry point)
211
+ handlers/index.js 95.77 KB (entry point)
212
+ tool/tool.handler.js 20.88 KB (entry point)
213
+ run/run.handler.js 28.34 KB (entry point)
214
+ shared/mock-runs.js 3.17 KB (entry point)
215
+ handlers/agent.handlers.js 69.19 KB (entry point)
216
+ tool/tool.operation.js 14.62 KB (entry point)
217
+ tool/tool.schema.js 4.93 KB (entry point)
218
+ tool/tool.enum.js 0.51 KB (entry point)
191
219
  run/run.operation.js 20.68 KB (entry point)
192
220
  run/run.schema.js 6.61 KB (entry point)
193
221
  run/run.enum.js 0.59 KB (entry point)
194
- agent/agent.test-spec.js 1.46 KB (entry point)
195
- agent/index.js 39.68 KB (entry point)
196
- docs/index.js 3.72 KB (entry point)
197
- docs/agent-console.docblock.js 3.72 KB (entry point)
198
- ./example.js 1.24 KB (entry point)
199
- handlers/index.js 25.33 KB (entry point)
200
- tool/tool.handler.js 6.37 KB (entry point)
201
- run/run.handler.js 7.60 KB (entry point)
202
- shared/mock-runs.js 3.0 KB (entry point)
203
- handlers/agent.handlers.js 9.24 KB (entry point)
204
- ./agent.feature.js 4.69 KB (entry point)
222
+ ./agent.feature.js 10.0 KB (entry point)
223
+ visualizations/index.js 5.51 KB (entry point)
224
+ visualizations/selectors.js 5.33 KB (entry point)
225
+ visualizations/catalog.js 3.78 KB (entry point)
205
226
  agent/agent.entity.js 3.92 KB (entry point)
206
- agent/agent.handler.js 8.88 KB (entry point)
227
+ agent/agent.handler.js 33.1 KB (entry point)
207
228
  shared/mock-tools.js 4.14 KB (entry point)
208
229
  shared/mock-agents.js 2.54 KB (entry point)
209
230
  agent/agent.operation.js 24.28 KB (entry point)
package/AGENTS.md CHANGED
@@ -46,11 +46,13 @@ Agent Console example - AI agent orchestration with tools, runs, and logs.
46
46
 
47
47
  - `bun run dev` — contractspec-bun-build dev
48
48
  - `bun run build` — bun run prebuild && bun run build:bundle && bun run build:types
49
- - `bun run test` — bun test --pass-with-no-tests
49
+ - `bun run test` — bun test
50
50
  - `bun run lint` — bun lint:fix
51
51
  - `bun run lint:check` — biome check .
52
52
  - `bun run lint:fix` — biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .
53
53
  - `bun run typecheck` — tsc --noEmit
54
+ - `bun run proof` — bun ../../../scripts/generate-agent-console-meetup-proof.ts
55
+ - `bun run preflight` — bun run build && bun run typecheck && bun run test && bun ../../../scripts/check-agent-console-meetup-policy.ts && bun run proof
54
56
  - `bun run publish:pkg` — bun publish --tolerate-republish --ignore-scripts --verbose
55
57
  - `bun run publish:pkg:canary` — bun publish:pkg --tag canary
56
58
  - `bun run clean` — rimraf dist .turbo
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @contractspec/example.agent-console
2
2
 
3
+ ## 3.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 1a44cb6: feat: improve examples to increase coverage of Contracts type
8
+ - Updated dependencies [1a44cb6]
9
+ - @contractspec/lib.example-shared-ui@6.0.10
10
+ - @contractspec/lib.runtime-sandbox@2.7.9
11
+ - @contractspec/lib.contracts-spec@4.1.2
12
+ - @contractspec/lib.design-system@3.8.3
13
+ - @contractspec/lib.schema@3.7.8
14
+
15
+ ## 3.8.1
16
+
17
+ ### Patch Changes
18
+
19
+ - fix: release
20
+ - Updated dependencies
21
+ - @contractspec/lib.example-shared-ui@6.0.9
22
+ - @contractspec/lib.runtime-sandbox@2.7.8
23
+ - @contractspec/lib.contracts-spec@4.1.1
24
+ - @contractspec/lib.design-system@3.8.2
25
+ - @contractspec/lib.schema@3.7.7
26
+
3
27
  ## 3.7.6
4
28
 
5
29
  ### Patch Changes
@@ -110,6 +134,7 @@
110
134
  ### Patch Changes
111
135
 
112
136
  - 27b77db: feat(ai-models): add latest models and align defaults
137
+
113
138
  - Add claude-opus-4-6, claude-sonnet-4-6, claude-haiku-4-5, gpt-5.4, gpt-5-mini
114
139
  - Add mistral-large-2512, mistral-medium-2508, mistral-small-2506, devstral-2512
115
140
  - Add gemini-3.1-pro-preview, gemini-3.1-flash-lite-preview, gemini-3-flash-preview
@@ -497,6 +522,7 @@
497
522
  - 7f3203a: fix: make workspace test runs resilient when packages have no tests
498
523
 
499
524
  Updates package test scripts to pass cleanly when no matching test files exist:
525
+
500
526
  - Uses `bun test --pass-with-no-tests` in Bun-based packages that currently ship without test files.
501
527
  - Uses `jest --passWithNoTests` for the UI kit web package.
502
528
  - Adds `.vscode-test.mjs` for `vscode-contractspec` so VS Code extension test runs have an explicit config and stop failing on missing default configuration.
@@ -895,14 +921,17 @@
895
921
  feat: Contract layers support (features, examples, app-configs)
896
922
 
897
923
  ### New CLI Commands
924
+
898
925
  - `contractspec list layers` - List all contract layers with filtering
899
926
 
900
927
  ### Enhanced Commands
928
+
901
929
  - `contractspec ci` - New `layers` check category validates features/examples/config
902
930
  - `contractspec doctor` - New `layers` health checks
903
931
  - `contractspec integrity` - Now shows layer statistics
904
932
 
905
933
  ### New APIs
934
+
906
935
  - `discoverLayers()` - Scan workspace for all layer files
907
936
  - `scanExampleSource()` - Parse ExampleSpec from source code
908
937
  - `isExampleFile()` - Check if file is an example spec
package/README.md CHANGED
@@ -7,11 +7,37 @@ Website: https://contractspec.io
7
7
  ## What This Demonstrates
8
8
 
9
9
  - Agent entity with lifecycle (create, configure, execute).
10
+ - Canonical `agent`, `harness-scenario`, and `harness-suite` example exports for deterministic proof coverage.
10
11
  - Run tracking with status enums and event-driven state transitions.
11
12
  - Tool registry with typed schemas and operation handlers.
12
- - Presentation layer with React UI components, hooks, modals, and overlays.
13
+ - Presentation layer with React UI components, hooks, modals, overlays, and a server-mode shared `DataTable` for run history.
14
+ - Shared table capabilities including sorting, pagination, column visibility toggles, and expandable run diagnostics.
15
+ - Contract-backed visualization surfaces for run status, activity, and duration-vs-token analysis.
16
+ - One deterministic demo runtime shared across React hooks, markdown renderers, and the sandbox runtime.
13
17
  - Markdown and React renderers for multi-surface output.
14
- - Seeders and mock data for demo scenarios.
18
+ - Seeded local data and harness replay proof for offline-safe demo scenarios.
19
+
20
+ ## Canonical Demo Path
21
+
22
+ - Default sandbox route: `/sandbox`
23
+ - Explicit sandbox route: `/sandbox?template=agent-console`
24
+ - Proof artifact: `packages/examples/agent-console/proofs/agent-console-meetup.replay.json`
25
+
26
+ The canonical walkthrough is deterministic and local-first:
27
+ 1. Load the agent-console sandbox.
28
+ 2. Inspect seeded agents, tools, runs, and metrics.
29
+ 3. Create an agent.
30
+ 4. Activate or pause it.
31
+ 5. Execute a run.
32
+ 6. Confirm the run and metrics update.
33
+ 7. Export or inspect the generated replay proof.
34
+
35
+ ## Runtime Boundaries
36
+
37
+ - React hooks and the sandbox use `createAgentConsoleDemoHandlers(...)` for the meetup path.
38
+ - Markdown renderers prefer runtime-fetched data and fall back to the same deterministic demo handlers.
39
+ - The demo runtime is intentionally mocked and offline-safe by default.
40
+ - Database-backed `createAgentHandlers(db)` remains available for non-demo runtime wiring.
15
41
 
16
42
  ## Running Locally
17
43
 
@@ -19,7 +45,14 @@ From `packages/examples/agent-console`:
19
45
  - `bun run dev`
20
46
  - `bun run build`
21
47
  - `bun run test`
48
+ - `bun run proof`
22
49
  - `bun run typecheck`
50
+ - `bun run preflight`
51
+
52
+ From the repository root:
53
+ - `bun run meetup:agent-console:policy`
54
+ - `bun run meetup:agent-console:proof`
55
+ - `bun run meetup:agent-console:preflight`
23
56
 
24
57
  ## Usage
25
58
 
@@ -34,6 +67,7 @@ Use `@contractspec/example.agent-console` as a reference implementation, or impo
34
67
  - `src/example.ts` is the runnable example entrypoint.
35
68
  - `src/handlers/` contains handlers or demo adapters wired to contract surfaces.
36
69
  - `src/index.ts` is the root public barrel and package entrypoint.
70
+ - `src/proof/` contains the exported meetup proof scenario and suite.
37
71
 
38
72
  ## Public Entry Points
39
73
 
@@ -47,13 +81,18 @@ Use `@contractspec/example.agent-console` as a reference implementation, or impo
47
81
  - Export `./agent/agent.handler` resolves through `./src/agent/agent.handler.ts`.
48
82
  - Export `./agent/agent.operation` resolves through `./src/agent/agent.operation.ts`.
49
83
  - Export `./agent/agent.presentation` resolves through `./src/agent/agent.presentation.ts`.
50
- - The package publishes 66 total export subpaths; keep docs aligned with `package.json`.
84
+ - Export `./proof` resolves through `./src/proof/index.ts`.
85
+ - Export `./proof/meetup-proof.scenario` resolves through `./src/proof/meetup-proof.scenario.ts`.
86
+ - Export `./proof/meetup-proof.suite` resolves through `./src/proof/meetup-proof.suite.ts`.
87
+ - The package publishes 72 total export subpaths; keep docs aligned with `package.json`.
51
88
 
52
89
  ## Local Commands
53
90
 
54
91
  - `bun run dev` — contractspec-bun-build dev
55
92
  - `bun run build` — bun run prebuild && bun run build:bundle && bun run build:types
56
- - `bun run test` — bun test --pass-with-no-tests
93
+ - `bun run test` — bun test
94
+ - `bun run proof` — bun ../../../scripts/generate-agent-console-meetup-proof.ts
95
+ - `bun run preflight` — bun run build && bun run typecheck && bun run test && bun ../../../scripts/check-agent-console-meetup-policy.ts && bun run proof
57
96
  - `bun run lint` — bun lint:fix
58
97
  - `bun run lint:check` — biome check .
59
98
  - `bun run lint:fix` — biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .
@@ -67,11 +106,9 @@ Use `@contractspec/example.agent-console` as a reference implementation, or impo
67
106
 
68
107
  ## Recent Updates
69
108
 
70
- - Replace eslint+prettier by biomejs to optimize speed.
71
- - Package exports.
72
- - Add latest models and align defaults.
73
- - Resolve lint and build errors in workspace bundle and integrations lib.
74
- - Missing contract layers.
109
+ - Unified the meetup demo around a single seeded runtime.
110
+ - Added focused handler tests, a sandbox smoke test, and a harness replay proof.
111
+ - Added a slice-scoped meetup preflight instead of relying on the repo-wide policy backlog.
75
112
 
76
113
  ## Notes
77
114
 
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Mock handlers for Agent contracts.
3
+ */
1
4
  export interface ListAgentsInput {
2
5
  organizationId: string;
3
6
  status?: 'DRAFT' | 'ACTIVE' | 'PAUSED' | 'ARCHIVED';