|
1 | 1 | { |
2 | | - "$schema": "https://json-schema.org/draft/2020-12/schema", |
3 | | - "$id": "https://triadicframeworks.org/schemas/intent.v1.json", |
4 | | - "title": "RTT Intent Block (v1)", |
5 | | - "description": "Defines the minimal intent substrate for RTTcode packets, capturing directional influence and desired micro-state adjustments.", |
| 2 | + "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | + "$id": "https://triadicframeworks.org/schemas/intent.v1.json", |
| 4 | + "$comment": "RTT Intent sub-schema — refreshed 2026-05-06 to add module metadata and session context.", |
| 5 | + |
| 6 | + "title": "RTT Intent Block (v1)", |
| 7 | + "description": "Defines the minimal intent substrate for RTTcode packets, capturing directional influence and desired micro-state adjustments. Intent expresses what an agent wants to happen — it does not prescribe behavior, consistent with D369's non-claim NC-5.", |
| 8 | + |
| 9 | + "_meta": { |
| 10 | + "module": "RTT/codes", |
| 11 | + "canonical_id": "RTT_CODES_INTENT", |
| 12 | + "role": "engine", |
| 13 | + "version": "1.1", |
| 14 | + "status": "canon-stable", |
| 15 | + "author": "Nawder Loswin", |
| 16 | + "license": "MIT", |
| 17 | + "canonical_path": "/docs/schemas/intent.v1.json", |
| 18 | + "module_home": "/docs/rtt/codes/", |
| 19 | + "parent_schema": "rttcode.v1.json", |
| 20 | + "last_updated": "2026-05-06" |
| 21 | + }, |
| 22 | + |
| 23 | + "_session_context": { |
| 24 | + "canon": "active (rtt-codes-core)", |
| 25 | + "drift": "minimal (metadata-locked)", |
| 26 | + "coherence": "stable (intent grammar)", |
| 27 | + "audience": "developers + researchers + tool authors + AIs" |
| 28 | + }, |
| 29 | + |
| 30 | + "_version_history": [ |
| 31 | + { |
| 32 | + "version": "1.0", |
| 33 | + "date": "2025-01-01", |
| 34 | + "note": "Initial intent schema release." |
| 35 | + }, |
| 36 | + { |
| 37 | + "version": "1.1", |
| 38 | + "date": "2026-05-06", |
| 39 | + "note": "Metadata refresh — added _meta, _session_context, _version_history. No property changes." |
| 40 | + } |
| 41 | + ], |
| 42 | + |
6 | 43 | "type": "object", |
7 | 44 | "additionalProperties": false, |
8 | 45 |
|
|
14 | 51 | ], |
15 | 52 |
|
16 | 53 | "properties": { |
| 54 | + |
17 | 55 | "intent_version": { |
18 | | - "type": "string", |
19 | | - "const": "1.0.0", |
| 56 | + "type": "string", |
| 57 | + "const": "1.0.0", |
20 | 58 | "description": "Version of the intent schema." |
21 | 59 | }, |
22 | 60 |
|
23 | 61 | "target": { |
24 | | - "type": "string", |
25 | | - "description": "The entity or subsystem the intent is directed toward." |
| 62 | + "type": "string", |
| 63 | + "description": "The entity or subsystem the intent is directed toward. Must match an entity id within the same RTTcode packet." |
26 | 64 | }, |
27 | 65 |
|
28 | 66 | "direction": { |
29 | | - "type": "string", |
30 | | - "enum": ["increase", "decrease", "stabilize", "invert"], |
31 | | - "description": "Desired directional influence on the target." |
| 67 | + "type": "string", |
| 68 | + "enum": ["increase", "decrease", "stabilize", "invert"], |
| 69 | + "description": "Desired directional influence on the target. 'stabilize' resists drift; 'invert' reverses current trajectory." |
32 | 70 | }, |
33 | 71 |
|
34 | 72 | "magnitude": { |
35 | | - "type": "number", |
36 | | - "description": "Strength of the intended influence." |
| 73 | + "type": "number", |
| 74 | + "description": "Strength of the intended influence. Scale is relative to the environment's boundary range." |
37 | 75 | } |
| 76 | + |
38 | 77 | } |
39 | 78 | } |
40 | | - |
|
0 commit comments