You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -413,6 +413,19 @@ And launch an Antithesis test run with:
413
413
scripts/antithesis/launch.sh
414
414
```
415
415
416
+
## Annotating intent with Aristo
417
+
418
+
Turso uses [Aristo](https://github.com/aretta-ai/aristo) to capture design intent that the code alone doesn't spell out — invariants a refactor could silently break — as `#[aristo::intent("...")]` annotations attached to the code. They're optional; reach for one only when a property is invisible from the signature and not already guarded by a test.
419
+
420
+
The macros are a workspace dependency, so annotated code builds normally. To author and lint annotations, install the CLI:
421
+
422
+
```console
423
+
cargo install aristo-cli # provides the `aristo` command
424
+
aristo lint # lint annotation prose (also runs in CI on every PR)
425
+
```
426
+
427
+
To machine-check annotations, run `/aristo-neural-verify` in Claude Code.
428
+
416
429
## Adding Third Party Dependencies
417
430
418
431
When you want to add third party dependencies, please follow these steps:
0 commit comments