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    "dev/agent_gates" => "stdlib/dev/agent_gates.harn",
65    "dev/agent_gate_bindings" => "stdlib/dev/agent_gate_bindings.harn",
66    "rules" => "stdlib/stdlib_rules.harn",
67    "lint" => "stdlib/stdlib_lint.harn",
68    "artifact/web" => "stdlib/artifact/web.harn",
69    "collections" => "stdlib/stdlib_collections.harn",
70    "math" => "stdlib/stdlib_math.harn",
71    "slug" => "stdlib/stdlib_slug.harn",
72    "path" => "stdlib/stdlib_path.harn",
73    "fs" => "stdlib/stdlib_fs.harn",
74    "run_artifacts" => "stdlib/stdlib_run_artifacts.harn",
75    "artifacts/typed" => "stdlib/artifacts/typed.harn",
76    "os" => "stdlib/stdlib_os.harn",
77    "json" => "stdlib/stdlib_json.harn",
78    "json/stream" => "stdlib/stdlib_json_stream.harn",
79    "xml" => "stdlib/stdlib_xml.harn",
80    "cache" => "stdlib/stdlib_cache.harn",
81    "predicate" => "stdlib/stdlib_predicate.harn",
82    "observability" => "stdlib/stdlib_observability.harn",
83    "timing" => "stdlib/stdlib_timing.harn",
84    "verification" => "stdlib/stdlib_verification.harn",
85    "tools" => "stdlib/stdlib_tools.harn",
86    "composition" => "stdlib/stdlib_composition.harn",
87    "web" => "stdlib/stdlib_web.harn",
88    "graphql" => "stdlib/stdlib_graphql.harn",
89    "code_librarian" => "stdlib/stdlib_code_librarian.harn",
90    "schema" => "stdlib/stdlib_schema.harn",
91    "schema/contracts" => "stdlib/schema/contracts.harn",
92    "identity" => "stdlib/stdlib_identity.harn",
93    "disclosure" => "stdlib/stdlib_disclosure.harn",
94    "testing" => "stdlib/stdlib_testing.harn",
95    "files" => "stdlib/stdlib_files.harn",
96    "document" => "stdlib/stdlib_document.harn",
97    "vision" => "stdlib/stdlib_vision.harn",
98    "context" => "stdlib/stdlib_context.harn",
99    "context/artifact_types" => "stdlib/context/artifact_types.harn",
100    "context/maintenance" => "stdlib/context/maintenance.harn",
101    "context/eval" => "stdlib/context/eval.harn",
102    "context/disclosure" => "stdlib/context/disclosure.harn",
103    "eval/stats" => "stdlib/stdlib_eval_stats.harn",
104    "eval/remote_fanout" => "stdlib/eval/remote_fanout.harn",
105    "eval/sequential" => "stdlib/eval/sequential.harn",
106    "eval/experiment" => "stdlib/eval/experiment.harn",
107    "eval/experiment/contracts" => "stdlib/eval/experiment/contracts.harn",
108    "eval/experiment/assignment" => "stdlib/eval/experiment/assignment.harn",
109    "eval/experiment/decision" => "stdlib/eval/experiment/decision.harn",
110    "eval/hypothesis" => "stdlib/eval/hypothesis.harn",
111    "eval/hypothesis/capabilities" => "stdlib/eval/hypothesis/capabilities.harn",
112    "eval/hypothesis/contracts" => "stdlib/eval/hypothesis/contracts.harn",
113    "eval/hypothesis/compiler" => "stdlib/eval/hypothesis/compiler.harn",
114    "eval/hypothesis/intent_boundary" => "stdlib/eval/hypothesis/intent_boundary.harn",
115    "eval/hypothesis/ledger_contracts" => "stdlib/eval/hypothesis/ledger_contracts.harn",
116    "eval/hypothesis/ledger" => "stdlib/eval/hypothesis/ledger.harn",
117    "eval/hypothesis/planner" => "stdlib/eval/hypothesis/planner.harn",
118    "eval/hypothesis/report" => "stdlib/eval/hypothesis/report.harn",
119    "eval/hypothesis/policies" => "stdlib/eval/hypothesis/policies.harn",
120    "eval/hypothesis/workflow_contracts" => "stdlib/eval/hypothesis/workflow_contracts.harn",
121    "eval/hypothesis/workflow" => "stdlib/eval/hypothesis/workflow.harn",
122    "eval/agreement" => "stdlib/stdlib_eval_agreement.harn",
123    "runtime" => "stdlib/stdlib_runtime.harn",
124    "runtime/content_fingerprint" => "stdlib/runtime/content_fingerprint.harn",
125    "runtime/install" => "stdlib/runtime/install.harn",
126    "runtime/bootstrap" => "stdlib/runtime/bootstrap.harn",
127    "io" => "stdlib/stdlib_io.harn",
128    "net" => "stdlib/stdlib_net.harn",
129    "command" => "stdlib/stdlib_command.harn",
130    "command/foundation" => "stdlib/command/foundation.harn",
131    "command/output" => "stdlib/command/output.harn",
132    "command/results" => "stdlib/command/results.harn",
133    "command/shell" => "stdlib/command/shell.harn",
134    "command/step_ref" => "stdlib/command/step_ref.harn",
135    "runner_pool" => "stdlib/stdlib_runner_pool.harn",
136    "verification_types" => "stdlib/verification_types.harn",
137    "verification_core" => "stdlib/verification_core.harn",
138    "verification_targets" => "stdlib/verification_targets.harn",
139    "verification_ladder" => "stdlib/verification_ladder.harn",
140    "verification_public" => "stdlib/verification_public.harn",
141    "signal" => "stdlib/stdlib_signal.harn",
142    "net_policy" => "stdlib/stdlib_net_policy.harn",
143    "review" => "stdlib/stdlib_review.harn",
144    "experiments" => "stdlib/stdlib_experiments.harn",
145    "project" => "stdlib/stdlib_project.harn",
146    "prompt_library" => "stdlib/stdlib_prompt_library.harn",
147    "async" => "stdlib/stdlib_async.harn",
148    "poll" => "stdlib/stdlib_poll.harn",
149    "coerce" => "stdlib/stdlib_coerce.harn",
150    "settled" => "stdlib/stdlib_settled.harn",
151    "abort" => "stdlib/stdlib_abort.harn",
152    "cli" => "stdlib/stdlib_cli.harn",
153    "cli/argparse" => "stdlib/cli/argparse.harn",
154    "cli/envelope" => "stdlib/cli/envelope.harn",
155    "cli/render" => "stdlib/cli/render.harn",
156    "cli/models/batch_artifacts" => "stdlib/cli/models/batch_artifacts.harn",
157    "cli/models/batch_cancel" => "stdlib/cli/models/batch_cancel.harn",
158    "cli/models/batch_download" => "stdlib/cli/models/batch_download.harn",
159    "cli/models/batch_lifecycle" => "stdlib/cli/models/batch_lifecycle.harn",
160    "cli/models/batch_rejoin" => "stdlib/cli/models/batch_rejoin.harn",
161    "cli/models/batch_status" => "stdlib/cli/models/batch_status.harn",
162    "cli/models/batch_submit" => "stdlib/cli/models/batch_submit.harn",
163    "cli/models/batch_transport" => "stdlib/cli/models/batch_transport.harn",
164    "cli/models/lora_render" => "stdlib/cli/models/lora_render.harn",
165    "cli/paths" => "stdlib/cli/paths.harn",
166    "cli/providers/contracts" => "stdlib/cli/providers/contracts.harn",
167    "gha" => "stdlib/stdlib_gha.harn",
168    "tui" => "stdlib/stdlib_tui.harn",
169    "jsonl" => "stdlib/stdlib_jsonl.harn",
170    "config" => "stdlib/stdlib_config.harn",
171    "calendar" => "stdlib/stdlib_calendar.harn",
172    "external_action" => "stdlib/stdlib_external_action.harn",
173    "external_action/vocabulary" => "stdlib/external_action/vocabulary.harn",
174    "external_action/contracts" => "stdlib/external_action/contracts.harn",
175    "external_action/disclosure" => "stdlib/external_action/disclosure.harn",
176    "external_action/activity" => "stdlib/external_action/activity.harn",
177    "external_action/policy" => "stdlib/external_action/policy.harn",
178    "external_action/runtime" => "stdlib/external_action/runtime.harn",
179    "external_action/testing" => "stdlib/external_action/testing.harn",
180    "agents" => "stdlib/stdlib_agents.harn",
181    "lifecycle/pool" => "stdlib/lifecycle/pool.harn",
182    "lifecycle/combinators" => "stdlib/lifecycle/combinators.harn",
183    "lifecycle/on_budget" => "stdlib/lifecycle/on_budget.harn",
184    "lifecycle/progress" => "stdlib/lifecycle/progress.harn",
185    "agent/prompts" => "stdlib/agent/prompts.harn",
186    "llm/media" => "stdlib/llm/media.harn",
187    "media/asset" => "stdlib/media/asset.harn",
188    "media/composition" => "stdlib/media/composition.harn",
189    "model_job" => "stdlib/stdlib_model_job.harn",
190    "model_job/contracts" => "stdlib/model_job/contracts.harn",
191    "model_job/runtime" => "stdlib/model_job/runtime.harn",
192    "model_job/testing" => "stdlib/model_job/testing.harn",
193    "model_job/comfyui" => "stdlib/model_job/comfyui.harn",
194    "model_job/openai" => "stdlib/model_job/openai.harn",
195    "portable" => "stdlib/stdlib_portable.harn",
196    "ui" => "stdlib/stdlib_ui.harn",
197    "ui/contracts" => "stdlib/ui/contracts.harn",
198    "ui/renderer" => "stdlib/ui/renderer.harn",
199    "ui/testing" => "stdlib/ui/testing.harn",
200    "llm/options" => "stdlib/llm/options.harn",
201    "llm/provider_names" => "stdlib/llm/provider_names.harn",
202    "llm/catalog" => "stdlib/llm/catalog.harn",
203    "llm/cache_conformance" => "stdlib/llm/cache_conformance.harn",
204    "llm/safe" => "stdlib/llm/safe.harn",
205    "llm/envelope" => "stdlib/llm/envelope.harn",
206    "llm/speed" => "stdlib/llm/speed.harn",
207    "llm/chat_session" => "stdlib/llm/chat_session.harn",
208    "llm/caller" => "stdlib/llm/caller.harn",
209    "harness/policy" => "stdlib/harness/policy.harn",
210    "llm/budget" => "stdlib/llm/budget.harn",
211    "llm/tokenizer" => "stdlib/llm/tokenizer.harn",
212    "llm/economics" => "stdlib/llm/economics.harn",
213    "llm/prompts" => "stdlib/llm/prompts.harn",
214    "llm/defaults" => "stdlib/llm/defaults.harn",
215    "llm/handlers" => "stdlib/llm/handlers.harn",
216    "llm/handler_cache_events" => "stdlib/llm/handler_cache_events.harn",
217    "llm/resilience" => "stdlib/llm/resilience.harn",
218    "llm/tool_telemetry" => "stdlib/llm/tool_telemetry.harn",
219    "llm/tool_middleware" => "stdlib/llm/tool_middleware.harn",
220    "llm/tool_binder" => "stdlib/llm/tool_binder.harn",
221    "llm/structural_validator" => "stdlib/llm/structural_validator.harn",
222    "llm/missing_tool_call" => "stdlib/llm/missing_tool_call.harn",
223    "llm/call_shape" => "stdlib/llm/call_shape.harn",
224    "llm/tool_shape" => "stdlib/llm/tool_shape.harn",
225    "llm/dialects" => "stdlib/llm/dialects.harn",
226    "llm/tool_parse" => "stdlib/llm/tool_parse.harn",
227    "llm/tool_parse_body" => "stdlib/llm/tool_parse_body.harn",
228    "llm/tool_parse_envelope" => "stdlib/llm/tool_parse_envelope.harn",
229    "llm/tool_parse_json_support" => "stdlib/llm/tool_parse_json_support.harn",
230    "llm/tool_parse_protocol" => "stdlib/llm/tool_parse_protocol.harn",
231    "llm/tool_parse_provider" => "stdlib/llm/tool_parse_provider.harn",
232    "llm/tool_parse_result" => "stdlib/llm/tool_parse_result.harn",
233    "llm/tool_parse_scan_spec" => "stdlib/llm/tool_parse_scan_spec.harn",
234    "llm/scope_classifier" => "stdlib/llm/scope_classifier.harn",
235    "llm/refine" => "stdlib/llm/refine.harn",
236    "llm/ensemble" => "stdlib/llm/ensemble.harn",
237    "llm/rerank" => "stdlib/llm/rerank.harn",
238    "agent/reasoning" => "stdlib/agent/reasoning.harn",
239    "agent/caller_transport" => "stdlib/agent/caller_transport.harn",
240    "agent/options" => "stdlib/agent/options.harn",
241    "agent/options_types" => "stdlib/agent/options_types.harn",
242    "agent/options_formats" => "stdlib/agent/options_formats.harn",
243    "agent/options_surface" => "stdlib/agent/options_surface.harn",
244    "agent/options_validation" => "stdlib/agent/options_validation.harn",
245    "agent/options_public" => "stdlib/agent/options_public.harn",
246    "agent/llm_dispatch" => "stdlib/agent/llm_dispatch.harn",
247    "agent/prefill" => "stdlib/agent/prefill.harn",
248    "agent/retry" => "stdlib/agent/retry.harn",
249    "llm/judge" => "stdlib/llm/judge.harn",
250    "llm/faithfulness" => "stdlib/llm/faithfulness.harn",
251    "llm/optimize" => "stdlib/llm/optimize.harn",
252    "agent/events" => "stdlib/agent/events.harn",
253    "agent/feedback" => "stdlib/agent/feedback.harn",
254    "agent/transcript" => "stdlib/agent/transcript.harn",
255    "agent/artifacts" => "stdlib/agent/artifacts.harn",
256    "agent/primitives" => "stdlib/agent/primitives.harn",
257    "agent/progress" => "stdlib/agent/progress.harn",
258    "agent/required_tools" => "stdlib/agent/required_tools.harn",
259    "agent/required_artifacts" => "stdlib/agent/required_artifacts.harn",
260    "agent/loop_turn_setup" => "stdlib/agent/loop_turn_setup.harn",
261    "agent/purpose_labels" => "stdlib/agent/purpose_labels.harn",
262    "agent/loop_purpose_labels" => "stdlib/agent/loop_purpose_labels.harn",
263    "agent/monologue_actuation" => "stdlib/agent/monologue_actuation.harn",
264    "agent/monologue_actuation_types" => "stdlib/agent/monologue_actuation_types.harn",
265    "agent/stall_types" => "stdlib/agent/stall_types.harn",
266    "agent/stall" => "stdlib/agent/stall.harn",
267    "agent/recurring_diagnostic" => "stdlib/agent/recurring_diagnostic.harn",
268    "agent/stall_config" => "stdlib/agent/stall_config.harn",
269    "agent/stall_checkpoint" => "stdlib/agent/stall_checkpoint.harn",
270    "agent/stall_feedback" => "stdlib/agent/stall_feedback.harn",
271    "agent/stall_action_observation" => "stdlib/agent/stall_action_observation.harn",
272    "agent/stall_observation" => "stdlib/agent/stall_observation.harn",
273    "agent/stall_verification" => "stdlib/agent/stall_verification.harn",
274    "agent/stall_detectors" => "stdlib/agent/stall_detectors.harn",
275    "agent/run_meter" => "stdlib/agent/run_meter.harn",
276    "agent/cut_landing" => "stdlib/agent/cut_landing.harn",
277    "agent/cut_rules" => "stdlib/agent/cut_rules.harn",
278    "agent/governors" => "stdlib/agent/governors.harn",
279    "agent/control" => "stdlib/agent/control.harn",
280    "agent/action_graph" => "stdlib/agent/action_graph.harn",
281    "agent/result_text" => "stdlib/agent/result_text.harn",
282    "agent/best_of_n" => "stdlib/agent/best_of_n.harn",
283    "agent/loop" => "stdlib/agent/loop.harn",
284    "agent/loop_support" => "stdlib/agent/loop_support.harn",
285    "agent/loop_call_budget" => "stdlib/agent/loop_call_budget.harn",
286    "agent/loop_call_resolution" => "stdlib/agent/loop_call_resolution.harn",
287    "agent/loop_await" => "stdlib/agent/loop_await.harn",
288    "agent/loop_denial_cutoff" => "stdlib/agent/loop_denial_cutoff.harn",
289    "agent/loop_result_status" => "stdlib/agent/loop_result_status.harn",
290    "agent/loop_foundation" => "stdlib/agent/loop_foundation.harn",
291    "agent/loop_lifecycle" => "stdlib/agent/loop_lifecycle.harn",
292    "agent/loop_provider_failure" => "stdlib/agent/loop_provider_failure.harn",
293    "agent/loop_audit_flushes" => "stdlib/agent/loop_audit_flushes.harn",
294    "agent/loop_tool_calls" => "stdlib/agent/loop_tool_calls.harn",
295    "agent/loop_resource_dispatch" => "stdlib/agent/loop_resource_dispatch.harn",
296    "agent/loop_turn_options" => "stdlib/agent/loop_turn_options.harn",
297    "agent/loop_turn_scope" => "stdlib/agent/loop_turn_scope.harn",
298    "agent/loop_turn_projection" => "stdlib/agent/loop_turn_projection.harn",
299    "agent/loop_internal" => "stdlib/agent/loop_internal.harn",
300    "agent/loop_run" => "stdlib/agent/loop_run.harn",
301    "agent/loop_post_turn" => "stdlib/agent/loop_post_turn.harn",
302    "agent/loop_finalize" => "stdlib/agent/loop_finalize.harn",
303    "agent/loop_terminal" => "stdlib/agent/loop_terminal.harn",
304    "agent/user" => "stdlib/agent/user.harn",
305    "agent/tool_search" => "stdlib/agent/tool_search.harn",
306    "agent/tool_annotations" => "stdlib/agent/tool_annotations.harn",
307    "agent/tool_lifecycle" => "stdlib/agent/tool_lifecycle.harn",
308    "agent/workers" => "stdlib/agent/workers.harn",
309    "agent/introspection" => "stdlib/agent/introspection.harn",
310    "agent/resume_by" => "stdlib/agent/resume_by.harn",
311    "agent/state" => "stdlib/agent/state.harn",
312    "agent/truncation" => "stdlib/agent/truncation.harn",
313    "agent/canon" => "stdlib/agent/canon.harn",
314    "agent/skills" => "stdlib/agent/skills.harn",
315    "agent/workspace_guidance" => "stdlib/agent/workspace_guidance.harn",
316    "agent/autocompact" => "stdlib/agent/autocompact.harn",
317    "agent/response_compaction" => "stdlib/agent/response_compaction.harn",
318    "agent/mcp" => "stdlib/agent/mcp.harn",
319    "agent/command_capture" => "stdlib/agent/command_capture.harn",
320    "agent/contracts" => "stdlib/agent/contracts.harn",
321    "agent/command_ledger" => "stdlib/agent/command_ledger.harn",
322    "agent/host_tools" => "stdlib/agent/host_tools.harn",
323    "agent/host_injection" => "stdlib/agent/host_injection.harn",
324    "agent/budget" => "stdlib/agent/budget.harn",
325    "agent/daemon" => "stdlib/agent/daemon.harn",
326    "agent/preflight" => "stdlib/agent/preflight.harn",
327    "agent/postturn" => "stdlib/agent/postturn.harn",
328    "agent/turn_end" => "stdlib/agent/turn_end.harn",
329    "agent/tool_surface" => "stdlib/agent/tool_surface.harn",
330    "agent/stance" => "stdlib/agent/stance.harn",
331    "agent/lanes" => "stdlib/agent/lanes.harn",
332    "agent/overlays" => "stdlib/agent/overlays.harn",
333    "agent/sitrep" => "stdlib/agent/sitrep.harn",
334    "agent/verdict" => "stdlib/agent/verdict.harn",
335    "agent/judge_internals" => "stdlib/agent/judge_internals.harn",
336    "agent/judge_itemization" => "stdlib/agent/judge_itemization.harn",
337    "agent/judge_contradiction" => "stdlib/agent/judge_contradiction.harn",
338    "agent/judge_arbitration" => "stdlib/agent/judge_arbitration.harn",
339    "agent/judge_evidence" => "stdlib/agent/judge_evidence.harn",
340    "agent/loop_await_turn" => "stdlib/agent/loop_await_turn.harn",
341    "agent/loop_structural_veto" => "stdlib/agent/loop_structural_veto.harn",
342    "agent/loop_skipped_dispatch" => "stdlib/agent/loop_skipped_dispatch.harn",
343    "agent/judge_verdict" => "stdlib/agent/judge_verdict.harn",
344    "agent/completion_gate" => "stdlib/agent/completion_gate.harn",
345    "agent/completion_review" => "stdlib/agent/completion_review.harn",
346    "agent/completion_requirements" => "stdlib/agent/completion_requirements.harn",
347    "agent/completion_claim" => "stdlib/agent/completion_claim.harn",
348    "agent/completion_evidence" => "stdlib/agent/completion_evidence.harn",
349    "agent/obligations" => "stdlib/agent/obligations.harn",
350    "agent/judge" => "stdlib/agent/judge.harn",
351    "agent/approval_review" => "stdlib/agent/approval_review.harn",
352    "agent/approval_review_calibration" => "stdlib/agent/approval_review_calibration.harn",
353    "agent/guardrails" => "stdlib/agent/guardrails.harn",
354    "agent/step_judge" => "stdlib/agent/step_judge.harn",
355    "agent/scratchpad" => "stdlib/agent/scratchpad.harn",
356    "agent/fact" => "stdlib/agent/fact.harn",
357    "agent/hypothesis" => "stdlib/agent/hypothesis.harn",
358    "agent/pattern_knowledge_values" => "stdlib/agent/pattern_knowledge_values.harn",
359    "agent/pattern_knowledge_curated" => "stdlib/agent/pattern_knowledge_curated.harn",
360    "agent/pattern_knowledge_persistence" => "stdlib/agent/pattern_knowledge_persistence.harn",
361    "agent/pattern_knowledge_matching" => "stdlib/agent/pattern_knowledge_matching.harn",
362    "agent/pattern_knowledge" => "stdlib/agent/pattern_knowledge.harn",
363    "agent/crystallization_curator" => "stdlib/agent/crystallization_curator.harn",
364    "agent/probe" => "stdlib/agent/probe.harn",
365    "agent/stream" => "stdlib/agent/stream.harn",
366    "agent/presets" => "stdlib/agent/presets.harn",
367    "agent/pins" => "stdlib/agent/pins.harn",
368    "agent/goal" => "stdlib/agent/goal.harn",
369    "agent/task_plan" => "stdlib/agent/task_plan.harn",
370    "personas/compiler" => "stdlib/personas/compiler.harn",
371    "personas/prompt_compiler" => "stdlib/personas/prompt_compiler.harn",
372    "agent_state" => "stdlib/stdlib_agent_state.harn",
373    "memory" => "stdlib/stdlib_memory.harn",
374    "session-store" => "stdlib/stdlib_session_store.harn",
375    "coordination" => "stdlib/stdlib_coordination.harn",
376    "coordination/append_metadata" => "stdlib/coordination/append_metadata.harn",
377    "coordination/schema" => "stdlib/coordination/schema.harn",
378    "execution" => "stdlib/stdlib_execution.harn",
379    "fleet/coordination" => "stdlib/fleet/coordination.harn",
380    "postgres" => "stdlib/stdlib_postgres.harn",
381    "postgres/query" => "stdlib/postgres/query.harn",
382    "sqlite" => "stdlib/stdlib_sqlite.harn",
383    "checkpoint" => "stdlib/stdlib_checkpoint.harn",
384    "host" => "stdlib/stdlib_host.harn",
385    "host_conditions" => "stdlib/stdlib_host_conditions.harn",
386    "host_lease" => "stdlib/stdlib_host_lease.harn",
387    "git" => "stdlib/stdlib_git.harn",
388    "git/checkout" => "stdlib/git/checkout.harn",
389    "git/contracts" => "stdlib/git/contracts.harn",
390    "hitl" => "stdlib/stdlib_hitl.harn",
391    "trust" => "stdlib/stdlib_trust.harn",
392    "corrections" => "stdlib/stdlib_corrections.harn",
393    "plan" => "stdlib/stdlib_plan.harn",
394    "waitpoint" => "stdlib/stdlib_waitpoint.harn",
395    "monitors" => "stdlib/stdlib_monitors.harn",
396    "worktree" => "stdlib/stdlib_worktree.harn",
397    "acp" => "stdlib/stdlib_acp.harn",
398    "external_agent" => "stdlib/stdlib_external_agent.harn",
399    "triggers" => "stdlib/stdlib_triggers.harn",
400    "triage" => "stdlib/stdlib_triage.harn",
401    "dashboard/jobs" => "stdlib/dashboard/jobs.harn",
402    "ui_resource" => "stdlib/stdlib_ui_resource.harn",
403    "handoffs" => "stdlib/stdlib_handoffs.harn",
404    "lifecycle" => "stdlib/stdlib_lifecycle.harn",
405    "tool_hooks_catalogues" => "stdlib/stdlib_tool_hooks_catalogues.harn",
406    "tool_hooks" => "stdlib/stdlib_tool_hooks.harn",
407    "channel_guardrails" => "stdlib/stdlib_channel_guardrails.harn",
408    "personas/prelude" => "stdlib/stdlib_personas_prelude.harn",
409    "personas/bulletins" => "stdlib/stdlib_personas_bulletins.harn",
410    "connectors/shared" => "stdlib/stdlib_connectors_shared.harn",
411    "connectors/http" => "stdlib/connectors/http.harn",
412    "connectors/setup" => "stdlib/connectors/setup.harn",
413    "oauth/providers" => "stdlib/oauth/providers.harn",
414    "oauth/token_exchange_catalog" => "stdlib/oauth/token_exchange_catalog.harn",
415    "oauth/token_exchange" => "stdlib/oauth/token_exchange.harn",
416    "oauth/storage" => "stdlib/oauth/storage.harn",
417    "oauth/client" => "stdlib/oauth/client.harn",
418    "oauth/device_flow" => "stdlib/oauth/device_flow.harn",
419    "oauth/redaction" => "stdlib/oauth/redaction.harn",
420    "oauth/dynamic_registration" => "stdlib/oauth/dynamic_registration.harn",
421    "connectors/github" => "stdlib/stdlib_connectors_github.harn",
422    "connectors/github/repository" => "stdlib/connectors/github/repository.harn",
423    "connectors/linear" => "stdlib/stdlib_connectors_linear.harn",
424    "connectors/notion" => "stdlib/stdlib_connectors_notion.harn",
425    "connectors/slack" => "stdlib/stdlib_connectors_slack.harn",
426    "workflow/prompts" => "stdlib/workflow/prompts.harn",
427    "workflow/context" => "stdlib/workflow/context.harn",
428    "workflow/options" => "stdlib/workflow/options.harn",
429    "workflow/checkpoints" => "stdlib/workflow/checkpoints.harn",
430    "workflow/patterns" => "stdlib/workflow/patterns.harn",
431    "workflow/stage" => "stdlib/workflow/stage.harn",
432    "workflow/map" => "stdlib/workflow/map.harn",
433    "workflow/schedule" => "stdlib/workflow/schedule.harn",
434    "workflow/execute" => "stdlib/workflow/execute.harn",
435    "workflow/repair" => "stdlib/workflow/repair.harn",
436    "security" => "stdlib/stdlib_security.harn",
437    "pii" => "stdlib/stdlib_pii.harn",
438    "bump/runtime" => "stdlib/bump/runtime.harn",
439    "bump/live" => "stdlib/bump/live.harn",
440]);
441
442/// Canonical normalized connector event schemas, authored as Harn `type`
443/// declarations. This is the SOURCE OF TRUTH for the Rust event-payload
444/// structs in `crates/harn-vm/src/triggers/event/schemas_generated.rs`, which
445/// are generated from these declarations by `harn connector-schema-codegen`.
446///
447/// It is intentionally NOT registered in [`STDLIB_SOURCES`]: it is a codegen
448/// input (like `spec/openapi.yaml`), not a module loaded into every program.
449/// Exposing it as an embedded string keeps the generator independent of the
450/// current working directory.
451pub const CONNECTOR_EVENT_SCHEMAS_SOURCE: &str = include_str!("stdlib/stdlib_event_schemas.harn");
452
453pub const STDLIB_PROMPT_ASSETS: &[StdlibPromptAsset] = embedded_catalog!(StdlibPromptAsset, path, [
454    "eval/hypothesis/prompts/intake.harn.prompt" => "stdlib/eval/hypothesis/prompts/intake.harn.prompt",
455    "agent/prompts/tool_contract_text.harn.prompt" => "stdlib/agent/prompts/tool_contract_text.harn.prompt",
456    "agent/prompts/tool_contract_json.harn.prompt" => "stdlib/agent/prompts/tool_contract_json.harn.prompt",
457    "agent/prompts/tool_contract_native.harn.prompt" => "stdlib/agent/prompts/tool_contract_native.harn.prompt",
458    "agent/prompts/tool_contract_text_response_protocol.harn.prompt" => "stdlib/agent/prompts/tool_contract_text_response_protocol.harn.prompt",
459    "agent/prompts/tool_contract_action_native.harn.prompt" => "stdlib/agent/prompts/tool_contract_action_native.harn.prompt",
460    "agent/prompts/tool_contract_action_text.harn.prompt" => "stdlib/agent/prompts/tool_contract_action_text.harn.prompt",
461    "agent/prompts/tool_contract_task_ledger.harn.prompt" => "stdlib/agent/prompts/tool_contract_task_ledger.harn.prompt",
462    "agent/prompts/tool_contract_deferred_tools.harn.prompt" => "stdlib/agent/prompts/tool_contract_deferred_tools.harn.prompt",
463    "agent/prompts/deferred_tool_listing.harn.prompt" => "stdlib/agent/prompts/deferred_tool_listing.harn.prompt",
464    "agent/prompts/default_nudge.harn.prompt" => "stdlib/agent/prompts/default_nudge.harn.prompt",
465    "agent/prompts/agentic_user_system.harn.prompt" => "stdlib/agent/prompts/agentic_user_system.harn.prompt",
466    "agent/prompts/agentic_user_user.harn.prompt" => "stdlib/agent/prompts/agentic_user_user.harn.prompt",
467    "agent/prompts/loop_until_done_system.harn.prompt" => "stdlib/agent/prompts/loop_until_done_system.harn.prompt",
468    "agent/prompts/completion_judge_default.harn.prompt" => "stdlib/agent/prompts/completion_judge_default.harn.prompt",
469    "agent/prompts/completion_judge_feedback_fallback.harn.prompt" => "stdlib/agent/prompts/completion_judge_feedback_fallback.harn.prompt",
470    "agent/prompts/completion_judge_user.harn.prompt" => "stdlib/agent/prompts/completion_judge_user.harn.prompt",
471    "agent/prompts/step_judge_system_default.harn.prompt" => "stdlib/agent/prompts/step_judge_system_default.harn.prompt",
472    "agent/prompts/step_judge_system_adversarial.harn.prompt" => "stdlib/agent/prompts/step_judge_system_adversarial.harn.prompt",
473    "agent/prompts/step_judge_user.harn.prompt" => "stdlib/agent/prompts/step_judge_user.harn.prompt",
474    "agent/prompts/parse_guidance.harn.prompt" => "stdlib/agent/prompts/parse_guidance.harn.prompt",
475    "agent/prompts/native_tool_contract_feedback.harn.prompt" => "stdlib/agent/prompts/native_tool_contract_feedback.harn.prompt",
476    "agent/prompts/verification_gate_feedback.harn.prompt" => "stdlib/agent/prompts/verification_gate_feedback.harn.prompt",
477    "agent/prompts/daemon_watch_feedback.harn.prompt" => "stdlib/agent/prompts/daemon_watch_feedback.harn.prompt",
478    "agent/prompts/daemon_timer_feedback.harn.prompt" => "stdlib/agent/prompts/daemon_timer_feedback.harn.prompt",
479    "llm/prompts/completion_fallback_system.harn.prompt" => "stdlib/llm/prompts/completion_fallback_system.harn.prompt",
480    "llm/prompts/completion_fallback_user.harn.prompt" => "stdlib/llm/prompts/completion_fallback_user.harn.prompt",
481    "llm/prompts/transcript_summarize_user.harn.prompt" => "stdlib/llm/prompts/transcript_summarize_user.harn.prompt",
482    "llm/prompts/sitrep_user.harn.prompt" => "stdlib/llm/prompts/sitrep_user.harn.prompt",
483    "llm/prompts/structural_chain_of_draft.harn.prompt" => "stdlib/llm/prompts/structural_chain_of_draft.harn.prompt",
484    "llm/prompts/schema_recover_repair.harn.prompt" => "stdlib/llm/prompts/schema_recover_repair.harn.prompt",
485    "llm/prompts/structured_envelope_schema_contract.harn.prompt" => "stdlib/llm/prompts/structured_envelope_schema_contract.harn.prompt",
486    "llm/prompts/structured_envelope_repair.harn.prompt" => "stdlib/llm/prompts/structured_envelope_repair.harn.prompt",
487    "llm/prompts/directive_envelope_instructions.harn.prompt" => "stdlib/llm/prompts/directive_envelope_instructions.harn.prompt",
488    "llm/prompts/pairwise_rerank_user.harn.prompt" => "stdlib/llm/prompts/pairwise_rerank_user.harn.prompt",
489    "llm/prompts/tool_binder_user.harn.prompt" => "stdlib/llm/prompts/tool_binder_user.harn.prompt",
490    "llm/prompts/missing_tool_call_classifier.harn.prompt" => "stdlib/llm/prompts/missing_tool_call_classifier.harn.prompt",
491    "workflow/prompts/stage.harn.prompt" => "stdlib/workflow/prompts/stage.harn.prompt",
492    "workflow/prompts/verification_context_intro.harn.prompt" => "stdlib/workflow/prompts/verification_context_intro.harn.prompt",
493    "orchestration/prompts/compaction_summary.harn.prompt" => "stdlib/orchestration/prompts/compaction_summary.harn.prompt",
494    "orchestration/prompts/compaction_policy_extension.harn.prompt" => "stdlib/orchestration/prompts/compaction_policy_extension.harn.prompt",
495    "orchestration/prompts/compaction_policy_replacement.harn.prompt" => "stdlib/orchestration/prompts/compaction_policy_replacement.harn.prompt",
496    "orchestration/prompts/compaction_state_grounding.harn.prompt" => "stdlib/orchestration/prompts/compaction_state_grounding.harn.prompt",
497]);
498
499/// Embedded `.harn` script that backs a CLI subcommand. Looked up by
500/// the `harn-cli` dispatch wedge (see harn#2293 epic and harn#2294 G1)
501/// so subcommands can ship in Harn instead of Rust.
502#[derive(Debug, Clone, Copy, PartialEq, Eq)]
503pub struct StdlibCliScript {
504    /// Lookup name. For nested scripts this is the path under
505    /// `stdlib/cli/` without the `.harn` extension (e.g. `"eval/prompt"`
506    /// for `stdlib/cli/eval/prompt.harn`).
507    pub name: &'static str,
508    /// Embedded source. Run via the existing `harn run` codepath by the
509    /// dispatch wedge.
510    pub source: &'static str,
511}
512
513pub const STDLIB_CLI_SCRIPTS: &[StdlibCliScript] = embedded_catalog!(StdlibCliScript, name, [
514    "codemod" => "stdlib/cli/codemod.harn",
515    "canon/check" => "stdlib/cli/canon/check.harn",
516    "chat" => "stdlib/cli/chat.harn",
517    "doctor" => "stdlib/cli/doctor.harn",
518    "echo" => "stdlib/cli/echo.harn",
519    // Helper module for the embedded `eval/*` scripts. Has a stub `main`
520    // that exits non-zero — sibling scripts inline its helpers until the
521    // dispatch wedge gains a cross-script import surface (#2300 / G7).
522    "eval/_runner" => "stdlib/cli/eval/_runner.harn",
523    "eval/context" => "stdlib/cli/eval/context.harn",
524    "eval/model_selector" => "stdlib/cli/eval/model_selector.harn",
525    "eval/tool_calls" => "stdlib/cli/eval/tool_calls.harn",
526    "eval/coding_agent" => "stdlib/cli/eval/coding_agent.harn",
527    "eval/scope_triage" => "stdlib/cli/eval/scope_triage.harn",
528    "eval/prompt" => "stdlib/cli/eval/prompt.harn",
529    "explain" => "stdlib/cli/explain.harn",
530    "graph" => "stdlib/cli/graph.harn",
531    "personas/compile_prompt" => "stdlib/cli/personas/compile_prompt.harn",
532    "personas/materialize" => "stdlib/cli/personas/materialize.harn",
533    "models/batch_plan" => "stdlib/cli/models/batch_plan.harn",
534    "models/list" => "stdlib/cli/models/list.harn",
535    "models/lora_inspect" => "stdlib/cli/models/lora_inspect.harn",
536    "models/lora_export" => "stdlib/cli/models/lora_export.harn",
537    "models/lora_manifest" => "stdlib/cli/models/lora_manifest.harn",
538    "models/lora_preflight" => "stdlib/cli/models/lora_preflight.harn",
539    "models/lora_promote" => "stdlib/cli/models/lora_promote.harn",
540    "models/lora_plan" => "stdlib/cli/models/lora_plan.harn",
541    "models/lora_train" => "stdlib/cli/models/lora_train.harn",
542    "models/recommend" => "stdlib/cli/models/recommend.harn",
543    "models/test" => "stdlib/cli/models/test.harn",
544    "precompile" => "stdlib/cli/precompile.harn",
545    "providers/cache_probe" => "stdlib/cli/providers/cache_probe.harn",
546    "providers/catalog" => "stdlib/cli/providers/catalog.harn",
547    "providers/effort_probe" => "stdlib/cli/providers/effort_probe.harn",
548    "providers/option_probe" => "stdlib/cli/providers/option_probe.harn",
549    "providers/probe" => "stdlib/cli/providers/probe.harn",
550    "providers/recommend" => "stdlib/cli/providers/recommend.harn",
551    "providers/tool_probe" => "stdlib/cli/providers/tool_probe.harn",
552    "providers/tool_scorecard" => "stdlib/cli/providers/tool_scorecard.harn",
553    "routes" => "stdlib/cli/routes.harn",
554    "runs/export_training" => "stdlib/cli/runs/export_training.harn",
555    "scan" => "stdlib/cli/scan.harn",
556    "scaffold/init" => "stdlib/cli/scaffold/init.harn",
557    "scaffold/tool_new" => "stdlib/cli/scaffold/tool_new.harn",
558    "trace_import" => "stdlib/cli/trace_import.harn",
559    "try" => "stdlib/cli/try.harn",
560    "version" => "stdlib/cli/version.harn",
561]);
562
563pub fn get_stdlib_source(module: &str) -> Option<&'static str> {
564    STDLIB_SOURCES
565        .iter()
566        .find_map(|entry| (entry.module == module).then_some(entry.source))
567}
568
569/// Builtins a stdlib module re-exports under its own name, so
570/// `import { assert_eq } from "std/testing"` resolves.
571///
572/// Some of the standard library is implemented in Rust rather than Harn — the
573/// value differ behind `assert_eq` needs to walk the runtime representation of
574/// a value, which Harn source cannot do. Those builtins are callable without an
575/// import, but a reader who has just typed `import { assert_throws } from
576/// "std/testing"` has every reason to expect its sibling `assert_eq` to come
577/// from the same place, and no reason to know which side of the Rust/Harn line
578/// a given assertion happens to fall on. This table erases that seam: the
579/// module's export surface is its `pub fn`s plus the names listed here.
580///
581/// The list is explicit rather than derived from the builtins' `category`
582/// metadata: a category is a free-form label for docs and observability, and an
583/// export surface is an API contract. Deriving one from the other would let an
584/// unrelated metadata edit silently add or remove a public export.
585///
586/// `harn_vm::stdlib::tests` pins every name here to a registered builtin, so an
587/// entry cannot rot into a name that no longer exists.
588pub fn builtin_reexports(module: &str) -> &'static [&'static str] {
589    match module {
590        "testing" => &[
591            "assert",
592            "assert_approx",
593            "assert_eq",
594            "assert_matches",
595            "assert_ne",
596            "value_diff",
597        ],
598        _ => &[],
599    }
600}
601
602/// Find an embedded CLI subcommand script by name. Returns the embedded
603/// source string when present, or `None` if no script with that name is
604/// registered in [`STDLIB_CLI_SCRIPTS`].
605pub fn find_cli_script(name: &str) -> Option<&'static str> {
606    STDLIB_CLI_SCRIPTS
607        .iter()
608        .find_map(|entry| (entry.name == name).then_some(entry.source))
609}
610
611pub fn get_stdlib_prompt_asset(path: &str) -> Option<&'static str> {
612    let path = path.strip_prefix("std/").unwrap_or(path);
613    STDLIB_PROMPT_ASSETS
614        .iter()
615        .find_map(|entry| (entry.path == path).then_some(entry.source))
616}
617
618pub fn public_functions_for_module(module: &str) -> Vec<StdlibPublicFunction> {
619    let Some(source) = get_stdlib_source(module) else {
620        return Vec::new();
621    };
622    public_functions_from_source(source)
623}
624
625pub fn entrypoint_modules() -> Vec<StdlibEntrypointModule> {
626    STDLIB_SOURCES
627        .iter()
628        .filter_map(|entry| {
629            entrypoint_category_from_source(entry.source).map(|category| StdlibEntrypointModule {
630                import_path: format!("std/{}", entry.module),
631                category,
632            })
633        })
634        .collect()
635}
636
637fn entrypoint_category_from_source(source: &str) -> Option<String> {
638    for line in source.lines() {
639        let line = line.trim();
640        if line.is_empty() {
641            continue;
642        }
643        if let Some(category) = line.strip_prefix("// @harn-entrypoint-category ") {
644            let category = category.trim();
645            return (!category.is_empty()).then(|| category.to_string());
646        }
647        if !line.starts_with("//") {
648            return None;
649        }
650    }
651    None
652}
653
654fn public_functions_from_source(source: &str) -> Vec<StdlibPublicFunction> {
655    let mut out = Vec::new();
656    let mut doc: Option<String> = None;
657    let lines = source.lines().collect::<Vec<_>>();
658    let mut index = 0usize;
659    while index < lines.len() {
660        let line = lines[index].trim();
661        if line.starts_with("/**") {
662            let (parsed, next) = parse_harndoc(&lines, index);
663            doc = parsed;
664            index = next;
665            continue;
666        }
667        if line.starts_with("pub fn ") {
668            let (signature_line, next) = collect_public_function_signature(&lines, index);
669            if let Some(function) = parse_public_function_line(&signature_line, doc.take()) {
670                out.push(function);
671                index = next;
672                continue;
673            }
674        }
675        if let Some(function) = parse_public_function_line(line, doc.take()) {
676            out.push(function);
677        } else if !line.is_empty() && !line.starts_with("//") {
678            doc = None;
679        }
680        index += 1;
681    }
682    out
683}
684
685fn collect_public_function_signature(lines: &[&str], start: usize) -> (String, usize) {
686    let mut parts = Vec::new();
687    let mut index = start;
688    while index < lines.len() {
689        parts.push(lines[index].trim().to_string());
690        let candidate = parts.join(" ");
691        if public_function_signature_complete(&candidate) {
692            return (candidate, index + 1);
693        }
694        index += 1;
695    }
696    (parts.join(" "), index)
697}
698
699fn public_function_signature_complete(line: &str) -> bool {
700    let Some(rest) = line.strip_prefix("pub fn ") else {
701        return false;
702    };
703    let Some((_, after_paren)) = rest.split_once('(') else {
704        return false;
705    };
706    matching_paren_len(after_paren).is_some()
707}
708
709fn parse_harndoc(lines: &[&str], start: usize) -> (Option<String>, usize) {
710    let mut parts = Vec::new();
711    let mut index = start;
712    while index < lines.len() {
713        let mut line = lines[index].trim();
714        if index == start {
715            line = line.trim_start_matches("/**").trim();
716        }
717        let done = line.ends_with("*/");
718        line = line.trim_end_matches("*/").trim();
719        line = line.trim_start_matches('*').trim();
720        if !line.is_empty() {
721            parts.push(line.to_string());
722        }
723        index += 1;
724        if done {
725            break;
726        }
727    }
728    let text = parts.join("\n").trim().to_string();
729    ((!text.is_empty()).then_some(text), index)
730}
731
732#[expect(
733    clippy::string_slice,
734    reason = "bounds come from str::find and char_indices"
735)]
736fn parse_public_function_line(line: &str, doc: Option<String>) -> Option<StdlibPublicFunction> {
737    let rest = line.strip_prefix("pub fn ")?.trim();
738    let name_end = rest.find('(')?;
739    let declaration_name = rest[..name_end].trim();
740    let name = declaration_name
741        .split_once('<')
742        .map_or(declaration_name, |(name, _)| name.trim());
743    if name.is_empty() {
744        return None;
745    }
746    let params_start = name_end + 1;
747    let params_len = matching_paren_len(&rest[params_start..])?;
748    let params = &rest[params_start..params_start + params_len];
749    let after = rest[params_start + params_len + 1..].trim();
750    let return_type = after
751        .strip_prefix("->")
752        .and_then(|tail| tail.split('{').next())
753        .map(str::trim)
754        .filter(|value| !value.is_empty());
755    let signature = match return_type {
756        Some(ret) => format!("{declaration_name}({params}) -> {ret}"),
757        None => format!("{declaration_name}({params})"),
758    };
759    let param_parts = split_top_level_params(params);
760    let total_params = param_parts
761        .iter()
762        .filter(|param| !param.trim().is_empty())
763        .count();
764    let variadic = param_parts
765        .iter()
766        .any(|param| param.trim_start().starts_with("..."));
767    let required_params = param_parts
768        .iter()
769        .filter(|param| {
770            let param = param.trim();
771            !param.is_empty() && !param.contains('=') && !param.starts_with("...")
772        })
773        .count();
774    Some(StdlibPublicFunction {
775        name: name.to_string(),
776        signature,
777        required_params,
778        total_params,
779        variadic,
780        doc,
781    })
782}
783
784fn matching_paren_len(input: &str) -> Option<usize> {
785    let mut depth = 1usize;
786    for (offset, ch) in input.char_indices() {
787        match ch {
788            '(' | '[' | '{' => depth += 1,
789            ')' | ']' | '}' => {
790                depth = depth.saturating_sub(1);
791                if depth == 0 {
792                    return Some(offset);
793                }
794            }
795            _ => {}
796        }
797    }
798    None
799}
800
801#[expect(
802    clippy::string_slice,
803    reason = "offsets come from char_indices and 1-byte ','"
804)]
805fn split_top_level_params(params: &str) -> Vec<&str> {
806    let mut out = Vec::new();
807    let mut depth = 0isize;
808    let mut start = 0usize;
809    for (offset, ch) in params.char_indices() {
810        match ch {
811            '(' | '[' | '{' => depth += 1,
812            ')' | ']' | '}' => depth -= 1,
813            ',' if depth == 0 => {
814                out.push(&params[start..offset]);
815                start = offset + 1;
816            }
817            _ => {}
818        }
819    }
820    out.push(&params[start..]);
821    out
822}
823
824#[cfg(test)]
825mod tests {
826    use std::collections::BTreeSet;
827
828    use super::{
829        entrypoint_modules, get_stdlib_prompt_asset, matching_paren_len,
830        parse_public_function_line, public_functions_for_module, STDLIB_CLI_SCRIPTS,
831        STDLIB_PROMPT_ASSETS, STDLIB_SOURCES,
832    };
833
834    #[test]
835    fn stdlib_sources_are_non_empty() {
836        for entry in STDLIB_SOURCES {
837            assert!(
838                !entry.source.trim().is_empty(),
839                "{} should have non-empty source",
840                entry.module
841            );
842        }
843    }
844
845    #[test]
846    fn cli_scripts_are_non_empty_and_uniquely_named() {
847        let mut seen = BTreeSet::new();
848        for entry in STDLIB_CLI_SCRIPTS {
849            assert!(
850                !entry.source.trim().is_empty(),
851                "cli/{} should have non-empty source",
852                entry.name
853            );
854            assert!(
855                seen.insert(entry.name),
856                "cli/{} is registered more than once in STDLIB_CLI_SCRIPTS",
857                entry.name
858            );
859        }
860    }
861
862    #[test]
863    fn stdlib_source_names_are_unique() {
864        let mut names = BTreeSet::new();
865        for entry in STDLIB_SOURCES {
866            assert!(names.insert(entry.module), "duplicate {}", entry.module);
867        }
868    }
869
870    #[test]
871    fn stdlib_prompt_assets_are_non_empty() {
872        for entry in STDLIB_PROMPT_ASSETS {
873            assert!(
874                !entry.source.trim().is_empty(),
875                "{} should have non-empty prompt asset source",
876                entry.path
877            );
878        }
879    }
880
881    #[test]
882    fn stdlib_prompt_asset_paths_are_unique() {
883        let mut paths = BTreeSet::new();
884        for entry in STDLIB_PROMPT_ASSETS {
885            assert!(paths.insert(entry.path), "duplicate {}", entry.path);
886        }
887    }
888
889    #[test]
890    fn key_stdlib_prompt_assets_resolve() {
891        for path in [
892            "std/agent/prompts/tool_contract_text.harn.prompt",
893            "std/agent/prompts/default_nudge.harn.prompt",
894            "std/agent/prompts/completion_judge_default.harn.prompt",
895            "std/llm/prompts/directive_envelope_instructions.harn.prompt",
896            "std/workflow/prompts/stage.harn.prompt",
897            "std/orchestration/prompts/compaction_summary.harn.prompt",
898            "std/orchestration/prompts/compaction_policy_extension.harn.prompt",
899            "std/orchestration/prompts/compaction_policy_replacement.harn.prompt",
900            "std/orchestration/prompts/compaction_state_grounding.harn.prompt",
901        ] {
902            assert!(
903                get_stdlib_prompt_asset(path).is_some(),
904                "{path} should resolve"
905            );
906        }
907    }
908
909    #[test]
910    fn public_function_catalog_derives_signatures_from_harn_source() {
911        let exports = public_functions_for_module("workflow/execute");
912        assert_eq!(exports.len(), 1);
913        assert_eq!(exports[0].name, "workflow_execute");
914        assert_eq!(
915            exports[0].signature,
916            "workflow_execute( harness: Harness, task: string, graph: dict, artifacts: list<unknown>? = nil, options: dict? = nil, )"
917        );
918        assert_eq!(exports[0].required_params, 3);
919        assert_eq!(exports[0].total_params, 5);
920    }
921
922    #[test]
923    fn tool_registry_from_catalog_includes_cli_metadata_parameter() {
924        let function = public_functions_for_module("tools")
925            .into_iter()
926            .find(|function| function.name == "tool_registry_from")
927            .expect("std/tools should export tool_registry_from");
928        assert_eq!(function.required_params, 1);
929        assert_eq!(function.total_params, 2);
930        assert!(function
931            .signature
932            .contains("options: ToolRegistryOptions? = nil"));
933    }
934
935    #[test]
936    fn soft_landing_modules_own_their_public_surface() {
937        // The cut-rule layer is three owners: the meter registry, the
938        // predicate evaluator, and the latched landing machine. A rename that
939        // drops one of these from its module is the failure this catches.
940        for (module, expected) in [
941            (
942                "agent/run_meter",
943                &[
944                    "meter_observation_lower",
945                    "meter_observation_render",
946                    "meter_observation_upper",
947                    "run_meter_bounded",
948                    "run_meter_charge",
949                    "run_meter_digest",
950                    "run_meter_exact",
951                    "run_meter_field_registered",
952                    "run_meter_field_spec",
953                    "run_meter_fields",
954                    "run_meter_new",
955                    "run_meter_observe",
956                    "run_meter_project_next_call",
957                    "run_meter_read",
958                    "run_meter_registry_digest",
959                    "run_meter_unavailable",
960                ][..],
961            ),
962            (
963                "agent/cut_landing",
964                &[
965                    "cut_action_allowed",
966                    "cut_predicate_evaluate",
967                    "cut_predicate_render",
968                    "cut_predicate_validate",
969                    "cut_rules_digest",
970                    "cut_rules_tick",
971                    "cut_rules_validate",
972                    "cut_state_complete",
973                    "cut_state_new",
974                    "cut_state_record_admission",
975                    "cut_state_record_terminal_emit",
976                    "cut_terminal_emit_due",
977                    "cut_terminal_evidence",
978                ][..],
979            ),
980        ] {
981            let exports = public_functions_for_module(module)
982                .into_iter()
983                .map(|function| function.name)
984                .collect::<BTreeSet<_>>();
985            for name in expected {
986                assert!(exports.contains(*name), "std/{module} should export {name}");
987            }
988        }
989    }
990
991    #[test]
992    fn pace_cut_rule_module_owns_public_functions() {
993        let cut_rule_exports = public_functions_for_module("agent/cut_rules")
994            .into_iter()
995            .map(|function| function.name)
996            .collect::<BTreeSet<_>>();
997        for name in [
998            "pace_cut_rule_action_of",
999            "pace_cut_rule_check_max_injections",
1000            "pace_cut_rule_decision",
1001            "pace_cut_rule_extend_max",
1002        ] {
1003            assert!(
1004                cut_rule_exports.contains(name),
1005                "std/agent/cut_rules should export {name}"
1006            );
1007        }
1008
1009        let governor_exports = public_functions_for_module("agent/governors")
1010            .into_iter()
1011            .map(|function| function.name)
1012            .collect::<BTreeSet<_>>();
1013        for removed in [
1014            "governor_pace_check_max_injections",
1015            "governor_pace_decision",
1016            "governor_pace_extend_max",
1017            "pace_action_of",
1018        ] {
1019            assert!(
1020                !governor_exports.contains(removed),
1021                "std/agent/governors must not retain removed export {removed}"
1022            );
1023        }
1024    }
1025
1026    #[test]
1027    fn command_stdlib_module_exports_step_helpers() {
1028        let exports = public_functions_for_module("command")
1029            .into_iter()
1030            .map(|function| function.name)
1031            .collect::<BTreeSet<_>>();
1032        for name in [
1033            "command_run",
1034            "command_wait",
1035            "command_wait_for_output",
1036            "command_cancel",
1037            "command_run_streaming",
1038            "command_output_tail",
1039            "command_json",
1040            "command_json_step",
1041            "command_try",
1042            "command_step",
1043            "command_steps_append",
1044            "command_last_failed_step",
1045            "command_step_ref",
1046            "command_output_text",
1047            "argv_label",
1048            "shell_command_from_argv",
1049            "shell_command_from_value",
1050        ] {
1051            assert!(exports.contains(name), "std/command should export {name}");
1052        }
1053    }
1054
1055    #[test]
1056    fn disclosure_stdlib_module_exports_render_helpers() {
1057        let exports = public_functions_for_module("disclosure")
1058            .into_iter()
1059            .map(|function| function.name)
1060            .collect::<BTreeSet<_>>();
1061        assert!(
1062            exports.contains("render"),
1063            "std/disclosure should export render"
1064        );
1065        assert!(
1066            exports.contains("git_trailers"),
1067            "std/disclosure should export git_trailers"
1068        );
1069        assert!(
1070            exports.contains("slack_message_disclosure"),
1071            "std/disclosure should export slack_message_disclosure"
1072        );
1073        assert!(
1074            exports.contains("append_git_trailers"),
1075            "std/disclosure should export append_git_trailers"
1076        );
1077    }
1078
1079    #[test]
1080    fn async_stdlib_exports_predicate_backoff_name_only() {
1081        let exports = public_functions_for_module("async")
1082            .into_iter()
1083            .map(|function| function.name)
1084            .collect::<BTreeSet<_>>();
1085        assert!(
1086            exports.contains("retry_predicate_with_backoff"),
1087            "std/async should export retry_predicate_with_backoff"
1088        );
1089        assert!(
1090            !exports.contains("retry_with_backoff"),
1091            "std/async should not retain the old retry_with_backoff export"
1092        );
1093    }
1094
1095    #[test]
1096    fn signal_stdlib_module_exports_interrupt_helpers() {
1097        let exports = public_functions_for_module("signal")
1098            .into_iter()
1099            .map(|function| function.name)
1100            .collect::<BTreeSet<_>>();
1101        for name in [
1102            "on_interrupt",
1103            "off_interrupt",
1104            "interrupted",
1105            "with_interrupt",
1106        ] {
1107            assert!(exports.contains(name), "std/signal should export {name}");
1108        }
1109    }
1110
1111    #[test]
1112    fn git_stdlib_module_exports_local_wrappers() {
1113        let exports = public_functions_for_module("git")
1114            .into_iter()
1115            .map(|function| function.name)
1116            .collect::<BTreeSet<_>>();
1117        for name in [
1118            "git_run",
1119            "git_status",
1120            "git_current_branch",
1121            "git_log",
1122            "git_switch",
1123            "git_pull_ff_only",
1124            "git_find_tool",
1125            "git_run_tool",
1126            "git_tools",
1127            "git_toolbox_tools",
1128        ] {
1129            assert!(exports.contains(name), "std/git should export {name}");
1130        }
1131    }
1132
1133    #[test]
1134    fn agent_workers_exports_suspend_resume_wrappers() {
1135        let exports = public_functions_for_module("agent/workers");
1136        let suspend = exports
1137            .iter()
1138            .find(|function| function.name == "suspend_agent")
1139            .expect("std/agent/workers should export suspend_agent");
1140        assert_eq!(
1141            suspend.signature,
1142            "suspend_agent( agents: HarnessAgent, worker: unknown, reason: string = \"\", options: dict? = nil, ) -> unknown"
1143        );
1144        assert_eq!(suspend.required_params, 2);
1145        assert_eq!(suspend.total_params, 4);
1146
1147        let resume = exports
1148            .iter()
1149            .find(|function| function.name == "resume_agent")
1150            .expect("std/agent/workers should export resume_agent");
1151        assert_eq!(
1152            resume.signature,
1153            "resume_agent( agents: HarnessAgent, worker_or_snapshot: unknown, resume_input: unknown = nil, continue_transcript: bool = true, ) -> unknown"
1154        );
1155        assert_eq!(resume.required_params, 2);
1156        assert_eq!(resume.total_params, 4);
1157
1158        let stop = exports
1159            .iter()
1160            .find(|function| function.name == "agent_stop")
1161            .expect("std/agent/workers should export agent_stop");
1162        assert_eq!(
1163            stop.signature,
1164            "agent_stop( agents: HarnessAgent, worker: unknown, options: AgentStopOptions? = nil, ) -> unknown"
1165        );
1166        assert_eq!(stop.required_params, 2);
1167        assert_eq!(stop.total_params, 3);
1168
1169        let parse_resume = exports
1170            .iter()
1171            .find(|function| function.name == "parse_resume_conditions")
1172            .expect("std/agent/workers should export parse_resume_conditions");
1173        assert_eq!(
1174            parse_resume.signature,
1175            "parse_resume_conditions( agents: HarnessAgent, conditions: ResumeConditions? = nil, ) -> ResumeConditions?"
1176        );
1177        assert_eq!(parse_resume.required_params, 1);
1178        assert_eq!(parse_resume.total_params, 2);
1179
1180        let lifecycle = exports
1181            .iter()
1182            .find(|function| function.name == "agent_lifecycle_tools")
1183            .expect("std/agent/workers should export agent_lifecycle_tools");
1184        assert_eq!(
1185            lifecycle.signature,
1186            "agent_lifecycle_tools( agents: HarnessAgent, registry: ToolRegistry? = nil, options: AgentLifecycleToolsOptions? = nil, ) -> ToolRegistry"
1187        );
1188        assert_eq!(lifecycle.required_params, 1);
1189        assert_eq!(lifecycle.total_params, 3);
1190    }
1191
1192    #[test]
1193    fn tui_stdlib_module_exports_terminal_helpers() {
1194        let exports = public_functions_for_module("tui")
1195            .into_iter()
1196            .map(|function| function.name)
1197            .collect::<BTreeSet<_>>();
1198        for name in ["page", "terminal_width", "rule", "clear", "select_from"] {
1199            assert!(exports.contains(name), "std/tui should export {name}");
1200        }
1201    }
1202
1203    #[test]
1204    fn semver_stdlib_module_exports_release_helpers() {
1205        let exports = public_functions_for_module("semver")
1206            .into_iter()
1207            .map(|function| function.name)
1208            .collect::<BTreeSet<_>>();
1209        for name in [
1210            "strip_v",
1211            "add_v",
1212            "is_v_semver",
1213            "is_v_release_semver",
1214            "parse",
1215            "parse_release",
1216            "is_prerelease_identifier",
1217            "is_prerelease",
1218            "compare_release",
1219            "max_canonical_tag",
1220            "next",
1221            "bump_type",
1222            "version_from_release_branch",
1223            "version_from_tag",
1224        ] {
1225            assert!(exports.contains(name), "std/semver should export {name}");
1226        }
1227    }
1228
1229    #[test]
1230    fn changelog_stdlib_module_exports_typed_primitives() {
1231        let exports = public_functions_for_module("changelog")
1232            .into_iter()
1233            .map(|function| function.name)
1234            .collect::<BTreeSet<_>>();
1235        for name in [
1236            "changelog_validate_categories",
1237            "changelog_parse_fragment",
1238            "changelog_order_fragments",
1239            "changelog_normalize_fragment_body",
1240            "changelog_assemble_fragments",
1241            "changelog_parse_sections",
1242            "changelog_find_section",
1243            "changelog_merge_unreleased",
1244        ] {
1245            assert!(exports.contains(name), "std/changelog should export {name}");
1246        }
1247    }
1248
1249    #[test]
1250    fn text_stdlib_module_exports_regex_and_pad_helpers() {
1251        let exports = public_functions_for_module("text")
1252            .into_iter()
1253            .map(|function| function.name)
1254            .collect::<BTreeSet<_>>();
1255        for name in [
1256            "pad_left",
1257            "pad_right",
1258            "repeat_string",
1259            "regex_first_capture",
1260            "regex_capture_groups",
1261            "regex_all_first_captures",
1262        ] {
1263            assert!(exports.contains(name), "std/text should export {name}");
1264        }
1265    }
1266
1267    #[test]
1268    fn harn_entrypoint_catalog_is_declared_by_stdlib_sources() {
1269        let modules = entrypoint_modules();
1270        let entries = modules
1271            .iter()
1272            .map(|module| (module.import_path.as_str(), module.category.as_str()))
1273            .collect::<BTreeSet<_>>();
1274        for entry in [
1275            ("std/agent/loop", "agent.stdlib"),
1276            ("std/agent/primitives", "agent.stdlib"),
1277            ("std/workflow/execute", "workflow.stdlib"),
1278        ] {
1279            assert!(entries.contains(&entry), "{entry:?} should be declared");
1280        }
1281    }
1282
1283    #[test]
1284    fn matching_paren_len_closes_on_every_bracket_kind() {
1285        // Each closer kind must terminate the scan once depth returns to zero,
1286        // mirroring the symmetric opener arm and `split_top_level_params`.
1287        assert_eq!(matching_paren_len("a, b)"), Some(4));
1288        assert_eq!(matching_paren_len("x: [int])"), Some(8));
1289        assert_eq!(matching_paren_len("x: {a: int})"), Some(11));
1290        // A top-level `]`/`}` is the matching close for the consumed opener and
1291        // must return rather than scanning to the end and yielding `None`.
1292        assert_eq!(matching_paren_len("x]"), Some(1));
1293        assert_eq!(matching_paren_len("x}"), Some(1));
1294        assert_eq!(matching_paren_len("unterminated"), None);
1295    }
1296
1297    #[test]
1298    fn parse_public_function_line_handles_record_typed_params() {
1299        let parsed =
1300            parse_public_function_line("pub fn configure(opts: {retries: int}) -> bool", None)
1301                .expect("signature with a record-typed parameter should parse");
1302        assert_eq!(parsed.name, "configure");
1303        assert_eq!(parsed.signature, "configure(opts: {retries: int}) -> bool");
1304        assert_eq!(parsed.total_params, 1);
1305        assert_eq!(parsed.required_params, 1);
1306    }
1307
1308    #[test]
1309    fn parse_public_function_line_indexes_generic_functions_by_base_name() {
1310        let parsed = parse_public_function_line(
1311            "pub fn map<T, U>(items: list<T>, project: fn(T) -> U) -> list<U>",
1312            None,
1313        )
1314        .expect("generic public function should parse");
1315        assert_eq!(parsed.name, "map");
1316        assert_eq!(
1317            parsed.signature,
1318            "map<T, U>(items: list<T>, project: fn(T) -> U) -> list<U>"
1319        );
1320        assert_eq!(parsed.total_params, 2);
1321        assert_eq!(parsed.required_params, 2);
1322    }
1323}