Skip to content

Commit c94e3d7

Browse files
committed
Standardize workspace: Capitalize Justfile references in scripts and docs
1 parent 2682376 commit c94e3d7

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Built with **ReScript** and **Deno** following the Hyperpolymath Language Standa
2828
| npm/yarn/pnpm | Deno imports |
2929
| Bun | Deno |
3030
| Go | Rust |
31-
| Makefile | justfile |
31+
| Makefile | Justfile |
3232

3333
## Project Structure
3434

@@ -47,7 +47,7 @@ preference-injector/
4747
├── docs/ # Documentation
4848
├── deno.json # Deno configuration
4949
├── bsconfig.json # ReScript configuration
50-
├── justfile # Task runner (NOT Makefile)
50+
├── Justfile # Task runner (NOT Makefile)
5151
├── Mustfile.epx # Deployment state contract
5252
└── config.ncl # Nickel configuration
5353
```
@@ -236,7 +236,7 @@ just ci # Full CI pipeline
236236
just rsr-verify # RSR compliance check
237237
```
238238

239-
**Do NOT use make/Makefile** - use justfile instead.
239+
**Do NOT use make/Makefile** - use Justfile instead.
240240

241241
## Additional Notes
242242

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ preference-injector/
243243
├── docs/ # Documentation
244244
├── deno.json # Deno configuration
245245
├── bsconfig.json # ReScript configuration
246-
├── justfile # Just task runner
246+
├── Justfile # Just task runner
247247
├── Mustfile.epx # Deployment state contract
248248
└── config.ncl # Nickel configuration
249249
----

docs/RSR-COMPLIANCE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
| **2. Memory Safety** | ⚠️ 40% | ❌ 0% | ❌ 0% | ❌ 0% | **40%** | Deno sandbox, no unsafe code, but no Rust/Ada |
1111
| **3. Offline-First** | ❌ 0% | ❌ 0% | ❌ 0% | ❌ 0% | **0%** | GraphQL requires network, no offline sync |
1212
| **4. Documentation** | ⚠️ 60% | ❌ 0% | ❌ 0% | ❌ 0% | **60%** | Missing SECURITY.md, CODE_OF_CONDUCT.md, MAINTAINERS.md |
13-
| **5. Build System** | ⚠️ 40% | ❌ 0% | ❌ 0% | ❌ 0% | **40%** | deno.json only, no justfile or flake.nix |
13+
| **5. Build System** | ⚠️ 40% | ❌ 0% | ❌ 0% | ❌ 0% | **40%** | deno.json only, no Justfile or flake.nix |
1414
| **6. Testing** | ⚠️ 50% | ❌ 0% | ❌ 0% | ❌ 0% | **50%** | Unit tests exist but incomplete coverage |
1515
| **7. Security** | ⚠️ 30% | ❌ 0% | ❌ 0% | ❌ 0% | **30%** | Post-quantum planned but not implemented |
1616
| **8. .well-known/** | ❌ 0% | ❌ 0% | ❌ 0% | ❌ 0% | **0%** | Missing security.txt, ai.txt, humans.txt |
@@ -33,7 +33,7 @@
3333
### ❌ Currently Failing (7/11)
3434
1.**Memory Safety**: Need Rust/Ada core or explicit WASM sandboxing
3535
2.**Offline-First**: GraphQL API requires network, no local-first architecture
36-
3.**Build System**: Missing justfile and flake.nix
36+
3.**Build System**: Missing Justfile and flake.nix
3737
4.**Security**: Missing SECURITY.md and .well-known/ directory
3838
5.**Post-Quantum Crypto**: Designed but not implemented
3939
6.**TPCF**: No tri-perimeter framework or governance model
@@ -50,7 +50,7 @@
5050
- [ ] Create .well-known/security.txt (RFC 9116)
5151
- [ ] Create .well-known/ai.txt (AI training policies)
5252
- [ ] Create .well-known/humans.txt (attribution)
53-
- [ ] Add justfile with 20+ recipes
53+
- [ ] Add Justfile with 20+ recipes
5454
- [ ] Add flake.nix for reproducible Nix builds
5555
- [ ] Implement offline-first architecture with IndexedDB/OPFS
5656
- [ ] Add dual MIT + Palimpsest v0.8 licensing
@@ -128,7 +128,7 @@ The reference implementation shows:
128128
1. **Run compliance check**: `deno run scripts/rsr-verify.ts`
129129
2. **Add missing docs**: Start with SECURITY.md and CODE_OF_CONDUCT.md
130130
3. **Create .well-known/**: security.txt is RFC standard
131-
4. **Add justfile**: Port npm scripts to just recipes
131+
4. **Add Justfile**: Port npm scripts to just recipes
132132
5. **Implement offline mode**: IndexedDB for local-first storage
133133

134134
---

0 commit comments

Comments
 (0)