hv1 verify: add direct route (env JSON) and clean inline path; fix v1 phi incoming order; make test_runner use hv1 direct; add phase2037 phi canaries; load modules.workspace exports for alias; update docs (phase-20.38, source extensions) and CURRENT_TASK

This commit is contained in:
nyash-codex
2025-11-04 16:33:04 +09:00
parent 5a1bb549a7
commit 30aa39f50b
270 changed files with 4320 additions and 758 deletions

View File

@ -6,5 +6,10 @@ pub enum UsingError {
ReadToml(String),
#[error("invalid nyash.toml format: {0}")]
ParseToml(String),
#[error("failed to read workspace module '{0}': {1}")]
ReadWorkspaceModule(String, String),
#[error("invalid workspace module '{0}': {1}")]
ParseWorkspaceModule(String, String),
#[error("workspace module '{0}' is missing module.name")]
WorkspaceModuleMissingName(String),
}