Skip to main content

harn_stdlib/
lib.rs

1//! Canonical embedded Harn standard library source catalog.
2//!
3//! This crate intentionally contains only static source strings so runtime and
4//! static tooling crates can share the same stdlib modules without depending on
5//! each other. Loading this catalog is pure: modules cannot register ambient
6//! effects, and every effectful stdlib function must receive its typed Harness
7//! capability explicitly from the caller, including callbacks that may perform
8//! effects.
9
10#[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_envelope" => "stdlib/llm/tool_parse_envelope.harn",
207    "llm/tool_parse_json_support" => "stdlib/llm/tool_parse_json_support.harn",
208    "llm/tool_parse_protocol" => "stdlib/llm/tool_parse_protocol.harn",
209    "llm/tool_parse_provider" => "stdlib/llm/tool_parse_provider.harn",
210    "llm/tool_parse_result" => "stdlib/llm/tool_parse_result.harn",
211    "llm/tool_parse_scan_spec" => "stdlib/llm/tool_parse_scan_spec.harn",
212    "llm/scope_classifier" => "stdlib/llm/scope_classifier.harn",
213    "llm/refine" => "stdlib/llm/refine.harn",
214    "llm/ensemble" => "stdlib/llm/ensemble.harn",
215    "llm/rerank" => "stdlib/llm/rerank.harn",
216    "agent/reasoning" => "stdlib/agent/reasoning.harn",
217    "agent/caller_transport" => "stdlib/agent/caller_transport.harn",
218    "agent/options" => "stdlib/agent/options.harn",
219    "agent/options_types" => "stdlib/agent/options_types.harn",
220    "agent/options_formats" => "stdlib/agent/options_formats.harn",
221    "agent/options_validation" => "stdlib/agent/options_validation.harn",
222    "agent/options_public" => "stdlib/agent/options_public.harn",
223    "agent/llm_dispatch" => "stdlib/agent/llm_dispatch.harn",
224    "agent/prefill" => "stdlib/agent/prefill.harn",
225    "agent/retry" => "stdlib/agent/retry.harn",
226    "llm/judge" => "stdlib/llm/judge.harn",
227    "llm/faithfulness" => "stdlib/llm/faithfulness.harn",
228    "llm/optimize" => "stdlib/llm/optimize.harn",
229    "agent/events" => "stdlib/agent/events.harn",
230    "agent/feedback" => "stdlib/agent/feedback.harn",
231    "agent/transcript" => "stdlib/agent/transcript.harn",
232    "agent/artifacts" => "stdlib/agent/artifacts.harn",
233    "agent/primitives" => "stdlib/agent/primitives.harn",
234    "agent/progress" => "stdlib/agent/progress.harn",
235    "agent/required_tools" => "stdlib/agent/required_tools.harn",
236    "agent/monologue_actuation" => "stdlib/agent/monologue_actuation.harn",
237    "agent/monologue_actuation_types" => "stdlib/agent/monologue_actuation_types.harn",
238    "agent/stall_types" => "stdlib/agent/stall_types.harn",
239    "agent/stall" => "stdlib/agent/stall.harn",
240    "agent/recurring_diagnostic" => "stdlib/agent/recurring_diagnostic.harn",
241    "agent/stall_config" => "stdlib/agent/stall_config.harn",
242    "agent/stall_feedback" => "stdlib/agent/stall_feedback.harn",
243    "agent/stall_action_observation" => "stdlib/agent/stall_action_observation.harn",
244    "agent/stall_observation" => "stdlib/agent/stall_observation.harn",
245    "agent/stall_verification" => "stdlib/agent/stall_verification.harn",
246    "agent/stall_detectors" => "stdlib/agent/stall_detectors.harn",
247    "agent/governors" => "stdlib/agent/governors.harn",
248    "agent/control" => "stdlib/agent/control.harn",
249    "agent/action_graph" => "stdlib/agent/action_graph.harn",
250    "agent/result_text" => "stdlib/agent/result_text.harn",
251    "agent/best_of_n" => "stdlib/agent/best_of_n.harn",
252    "agent/loop" => "stdlib/agent/loop.harn",
253    "agent/loop_support" => "stdlib/agent/loop_support.harn",
254    "agent/loop_call_resolution" => "stdlib/agent/loop_call_resolution.harn",
255    "agent/loop_result_status" => "stdlib/agent/loop_result_status.harn",
256    "agent/loop_foundation" => "stdlib/agent/loop_foundation.harn",
257    "agent/loop_tool_calls" => "stdlib/agent/loop_tool_calls.harn",
258    "agent/loop_resource_dispatch" => "stdlib/agent/loop_resource_dispatch.harn",
259    "agent/loop_turn_options" => "stdlib/agent/loop_turn_options.harn",
260    "agent/loop_turn_scope" => "stdlib/agent/loop_turn_scope.harn",
261    "agent/loop_internal" => "stdlib/agent/loop_internal.harn",
262    "agent/loop_run" => "stdlib/agent/loop_run.harn",
263    "agent/loop_finalize" => "stdlib/agent/loop_finalize.harn",
264    "agent/loop_terminal" => "stdlib/agent/loop_terminal.harn",
265    "agent/user" => "stdlib/agent/user.harn",
266    "agent/tool_search" => "stdlib/agent/tool_search.harn",
267    "agent/tool_annotations" => "stdlib/agent/tool_annotations.harn",
268    "agent/tool_lifecycle" => "stdlib/agent/tool_lifecycle.harn",
269    "agent/workers" => "stdlib/agent/workers.harn",
270    "agent/introspection" => "stdlib/agent/introspection.harn",
271    "agent/resume_by" => "stdlib/agent/resume_by.harn",
272    "agent/state" => "stdlib/agent/state.harn",
273    "agent/truncation" => "stdlib/agent/truncation.harn",
274    "agent/canon" => "stdlib/agent/canon.harn",
275    "agent/skills" => "stdlib/agent/skills.harn",
276    "agent/autocompact" => "stdlib/agent/autocompact.harn",
277    "agent/mcp" => "stdlib/agent/mcp.harn",
278    "agent/command_capture" => "stdlib/agent/command_capture.harn",
279    "agent/contracts" => "stdlib/agent/contracts.harn",
280    "agent/command_ledger" => "stdlib/agent/command_ledger.harn",
281    "agent/host_tools" => "stdlib/agent/host_tools.harn",
282    "agent/host_injection" => "stdlib/agent/host_injection.harn",
283    "agent/budget" => "stdlib/agent/budget.harn",
284    "agent/daemon" => "stdlib/agent/daemon.harn",
285    "agent/preflight" => "stdlib/agent/preflight.harn",
286    "agent/postturn" => "stdlib/agent/postturn.harn",
287    "agent/stance" => "stdlib/agent/stance.harn",
288    "agent/lanes" => "stdlib/agent/lanes.harn",
289    "agent/overlays" => "stdlib/agent/overlays.harn",
290    "agent/sitrep" => "stdlib/agent/sitrep.harn",
291    "agent/verdict" => "stdlib/agent/verdict.harn",
292    "agent/judge_internals" => "stdlib/agent/judge_internals.harn",
293    "agent/judge" => "stdlib/agent/judge.harn",
294    "agent/guardrails" => "stdlib/agent/guardrails.harn",
295    "agent/step_judge" => "stdlib/agent/step_judge.harn",
296    "agent/scratchpad" => "stdlib/agent/scratchpad.harn",
297    "agent/fact" => "stdlib/agent/fact.harn",
298    "agent/hypothesis" => "stdlib/agent/hypothesis.harn",
299    "agent/pattern_knowledge_values" => "stdlib/agent/pattern_knowledge_values.harn",
300    "agent/pattern_knowledge_curated" => "stdlib/agent/pattern_knowledge_curated.harn",
301    "agent/pattern_knowledge_persistence" => "stdlib/agent/pattern_knowledge_persistence.harn",
302    "agent/pattern_knowledge" => "stdlib/agent/pattern_knowledge.harn",
303    "agent/crystallization_curator" => "stdlib/agent/crystallization_curator.harn",
304    "agent/probe" => "stdlib/agent/probe.harn",
305    "agent/stream" => "stdlib/agent/stream.harn",
306    "agent/presets" => "stdlib/agent/presets.harn",
307    "agent/pins" => "stdlib/agent/pins.harn",
308    "agent/goal" => "stdlib/agent/goal.harn",
309    "agent/task_plan" => "stdlib/agent/task_plan.harn",
310    "personas/compiler" => "stdlib/personas/compiler.harn",
311    "personas/prompt_compiler" => "stdlib/personas/prompt_compiler.harn",
312    "agent_state" => "stdlib/stdlib_agent_state.harn",
313    "memory" => "stdlib/stdlib_memory.harn",
314    "session-store" => "stdlib/stdlib_session_store.harn",
315    "coordination" => "stdlib/stdlib_coordination.harn",
316    "coordination/append_metadata" => "stdlib/coordination/append_metadata.harn",
317    "fleet/coordination" => "stdlib/fleet/coordination.harn",
318    "postgres" => "stdlib/stdlib_postgres.harn",
319    "postgres/query" => "stdlib/postgres/query.harn",
320    "sqlite" => "stdlib/stdlib_sqlite.harn",
321    "checkpoint" => "stdlib/stdlib_checkpoint.harn",
322    "host" => "stdlib/stdlib_host.harn",
323    "host_conditions" => "stdlib/stdlib_host_conditions.harn",
324    "host_lease" => "stdlib/stdlib_host_lease.harn",
325    "git" => "stdlib/stdlib_git.harn",
326    "git/checkout" => "stdlib/git/checkout.harn",
327    "git/contracts" => "stdlib/git/contracts.harn",
328    "hitl" => "stdlib/stdlib_hitl.harn",
329    "trust" => "stdlib/stdlib_trust.harn",
330    "corrections" => "stdlib/stdlib_corrections.harn",
331    "plan" => "stdlib/stdlib_plan.harn",
332    "waitpoint" => "stdlib/stdlib_waitpoint.harn",
333    "monitors" => "stdlib/stdlib_monitors.harn",
334    "worktree" => "stdlib/stdlib_worktree.harn",
335    "acp" => "stdlib/stdlib_acp.harn",
336    "external_agent" => "stdlib/stdlib_external_agent.harn",
337    "triggers" => "stdlib/stdlib_triggers.harn",
338    "triage" => "stdlib/stdlib_triage.harn",
339    "dashboard/jobs" => "stdlib/dashboard/jobs.harn",
340    "ui_resource" => "stdlib/stdlib_ui_resource.harn",
341    "handoffs" => "stdlib/stdlib_handoffs.harn",
342    "lifecycle" => "stdlib/stdlib_lifecycle.harn",
343    "tool_hooks_catalogues" => "stdlib/stdlib_tool_hooks_catalogues.harn",
344    "tool_hooks" => "stdlib/stdlib_tool_hooks.harn",
345    "channel_guardrails" => "stdlib/stdlib_channel_guardrails.harn",
346    "personas/prelude" => "stdlib/stdlib_personas_prelude.harn",
347    "personas/bulletins" => "stdlib/stdlib_personas_bulletins.harn",
348    "connectors/shared" => "stdlib/stdlib_connectors_shared.harn",
349    "connectors/http" => "stdlib/connectors/http.harn",
350    "connectors/setup" => "stdlib/connectors/setup.harn",
351    "oauth/providers" => "stdlib/oauth/providers.harn",
352    "oauth/token_exchange_catalog" => "stdlib/oauth/token_exchange_catalog.harn",
353    "oauth/token_exchange" => "stdlib/oauth/token_exchange.harn",
354    "oauth/storage" => "stdlib/oauth/storage.harn",
355    "oauth/client" => "stdlib/oauth/client.harn",
356    "oauth/device_flow" => "stdlib/oauth/device_flow.harn",
357    "oauth/redaction" => "stdlib/oauth/redaction.harn",
358    "oauth/dynamic_registration" => "stdlib/oauth/dynamic_registration.harn",
359    "connectors/github" => "stdlib/stdlib_connectors_github.harn",
360    "connectors/linear" => "stdlib/stdlib_connectors_linear.harn",
361    "connectors/notion" => "stdlib/stdlib_connectors_notion.harn",
362    "connectors/slack" => "stdlib/stdlib_connectors_slack.harn",
363    "workflow/prompts" => "stdlib/workflow/prompts.harn",
364    "workflow/context" => "stdlib/workflow/context.harn",
365    "workflow/options" => "stdlib/workflow/options.harn",
366    "workflow/checkpoints" => "stdlib/workflow/checkpoints.harn",
367    "workflow/patterns" => "stdlib/workflow/patterns.harn",
368    "workflow/stage" => "stdlib/workflow/stage.harn",
369    "workflow/map" => "stdlib/workflow/map.harn",
370    "workflow/schedule" => "stdlib/workflow/schedule.harn",
371    "workflow/execute" => "stdlib/workflow/execute.harn",
372    "workflow/repair" => "stdlib/workflow/repair.harn",
373    "security" => "stdlib/stdlib_security.harn",
374    "pii" => "stdlib/stdlib_pii.harn",
375    "bump/runtime" => "stdlib/bump/runtime.harn",
376    "bump/live" => "stdlib/bump/live.harn",
377]);
378
379/// Canonical normalized connector event schemas, authored as Harn `type`
380/// declarations. This is the SOURCE OF TRUTH for the Rust event-payload
381/// structs in `crates/harn-vm/src/triggers/event/schemas_generated.rs`, which
382/// are generated from these declarations by `harn connector-schema-codegen`.
383///
384/// It is intentionally NOT registered in [`STDLIB_SOURCES`]: it is a codegen
385/// input (like `spec/openapi.yaml`), not a module loaded into every program.
386/// Exposing it as an embedded string keeps the generator independent of the
387/// current working directory.
388pub const CONNECTOR_EVENT_SCHEMAS_SOURCE: &str = include_str!("stdlib/stdlib_event_schemas.harn");
389
390pub const STDLIB_PROMPT_ASSETS: &[StdlibPromptAsset] = embedded_catalog!(StdlibPromptAsset, path, [
391    "eval/hypothesis/prompts/intake.harn.prompt" => "stdlib/eval/hypothesis/prompts/intake.harn.prompt",
392    "agent/prompts/tool_contract_text.harn.prompt" => "stdlib/agent/prompts/tool_contract_text.harn.prompt",
393    "agent/prompts/tool_contract_json.harn.prompt" => "stdlib/agent/prompts/tool_contract_json.harn.prompt",
394    "agent/prompts/tool_contract_native.harn.prompt" => "stdlib/agent/prompts/tool_contract_native.harn.prompt",
395    "agent/prompts/tool_contract_text_response_protocol.harn.prompt" => "stdlib/agent/prompts/tool_contract_text_response_protocol.harn.prompt",
396    "agent/prompts/tool_contract_action_native.harn.prompt" => "stdlib/agent/prompts/tool_contract_action_native.harn.prompt",
397    "agent/prompts/tool_contract_action_text.harn.prompt" => "stdlib/agent/prompts/tool_contract_action_text.harn.prompt",
398    "agent/prompts/tool_contract_task_ledger.harn.prompt" => "stdlib/agent/prompts/tool_contract_task_ledger.harn.prompt",
399    "agent/prompts/tool_contract_deferred_tools.harn.prompt" => "stdlib/agent/prompts/tool_contract_deferred_tools.harn.prompt",
400    "agent/prompts/deferred_tool_listing.harn.prompt" => "stdlib/agent/prompts/deferred_tool_listing.harn.prompt",
401    "agent/prompts/default_nudge.harn.prompt" => "stdlib/agent/prompts/default_nudge.harn.prompt",
402    "agent/prompts/agentic_user_system.harn.prompt" => "stdlib/agent/prompts/agentic_user_system.harn.prompt",
403    "agent/prompts/agentic_user_user.harn.prompt" => "stdlib/agent/prompts/agentic_user_user.harn.prompt",
404    "agent/prompts/loop_until_done_system.harn.prompt" => "stdlib/agent/prompts/loop_until_done_system.harn.prompt",
405    "agent/prompts/completion_judge_default.harn.prompt" => "stdlib/agent/prompts/completion_judge_default.harn.prompt",
406    "agent/prompts/completion_judge_feedback_fallback.harn.prompt" => "stdlib/agent/prompts/completion_judge_feedback_fallback.harn.prompt",
407    "agent/prompts/completion_judge_user.harn.prompt" => "stdlib/agent/prompts/completion_judge_user.harn.prompt",
408    "agent/prompts/step_judge_system_default.harn.prompt" => "stdlib/agent/prompts/step_judge_system_default.harn.prompt",
409    "agent/prompts/step_judge_system_adversarial.harn.prompt" => "stdlib/agent/prompts/step_judge_system_adversarial.harn.prompt",
410    "agent/prompts/step_judge_user.harn.prompt" => "stdlib/agent/prompts/step_judge_user.harn.prompt",
411    "agent/prompts/parse_guidance.harn.prompt" => "stdlib/agent/prompts/parse_guidance.harn.prompt",
412    "agent/prompts/native_tool_contract_feedback.harn.prompt" => "stdlib/agent/prompts/native_tool_contract_feedback.harn.prompt",
413    "agent/prompts/verification_gate_feedback.harn.prompt" => "stdlib/agent/prompts/verification_gate_feedback.harn.prompt",
414    "agent/prompts/daemon_watch_feedback.harn.prompt" => "stdlib/agent/prompts/daemon_watch_feedback.harn.prompt",
415    "agent/prompts/daemon_timer_feedback.harn.prompt" => "stdlib/agent/prompts/daemon_timer_feedback.harn.prompt",
416    "llm/prompts/completion_fallback_system.harn.prompt" => "stdlib/llm/prompts/completion_fallback_system.harn.prompt",
417    "llm/prompts/completion_fallback_user.harn.prompt" => "stdlib/llm/prompts/completion_fallback_user.harn.prompt",
418    "llm/prompts/transcript_summarize_user.harn.prompt" => "stdlib/llm/prompts/transcript_summarize_user.harn.prompt",
419    "llm/prompts/sitrep_user.harn.prompt" => "stdlib/llm/prompts/sitrep_user.harn.prompt",
420    "llm/prompts/structural_chain_of_draft.harn.prompt" => "stdlib/llm/prompts/structural_chain_of_draft.harn.prompt",
421    "llm/prompts/schema_recover_repair.harn.prompt" => "stdlib/llm/prompts/schema_recover_repair.harn.prompt",
422    "llm/prompts/structured_envelope_schema_contract.harn.prompt" => "stdlib/llm/prompts/structured_envelope_schema_contract.harn.prompt",
423    "llm/prompts/structured_envelope_repair.harn.prompt" => "stdlib/llm/prompts/structured_envelope_repair.harn.prompt",
424    "llm/prompts/pairwise_rerank_user.harn.prompt" => "stdlib/llm/prompts/pairwise_rerank_user.harn.prompt",
425    "llm/prompts/tool_binder_user.harn.prompt" => "stdlib/llm/prompts/tool_binder_user.harn.prompt",
426    "workflow/prompts/stage.harn.prompt" => "stdlib/workflow/prompts/stage.harn.prompt",
427    "workflow/prompts/verification_context_intro.harn.prompt" => "stdlib/workflow/prompts/verification_context_intro.harn.prompt",
428    "orchestration/prompts/compaction_summary.harn.prompt" => "stdlib/orchestration/prompts/compaction_summary.harn.prompt",
429    "orchestration/prompts/compaction_policy_replacement.harn.prompt" => "stdlib/orchestration/prompts/compaction_policy_replacement.harn.prompt",
430]);
431
432/// Embedded `.harn` script that backs a CLI subcommand. Looked up by
433/// the `harn-cli` dispatch wedge (see harn#2293 epic and harn#2294 G1)
434/// so subcommands can ship in Harn instead of Rust.
435#[derive(Debug, Clone, Copy, PartialEq, Eq)]
436pub struct StdlibCliScript {
437    /// Lookup name. For nested scripts this is the path under
438    /// `stdlib/cli/` without the `.harn` extension (e.g. `"eval/prompt"`
439    /// for `stdlib/cli/eval/prompt.harn`).
440    pub name: &'static str,
441    /// Embedded source. Run via the existing `harn run` codepath by the
442    /// dispatch wedge.
443    pub source: &'static str,
444}
445
446pub const STDLIB_CLI_SCRIPTS: &[StdlibCliScript] = embedded_catalog!(StdlibCliScript, name, [
447    "codemod" => "stdlib/cli/codemod.harn",
448    "canon/check" => "stdlib/cli/canon/check.harn",
449    "doctor" => "stdlib/cli/doctor.harn",
450    "echo" => "stdlib/cli/echo.harn",
451    // Helper module for the embedded `eval/*` scripts. Has a stub `main`
452    // that exits non-zero — sibling scripts inline its helpers until the
453    // dispatch wedge gains a cross-script import surface (#2300 / G7).
454    "eval/_runner" => "stdlib/cli/eval/_runner.harn",
455    "eval/context" => "stdlib/cli/eval/context.harn",
456    "eval/model_selector" => "stdlib/cli/eval/model_selector.harn",
457    "eval/tool_calls" => "stdlib/cli/eval/tool_calls.harn",
458    "eval/coding_agent" => "stdlib/cli/eval/coding_agent.harn",
459    "eval/scope_triage" => "stdlib/cli/eval/scope_triage.harn",
460    "eval/prompt" => "stdlib/cli/eval/prompt.harn",
461    "explain" => "stdlib/cli/explain.harn",
462    "graph" => "stdlib/cli/graph.harn",
463    "personas/compile_prompt" => "stdlib/cli/personas/compile_prompt.harn",
464    "personas/materialize" => "stdlib/cli/personas/materialize.harn",
465    "models/batch_plan" => "stdlib/cli/models/batch_plan.harn",
466    "models/list" => "stdlib/cli/models/list.harn",
467    "models/lora_inspect" => "stdlib/cli/models/lora_inspect.harn",
468    "models/lora_export" => "stdlib/cli/models/lora_export.harn",
469    "models/lora_manifest" => "stdlib/cli/models/lora_manifest.harn",
470    "models/lora_preflight" => "stdlib/cli/models/lora_preflight.harn",
471    "models/lora_promote" => "stdlib/cli/models/lora_promote.harn",
472    "models/lora_plan" => "stdlib/cli/models/lora_plan.harn",
473    "models/lora_train" => "stdlib/cli/models/lora_train.harn",
474    "models/recommend" => "stdlib/cli/models/recommend.harn",
475    "models/test" => "stdlib/cli/models/test.harn",
476    "precompile" => "stdlib/cli/precompile.harn",
477    "providers/cache_probe" => "stdlib/cli/providers/cache_probe.harn",
478    "providers/catalog" => "stdlib/cli/providers/catalog.harn",
479    "providers/probe" => "stdlib/cli/providers/probe.harn",
480    "providers/recommend" => "stdlib/cli/providers/recommend.harn",
481    "providers/tool_probe" => "stdlib/cli/providers/tool_probe.harn",
482    "providers/tool_scorecard" => "stdlib/cli/providers/tool_scorecard.harn",
483    "routes" => "stdlib/cli/routes.harn",
484    "runs/export_training" => "stdlib/cli/runs/export_training.harn",
485    "scan" => "stdlib/cli/scan.harn",
486    "scaffold/init" => "stdlib/cli/scaffold/init.harn",
487    "scaffold/tool_new" => "stdlib/cli/scaffold/tool_new.harn",
488    "trace_import" => "stdlib/cli/trace_import.harn",
489    "try" => "stdlib/cli/try.harn",
490    "version" => "stdlib/cli/version.harn",
491]);
492
493pub fn get_stdlib_source(module: &str) -> Option<&'static str> {
494    STDLIB_SOURCES
495        .iter()
496        .find_map(|entry| (entry.module == module).then_some(entry.source))
497}
498
499/// Builtins a stdlib module re-exports under its own name, so
500/// `import { assert_eq } from "std/testing"` resolves.
501///
502/// Some of the standard library is implemented in Rust rather than Harn — the
503/// value differ behind `assert_eq` needs to walk the runtime representation of
504/// a value, which Harn source cannot do. Those builtins are callable without an
505/// import, but a reader who has just typed `import { assert_throws } from
506/// "std/testing"` has every reason to expect its sibling `assert_eq` to come
507/// from the same place, and no reason to know which side of the Rust/Harn line
508/// a given assertion happens to fall on. This table erases that seam: the
509/// module's export surface is its `pub fn`s plus the names listed here.
510///
511/// The list is explicit rather than derived from the builtins' `category`
512/// metadata: a category is a free-form label for docs and observability, and an
513/// export surface is an API contract. Deriving one from the other would let an
514/// unrelated metadata edit silently add or remove a public export.
515///
516/// `harn_vm::stdlib::tests` pins every name here to a registered builtin, so an
517/// entry cannot rot into a name that no longer exists.
518pub fn builtin_reexports(module: &str) -> &'static [&'static str] {
519    match module {
520        "testing" => &[
521            "assert",
522            "assert_approx",
523            "assert_eq",
524            "assert_matches",
525            "assert_ne",
526            "value_diff",
527        ],
528        _ => &[],
529    }
530}
531
532/// Find an embedded CLI subcommand script by name. Returns the embedded
533/// source string when present, or `None` if no script with that name is
534/// registered in [`STDLIB_CLI_SCRIPTS`].
535pub fn find_cli_script(name: &str) -> Option<&'static str> {
536    STDLIB_CLI_SCRIPTS
537        .iter()
538        .find_map(|entry| (entry.name == name).then_some(entry.source))
539}
540
541pub fn get_stdlib_prompt_asset(path: &str) -> Option<&'static str> {
542    let path = path.strip_prefix("std/").unwrap_or(path);
543    STDLIB_PROMPT_ASSETS
544        .iter()
545        .find_map(|entry| (entry.path == path).then_some(entry.source))
546}
547
548pub fn public_functions_for_module(module: &str) -> Vec<StdlibPublicFunction> {
549    let Some(source) = get_stdlib_source(module) else {
550        return Vec::new();
551    };
552    public_functions_from_source(source)
553}
554
555pub fn entrypoint_modules() -> Vec<StdlibEntrypointModule> {
556    STDLIB_SOURCES
557        .iter()
558        .filter_map(|entry| {
559            entrypoint_category_from_source(entry.source).map(|category| StdlibEntrypointModule {
560                import_path: format!("std/{}", entry.module),
561                category,
562            })
563        })
564        .collect()
565}
566
567fn entrypoint_category_from_source(source: &str) -> Option<String> {
568    for line in source.lines() {
569        let line = line.trim();
570        if line.is_empty() {
571            continue;
572        }
573        if let Some(category) = line.strip_prefix("// @harn-entrypoint-category ") {
574            let category = category.trim();
575            return (!category.is_empty()).then(|| category.to_string());
576        }
577        if !line.starts_with("//") {
578            return None;
579        }
580    }
581    None
582}
583
584fn public_functions_from_source(source: &str) -> Vec<StdlibPublicFunction> {
585    let mut out = Vec::new();
586    let mut doc: Option<String> = None;
587    let lines = source.lines().collect::<Vec<_>>();
588    let mut index = 0usize;
589    while index < lines.len() {
590        let line = lines[index].trim();
591        if line.starts_with("/**") {
592            let (parsed, next) = parse_harndoc(&lines, index);
593            doc = parsed;
594            index = next;
595            continue;
596        }
597        if line.starts_with("pub fn ") {
598            let (signature_line, next) = collect_public_function_signature(&lines, index);
599            if let Some(function) = parse_public_function_line(&signature_line, doc.take()) {
600                out.push(function);
601                index = next;
602                continue;
603            }
604        }
605        if let Some(function) = parse_public_function_line(line, doc.take()) {
606            out.push(function);
607        } else if !line.is_empty() && !line.starts_with("//") {
608            doc = None;
609        }
610        index += 1;
611    }
612    out
613}
614
615fn collect_public_function_signature(lines: &[&str], start: usize) -> (String, usize) {
616    let mut parts = Vec::new();
617    let mut index = start;
618    while index < lines.len() {
619        parts.push(lines[index].trim().to_string());
620        let candidate = parts.join(" ");
621        if public_function_signature_complete(&candidate) {
622            return (candidate, index + 1);
623        }
624        index += 1;
625    }
626    (parts.join(" "), index)
627}
628
629fn public_function_signature_complete(line: &str) -> bool {
630    let Some(rest) = line.strip_prefix("pub fn ") else {
631        return false;
632    };
633    let Some((_, after_paren)) = rest.split_once('(') else {
634        return false;
635    };
636    matching_paren_len(after_paren).is_some()
637}
638
639fn parse_harndoc(lines: &[&str], start: usize) -> (Option<String>, usize) {
640    let mut parts = Vec::new();
641    let mut index = start;
642    while index < lines.len() {
643        let mut line = lines[index].trim();
644        if index == start {
645            line = line.trim_start_matches("/**").trim();
646        }
647        let done = line.ends_with("*/");
648        line = line.trim_end_matches("*/").trim();
649        line = line.trim_start_matches('*').trim();
650        if !line.is_empty() {
651            parts.push(line.to_string());
652        }
653        index += 1;
654        if done {
655            break;
656        }
657    }
658    let text = parts.join("\n").trim().to_string();
659    ((!text.is_empty()).then_some(text), index)
660}
661
662#[expect(
663    clippy::string_slice,
664    reason = "bounds come from str::find and char_indices"
665)]
666fn parse_public_function_line(line: &str, doc: Option<String>) -> Option<StdlibPublicFunction> {
667    let rest = line.strip_prefix("pub fn ")?.trim();
668    let name_end = rest.find('(')?;
669    let name = rest[..name_end].trim();
670    if name.is_empty() {
671        return None;
672    }
673    let params_start = name_end + 1;
674    let params_len = matching_paren_len(&rest[params_start..])?;
675    let params = &rest[params_start..params_start + params_len];
676    let after = rest[params_start + params_len + 1..].trim();
677    let return_type = after
678        .strip_prefix("->")
679        .and_then(|tail| tail.split('{').next())
680        .map(str::trim)
681        .filter(|value| !value.is_empty());
682    let signature = match return_type {
683        Some(ret) => format!("{name}({params}) -> {ret}"),
684        None => format!("{name}({params})"),
685    };
686    let param_parts = split_top_level_params(params);
687    let total_params = param_parts
688        .iter()
689        .filter(|param| !param.trim().is_empty())
690        .count();
691    let variadic = param_parts
692        .iter()
693        .any(|param| param.trim_start().starts_with("..."));
694    let required_params = param_parts
695        .iter()
696        .filter(|param| {
697            let param = param.trim();
698            !param.is_empty() && !param.contains('=') && !param.starts_with("...")
699        })
700        .count();
701    Some(StdlibPublicFunction {
702        name: name.to_string(),
703        signature,
704        required_params,
705        total_params,
706        variadic,
707        doc,
708    })
709}
710
711fn matching_paren_len(input: &str) -> Option<usize> {
712    let mut depth = 1usize;
713    for (offset, ch) in input.char_indices() {
714        match ch {
715            '(' | '[' | '{' => depth += 1,
716            ')' | ']' | '}' => {
717                depth = depth.saturating_sub(1);
718                if depth == 0 {
719                    return Some(offset);
720                }
721            }
722            _ => {}
723        }
724    }
725    None
726}
727
728#[expect(
729    clippy::string_slice,
730    reason = "offsets come from char_indices and 1-byte ','"
731)]
732fn split_top_level_params(params: &str) -> Vec<&str> {
733    let mut out = Vec::new();
734    let mut depth = 0isize;
735    let mut start = 0usize;
736    for (offset, ch) in params.char_indices() {
737        match ch {
738            '(' | '[' | '{' => depth += 1,
739            ')' | ']' | '}' => depth -= 1,
740            ',' if depth == 0 => {
741                out.push(&params[start..offset]);
742                start = offset + 1;
743            }
744            _ => {}
745        }
746    }
747    out.push(&params[start..]);
748    out
749}
750
751#[cfg(test)]
752mod tests {
753    use std::collections::BTreeSet;
754
755    use super::{
756        entrypoint_modules, find_cli_script, get_stdlib_prompt_asset, get_stdlib_source,
757        matching_paren_len, parse_public_function_line, public_functions_for_module,
758        STDLIB_CLI_SCRIPTS, STDLIB_PROMPT_ASSETS, STDLIB_SOURCES,
759    };
760
761    #[test]
762    fn stdlib_sources_are_non_empty() {
763        for entry in STDLIB_SOURCES {
764            assert!(
765                !entry.source.trim().is_empty(),
766                "{} should have non-empty source",
767                entry.module
768            );
769        }
770    }
771
772    #[test]
773    fn cli_scripts_are_non_empty_and_uniquely_named() {
774        let mut seen = BTreeSet::new();
775        for entry in STDLIB_CLI_SCRIPTS {
776            assert!(
777                !entry.source.trim().is_empty(),
778                "cli/{} should have non-empty source",
779                entry.name
780            );
781            assert!(
782                seen.insert(entry.name),
783                "cli/{} is registered more than once in STDLIB_CLI_SCRIPTS",
784                entry.name
785            );
786        }
787    }
788
789    #[test]
790    fn find_cli_script_round_trips() {
791        for entry in STDLIB_CLI_SCRIPTS {
792            assert_eq!(find_cli_script(entry.name), Some(entry.source));
793        }
794        assert!(find_cli_script("not-a-real-script").is_none());
795    }
796
797    #[test]
798    fn stdlib_source_names_are_unique() {
799        let mut names = BTreeSet::new();
800        for entry in STDLIB_SOURCES {
801            assert!(names.insert(entry.module), "duplicate {}", entry.module);
802        }
803    }
804
805    #[test]
806    fn stdlib_prompt_assets_are_non_empty() {
807        for entry in STDLIB_PROMPT_ASSETS {
808            assert!(
809                !entry.source.trim().is_empty(),
810                "{} should have non-empty prompt asset source",
811                entry.path
812            );
813        }
814    }
815
816    #[test]
817    fn stdlib_prompt_asset_paths_are_unique() {
818        let mut paths = BTreeSet::new();
819        for entry in STDLIB_PROMPT_ASSETS {
820            assert!(paths.insert(entry.path), "duplicate {}", entry.path);
821        }
822    }
823
824    #[test]
825    fn key_stdlib_modules_resolve() {
826        for module in [
827            "context",
828            "context/maintenance",
829            "context/eval",
830            "eval/stats",
831            "eval/remote_fanout",
832            "eval/agreement",
833            "edit",
834            "verification",
835            "disclosure",
836            "artifact/web",
837            "command",
838            "waitpoint",
839            "llm/handlers",
840            "media/asset",
841            "media/composition",
842            "model_job",
843            "model_job/contracts",
844            "model_job/runtime",
845            "model_job/testing",
846            "model_job/comfyui",
847            "model_job/openai",
848            "ui",
849            "ui/contracts",
850            "ui/renderer",
851            "ui/testing",
852            "llm/tool_middleware",
853            "llm/tool_binder",
854            "llm/missing_tool_call",
855            "llm/tool_shape",
856            "llm/dialects",
857            "llm/ensemble",
858            "llm/rerank",
859            "personas/prelude",
860            "personas/bulletins",
861            "agent/host_tools",
862            "agent/host_injection",
863            "agent/tool_lifecycle",
864            "agent/user",
865            "agent/governors",
866            "agent/guardrails",
867            "cli",
868            "cli/envelope",
869            "cli/models/batch_artifacts",
870            "cli/models/batch_cancel",
871            "cli/models/batch_download",
872            "cli/models/batch_lifecycle",
873            "cli/models/batch_rejoin",
874            "cli/models/batch_status",
875            "cli/models/batch_submit",
876            "cli/models/batch_transport",
877            "cli/models/lora_render",
878            "llm/optimize",
879            "llm/judge",
880            "llm/faithfulness",
881            "llm/refine",
882            "connectors/shared",
883            "connectors/github",
884            "connectors/linear",
885            "connectors/notion",
886            "connectors/slack",
887            "triage",
888            "dashboard/jobs",
889            "ui_resource",
890            "host_conditions",
891            "host_lease",
892        ] {
893            assert!(
894                get_stdlib_source(module).is_some(),
895                "std/{module} should resolve"
896            );
897        }
898    }
899
900    #[test]
901    fn key_stdlib_prompt_assets_resolve() {
902        for path in [
903            "std/agent/prompts/tool_contract_text.harn.prompt",
904            "std/agent/prompts/default_nudge.harn.prompt",
905            "std/agent/prompts/completion_judge_default.harn.prompt",
906            "std/workflow/prompts/stage.harn.prompt",
907            "std/orchestration/prompts/compaction_summary.harn.prompt",
908            "std/orchestration/prompts/compaction_policy_replacement.harn.prompt",
909        ] {
910            assert!(
911                get_stdlib_prompt_asset(path).is_some(),
912                "{path} should resolve"
913            );
914        }
915    }
916
917    #[test]
918    fn public_function_catalog_derives_signatures_from_harn_source() {
919        let exports = public_functions_for_module("workflow/execute");
920        assert_eq!(exports.len(), 1);
921        assert_eq!(exports[0].name, "workflow_execute");
922        assert_eq!(
923            exports[0].signature,
924            "workflow_execute(harness: Harness, task, graph, artifacts = nil, options = nil)"
925        );
926        assert_eq!(exports[0].required_params, 3);
927        assert_eq!(exports[0].total_params, 5);
928    }
929
930    #[test]
931    fn command_stdlib_module_exports_step_helpers() {
932        let exports = public_functions_for_module("command")
933            .into_iter()
934            .map(|function| function.name)
935            .collect::<BTreeSet<_>>();
936        for name in [
937            "command_run",
938            "command_wait",
939            "command_wait_for_output",
940            "command_cancel",
941            "command_run_streaming",
942            "command_output_tail",
943            "command_json",
944            "command_json_step",
945            "command_try",
946            "command_step",
947            "command_steps_append",
948            "command_last_failed_step",
949            "command_step_ref",
950        ] {
951            assert!(exports.contains(name), "std/command should export {name}");
952        }
953    }
954
955    #[test]
956    fn disclosure_stdlib_module_exports_render_helpers() {
957        let exports = public_functions_for_module("disclosure")
958            .into_iter()
959            .map(|function| function.name)
960            .collect::<BTreeSet<_>>();
961        assert!(
962            exports.contains("render"),
963            "std/disclosure should export render"
964        );
965        assert!(
966            exports.contains("git_trailers"),
967            "std/disclosure should export git_trailers"
968        );
969        assert!(
970            exports.contains("slack_message_disclosure"),
971            "std/disclosure should export slack_message_disclosure"
972        );
973        assert!(
974            exports.contains("append_git_trailers"),
975            "std/disclosure should export append_git_trailers"
976        );
977    }
978
979    #[test]
980    fn async_stdlib_exports_predicate_backoff_name_only() {
981        let exports = public_functions_for_module("async")
982            .into_iter()
983            .map(|function| function.name)
984            .collect::<BTreeSet<_>>();
985        assert!(
986            exports.contains("retry_predicate_with_backoff"),
987            "std/async should export retry_predicate_with_backoff"
988        );
989        assert!(
990            !exports.contains("retry_with_backoff"),
991            "std/async should not retain the old retry_with_backoff export"
992        );
993    }
994
995    #[test]
996    fn signal_stdlib_module_exports_interrupt_helpers() {
997        let exports = public_functions_for_module("signal")
998            .into_iter()
999            .map(|function| function.name)
1000            .collect::<BTreeSet<_>>();
1001        for name in [
1002            "on_interrupt",
1003            "off_interrupt",
1004            "interrupted",
1005            "with_interrupt",
1006        ] {
1007            assert!(exports.contains(name), "std/signal should export {name}");
1008        }
1009    }
1010
1011    #[test]
1012    fn git_stdlib_module_exports_local_wrappers() {
1013        let exports = public_functions_for_module("git")
1014            .into_iter()
1015            .map(|function| function.name)
1016            .collect::<BTreeSet<_>>();
1017        for name in [
1018            "git_run",
1019            "git_status",
1020            "git_current_branch",
1021            "git_log",
1022            "git_switch",
1023            "git_pull_ff_only",
1024            "git_find_tool",
1025            "git_run_tool",
1026            "git_tools",
1027            "git_toolbox_tools",
1028        ] {
1029            assert!(exports.contains(name), "std/git should export {name}");
1030        }
1031    }
1032
1033    #[test]
1034    fn agent_workers_exports_suspend_resume_wrappers() {
1035        let exports = public_functions_for_module("agent/workers");
1036        let suspend = exports
1037            .iter()
1038            .find(|function| function.name == "suspend_agent")
1039            .expect("std/agent/workers should export suspend_agent");
1040        assert_eq!(
1041            suspend.signature,
1042            "suspend_agent(agents: HarnessAgent, worker, reason = \"\", options = nil)"
1043        );
1044        assert_eq!(suspend.required_params, 2);
1045        assert_eq!(suspend.total_params, 4);
1046
1047        let resume = exports
1048            .iter()
1049            .find(|function| function.name == "resume_agent")
1050            .expect("std/agent/workers should export resume_agent");
1051        assert_eq!(
1052            resume.signature,
1053            "resume_agent( agents: HarnessAgent, worker_or_snapshot, resume_input = nil, continue_transcript = true, ) -> any"
1054        );
1055        assert_eq!(resume.required_params, 2);
1056        assert_eq!(resume.total_params, 4);
1057
1058        let stop = exports
1059            .iter()
1060            .find(|function| function.name == "agent_stop")
1061            .expect("std/agent/workers should export agent_stop");
1062        assert_eq!(
1063            stop.signature,
1064            "agent_stop(agents: HarnessAgent, worker, options: AgentStopOptions? = nil)"
1065        );
1066        assert_eq!(stop.required_params, 2);
1067        assert_eq!(stop.total_params, 3);
1068
1069        let parse_resume = exports
1070            .iter()
1071            .find(|function| function.name == "parse_resume_conditions")
1072            .expect("std/agent/workers should export parse_resume_conditions");
1073        assert_eq!(
1074            parse_resume.signature,
1075            "parse_resume_conditions(agents: HarnessAgent, conditions = nil) -> ResumeConditions?"
1076        );
1077        assert_eq!(parse_resume.required_params, 1);
1078        assert_eq!(parse_resume.total_params, 2);
1079
1080        let lifecycle = exports
1081            .iter()
1082            .find(|function| function.name == "agent_lifecycle_tools")
1083            .expect("std/agent/workers should export agent_lifecycle_tools");
1084        assert_eq!(
1085            lifecycle.signature,
1086            "agent_lifecycle_tools(agents: HarnessAgent, registry = nil, options = nil)"
1087        );
1088        assert_eq!(lifecycle.required_params, 1);
1089        assert_eq!(lifecycle.total_params, 3);
1090    }
1091
1092    #[test]
1093    fn tui_stdlib_module_exports_terminal_helpers() {
1094        let exports = public_functions_for_module("tui")
1095            .into_iter()
1096            .map(|function| function.name)
1097            .collect::<BTreeSet<_>>();
1098        for name in ["page", "terminal_width", "rule", "clear", "select_from"] {
1099            assert!(exports.contains(name), "std/tui should export {name}");
1100        }
1101    }
1102
1103    #[test]
1104    fn semver_stdlib_module_exports_release_helpers() {
1105        let exports = public_functions_for_module("semver")
1106            .into_iter()
1107            .map(|function| function.name)
1108            .collect::<BTreeSet<_>>();
1109        for name in [
1110            "strip_v",
1111            "add_v",
1112            "is_v_semver",
1113            "is_v_release_semver",
1114            "parse",
1115            "parse_release",
1116            "is_prerelease_identifier",
1117            "is_prerelease",
1118            "compare_release",
1119            "max_canonical_tag",
1120            "next",
1121            "bump_type",
1122            "version_from_release_branch",
1123            "version_from_tag",
1124        ] {
1125            assert!(exports.contains(name), "std/semver should export {name}");
1126        }
1127    }
1128
1129    #[test]
1130    fn changelog_stdlib_module_exports_typed_primitives() {
1131        let exports = public_functions_for_module("changelog")
1132            .into_iter()
1133            .map(|function| function.name)
1134            .collect::<BTreeSet<_>>();
1135        for name in [
1136            "changelog_validate_categories",
1137            "changelog_parse_fragment",
1138            "changelog_order_fragments",
1139            "changelog_normalize_fragment_body",
1140            "changelog_assemble_fragments",
1141            "changelog_parse_sections",
1142            "changelog_find_section",
1143            "changelog_merge_unreleased",
1144        ] {
1145            assert!(exports.contains(name), "std/changelog should export {name}");
1146        }
1147    }
1148
1149    #[test]
1150    fn text_stdlib_module_exports_regex_and_pad_helpers() {
1151        let exports = public_functions_for_module("text")
1152            .into_iter()
1153            .map(|function| function.name)
1154            .collect::<BTreeSet<_>>();
1155        for name in [
1156            "pad_left",
1157            "pad_right",
1158            "repeat_string",
1159            "regex_first_capture",
1160            "regex_capture_groups",
1161            "regex_all_first_captures",
1162        ] {
1163            assert!(exports.contains(name), "std/text should export {name}");
1164        }
1165    }
1166
1167    #[test]
1168    fn harn_entrypoint_catalog_is_declared_by_stdlib_sources() {
1169        let modules = entrypoint_modules();
1170        let entries = modules
1171            .iter()
1172            .map(|module| (module.import_path.as_str(), module.category.as_str()))
1173            .collect::<BTreeSet<_>>();
1174        for entry in [
1175            ("std/agent/loop", "agent.stdlib"),
1176            ("std/agent/primitives", "agent.stdlib"),
1177            ("std/workflow/execute", "workflow.stdlib"),
1178        ] {
1179            assert!(entries.contains(&entry), "{entry:?} should be declared");
1180        }
1181    }
1182
1183    #[test]
1184    fn matching_paren_len_closes_on_every_bracket_kind() {
1185        // Each closer kind must terminate the scan once depth returns to zero,
1186        // mirroring the symmetric opener arm and `split_top_level_params`.
1187        assert_eq!(matching_paren_len("a, b)"), Some(4));
1188        assert_eq!(matching_paren_len("x: [int])"), Some(8));
1189        assert_eq!(matching_paren_len("x: {a: int})"), Some(11));
1190        // A top-level `]`/`}` is the matching close for the consumed opener and
1191        // must return rather than scanning to the end and yielding `None`.
1192        assert_eq!(matching_paren_len("x]"), Some(1));
1193        assert_eq!(matching_paren_len("x}"), Some(1));
1194        assert_eq!(matching_paren_len("unterminated"), None);
1195    }
1196
1197    #[test]
1198    fn parse_public_function_line_handles_record_typed_params() {
1199        let parsed =
1200            parse_public_function_line("pub fn configure(opts: {retries: int}) -> bool", None)
1201                .expect("signature with a record-typed parameter should parse");
1202        assert_eq!(parsed.name, "configure");
1203        assert_eq!(parsed.signature, "configure(opts: {retries: int}) -> bool");
1204        assert_eq!(parsed.total_params, 1);
1205        assert_eq!(parsed.required_params, 1);
1206    }
1207}