Skip to content

Commit b2b65d2

Browse files
committed
chore: flatten self-validating directory structure
1 parent 0fbe940 commit b2b65d2

201 files changed

Lines changed: 623 additions & 193 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/CLAUDE.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
<!-- SPDX-License-Identifier: MPL-2.0 -->
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
25
## Machine-Readable Artefacts
36

47
The following files in `.machine_readable/` contain structured project metadata:
@@ -44,7 +47,7 @@ The following files in `.machine_readable/` contain structured project metadata:
4447
| Bun | Deno |
4548
| pnpm/yarn | Deno |
4649
| Go | Rust |
47-
| Python | Julia/Rust/ReScript |
50+
| Python | Julia/Rust/AffineScript |
4851
| Java/Kotlin | Rust/Tauri/Dioxus |
4952
| Swift | Tauri/Dioxus |
5053
| React Native | Tauri/Dioxus |
@@ -62,7 +65,7 @@ Both are FOSS with independent governance (no Big Tech).
6265
### Enforcement Rules
6366

6467
1. **No new TypeScript files** - Convert existing TS to AffineScript
65-
2. **No package.json for runtime deps** - Use deno.json imports
68+
2. **No package.json - use deno.json deps** - Use deno.json imports
6669
3. **No node_modules in production** - Deno caches deps automatically
6770
4. **No Go code** - Use Rust instead
6871
5. **No Python anywhere** - Use Julia for data/batch, Rust for systems, AffineScript for apps

.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/documentation.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: Documentation
37
about: Report unclear, missing, or incorrect documentation

.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/ISSUE_TEMPLATE/question.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: Question
37
about: Ask a question about usage or behaviour

.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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

.github/workflows/cargo-audit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ permissions: read-all
2020
jobs:
2121
audit:
2222
runs-on: ubuntu-latest
23+
timeout-minutes: 15
2324
steps:
2425
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2526

@@ -35,6 +36,7 @@ jobs:
3536
# Optional: Create issues for vulnerabilities
3637
create-issue:
3738
runs-on: ubuntu-latest
39+
timeout-minutes: 15
3840
needs: audit
3941
if: failure()
4042
permissions:

.github/workflows/cflite_batch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permissions: read-all
1010
jobs:
1111
BatchFuzzing:
1212
runs-on: ubuntu-latest
13+
timeout-minutes: 15
1314
strategy:
1415
fail-fast: false
1516
matrix:

.github/workflows/cflite_pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ permissions: read-all
99
jobs:
1010
PR:
1111
runs-on: ubuntu-latest
12+
timeout-minutes: 15
1213
strategy:
1314
fail-fast: false
1415
matrix:

0 commit comments

Comments
 (0)