Skip to content

Commit 2d3162b

Browse files
committed
chore: rename k9 directories to self-validating for clarity
1 parent f881b92 commit 2d3162b

38 files changed

Lines changed: 266 additions & 111 deletions

.claude/CLAUDE.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
# CLAUDE.md - AI Assistant Instructions
26

37
## Language Policy (Hyperpolymath Standard)
@@ -6,14 +10,14 @@
610

711
| Language/Tool | Use Case | Notes |
812
|---------------|----------|-------|
9-
| **ReScript** | Primary application code | Compiles to JS, type-safe |
13+
| **AffineScript** | Primary application code | Compiles to JS, type-safe |
1014
| **Deno** | Runtime & package management | Replaces Node/npm/bun |
1115
| **Rust** | Performance-critical, systems, WASM | Preferred for CLI tools |
1216
| **Tauri 2.0+** | Mobile apps (iOS/Android) | Rust backend + web UI |
1317
| **Dioxus** | Mobile apps (native UI) | Pure Rust, React-like |
1418
| **Gleam** | Backend services | Runs on BEAM or compiles to JS |
1519
| **Bash/POSIX Shell** | Scripts, automation | Keep minimal |
16-
| **JavaScript** | Only where ReScript cannot | MCP protocol glue, Deno APIs |
20+
| **JavaScript** | Only where AffineScript cannot | MCP protocol glue, Deno APIs |
1721
| **Nickel** | Configuration language | For complex configs |
1822
| **Guile Scheme** | State/meta files | .machine_readable/6a2/STATE.a2ml, .machine_readable/6a2/META.a2ml, .machine_readable/6a2/ECOSYSTEM.a2ml |
1923
| **Julia** | Batch scripts, data processing | Per RSR |
@@ -24,13 +28,13 @@
2428

2529
| Banned | Replacement |
2630
|--------|-------------|
27-
| TypeScript | ReScript |
31+
| TypeScript | AffineScript |
2832
| Node.js | Deno |
2933
| npm | Deno |
3034
| Bun | Deno |
3135
| pnpm/yarn | Deno |
3236
| Go | Rust |
33-
| Python | Julia/Rust/ReScript |
37+
| Python | Julia/Rust/AffineScript |
3438
| Java/Kotlin | Rust/Tauri/Dioxus |
3539
| Swift | Tauri/Dioxus |
3640
| React Native | Tauri/Dioxus |
@@ -40,7 +44,7 @@
4044

4145
For neural network implementations:
4246
- **Rust** preferred for ESN, LSM, and performance-critical neural code
43-
- **ReScript** for web-based visualizations and UIs
47+
- **AffineScript** for web-based visualizations and UIs
4448
- **Deno** for orchestration and API servers
4549

4650
### Security Requirements

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Bug report
37
about: Create a report to help us improve

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Custom issue template
37
about: Describe this issue template's purpose here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Feature request
37
about: Suggest an idea for this project

.github/copilot/coding-agent.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mcp_servers:
2+
boj-server:
3+
command: npx
4+
args: ["-y", "@hyperpolymath/boj-server@latest"]
5+
env:
6+
BOJ_URL: http://localhost:7700

.github/workflows/boj-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
trigger-boj:
99
runs-on: ubuntu-latest
10+
timeout-minutes: 15
1011
steps:
1112
- name: Checkout
1213
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.github/workflows/casket-pages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ concurrency:
1818
jobs:
1919
build:
2020
runs-on: ubuntu-latest
21+
timeout-minutes: 15
2122
steps:
2223
- name: Checkout
2324
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
@@ -109,6 +110,7 @@ jobs:
109110
name: github-pages
110111
url: ${{ steps.deployment.outputs.page_url }}
111112
runs-on: ubuntu-latest
113+
timeout-minutes: 15
112114
needs: build
113115
steps:
114116
- name: Deploy to GitHub Pages

.github/workflows/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ permissions:
2323
jobs:
2424
analyze:
2525
runs-on: ubuntu-latest
26+
timeout-minutes: 15
2627
permissions:
2728
contents: read
2829
security-events: write

.github/workflows/dogfood-gate.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
a2ml-validate:
2323
name: Validate A2ML manifests
2424
runs-on: ubuntu-latest
25+
timeout-minutes: 15
2526

2627
steps:
2728
- name: Checkout repository
@@ -66,6 +67,7 @@ jobs:
6667
k9-validate:
6768
name: Validate K9 contracts
6869
runs-on: ubuntu-latest
70+
timeout-minutes: 15
6971

7072
steps:
7173
- name: Checkout repository
@@ -115,6 +117,7 @@ jobs:
115117
empty-lint:
116118
name: Empty-linter (invisible characters)
117119
runs-on: ubuntu-latest
120+
timeout-minutes: 15
118121

119122
steps:
120123
- name: Checkout repository
@@ -179,6 +182,7 @@ jobs:
179182
groove-check:
180183
name: Groove manifest check
181184
runs-on: ubuntu-latest
185+
timeout-minutes: 15
182186

183187
steps:
184188
- name: Checkout repository
@@ -237,6 +241,7 @@ jobs:
237241
dogfood-summary:
238242
name: Dogfooding compliance summary
239243
runs-on: ubuntu-latest
244+
timeout-minutes: 15
240245
needs: [a2ml-validate, k9-validate, empty-lint, groove-check]
241246
if: always()
242247

.github/workflows/governance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ permissions:
3232
jobs:
3333
governance:
3434
uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@861b5e911d9e5dcfb3c0ab3dd2a9a3c8fd0a1613
35+
timeout-minutes: 10

0 commit comments

Comments
 (0)