Skip to content

Commit 1f95fa5

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

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

CHANGELOG.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
219219

220220
- **Infrastructure**
221221
- Containerfile for reproducible builds
222-
- Complete justfile with 25+ recipes
222+
- Complete Justfile with 25+ recipes
223223
- scripts/verify-proofs.sh multi-prover orchestration
224224

225225
=== Fixed
@@ -301,7 +301,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
301301
- proofs/README.md
302302

303303
=== Infrastructure
304-
- justfile build automation
304+
- Justfile build automation
305305
- scripts/demo_verified_operations.sh
306306
- Nix flake for reproducible builds
307307
- GitLab CI/CD configuration

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Valence Shell uses a graduated trust model with three contribution perimeters:
5050
- `impl/elixir/` - Elixir implementation
5151
- `scripts/` - Demonstration scripts
5252
- `docs/` - Technical documentation
53-
- Build system (justfile, Containerfile)
53+
- Build system (Justfile, Containerfile)
5454
- CI/CD pipelines
5555

5656
**Requirements**:

INTEGRATION_SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,5 +491,5 @@ Integration with Absolute Zero and ECHIDNA transforms Valence Shell from:
491491
**Last Updated**: 2025-11-22
492492
**Integration Phase**: 1 (Infrastructure) ✅ Complete
493493
**Next Phase**: 2 (Composition & Equivalence)
494-
**Files Created**: 3 (verify-proofs.sh, justfile, INTEGRATION.md)
494+
**Files Created**: 3 (verify-proofs.sh, Justfile, INTEGRATION.md)
495495
**Lines Added**: ~900 lines of automation and documentation

RSR_COMPLIANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ ls .well-known/security.txt .well-known/ai.txt .well-known/humans.txt # ✅ ALL
341341
- [x] .well-known/humans.txt (attribution)
342342

343343
**Build System Checklist**:
344-
- [x] justfile with comprehensive recipes
344+
- [x] Justfile with comprehensive recipes
345345
- [x] flake.nix for Nix builds
346346
- [x] Containerfile for containerized builds
347347
- [x] .gitlab-ci.yml for CI/CD

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

alkahest-shell-transmuter/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ valence-shell/
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
---

alkahest-shell-transmuter/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

docs/VALENCE_VISION_AND_PROGRESS.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*Status:* Complete
3838

3939
* Repo structure, docs, governance, licensing
40-
* Build/test scaffolding (justfile, scripts)
40+
* Build/test scaffolding (Justfile, scripts)
4141
* Multi-prover baseline wiring
4242

4343
=== Phase 1 — Abstract Proofs

0 commit comments

Comments
 (0)