docs: VCL rename — bare-VQL doc-token sweep (#84)#143
Merged
Conversation
Sweeps the documentation-prose half of the VQL->VCL rename, staged separately from code per the repo's own doc-consonance policy (tests/doc-consonance-gate.sh: code identifiers and changelog history are out of scope for the docs gate and tracked under #84). Renamed across 50 prose docs (.adoc/.md): - Language name "VQL" -> "VCL" (incl. "VQL-DT" -> "VCL-DT" where it names the language); [source,vql] / ```vql fence tags -> vcl. - Stale Stage-C Elixir identifiers updated to match merged reality (#136): vql_{executor,bridge,type_checker,proof_certificate}.ex -> vcl_*.ex; VeriSim.Query.VQL{Executor,Bridge,TypeChecker,ProofCertificate} -> VCL*. Deliberately preserved (unrenamed code + wire contracts -> Stage B): - ReScript src/vql/VQL*.res, VeriSimVql, VqlKeywords - Rust vql.rs / vql_bridge.rs / vql_fmt.rs, Julia vql.jl, Zig vql.zig - fuzz target fuzz_vql_parser, .vql example files, examples/vql-queries - API path /api/v1/vql/execute, header X-VQL-Version, type:vql_query tag - CHANGELOG.adoc (allow-listed history), docs/papers/*.{tex,bib} (citation integrity), *.a2ml machine-readable metadata Verified: doc-consonance gate stays GREEN (no "VeriSim Query Language" misnomer); no vql/vcl xref or anchor breakage; every residual "vql" token is an intentionally-preserved Stage-B identifier/contract; symmetric 533/533 diff (equal-length token swaps, no structural change). Refs #84. https://claude.ai/code/session_01W9Voe3JceP66Bna9FT4jME
🔍 Hypatia Security ScanFindings: 134 issues detected
View findings[
{
"reason": "Issue in scorecard-enforcer.yml",
"type": "scorecard_publish_with_run_step",
"file": "scorecard-enforcer.yml",
"action": "split_scorecard_publish_job",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Issue in instant-sync.yml",
"type": "secret_action_without_presence_gate",
"file": "instant-sync.yml",
"action": "peter-evans/repository-dispatch",
"rule_module": "workflow_audit",
"severity": "high"
},
{
"reason": "Issue in codeql.yml",
"type": "codeql_missing_actions_language",
"file": "codeql.yml",
"action": "flag",
"rule_module": "workflow_audit",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (1 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Provenance.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (2 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/PlannerSemantic.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (1 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Planner.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (6 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Drift.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (1 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/WAL.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "User-defined Coq axiom -- not verified by kernel (2 occurrences, CWE-704)",
"type": "coq_axiom",
"file": "/home/runner/work/verisimdb/verisimdb/formal/Normalizer.v",
"action": "flag",
"rule_module": "code_safety",
"severity": "medium"
},
{
"reason": "getExn on external data -- use pattern matching (1 occurrences, CWE-754)",
"type": "getexn_on_external",
"file": "/home/runner/work/verisimdb/verisimdb/src/registry/Registry.res",
"action": "flag",
"rule_module": "code_safety",
"severity": "critical"
}
]Powered by Hypatia Neurosymbolic CI/CD Intelligence |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Doc-token sweep — the documentation half of the #84 VQL→VCL rename
Staged separately from code, per the repo's own doc-consonance policy (
tests/doc-consonance-gate.sh): that gate only forbids the phrase "VeriSim Query Language"; code identifiers and CHANGELOG history are explicitly out of scope and tracked under #84. This PR does the prose half and keeps the gate green.Renamed across 50 prose docs (
.adoc/.md)VQL→VCL(incl.VQL-DT→VCL-DTwhere it names the language);[source,vql]/```vqlfence tags →vcl.vql_{executor,bridge,type_checker,proof_certificate}.ex→vcl_*.ex;VeriSim.Query.VQL{Executor,Bridge,TypeChecker,ProofCertificate}→VCL*.Deliberately preserved → Stage B (unrenamed code + wire contracts)
Distinguished cleanly by file-suffix (
.res/.rs/.jl/.zigvs Stage-C's.ex):src/vql/VQL*.res,VeriSimVql,VqlKeywordsvql.rs/vql_bridge.rs/vql_fmt.rs, Juliavql.jl, Zigvql.zigfuzz_vql_parser,.vqlexample files,examples/vql-queries/api/v1/vql/execute, headerX-VQL-Version,type:vql_querysearch tagCHANGELOG.adoc(allow-listed history),docs/papers/*.{tex,bib}(citation-key integrity),*.a2mlmachine-readable metadataVerification
doc-consonance-gate.shstays GREEN (no banned misnomer phrase introduced)vql/vcl-based AsciiDocxref:/<<>>/anchor breakage (checked)vqltoken is an intentionally-preserved Stage-B identifier/contract (grep-classified)vclcode-path tokens (the only newX-VCL-*/text/vclare illustrative headers in an architecture-doc snippet — confirmed absent from code)Refs #84. Pure-docs change (no code, no CHANGELOG, no
.a2ml), so no compile/test impact; thegovernance / Code quality + docsgate is the relevant check.Generated by Claude Code