NEUROSYM.a2ml defines symbolic semantics for operations. It specifies meaning - composition rules, inversion semantics, and proof obligations - separate from permission (META) or operational gating (AGENTIC).
NEUROSYM defines meaning. It does not grant permission.
Key capabilities:
-
Operation Semantics - Forward and inverse definitions
-
Composition Rules - How operations safely combine
-
Proof Obligations - Verification interfaces for claims
-
Type System - Semantic types for operations and data
This specification is part of the A2ML Format Family:
| Format | Repository | Purpose |
|---|---|---|
META.a2ml |
Constitutional authority, architecture decisions |
|
STATE.a2ml |
Companion to META |
Project state tracking |
ECOSYSTEM.a2ml |
Companion to META |
Ecosystem positioning |
PLAYBOOK.a2ml |
Executable plans derived from META |
|
AGENTIC.a2ml |
Operational gating for AI agents |
|
NEUROSYM.a2ml |
neurosym-a2ml (this repo) |
Symbolic semantics, proof obligations |
ANCHOR.a2ml |
Project recalibration/realignment |
All formats are satellites of hyperpolymath/standards.
NEUROSYM operates at step 3 in the execution pipeline:
1. META validation <- Constitutional authority check
2. AGENTIC gating <- Operational safety
3. NEUROSYM semantics <- THIS SPECIFICATION
4. PLAYBOOK derivation <- Build executable plan
5. Execution
6. ECOSYSTEM check
7. STATE updateOperations produce claims with different verification levels:
-
verified - Operation outcome can be proven correct
-
unverified - Outcome claimed but not proven
-
compensable - Can be undone via compensating action
-
irreversible - Cannot be undone
All claimed properties MUST have associated proof obligations:
[neurosym.proof-obligations.content-integrity]
description = "Verify content has not been corrupted"
verification-method = "hash-comparison"
failure-action = "downgrade-to-unverified"Failure to discharge a proof obligation MUST downgrade the claim. Claims are NEVER silently preserved at a higher level than proven.
The complete normative specification is in spec/NEUROSYM-FORMAT-SPEC.adoc.
neurosym-a2ml/
+-- spec/
| +-- NEUROSYM-FORMAT-SPEC.adoc # Normative specification
+-- examples/
| +-- minimal.a2ml # Minimal valid NEUROSYM file
| +-- comprehensive.a2ml # Full-featured example
+-- .machine_readable/
| +-- STATE.a2ml # Project state
| +-- META.a2ml # Architecture decisions
| +-- ECOSYSTEM.a2ml # Ecosystem position
+-- README.adoc # This fileContributions are welcome. Please ensure:
-
All changes follow the normative specification
-
Examples validate against the spec
-
SPDX license headers on all files