1#[derive(Debug, Clone, Copy, PartialEq, Eq)]
11pub struct StdlibSource {
12 pub module: &'static str,
13 pub source: &'static str,
14}
15
16#[derive(Debug, Clone, Copy, PartialEq, Eq)]
17pub struct StdlibPromptAsset {
18 pub path: &'static str,
19 pub source: &'static str,
20}
21
22macro_rules! embedded_catalog {
23 ($entry:ident, $key:ident, [$($name:literal => $path:literal),* $(,)?]) => {
24 &[
25 $($entry {
26 $key: $name,
27 source: include_str!($path),
28 },)*
29 ]
30 };
31}
32
33#[derive(Debug, Clone, PartialEq, Eq)]
34pub struct StdlibPublicFunction {
35 pub name: String,
36 pub signature: String,
37 pub required_params: usize,
38 pub total_params: usize,
39 pub variadic: bool,
40 pub doc: Option<String>,
41}
42
43#[derive(Debug, Clone, PartialEq, Eq)]
44pub struct StdlibEntrypointModule {
45 pub import_path: String,
46 pub category: String,
47}
48
49pub const STDLIB_SOURCES: &[StdlibSource] = embedded_catalog!(StdlibSource, module, [
50 "text" => "stdlib/stdlib_text.harn",
51 "semver" => "stdlib/stdlib_semver.harn",
52 "changelog" => "stdlib/stdlib_changelog.harn",
53 "ansi" => "stdlib/stdlib_ansi.harn",
54 "table" => "stdlib/stdlib_table.harn",
55 "diff" => "stdlib/stdlib_diff.harn",
56 "edit" => "stdlib/stdlib_edit.harn",
57 "edit/capabilities" => "stdlib/edit/capabilities.harn",
58 "edit/internal" => "stdlib/edit/internal.harn",
59 "edit/patch" => "stdlib/edit/patch.harn",
60 "edit/refactor_runtime" => "stdlib/edit/refactor_runtime.harn",
61 "edit/safe_patch" => "stdlib/edit/safe_patch.harn",
62 "edit/fast_apply" => "stdlib/edit/fast_apply.harn",
63 "ast" => "stdlib/stdlib_ast.harn",
64 "rules" => "stdlib/stdlib_rules.harn",
65 "lint" => "stdlib/stdlib_lint.harn",
66 "artifact/web" => "stdlib/artifact/web.harn",
67 "collections" => "stdlib/stdlib_collections.harn",
68 "math" => "stdlib/stdlib_math.harn",
69 "slug" => "stdlib/stdlib_slug.harn",
70 "path" => "stdlib/stdlib_path.harn",
71 "fs" => "stdlib/stdlib_fs.harn",
72 "run_artifacts" => "stdlib/stdlib_run_artifacts.harn",
73 "artifacts/typed" => "stdlib/artifacts/typed.harn",
74 "os" => "stdlib/stdlib_os.harn",
75 "json" => "stdlib/stdlib_json.harn",
76 "json/stream" => "stdlib/stdlib_json_stream.harn",
77 "xml" => "stdlib/stdlib_xml.harn",
78 "cache" => "stdlib/stdlib_cache.harn",
79 "observability" => "stdlib/stdlib_observability.harn",
80 "timing" => "stdlib/stdlib_timing.harn",
81 "verification" => "stdlib/stdlib_verification.harn",
82 "tools" => "stdlib/stdlib_tools.harn",
83 "composition" => "stdlib/stdlib_composition.harn",
84 "web" => "stdlib/stdlib_web.harn",
85 "graphql" => "stdlib/stdlib_graphql.harn",
86 "code_librarian" => "stdlib/stdlib_code_librarian.harn",
87 "schema" => "stdlib/stdlib_schema.harn",
88 "schema/contracts" => "stdlib/schema/contracts.harn",
89 "identity" => "stdlib/stdlib_identity.harn",
90 "disclosure" => "stdlib/stdlib_disclosure.harn",
91 "testing" => "stdlib/stdlib_testing.harn",
92 "files" => "stdlib/stdlib_files.harn",
93 "document" => "stdlib/stdlib_document.harn",
94 "vision" => "stdlib/stdlib_vision.harn",
95 "context" => "stdlib/stdlib_context.harn",
96 "context/maintenance" => "stdlib/context/maintenance.harn",
97 "context/eval" => "stdlib/context/eval.harn",
98 "eval/stats" => "stdlib/stdlib_eval_stats.harn",
99 "eval/remote_fanout" => "stdlib/eval/remote_fanout.harn",
100 "eval/sequential" => "stdlib/eval/sequential.harn",
101 "eval/experiment" => "stdlib/eval/experiment.harn",
102 "eval/experiment/contracts" => "stdlib/eval/experiment/contracts.harn",
103 "eval/experiment/assignment" => "stdlib/eval/experiment/assignment.harn",
104 "eval/experiment/decision" => "stdlib/eval/experiment/decision.harn",
105 "eval/hypothesis" => "stdlib/eval/hypothesis.harn",
106 "eval/hypothesis/capabilities" => "stdlib/eval/hypothesis/capabilities.harn",
107 "eval/hypothesis/contracts" => "stdlib/eval/hypothesis/contracts.harn",
108 "eval/hypothesis/compiler" => "stdlib/eval/hypothesis/compiler.harn",
109 "eval/hypothesis/intent_boundary" => "stdlib/eval/hypothesis/intent_boundary.harn",
110 "eval/hypothesis/ledger_contracts" => "stdlib/eval/hypothesis/ledger_contracts.harn",
111 "eval/hypothesis/ledger" => "stdlib/eval/hypothesis/ledger.harn",
112 "eval/hypothesis/planner" => "stdlib/eval/hypothesis/planner.harn",
113 "eval/hypothesis/report" => "stdlib/eval/hypothesis/report.harn",
114 "eval/hypothesis/policies" => "stdlib/eval/hypothesis/policies.harn",
115 "eval/hypothesis/workflow_contracts" => "stdlib/eval/hypothesis/workflow_contracts.harn",
116 "eval/hypothesis/workflow" => "stdlib/eval/hypothesis/workflow.harn",
117 "eval/agreement" => "stdlib/stdlib_eval_agreement.harn",
118 "runtime" => "stdlib/stdlib_runtime.harn",
119 "io" => "stdlib/stdlib_io.harn",
120 "net" => "stdlib/stdlib_net.harn",
121 "command" => "stdlib/stdlib_command.harn",
122 "command/results" => "stdlib/command/results.harn",
123 "runner_pool" => "stdlib/stdlib_runner_pool.harn",
124 "verification_types" => "stdlib/verification_types.harn",
125 "verification_core" => "stdlib/verification_core.harn",
126 "verification_targets" => "stdlib/verification_targets.harn",
127 "verification_ladder" => "stdlib/verification_ladder.harn",
128 "verification_public" => "stdlib/verification_public.harn",
129 "signal" => "stdlib/stdlib_signal.harn",
130 "net_policy" => "stdlib/stdlib_net_policy.harn",
131 "review" => "stdlib/stdlib_review.harn",
132 "experiments" => "stdlib/stdlib_experiments.harn",
133 "project" => "stdlib/stdlib_project.harn",
134 "prompt_library" => "stdlib/stdlib_prompt_library.harn",
135 "async" => "stdlib/stdlib_async.harn",
136 "poll" => "stdlib/stdlib_poll.harn",
137 "coerce" => "stdlib/stdlib_coerce.harn",
138 "settled" => "stdlib/stdlib_settled.harn",
139 "abort" => "stdlib/stdlib_abort.harn",
140 "cli" => "stdlib/stdlib_cli.harn",
141 "cli/argparse" => "stdlib/cli/argparse.harn",
142 "cli/envelope" => "stdlib/cli/envelope.harn",
143 "cli/render" => "stdlib/cli/render.harn",
144 "cli/models/batch_artifacts" => "stdlib/cli/models/batch_artifacts.harn",
145 "cli/models/batch_cancel" => "stdlib/cli/models/batch_cancel.harn",
146 "cli/models/batch_download" => "stdlib/cli/models/batch_download.harn",
147 "cli/models/batch_lifecycle" => "stdlib/cli/models/batch_lifecycle.harn",
148 "cli/models/batch_rejoin" => "stdlib/cli/models/batch_rejoin.harn",
149 "cli/models/batch_status" => "stdlib/cli/models/batch_status.harn",
150 "cli/models/batch_submit" => "stdlib/cli/models/batch_submit.harn",
151 "cli/models/batch_transport" => "stdlib/cli/models/batch_transport.harn",
152 "cli/models/lora_render" => "stdlib/cli/models/lora_render.harn",
153 "cli/paths" => "stdlib/cli/paths.harn",
154 "gha" => "stdlib/stdlib_gha.harn",
155 "tui" => "stdlib/stdlib_tui.harn",
156 "jsonl" => "stdlib/stdlib_jsonl.harn",
157 "config" => "stdlib/stdlib_config.harn",
158 "calendar" => "stdlib/stdlib_calendar.harn",
159 "external_action" => "stdlib/stdlib_external_action.harn",
160 "external_action/vocabulary" => "stdlib/external_action/vocabulary.harn",
161 "external_action/contracts" => "stdlib/external_action/contracts.harn",
162 "external_action/disclosure" => "stdlib/external_action/disclosure.harn",
163 "external_action/activity" => "stdlib/external_action/activity.harn",
164 "external_action/policy" => "stdlib/external_action/policy.harn",
165 "external_action/runtime" => "stdlib/external_action/runtime.harn",
166 "external_action/testing" => "stdlib/external_action/testing.harn",
167 "agents" => "stdlib/stdlib_agents.harn",
168 "lifecycle/pool" => "stdlib/lifecycle/pool.harn",
169 "lifecycle/combinators" => "stdlib/lifecycle/combinators.harn",
170 "lifecycle/on_budget" => "stdlib/lifecycle/on_budget.harn",
171 "agent/prompts" => "stdlib/agent/prompts.harn",
172 "llm/media" => "stdlib/llm/media.harn",
173 "media/asset" => "stdlib/media/asset.harn",
174 "media/composition" => "stdlib/media/composition.harn",
175 "model_job" => "stdlib/stdlib_model_job.harn",
176 "model_job/contracts" => "stdlib/model_job/contracts.harn",
177 "model_job/runtime" => "stdlib/model_job/runtime.harn",
178 "model_job/testing" => "stdlib/model_job/testing.harn",
179 "model_job/comfyui" => "stdlib/model_job/comfyui.harn",
180 "model_job/openai" => "stdlib/model_job/openai.harn",
181 "portable" => "stdlib/stdlib_portable.harn",
182 "ui" => "stdlib/stdlib_ui.harn",
183 "ui/contracts" => "stdlib/ui/contracts.harn",
184 "ui/renderer" => "stdlib/ui/renderer.harn",
185 "ui/testing" => "stdlib/ui/testing.harn",
186 "llm/options" => "stdlib/llm/options.harn",
187 "llm/provider_names" => "stdlib/llm/provider_names.harn",
188 "llm/catalog" => "stdlib/llm/catalog.harn",
189 "llm/safe" => "stdlib/llm/safe.harn",
190 "llm/envelope" => "stdlib/llm/envelope.harn",
191 "llm/caller" => "stdlib/llm/caller.harn",
192 "harness/policy" => "stdlib/harness/policy.harn",
193 "llm/budget" => "stdlib/llm/budget.harn",
194 "llm/economics" => "stdlib/llm/economics.harn",
195 "llm/prompts" => "stdlib/llm/prompts.harn",
196 "llm/defaults" => "stdlib/llm/defaults.harn",
197 "llm/handlers" => "stdlib/llm/handlers.harn",
198 "llm/tool_telemetry" => "stdlib/llm/tool_telemetry.harn",
199 "llm/tool_middleware" => "stdlib/llm/tool_middleware.harn",
200 "llm/tool_binder" => "stdlib/llm/tool_binder.harn",
201 "llm/structural_validator" => "stdlib/llm/structural_validator.harn",
202 "llm/missing_tool_call" => "stdlib/llm/missing_tool_call.harn",
203 "llm/tool_shape" => "stdlib/llm/tool_shape.harn",
204 "llm/dialects" => "stdlib/llm/dialects.harn",
205 "llm/tool_parse" => "stdlib/llm/tool_parse.harn",
206 "llm/tool_parse_json_support" => "stdlib/llm/tool_parse_json_support.harn",
207 "llm/tool_parse_protocol" => "stdlib/llm/tool_parse_protocol.harn",
208 "llm/tool_parse_provider" => "stdlib/llm/tool_parse_provider.harn",
209 "llm/tool_parse_result" => "stdlib/llm/tool_parse_result.harn",
210 "llm/tool_parse_scan_spec" => "stdlib/llm/tool_parse_scan_spec.harn",
211 "llm/scope_classifier" => "stdlib/llm/scope_classifier.harn",
212 "llm/refine" => "stdlib/llm/refine.harn",
213 "llm/ensemble" => "stdlib/llm/ensemble.harn",
214 "llm/rerank" => "stdlib/llm/rerank.harn",
215 "agent/reasoning" => "stdlib/agent/reasoning.harn",
216 "agent/caller_transport" => "stdlib/agent/caller_transport.harn",
217 "agent/options" => "stdlib/agent/options.harn",
218 "agent/options_types" => "stdlib/agent/options_types.harn",
219 "agent/options_formats" => "stdlib/agent/options_formats.harn",
220 "agent/options_validation" => "stdlib/agent/options_validation.harn",
221 "agent/options_public" => "stdlib/agent/options_public.harn",
222 "agent/llm_dispatch" => "stdlib/agent/llm_dispatch.harn",
223 "agent/prefill" => "stdlib/agent/prefill.harn",
224 "agent/retry" => "stdlib/agent/retry.harn",
225 "llm/judge" => "stdlib/llm/judge.harn",
226 "llm/faithfulness" => "stdlib/llm/faithfulness.harn",
227 "llm/optimize" => "stdlib/llm/optimize.harn",
228 "agent/events" => "stdlib/agent/events.harn",
229 "agent/feedback" => "stdlib/agent/feedback.harn",
230 "agent/transcript" => "stdlib/agent/transcript.harn",
231 "agent/artifacts" => "stdlib/agent/artifacts.harn",
232 "agent/primitives" => "stdlib/agent/primitives.harn",
233 "agent/progress" => "stdlib/agent/progress.harn",
234 "agent/required_tools" => "stdlib/agent/required_tools.harn",
235 "agent/monologue_actuation" => "stdlib/agent/monologue_actuation.harn",
236 "agent/monologue_actuation_types" => "stdlib/agent/monologue_actuation_types.harn",
237 "agent/stall_types" => "stdlib/agent/stall_types.harn",
238 "agent/stall" => "stdlib/agent/stall.harn",
239 "agent/recurring_diagnostic" => "stdlib/agent/recurring_diagnostic.harn",
240 "agent/stall_config" => "stdlib/agent/stall_config.harn",
241 "agent/stall_feedback" => "stdlib/agent/stall_feedback.harn",
242 "agent/stall_action_observation" => "stdlib/agent/stall_action_observation.harn",
243 "agent/stall_observation" => "stdlib/agent/stall_observation.harn",
244 "agent/stall_verification" => "stdlib/agent/stall_verification.harn",
245 "agent/stall_detectors" => "stdlib/agent/stall_detectors.harn",
246 "agent/governors" => "stdlib/agent/governors.harn",
247 "agent/control" => "stdlib/agent/control.harn",
248 "agent/action_graph" => "stdlib/agent/action_graph.harn",
249 "agent/result_text" => "stdlib/agent/result_text.harn",
250 "agent/best_of_n" => "stdlib/agent/best_of_n.harn",
251 "agent/loop" => "stdlib/agent/loop.harn",
252 "agent/loop_support" => "stdlib/agent/loop_support.harn",
253 "agent/loop_call_resolution" => "stdlib/agent/loop_call_resolution.harn",
254 "agent/loop_result_status" => "stdlib/agent/loop_result_status.harn",
255 "agent/loop_foundation" => "stdlib/agent/loop_foundation.harn",
256 "agent/loop_tool_calls" => "stdlib/agent/loop_tool_calls.harn",
257 "agent/loop_resource_dispatch" => "stdlib/agent/loop_resource_dispatch.harn",
258 "agent/loop_turn_options" => "stdlib/agent/loop_turn_options.harn",
259 "agent/loop_turn_scope" => "stdlib/agent/loop_turn_scope.harn",
260 "agent/loop_internal" => "stdlib/agent/loop_internal.harn",
261 "agent/loop_run" => "stdlib/agent/loop_run.harn",
262 "agent/loop_finalize" => "stdlib/agent/loop_finalize.harn",
263 "agent/loop_terminal" => "stdlib/agent/loop_terminal.harn",
264 "agent/user" => "stdlib/agent/user.harn",
265 "agent/tool_search" => "stdlib/agent/tool_search.harn",
266 "agent/tool_annotations" => "stdlib/agent/tool_annotations.harn",
267 "agent/tool_lifecycle" => "stdlib/agent/tool_lifecycle.harn",
268 "agent/workers" => "stdlib/agent/workers.harn",
269 "agent/introspection" => "stdlib/agent/introspection.harn",
270 "agent/resume_by" => "stdlib/agent/resume_by.harn",
271 "agent/state" => "stdlib/agent/state.harn",
272 "agent/truncation" => "stdlib/agent/truncation.harn",
273 "agent/canon" => "stdlib/agent/canon.harn",
274 "agent/skills" => "stdlib/agent/skills.harn",
275 "agent/autocompact" => "stdlib/agent/autocompact.harn",
276 "agent/mcp" => "stdlib/agent/mcp.harn",
277 "agent/command_capture" => "stdlib/agent/command_capture.harn",
278 "agent/contracts" => "stdlib/agent/contracts.harn",
279 "agent/command_ledger" => "stdlib/agent/command_ledger.harn",
280 "agent/host_tools" => "stdlib/agent/host_tools.harn",
281 "agent/host_injection" => "stdlib/agent/host_injection.harn",
282 "agent/budget" => "stdlib/agent/budget.harn",
283 "agent/daemon" => "stdlib/agent/daemon.harn",
284 "agent/preflight" => "stdlib/agent/preflight.harn",
285 "agent/postturn" => "stdlib/agent/postturn.harn",
286 "agent/stance" => "stdlib/agent/stance.harn",
287 "agent/lanes" => "stdlib/agent/lanes.harn",
288 "agent/overlays" => "stdlib/agent/overlays.harn",
289 "agent/sitrep" => "stdlib/agent/sitrep.harn",
290 "agent/verdict" => "stdlib/agent/verdict.harn",
291 "agent/judge_internals" => "stdlib/agent/judge_internals.harn",
292 "agent/judge" => "stdlib/agent/judge.harn",
293 "agent/guardrails" => "stdlib/agent/guardrails.harn",
294 "agent/step_judge" => "stdlib/agent/step_judge.harn",
295 "agent/scratchpad" => "stdlib/agent/scratchpad.harn",
296 "agent/fact" => "stdlib/agent/fact.harn",
297 "agent/hypothesis" => "stdlib/agent/hypothesis.harn",
298 "agent/pattern_knowledge_values" => "stdlib/agent/pattern_knowledge_values.harn",
299 "agent/pattern_knowledge_curated" => "stdlib/agent/pattern_knowledge_curated.harn",
300 "agent/pattern_knowledge" => "stdlib/agent/pattern_knowledge.harn",
301 "agent/crystallization_curator" => "stdlib/agent/crystallization_curator.harn",
302 "agent/probe" => "stdlib/agent/probe.harn",
303 "agent/stream" => "stdlib/agent/stream.harn",
304 "agent/presets" => "stdlib/agent/presets.harn",
305 "agent/pins" => "stdlib/agent/pins.harn",
306 "agent/goal" => "stdlib/agent/goal.harn",
307 "agent/task_plan" => "stdlib/agent/task_plan.harn",
308 "personas/compiler" => "stdlib/personas/compiler.harn",
309 "personas/prompt_compiler" => "stdlib/personas/prompt_compiler.harn",
310 "agent_state" => "stdlib/stdlib_agent_state.harn",
311 "memory" => "stdlib/stdlib_memory.harn",
312 "session-store" => "stdlib/stdlib_session_store.harn",
313 "coordination" => "stdlib/stdlib_coordination.harn",
314 "coordination/append_metadata" => "stdlib/coordination/append_metadata.harn",
315 "fleet/coordination" => "stdlib/fleet/coordination.harn",
316 "postgres" => "stdlib/stdlib_postgres.harn",
317 "postgres/query" => "stdlib/postgres/query.harn",
318 "sqlite" => "stdlib/stdlib_sqlite.harn",
319 "checkpoint" => "stdlib/stdlib_checkpoint.harn",
320 "host" => "stdlib/stdlib_host.harn",
321 "host_conditions" => "stdlib/stdlib_host_conditions.harn",
322 "host_lease" => "stdlib/stdlib_host_lease.harn",
323 "git" => "stdlib/stdlib_git.harn",
324 "git/checkout" => "stdlib/git/checkout.harn",
325 "git/contracts" => "stdlib/git/contracts.harn",
326 "hitl" => "stdlib/stdlib_hitl.harn",
327 "trust" => "stdlib/stdlib_trust.harn",
328 "corrections" => "stdlib/stdlib_corrections.harn",
329 "plan" => "stdlib/stdlib_plan.harn",
330 "waitpoint" => "stdlib/stdlib_waitpoint.harn",
331 "monitors" => "stdlib/stdlib_monitors.harn",
332 "worktree" => "stdlib/stdlib_worktree.harn",
333 "acp" => "stdlib/stdlib_acp.harn",
334 "external_agent" => "stdlib/stdlib_external_agent.harn",
335 "triggers" => "stdlib/stdlib_triggers.harn",
336 "triage" => "stdlib/stdlib_triage.harn",
337 "dashboard/jobs" => "stdlib/dashboard/jobs.harn",
338 "ui_resource" => "stdlib/stdlib_ui_resource.harn",
339 "handoffs" => "stdlib/stdlib_handoffs.harn",
340 "lifecycle" => "stdlib/stdlib_lifecycle.harn",
341 "tool_hooks_catalogues" => "stdlib/stdlib_tool_hooks_catalogues.harn",
342 "tool_hooks" => "stdlib/stdlib_tool_hooks.harn",
343 "channel_guardrails" => "stdlib/stdlib_channel_guardrails.harn",
344 "personas/prelude" => "stdlib/stdlib_personas_prelude.harn",
345 "personas/bulletins" => "stdlib/stdlib_personas_bulletins.harn",
346 "connectors/shared" => "stdlib/stdlib_connectors_shared.harn",
347 "connectors/http" => "stdlib/connectors/http.harn",
348 "connectors/setup" => "stdlib/connectors/setup.harn",
349 "oauth/providers" => "stdlib/oauth/providers.harn",
350 "oauth/token_exchange_catalog" => "stdlib/oauth/token_exchange_catalog.harn",
351 "oauth/token_exchange" => "stdlib/oauth/token_exchange.harn",
352 "oauth/storage" => "stdlib/oauth/storage.harn",
353 "oauth/client" => "stdlib/oauth/client.harn",
354 "oauth/device_flow" => "stdlib/oauth/device_flow.harn",
355 "oauth/redaction" => "stdlib/oauth/redaction.harn",
356 "oauth/dynamic_registration" => "stdlib/oauth/dynamic_registration.harn",
357 "connectors/github" => "stdlib/stdlib_connectors_github.harn",
358 "connectors/linear" => "stdlib/stdlib_connectors_linear.harn",
359 "connectors/notion" => "stdlib/stdlib_connectors_notion.harn",
360 "connectors/slack" => "stdlib/stdlib_connectors_slack.harn",
361 "workflow/prompts" => "stdlib/workflow/prompts.harn",
362 "workflow/context" => "stdlib/workflow/context.harn",
363 "workflow/options" => "stdlib/workflow/options.harn",
364 "workflow/checkpoints" => "stdlib/workflow/checkpoints.harn",
365 "workflow/patterns" => "stdlib/workflow/patterns.harn",
366 "workflow/stage" => "stdlib/workflow/stage.harn",
367 "workflow/map" => "stdlib/workflow/map.harn",
368 "workflow/schedule" => "stdlib/workflow/schedule.harn",
369 "workflow/execute" => "stdlib/workflow/execute.harn",
370 "workflow/repair" => "stdlib/workflow/repair.harn",
371 "security" => "stdlib/stdlib_security.harn",
372 "pii" => "stdlib/stdlib_pii.harn",
373 "bump/runtime" => "stdlib/bump/runtime.harn",
374 "bump/live" => "stdlib/bump/live.harn",
375]);
376
377pub const CONNECTOR_EVENT_SCHEMAS_SOURCE: &str = include_str!("stdlib/stdlib_event_schemas.harn");
387
388pub const STDLIB_PROMPT_ASSETS: &[StdlibPromptAsset] = embedded_catalog!(StdlibPromptAsset, path, [
389 "eval/hypothesis/prompts/intake.harn.prompt" => "stdlib/eval/hypothesis/prompts/intake.harn.prompt",
390 "agent/prompts/tool_contract_text.harn.prompt" => "stdlib/agent/prompts/tool_contract_text.harn.prompt",
391 "agent/prompts/tool_contract_json.harn.prompt" => "stdlib/agent/prompts/tool_contract_json.harn.prompt",
392 "agent/prompts/tool_contract_native.harn.prompt" => "stdlib/agent/prompts/tool_contract_native.harn.prompt",
393 "agent/prompts/tool_contract_text_response_protocol.harn.prompt" => "stdlib/agent/prompts/tool_contract_text_response_protocol.harn.prompt",
394 "agent/prompts/tool_contract_action_native.harn.prompt" => "stdlib/agent/prompts/tool_contract_action_native.harn.prompt",
395 "agent/prompts/tool_contract_action_text.harn.prompt" => "stdlib/agent/prompts/tool_contract_action_text.harn.prompt",
396 "agent/prompts/tool_contract_task_ledger.harn.prompt" => "stdlib/agent/prompts/tool_contract_task_ledger.harn.prompt",
397 "agent/prompts/tool_contract_deferred_tools.harn.prompt" => "stdlib/agent/prompts/tool_contract_deferred_tools.harn.prompt",
398 "agent/prompts/deferred_tool_listing.harn.prompt" => "stdlib/agent/prompts/deferred_tool_listing.harn.prompt",
399 "agent/prompts/default_nudge.harn.prompt" => "stdlib/agent/prompts/default_nudge.harn.prompt",
400 "agent/prompts/agentic_user_system.harn.prompt" => "stdlib/agent/prompts/agentic_user_system.harn.prompt",
401 "agent/prompts/agentic_user_user.harn.prompt" => "stdlib/agent/prompts/agentic_user_user.harn.prompt",
402 "agent/prompts/loop_until_done_system.harn.prompt" => "stdlib/agent/prompts/loop_until_done_system.harn.prompt",
403 "agent/prompts/completion_judge_default.harn.prompt" => "stdlib/agent/prompts/completion_judge_default.harn.prompt",
404 "agent/prompts/completion_judge_feedback_fallback.harn.prompt" => "stdlib/agent/prompts/completion_judge_feedback_fallback.harn.prompt",
405 "agent/prompts/completion_judge_user.harn.prompt" => "stdlib/agent/prompts/completion_judge_user.harn.prompt",
406 "agent/prompts/step_judge_system_default.harn.prompt" => "stdlib/agent/prompts/step_judge_system_default.harn.prompt",
407 "agent/prompts/step_judge_system_adversarial.harn.prompt" => "stdlib/agent/prompts/step_judge_system_adversarial.harn.prompt",
408 "agent/prompts/step_judge_user.harn.prompt" => "stdlib/agent/prompts/step_judge_user.harn.prompt",
409 "agent/prompts/parse_guidance.harn.prompt" => "stdlib/agent/prompts/parse_guidance.harn.prompt",
410 "agent/prompts/native_tool_contract_feedback.harn.prompt" => "stdlib/agent/prompts/native_tool_contract_feedback.harn.prompt",
411 "agent/prompts/verification_gate_feedback.harn.prompt" => "stdlib/agent/prompts/verification_gate_feedback.harn.prompt",
412 "agent/prompts/daemon_watch_feedback.harn.prompt" => "stdlib/agent/prompts/daemon_watch_feedback.harn.prompt",
413 "agent/prompts/daemon_timer_feedback.harn.prompt" => "stdlib/agent/prompts/daemon_timer_feedback.harn.prompt",
414 "llm/prompts/completion_fallback_system.harn.prompt" => "stdlib/llm/prompts/completion_fallback_system.harn.prompt",
415 "llm/prompts/completion_fallback_user.harn.prompt" => "stdlib/llm/prompts/completion_fallback_user.harn.prompt",
416 "llm/prompts/transcript_summarize_user.harn.prompt" => "stdlib/llm/prompts/transcript_summarize_user.harn.prompt",
417 "llm/prompts/sitrep_user.harn.prompt" => "stdlib/llm/prompts/sitrep_user.harn.prompt",
418 "llm/prompts/structural_chain_of_draft.harn.prompt" => "stdlib/llm/prompts/structural_chain_of_draft.harn.prompt",
419 "llm/prompts/schema_recover_repair.harn.prompt" => "stdlib/llm/prompts/schema_recover_repair.harn.prompt",
420 "llm/prompts/structured_envelope_schema_contract.harn.prompt" => "stdlib/llm/prompts/structured_envelope_schema_contract.harn.prompt",
421 "llm/prompts/structured_envelope_repair.harn.prompt" => "stdlib/llm/prompts/structured_envelope_repair.harn.prompt",
422 "llm/prompts/pairwise_rerank_user.harn.prompt" => "stdlib/llm/prompts/pairwise_rerank_user.harn.prompt",
423 "llm/prompts/tool_binder_user.harn.prompt" => "stdlib/llm/prompts/tool_binder_user.harn.prompt",
424 "workflow/prompts/stage.harn.prompt" => "stdlib/workflow/prompts/stage.harn.prompt",
425 "workflow/prompts/verification_context_intro.harn.prompt" => "stdlib/workflow/prompts/verification_context_intro.harn.prompt",
426 "orchestration/prompts/compaction_summary.harn.prompt" => "stdlib/orchestration/prompts/compaction_summary.harn.prompt",
427 "orchestration/prompts/compaction_policy_replacement.harn.prompt" => "stdlib/orchestration/prompts/compaction_policy_replacement.harn.prompt",
428]);
429
430#[derive(Debug, Clone, Copy, PartialEq, Eq)]
434pub struct StdlibCliScript {
435 pub name: &'static str,
439 pub source: &'static str,
442}
443
444pub const STDLIB_CLI_SCRIPTS: &[StdlibCliScript] = embedded_catalog!(StdlibCliScript, name, [
445 "codemod" => "stdlib/cli/codemod.harn",
446 "canon/check" => "stdlib/cli/canon/check.harn",
447 "doctor" => "stdlib/cli/doctor.harn",
448 "echo" => "stdlib/cli/echo.harn",
449 "eval/_runner" => "stdlib/cli/eval/_runner.harn",
453 "eval/context" => "stdlib/cli/eval/context.harn",
454 "eval/model_selector" => "stdlib/cli/eval/model_selector.harn",
455 "eval/tool_calls" => "stdlib/cli/eval/tool_calls.harn",
456 "eval/coding_agent" => "stdlib/cli/eval/coding_agent.harn",
457 "eval/scope_triage" => "stdlib/cli/eval/scope_triage.harn",
458 "eval/prompt" => "stdlib/cli/eval/prompt.harn",
459 "explain" => "stdlib/cli/explain.harn",
460 "graph" => "stdlib/cli/graph.harn",
461 "personas/compile_prompt" => "stdlib/cli/personas/compile_prompt.harn",
462 "personas/materialize" => "stdlib/cli/personas/materialize.harn",
463 "models/batch_plan" => "stdlib/cli/models/batch_plan.harn",
464 "models/list" => "stdlib/cli/models/list.harn",
465 "models/lora_inspect" => "stdlib/cli/models/lora_inspect.harn",
466 "models/lora_export" => "stdlib/cli/models/lora_export.harn",
467 "models/lora_manifest" => "stdlib/cli/models/lora_manifest.harn",
468 "models/lora_preflight" => "stdlib/cli/models/lora_preflight.harn",
469 "models/lora_promote" => "stdlib/cli/models/lora_promote.harn",
470 "models/lora_plan" => "stdlib/cli/models/lora_plan.harn",
471 "models/lora_train" => "stdlib/cli/models/lora_train.harn",
472 "models/recommend" => "stdlib/cli/models/recommend.harn",
473 "models/test" => "stdlib/cli/models/test.harn",
474 "precompile" => "stdlib/cli/precompile.harn",
475 "providers/cache_probe" => "stdlib/cli/providers/cache_probe.harn",
476 "providers/catalog" => "stdlib/cli/providers/catalog.harn",
477 "providers/probe" => "stdlib/cli/providers/probe.harn",
478 "providers/recommend" => "stdlib/cli/providers/recommend.harn",
479 "providers/tool_probe" => "stdlib/cli/providers/tool_probe.harn",
480 "providers/tool_scorecard" => "stdlib/cli/providers/tool_scorecard.harn",
481 "routes" => "stdlib/cli/routes.harn",
482 "runs/export_training" => "stdlib/cli/runs/export_training.harn",
483 "scan" => "stdlib/cli/scan.harn",
484 "scaffold/init" => "stdlib/cli/scaffold/init.harn",
485 "scaffold/tool_new" => "stdlib/cli/scaffold/tool_new.harn",
486 "trace_import" => "stdlib/cli/trace_import.harn",
487 "try" => "stdlib/cli/try.harn",
488 "version" => "stdlib/cli/version.harn",
489]);
490
491pub fn get_stdlib_source(module: &str) -> Option<&'static str> {
492 STDLIB_SOURCES
493 .iter()
494 .find_map(|entry| (entry.module == module).then_some(entry.source))
495}
496
497pub fn builtin_reexports(module: &str) -> &'static [&'static str] {
517 match module {
518 "testing" => &[
519 "assert",
520 "assert_approx",
521 "assert_eq",
522 "assert_matches",
523 "assert_ne",
524 "value_diff",
525 ],
526 _ => &[],
527 }
528}
529
530pub fn find_cli_script(name: &str) -> Option<&'static str> {
534 STDLIB_CLI_SCRIPTS
535 .iter()
536 .find_map(|entry| (entry.name == name).then_some(entry.source))
537}
538
539pub fn get_stdlib_prompt_asset(path: &str) -> Option<&'static str> {
540 let path = path.strip_prefix("std/").unwrap_or(path);
541 STDLIB_PROMPT_ASSETS
542 .iter()
543 .find_map(|entry| (entry.path == path).then_some(entry.source))
544}
545
546pub fn public_functions_for_module(module: &str) -> Vec<StdlibPublicFunction> {
547 let Some(source) = get_stdlib_source(module) else {
548 return Vec::new();
549 };
550 public_functions_from_source(source)
551}
552
553pub fn entrypoint_modules() -> Vec<StdlibEntrypointModule> {
554 STDLIB_SOURCES
555 .iter()
556 .filter_map(|entry| {
557 entrypoint_category_from_source(entry.source).map(|category| StdlibEntrypointModule {
558 import_path: format!("std/{}", entry.module),
559 category,
560 })
561 })
562 .collect()
563}
564
565fn entrypoint_category_from_source(source: &str) -> Option<String> {
566 for line in source.lines() {
567 let line = line.trim();
568 if line.is_empty() {
569 continue;
570 }
571 if let Some(category) = line.strip_prefix("// @harn-entrypoint-category ") {
572 let category = category.trim();
573 return (!category.is_empty()).then(|| category.to_string());
574 }
575 if !line.starts_with("//") {
576 return None;
577 }
578 }
579 None
580}
581
582fn public_functions_from_source(source: &str) -> Vec<StdlibPublicFunction> {
583 let mut out = Vec::new();
584 let mut doc: Option<String> = None;
585 let lines = source.lines().collect::<Vec<_>>();
586 let mut index = 0usize;
587 while index < lines.len() {
588 let line = lines[index].trim();
589 if line.starts_with("/**") {
590 let (parsed, next) = parse_harndoc(&lines, index);
591 doc = parsed;
592 index = next;
593 continue;
594 }
595 if line.starts_with("pub fn ") {
596 let (signature_line, next) = collect_public_function_signature(&lines, index);
597 if let Some(function) = parse_public_function_line(&signature_line, doc.take()) {
598 out.push(function);
599 index = next;
600 continue;
601 }
602 }
603 if let Some(function) = parse_public_function_line(line, doc.take()) {
604 out.push(function);
605 } else if !line.is_empty() && !line.starts_with("//") {
606 doc = None;
607 }
608 index += 1;
609 }
610 out
611}
612
613fn collect_public_function_signature(lines: &[&str], start: usize) -> (String, usize) {
614 let mut parts = Vec::new();
615 let mut index = start;
616 while index < lines.len() {
617 parts.push(lines[index].trim().to_string());
618 let candidate = parts.join(" ");
619 if public_function_signature_complete(&candidate) {
620 return (candidate, index + 1);
621 }
622 index += 1;
623 }
624 (parts.join(" "), index)
625}
626
627fn public_function_signature_complete(line: &str) -> bool {
628 let Some(rest) = line.strip_prefix("pub fn ") else {
629 return false;
630 };
631 let Some((_, after_paren)) = rest.split_once('(') else {
632 return false;
633 };
634 matching_paren_len(after_paren).is_some()
635}
636
637fn parse_harndoc(lines: &[&str], start: usize) -> (Option<String>, usize) {
638 let mut parts = Vec::new();
639 let mut index = start;
640 while index < lines.len() {
641 let mut line = lines[index].trim();
642 if index == start {
643 line = line.trim_start_matches("/**").trim();
644 }
645 let done = line.ends_with("*/");
646 line = line.trim_end_matches("*/").trim();
647 line = line.trim_start_matches('*').trim();
648 if !line.is_empty() {
649 parts.push(line.to_string());
650 }
651 index += 1;
652 if done {
653 break;
654 }
655 }
656 let text = parts.join("\n").trim().to_string();
657 ((!text.is_empty()).then_some(text), index)
658}
659
660#[expect(
661 clippy::string_slice,
662 reason = "bounds come from str::find and char_indices"
663)]
664fn parse_public_function_line(line: &str, doc: Option<String>) -> Option<StdlibPublicFunction> {
665 let rest = line.strip_prefix("pub fn ")?.trim();
666 let name_end = rest.find('(')?;
667 let name = rest[..name_end].trim();
668 if name.is_empty() {
669 return None;
670 }
671 let params_start = name_end + 1;
672 let params_len = matching_paren_len(&rest[params_start..])?;
673 let params = &rest[params_start..params_start + params_len];
674 let after = rest[params_start + params_len + 1..].trim();
675 let return_type = after
676 .strip_prefix("->")
677 .and_then(|tail| tail.split('{').next())
678 .map(str::trim)
679 .filter(|value| !value.is_empty());
680 let signature = match return_type {
681 Some(ret) => format!("{name}({params}) -> {ret}"),
682 None => format!("{name}({params})"),
683 };
684 let param_parts = split_top_level_params(params);
685 let total_params = param_parts
686 .iter()
687 .filter(|param| !param.trim().is_empty())
688 .count();
689 let variadic = param_parts
690 .iter()
691 .any(|param| param.trim_start().starts_with("..."));
692 let required_params = param_parts
693 .iter()
694 .filter(|param| {
695 let param = param.trim();
696 !param.is_empty() && !param.contains('=') && !param.starts_with("...")
697 })
698 .count();
699 Some(StdlibPublicFunction {
700 name: name.to_string(),
701 signature,
702 required_params,
703 total_params,
704 variadic,
705 doc,
706 })
707}
708
709fn matching_paren_len(input: &str) -> Option<usize> {
710 let mut depth = 1usize;
711 for (offset, ch) in input.char_indices() {
712 match ch {
713 '(' | '[' | '{' => depth += 1,
714 ')' | ']' | '}' => {
715 depth = depth.saturating_sub(1);
716 if depth == 0 {
717 return Some(offset);
718 }
719 }
720 _ => {}
721 }
722 }
723 None
724}
725
726#[expect(
727 clippy::string_slice,
728 reason = "offsets come from char_indices and 1-byte ','"
729)]
730fn split_top_level_params(params: &str) -> Vec<&str> {
731 let mut out = Vec::new();
732 let mut depth = 0isize;
733 let mut start = 0usize;
734 for (offset, ch) in params.char_indices() {
735 match ch {
736 '(' | '[' | '{' => depth += 1,
737 ')' | ']' | '}' => depth -= 1,
738 ',' if depth == 0 => {
739 out.push(¶ms[start..offset]);
740 start = offset + 1;
741 }
742 _ => {}
743 }
744 }
745 out.push(¶ms[start..]);
746 out
747}
748
749#[cfg(test)]
750mod tests {
751 use std::collections::BTreeSet;
752
753 use super::{
754 entrypoint_modules, find_cli_script, get_stdlib_prompt_asset, get_stdlib_source,
755 matching_paren_len, parse_public_function_line, public_functions_for_module,
756 STDLIB_CLI_SCRIPTS, STDLIB_PROMPT_ASSETS, STDLIB_SOURCES,
757 };
758
759 #[test]
760 fn stdlib_sources_are_non_empty() {
761 for entry in STDLIB_SOURCES {
762 assert!(
763 !entry.source.trim().is_empty(),
764 "{} should have non-empty source",
765 entry.module
766 );
767 }
768 }
769
770 #[test]
771 fn cli_scripts_are_non_empty_and_uniquely_named() {
772 let mut seen = BTreeSet::new();
773 for entry in STDLIB_CLI_SCRIPTS {
774 assert!(
775 !entry.source.trim().is_empty(),
776 "cli/{} should have non-empty source",
777 entry.name
778 );
779 assert!(
780 seen.insert(entry.name),
781 "cli/{} is registered more than once in STDLIB_CLI_SCRIPTS",
782 entry.name
783 );
784 }
785 }
786
787 #[test]
788 fn find_cli_script_round_trips() {
789 for entry in STDLIB_CLI_SCRIPTS {
790 assert_eq!(find_cli_script(entry.name), Some(entry.source));
791 }
792 assert!(find_cli_script("not-a-real-script").is_none());
793 }
794
795 #[test]
796 fn stdlib_source_names_are_unique() {
797 let mut names = BTreeSet::new();
798 for entry in STDLIB_SOURCES {
799 assert!(names.insert(entry.module), "duplicate {}", entry.module);
800 }
801 }
802
803 #[test]
804 fn stdlib_prompt_assets_are_non_empty() {
805 for entry in STDLIB_PROMPT_ASSETS {
806 assert!(
807 !entry.source.trim().is_empty(),
808 "{} should have non-empty prompt asset source",
809 entry.path
810 );
811 }
812 }
813
814 #[test]
815 fn stdlib_prompt_asset_paths_are_unique() {
816 let mut paths = BTreeSet::new();
817 for entry in STDLIB_PROMPT_ASSETS {
818 assert!(paths.insert(entry.path), "duplicate {}", entry.path);
819 }
820 }
821
822 #[test]
823 fn key_stdlib_modules_resolve() {
824 for module in [
825 "context",
826 "context/maintenance",
827 "context/eval",
828 "eval/stats",
829 "eval/remote_fanout",
830 "eval/agreement",
831 "edit",
832 "verification",
833 "disclosure",
834 "artifact/web",
835 "command",
836 "waitpoint",
837 "llm/handlers",
838 "media/asset",
839 "media/composition",
840 "model_job",
841 "model_job/contracts",
842 "model_job/runtime",
843 "model_job/testing",
844 "model_job/comfyui",
845 "model_job/openai",
846 "ui",
847 "ui/contracts",
848 "ui/renderer",
849 "ui/testing",
850 "llm/tool_middleware",
851 "llm/tool_binder",
852 "llm/missing_tool_call",
853 "llm/tool_shape",
854 "llm/dialects",
855 "llm/ensemble",
856 "llm/rerank",
857 "personas/prelude",
858 "personas/bulletins",
859 "agent/host_tools",
860 "agent/host_injection",
861 "agent/tool_lifecycle",
862 "agent/user",
863 "agent/governors",
864 "agent/guardrails",
865 "cli",
866 "cli/envelope",
867 "cli/models/batch_artifacts",
868 "cli/models/batch_cancel",
869 "cli/models/batch_download",
870 "cli/models/batch_lifecycle",
871 "cli/models/batch_rejoin",
872 "cli/models/batch_status",
873 "cli/models/batch_submit",
874 "cli/models/batch_transport",
875 "cli/models/lora_render",
876 "llm/optimize",
877 "llm/judge",
878 "llm/faithfulness",
879 "llm/refine",
880 "connectors/shared",
881 "connectors/github",
882 "connectors/linear",
883 "connectors/notion",
884 "connectors/slack",
885 "triage",
886 "dashboard/jobs",
887 "ui_resource",
888 "host_conditions",
889 "host_lease",
890 ] {
891 assert!(
892 get_stdlib_source(module).is_some(),
893 "std/{module} should resolve"
894 );
895 }
896 }
897
898 #[test]
899 fn key_stdlib_prompt_assets_resolve() {
900 for path in [
901 "std/agent/prompts/tool_contract_text.harn.prompt",
902 "std/agent/prompts/default_nudge.harn.prompt",
903 "std/agent/prompts/completion_judge_default.harn.prompt",
904 "std/workflow/prompts/stage.harn.prompt",
905 "std/orchestration/prompts/compaction_summary.harn.prompt",
906 "std/orchestration/prompts/compaction_policy_replacement.harn.prompt",
907 ] {
908 assert!(
909 get_stdlib_prompt_asset(path).is_some(),
910 "{path} should resolve"
911 );
912 }
913 }
914
915 #[test]
916 fn public_function_catalog_derives_signatures_from_harn_source() {
917 let exports = public_functions_for_module("workflow/execute");
918 assert_eq!(exports.len(), 1);
919 assert_eq!(exports[0].name, "workflow_execute");
920 assert_eq!(
921 exports[0].signature,
922 "workflow_execute(harness: Harness, task, graph, artifacts = nil, options = nil)"
923 );
924 assert_eq!(exports[0].required_params, 3);
925 assert_eq!(exports[0].total_params, 5);
926 }
927
928 #[test]
929 fn command_stdlib_module_exports_step_helpers() {
930 let exports = public_functions_for_module("command")
931 .into_iter()
932 .map(|function| function.name)
933 .collect::<BTreeSet<_>>();
934 for name in [
935 "command_run",
936 "command_wait",
937 "command_wait_for_output",
938 "command_cancel",
939 "command_run_streaming",
940 "command_output_tail",
941 "command_json",
942 "command_json_step",
943 "command_try",
944 "command_step",
945 "command_steps_append",
946 "command_last_failed_step",
947 "command_step_ref",
948 ] {
949 assert!(exports.contains(name), "std/command should export {name}");
950 }
951 }
952
953 #[test]
954 fn disclosure_stdlib_module_exports_render_helpers() {
955 let exports = public_functions_for_module("disclosure")
956 .into_iter()
957 .map(|function| function.name)
958 .collect::<BTreeSet<_>>();
959 assert!(
960 exports.contains("render"),
961 "std/disclosure should export render"
962 );
963 assert!(
964 exports.contains("git_trailers"),
965 "std/disclosure should export git_trailers"
966 );
967 assert!(
968 exports.contains("slack_message_disclosure"),
969 "std/disclosure should export slack_message_disclosure"
970 );
971 assert!(
972 exports.contains("append_git_trailers"),
973 "std/disclosure should export append_git_trailers"
974 );
975 }
976
977 #[test]
978 fn async_stdlib_exports_predicate_backoff_name_only() {
979 let exports = public_functions_for_module("async")
980 .into_iter()
981 .map(|function| function.name)
982 .collect::<BTreeSet<_>>();
983 assert!(
984 exports.contains("retry_predicate_with_backoff"),
985 "std/async should export retry_predicate_with_backoff"
986 );
987 assert!(
988 !exports.contains("retry_with_backoff"),
989 "std/async should not retain the old retry_with_backoff export"
990 );
991 }
992
993 #[test]
994 fn signal_stdlib_module_exports_interrupt_helpers() {
995 let exports = public_functions_for_module("signal")
996 .into_iter()
997 .map(|function| function.name)
998 .collect::<BTreeSet<_>>();
999 for name in [
1000 "on_interrupt",
1001 "off_interrupt",
1002 "interrupted",
1003 "with_interrupt",
1004 ] {
1005 assert!(exports.contains(name), "std/signal should export {name}");
1006 }
1007 }
1008
1009 #[test]
1010 fn git_stdlib_module_exports_local_wrappers() {
1011 let exports = public_functions_for_module("git")
1012 .into_iter()
1013 .map(|function| function.name)
1014 .collect::<BTreeSet<_>>();
1015 for name in [
1016 "git_run",
1017 "git_status",
1018 "git_current_branch",
1019 "git_log",
1020 "git_switch",
1021 "git_pull_ff_only",
1022 "git_find_tool",
1023 "git_run_tool",
1024 "git_tools",
1025 "git_toolbox_tools",
1026 ] {
1027 assert!(exports.contains(name), "std/git should export {name}");
1028 }
1029 }
1030
1031 #[test]
1032 fn agent_workers_exports_suspend_resume_wrappers() {
1033 let exports = public_functions_for_module("agent/workers");
1034 let suspend = exports
1035 .iter()
1036 .find(|function| function.name == "suspend_agent")
1037 .expect("std/agent/workers should export suspend_agent");
1038 assert_eq!(
1039 suspend.signature,
1040 "suspend_agent(agents: HarnessAgent, worker, reason = \"\", options = nil)"
1041 );
1042 assert_eq!(suspend.required_params, 2);
1043 assert_eq!(suspend.total_params, 4);
1044
1045 let resume = exports
1046 .iter()
1047 .find(|function| function.name == "resume_agent")
1048 .expect("std/agent/workers should export resume_agent");
1049 assert_eq!(
1050 resume.signature,
1051 "resume_agent( agents: HarnessAgent, worker_or_snapshot, resume_input = nil, continue_transcript = true, ) -> any"
1052 );
1053 assert_eq!(resume.required_params, 2);
1054 assert_eq!(resume.total_params, 4);
1055
1056 let stop = exports
1057 .iter()
1058 .find(|function| function.name == "agent_stop")
1059 .expect("std/agent/workers should export agent_stop");
1060 assert_eq!(
1061 stop.signature,
1062 "agent_stop(agents: HarnessAgent, worker, options: AgentStopOptions? = nil)"
1063 );
1064 assert_eq!(stop.required_params, 2);
1065 assert_eq!(stop.total_params, 3);
1066
1067 let parse_resume = exports
1068 .iter()
1069 .find(|function| function.name == "parse_resume_conditions")
1070 .expect("std/agent/workers should export parse_resume_conditions");
1071 assert_eq!(
1072 parse_resume.signature,
1073 "parse_resume_conditions(agents: HarnessAgent, conditions = nil) -> ResumeConditions?"
1074 );
1075 assert_eq!(parse_resume.required_params, 1);
1076 assert_eq!(parse_resume.total_params, 2);
1077
1078 let lifecycle = exports
1079 .iter()
1080 .find(|function| function.name == "agent_lifecycle_tools")
1081 .expect("std/agent/workers should export agent_lifecycle_tools");
1082 assert_eq!(
1083 lifecycle.signature,
1084 "agent_lifecycle_tools(agents: HarnessAgent, registry = nil, options = nil)"
1085 );
1086 assert_eq!(lifecycle.required_params, 1);
1087 assert_eq!(lifecycle.total_params, 3);
1088 }
1089
1090 #[test]
1091 fn tui_stdlib_module_exports_terminal_helpers() {
1092 let exports = public_functions_for_module("tui")
1093 .into_iter()
1094 .map(|function| function.name)
1095 .collect::<BTreeSet<_>>();
1096 for name in ["page", "terminal_width", "rule", "clear", "select_from"] {
1097 assert!(exports.contains(name), "std/tui should export {name}");
1098 }
1099 }
1100
1101 #[test]
1102 fn semver_stdlib_module_exports_release_helpers() {
1103 let exports = public_functions_for_module("semver")
1104 .into_iter()
1105 .map(|function| function.name)
1106 .collect::<BTreeSet<_>>();
1107 for name in [
1108 "strip_v",
1109 "add_v",
1110 "is_v_semver",
1111 "is_v_release_semver",
1112 "parse",
1113 "parse_release",
1114 "is_prerelease_identifier",
1115 "is_prerelease",
1116 "compare_release",
1117 "max_canonical_tag",
1118 "next",
1119 "bump_type",
1120 "version_from_release_branch",
1121 "version_from_tag",
1122 ] {
1123 assert!(exports.contains(name), "std/semver should export {name}");
1124 }
1125 }
1126
1127 #[test]
1128 fn changelog_stdlib_module_exports_typed_primitives() {
1129 let exports = public_functions_for_module("changelog")
1130 .into_iter()
1131 .map(|function| function.name)
1132 .collect::<BTreeSet<_>>();
1133 for name in [
1134 "changelog_validate_categories",
1135 "changelog_parse_fragment",
1136 "changelog_order_fragments",
1137 "changelog_normalize_fragment_body",
1138 "changelog_assemble_fragments",
1139 "changelog_parse_sections",
1140 "changelog_find_section",
1141 "changelog_merge_unreleased",
1142 ] {
1143 assert!(exports.contains(name), "std/changelog should export {name}");
1144 }
1145 }
1146
1147 #[test]
1148 fn text_stdlib_module_exports_regex_and_pad_helpers() {
1149 let exports = public_functions_for_module("text")
1150 .into_iter()
1151 .map(|function| function.name)
1152 .collect::<BTreeSet<_>>();
1153 for name in [
1154 "pad_left",
1155 "pad_right",
1156 "repeat_string",
1157 "regex_first_capture",
1158 "regex_capture_groups",
1159 "regex_all_first_captures",
1160 ] {
1161 assert!(exports.contains(name), "std/text should export {name}");
1162 }
1163 }
1164
1165 #[test]
1166 fn harn_entrypoint_catalog_is_declared_by_stdlib_sources() {
1167 let modules = entrypoint_modules();
1168 let entries = modules
1169 .iter()
1170 .map(|module| (module.import_path.as_str(), module.category.as_str()))
1171 .collect::<BTreeSet<_>>();
1172 for entry in [
1173 ("std/agent/loop", "agent.stdlib"),
1174 ("std/agent/primitives", "agent.stdlib"),
1175 ("std/workflow/execute", "workflow.stdlib"),
1176 ] {
1177 assert!(entries.contains(&entry), "{entry:?} should be declared");
1178 }
1179 }
1180
1181 #[test]
1182 fn matching_paren_len_closes_on_every_bracket_kind() {
1183 assert_eq!(matching_paren_len("a, b)"), Some(4));
1186 assert_eq!(matching_paren_len("x: [int])"), Some(8));
1187 assert_eq!(matching_paren_len("x: {a: int})"), Some(11));
1188 assert_eq!(matching_paren_len("x]"), Some(1));
1191 assert_eq!(matching_paren_len("x}"), Some(1));
1192 assert_eq!(matching_paren_len("unterminated"), None);
1193 }
1194
1195 #[test]
1196 fn parse_public_function_line_handles_record_typed_params() {
1197 let parsed =
1198 parse_public_function_line("pub fn configure(opts: {retries: int}) -> bool", None)
1199 .expect("signature with a record-typed parameter should parse");
1200 assert_eq!(parsed.name, "configure");
1201 assert_eq!(parsed.signature, "configure(opts: {retries: int}) -> bool");
1202 assert_eq!(parsed.total_params, 1);
1203 assert_eq!(parsed.required_params, 1);
1204 }
1205}