|
1 | | -;; SPDX-License-Identifier: PMPL-1.0-or-later |
2 | | -;; Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk> |
3 | | -;; META.a2ml — Meta-level information for anvomidaviser |
4 | | - |
5 | | -(meta |
6 | | - (version "0.1.0") |
7 | | - (last-updated "2026-03-21") |
8 | | - |
9 | | - (architecture-decisions |
10 | | - (adr "001-iser-pattern" |
11 | | - (status "accepted") |
12 | | - (context "Need to make Anvomidav choreography language accessible to coaches and skaters") |
13 | | - (decision "Use manifest-driven code generation: user describes program in TOML, tool generates Anvomidav") |
14 | | - (consequences "Coaches write zero Anvomidav code; complexity hidden behind ISU-familiar notation")) |
15 | | - |
16 | | - (adr "002-abi-ffi-standard" |
17 | | - (status "accepted") |
18 | | - (context "Need verified interop between Rust CLI, ISU scoring engine, and Anvomidav codegen") |
19 | | - (decision "Idris2 ABI for formal scoring rule proofs, Zig FFI for C-ABI bridge") |
20 | | - (consequences "Compile-time proof that GOE ranges, Zayak rule, element counts are correct")) |
21 | | - |
22 | | - (adr "003-isu-rules-as-types" |
23 | | - (status "accepted") |
24 | | - (context "ISU scoring rules are complex and change with each season's Communications") |
25 | | - (decision "Encode ISU rules as dependent types in Idris2 — GOE as bounded int, PCS as stepped decimal") |
26 | | - (consequences "Rule violations are type errors; impossible to produce invalid scores")) |
27 | | - |
28 | | - (adr "004-anvomidav-target" |
29 | | - (status "accepted") |
30 | | - (context "Unlike other -isers that target general-purpose languages, anvomidaviser targets Anvomidav") |
31 | | - (decision "Generate Anvomidav formal choreography descriptions with timing, transitions, and rink positions") |
32 | | - (consequences "Output is domain-specific and human-readable for skating community")) |
33 | | - |
34 | | - (adr "005-rsr-template" |
35 | | - (status "accepted") |
36 | | - (context "Need consistent project structure across 29+ -iser repos") |
37 | | - (decision "All repos cloned from rsr-template-repo with full CI/CD and governance") |
38 | | - (consequences "17 workflows, SECURITY.md, CONTRIBUTING, bot directives from day one"))) |
39 | | - |
40 | | - (development-practices |
41 | | - (language "Rust" (purpose "CLI orchestration and ISU protocol parsing")) |
42 | | - (language "Idris2" (purpose "ABI formal proofs of ISU scoring rules")) |
43 | | - (language "Zig" (purpose "FFI C-ABI bridge for scoring engine")) |
44 | | - (language "Anvomidav" (purpose "Target language — formal choreography notation")) |
45 | | - (build-tool "cargo") |
46 | | - (ci "GitHub Actions (17 workflows)")) |
47 | | - |
48 | | - (design-rationale |
49 | | - (principle "ISU-native input" |
50 | | - (explanation "Input uses ISU element codes (3Lz, CCoSp4, StSq3) — no new notation to learn")) |
51 | | - (principle "Formally verified scoring" |
52 | | - (explanation "Idris2 dependent types prove scoring rule correctness at compile time")) |
53 | | - (principle "Anvomidav-native output" |
54 | | - (explanation "Output is valid Anvomidav — the first programming language for figure skating choreography")) |
55 | | - (principle "Season-updatable" |
56 | | - (explanation "ISU rules change annually; base value tables and rule checks are data-driven, not hardcoded")))) |
| 1 | +# SPDX-License-Identifier: PMPL-1.0-or-later |
| 2 | +# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk> |
| 3 | +# |
| 4 | +# META.a2ml — Anvomidaviser meta-level information |
| 5 | +[metadata] |
| 6 | +version = "0.1.0" |
| 7 | +last-updated = "2026-03-21" |
| 8 | + |
| 9 | +[project-info] |
| 10 | +license = "PMPL-1.0-or-later" |
| 11 | +author = "Jonathan D.A. Jewell (hyperpolymath)" |
| 12 | + |
| 13 | +[architecture-decisions] |
| 14 | +decisions = [ |
| 15 | + # No ADRs recorded |
| 16 | +] |
| 17 | + |
| 18 | +[development-practices] |
| 19 | +versioning = "SemVer" |
| 20 | +documentation = "AsciiDoc" |
| 21 | +build-tool = "just" |
| 22 | + |
| 23 | +[maintenance-axes] |
| 24 | +scoping-first = true |
| 25 | +axis-1 = "must > intend > like" |
| 26 | +axis-2 = "corrective > adaptive > perfective" |
| 27 | +axis-3 = "systems > compliance > effects" |
0 commit comments