Skip to content

Commit da46c06

Browse files
hyperpolymathclaude
andcommitted
refactor(prose): VCL Step 3 phase 3a — read/write intent query phrases
Additional unambiguous patterns where read-vs-write intent determines the target word: Read intent: read/fetch a query, query returns/against/over/executed, etc. → perform an inspection / inspection X Write intent: write/send/dispatch a query → proposition Verisim-specific phrases: native query language → native consonance language query engine → consonance engine query interface → inspection interface ~2000 standalone 'query'/'queries' prose occurrences remain for individual per-file review — these are mostly in variable names, doc descriptions, and comments where context requires case-by-case judgment. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent bc2caca commit da46c06

29 files changed

Lines changed: 39 additions & 39 deletions

.claude/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The following files in `.machine_readable/` contain structured project metadata:
6262
- **Rust** - Core database engine, modality stores
6363
- **Elixir** - OTP orchestration layer
6464
- **ReScript** - VCL parser, federation registry
65-
- **VCL** - VeriSim Consonance Language (native query interface, NOT SQL)
65+
- **VCL** - VeriSim Consonance Language (native inspection interface, NOT SQL)
6666

6767
### BANNED
6868
- Python - Use Rust instead

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ cargo fmt --check
159159
| **Rust** | Core database engine, modality stores, CLI tools |
160160
| **Elixir** | OTP orchestration, distributed coordination |
161161
| **ReScript** | VCL parser, playground PWA |
162-
| **VCL** | VeriSim Consonance Language (query interface) |
162+
| **VCL** | VeriSim Consonance Language (inspection interface) |
163163

164164
### Not Accepted
165165

IMPLEMENTATION-ROADMAP.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ pub struct ExplainOutput {
306306
pub fn explain(query: &str) -> Result<ExplainOutput>;
307307
```
308308

309-
**Deliverable**: VCL queries execute, EXPLAIN works
309+
**Deliverable**: VCL inspections execute, EXPLAIN works
310310

311311
---
312312

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ SELECT GRAPH.* FROM HEXAD 'entity-001'
283283
PROOF INTEGRITY(my_contract)
284284
----
285285

286-
VCL-DT queries return a `ProvedResult` with data AND a proof certificate:
286+
VCL-DT inspections return a `ProvedResult` with data AND a proof certificate:
287287

288288
[source,elixir]
289289
----
@@ -457,7 +457,7 @@ Universities and research institutions federate their archives while maintaining
457457
Vector embeddings and symbolic graphs coexist in the same namespace. AI systems query both modalities without ETL, with formal proof certificates guaranteeing query correctness.
458458

459459
=== Verifiable Data Exchange
460-
ZKP proofs and dependent types enable tamper-evident knowledge exchange. VCL-DT queries return data with cryptographic proof certificates — you can verify the result without trusting the source.
460+
ZKP proofs and dependent types enable tamper-evident knowledge exchange. VCL-DT inspections return data with cryptographic proof certificates — you can verify the result without trusting the source.
461461

462462
== Documentation
463463

connectors/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ VeriSimDB connectors provide a two-direction integration architecture:
1616
**Outbound (Federation Adapters)**:: VeriSimDB reaches _out_ to external
1717
databases, normalising their data into the octad model and maintaining
1818
cross-modal consistency via drift detection. Federation adapters translate
19-
VeriSimDB federation protocol queries into the native query language of each
19+
VeriSimDB federation protocol queries into the native consonance language of each
2020
target store.
2121

2222
**Inbound (Client SDKs)**:: External applications reach _in_ to VeriSimDB
@@ -73,7 +73,7 @@ octad entities, VCL queries, and drift reports.
7373

7474
Federation adapters allow VeriSimDB to coordinate with external databases,
7575
treating them as modality-specialised peers in a federated mesh. Each adapter
76-
translates the VeriSimDB federation protocol into the native query language of
76+
translates the VeriSimDB federation protocol into the native consonance language of
7777
the target store, maps results back into octad octad entities, and reports drift
7878
scores so the normaliser can maintain cross-modal consistency.
7979

connectors/clients/elixir/lib/verisim_client/federation.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ defmodule VeriSimClient.Federation do
8181
Execute a federated query that fans out to all registered peers.
8282
8383
The query targets the specified modalities and passes `params` to each
84-
peer's local query engine. Results are merged and returned with per-peer
84+
peer's local consonance engine. Results are merged and returned with per-peer
8585
attribution.
8686
8787
## Parameters

connectors/clients/elixir/lib/verisim_client/vcl.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule VeriSimClient.Vql do
55
@moduledoc """
66
VeriSim Consonance Language (VCL) execution for VeriSimDB.
77
8-
VCL is VeriSimDB's native query language, supporting SQL-like syntax extended
8+
VCL is VeriSimDB's native consonance language, supporting SQL-like syntax extended
99
with multi-modal operations (vector similarity, graph traversal, spatial
1010
predicates, drift thresholds, etc.). This module provides methods to execute
1111
VCL statements and retrieve explain / query plans.

connectors/clients/rescript/src/VeriSimVql.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// VeriSimDB ReScript Client — VQL (VeriSimDB Query Language) operations.
55
//
6-
// VQL is VeriSimDB's native query language for multi-modal queries that span
6+
// VQL is VeriSimDB's native consonance language for multi-modal queries that span
77
// graph traversals, vector similarity, spatial filters, and temporal constraints
88
// in a single statement. This module provides execution and explain functions.
99

connectors/clients/rust/src/federation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ impl VeriSimClient {
7171
/// Execute a federated query that fans out to all registered peers.
7272
///
7373
/// The query targets the specified modalities and passes `params` to each
74-
/// peer's local query engine. Results are merged and returned with per-peer
74+
/// peer's local consonance engine. Results are merged and returned with per-peer
7575
/// attribution.
7676
///
7777
/// # Arguments

connectors/clients/rust/src/vcl.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
//! VeriSim Consonance Language (VCL) execution.
55
//!
6-
//! VCL is VeriSimDB's native query language, supporting SQL-like syntax extended
6+
//! VCL is VeriSimDB's native consonance language, supporting SQL-like syntax extended
77
//! with multi-modal operations (vector similarity, graph traversal, spatial
88
//! predicates, drift thresholds, etc.). This module provides methods to execute
99
//! VCL statements and retrieve explain / query plans.
@@ -16,7 +16,7 @@ use crate::error::Result;
1616
/// Response from a VCL inspection execution or explain request.
1717
#[derive(Debug, Clone, Serialize, Deserialize)]
1818
pub struct VqlResponse {
19-
/// Whether the query executed successfully.
19+
/// Whether the inspection executed successfully.
2020
pub success: bool,
2121
/// The type of VCL statement ("SELECT", "INSERT", "UPDATE", "DELETE", "EXPLAIN", etc.).
2222
pub statement_type: String,

0 commit comments

Comments
 (0)