Skip to content

Commit 31c8c6f

Browse files
committed
Standardize workspace: Final recursive synchronization
1 parent f816d4d commit 31c8c6f

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ my-lang/
5656
├── README.adoc
5757
├── SECURITY.md
5858
├── flake.nix # Nix flake (Perimeter 1)
59-
└── justfile # Task runner (Perimeter 1)
59+
└── Justfile # Task runner (Perimeter 1)
6060
```
6161
6262
---

frontier-practices/RSR_OUTLINE.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This repository provides the standardized structure, configuration, and tooling
1717

1818
* Bootstrap new projects with RSR compliance
1919
* Reference the standard directory structure
20-
* Copy configuration templates (justfile, STATE.scm, etc.)
20+
* Copy configuration templates (Justfile, STATE.scm, etc.)
2121

2222
== Quick Start
2323

@@ -32,7 +32,7 @@ rm -rf .git
3232
git init
3333
3434
# Customize
35-
sed -i 's/RSR-template-repo/my-project/g' justfile guix.scm README.adoc
35+
sed -i 's/RSR-template-repo/my-project/g' Justfile guix.scm README.adoc
3636
3737
# Enter development environment
3838
guix shell -D -f guix.scm
@@ -83,7 +83,7 @@ just validate-rsr
8383

8484
== Justfile Features
8585

86-
The template justfile provides:
86+
The template Justfile provides:
8787

8888
* **~10 billion recipe combinations** via matrix recipes
8989
* **Cookbook generation**: `just cookbook` → `docs/just-cookbook.adoc`
@@ -109,7 +109,7 @@ just ci # Full CI pipeline
109109
110110
just validate # RSR + STATE validation
111111
just docs # Generate all docs
112-
just cookbook # Generate justfile docs
112+
just cookbook # Generate Justfile docs
113113
114114
just guix-shell # Guix dev environment
115115
just container-build # Build container
@@ -133,7 +133,7 @@ project/
133133
│ ├── man/
134134
│ └── just-cookbook.adoc
135135
├── guix.scm # Guix package
136-
├── justfile # Task runner
136+
├── Justfile # Task runner
137137
├── LICENSE.txt # Dual license
138138
├── README.adoc # Overview
139139
├── RSR_COMPLIANCE.adoc # Compliance

playground/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ mylang-playground/
4242
├── README.adoc
4343
├── SECURITY.md
4444
├── flake.nix # Nix flake (Perimeter 1)
45-
└── justfile # Task runner (Perimeter 1)
45+
└── Justfile # Task runner (Perimeter 1)
4646
```
4747
4848
---

playground/hives/me/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3838
- CODE_OF_CONDUCT.md (CCCP - Community Code of Creative Practice)
3939
- MAINTAINERS.md (TPCF - Tri-Perimeter Contribution Framework)
4040
- .well-known/ directory (security.txt, ai.txt, humans.txt)
41-
- justfile with 20+ build recipes
41+
- Justfile with 20+ build recipes
4242
- flake.nix for Nix reproducible builds
4343

4444
### Changed
@@ -178,7 +178,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
178178
- Offline-first: No network dependencies, works air-gapped
179179
- Documentation: README, LICENSE.txt, SECURITY.md, CONTRIBUTING.md, CODE_OF_CONDUCT.md, MAINTAINERS.md, CHANGELOG.md
180180
- .well-known/ directory: security.txt (RFC 9116), ai.txt, humans.txt
181-
- Build system: justfile, flake.nix, CI/CD
181+
- Build system: Justfile, flake.nix, CI/CD
182182
- TPCF: Tri-Perimeter Contribution Framework (Perimeter 3 open)
183183

184184
#### Research Value

playground/hives/me/RSR_COMPLIANCE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The My Language project has achieved **full Bronze Level compliance** with the R
2424
| **3. Offline-First** || No network dependencies, works air-gapped |
2525
| **4. Documentation** || 8 required files present |
2626
| **5. .well-known/** || RFC 9116 security.txt + ai.txt + humans.txt |
27-
| **6. Build System** || justfile (30+ recipes) + flake.nix + CI/CD |
27+
| **6. Build System** || Justfile (30+ recipes) + flake.nix + CI/CD |
2828
| **7. Testing** || Test infrastructure + passing tests |
2929
| **8. TPCF** || Tri-Perimeter Contribution Framework |
3030
| **9. Dual License** || MIT + Palimpsest v0.8 |
@@ -192,7 +192,7 @@ Reproducible, automated build processes.
192192

193193
### Evidence
194194

195-
#### justfile (30+ Recipes) ✅
195+
#### Justfile (30+ Recipes) ✅
196196
- **Location**: `justfile`
197197
- **Recipes**: 30+ automated tasks
198198
- Building: `build`, `build-debug`, `build-crate`
@@ -223,7 +223,7 @@ Reproducible, automated build processes.
223223

224224
### Verification
225225
```bash
226-
# Use justfile
226+
# Use Justfile
227227
just build
228228
just test
229229
just rsr-check
@@ -372,7 +372,7 @@ Automated compliance checking.
372372
# Pass Rate: 100%
373373
```
374374

375-
#### justfile Integration
375+
#### Justfile Integration
376376
```bash
377377
just rsr-check
378378
```
@@ -389,7 +389,7 @@ nix flake check
389389
3. ✅ Offline-first (no network dependencies)
390390
4. ✅ Documentation (all 8 files present)
391391
5. ✅ .well-known/ (security.txt, ai.txt, humans.txt)
392-
6. ✅ Build system (justfile, flake.nix, CI/CD)
392+
6. ✅ Build system (Justfile, flake.nix, CI/CD)
393393
7. ✅ Testing (infrastructure + passing tests)
394394
8. ✅ TPCF (governance structure)
395395
9. ✅ Dual license (MIT + Palimpsest)

playground/hives/me/scripts/verify-rsr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ echo "━━━━━━━━━━━━━━━"
170170
check_file "Cargo.toml"
171171
check_file "justfile"
172172

173-
# Check justfile recipes
173+
# Check Justfile recipes
174174
if [ -f "justfile" ]; then
175175
RECIPES=$(just --list --unsorted 2>/dev/null | wc -l || echo 0)
176176
if [ "$RECIPES" -gt 20 ]; then

0 commit comments

Comments
 (0)