Skip to content

Commit 3d52acd

Browse files
committed
Standardize workspace: Capitalize Justfile references in scripts and docs
1 parent e8be300 commit 3d52acd

12 files changed

Lines changed: 20 additions & 20 deletions

CLAUDE.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ absolute-zero/
6464
├── README.md # Comprehensive research documentation
6565
├── LICENSE-AGPL3.md # AGPL 3.0 license
6666
├── LICENSE-PALIMPSEST.md # Palimpsest 0.5 academic license
67-
├── justfile # Build automation (used on GitLab)
67+
├── Justfile # Build automation (used on GitLab)
6868
6969
├── interpreters/
7070
│ └── rescript/

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ just test # Run test suite
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
---

CURRENT-STATUS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
### 3. ECHIDNA Integration ✅ DONE
1818
- **Time**: ~30 minutes
19-
- **Result**: Scripts, justfile recipes, ready to use
19+
- **Result**: Scripts, Justfile recipes, ready to use
2020
- **Status**: Can now run `just echidna-list`, `just echidna-suggest`, etc.
2121
- **Commit**: c181523
2222

ECHIDNA-NEUROSYM-INTEGRATION.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@ CNO-specific tactics:
311311
```bash
312312
cd ~/Documents/hyperpolymath-repos/absolute-zero
313313

314-
# Create justfile recipe
315-
cat >> justfile <<'EOF'
314+
# Create Justfile recipe
315+
cat >> Justfile <<'EOF'
316316

317317
# ============================================================================
318318
# ECHIDNA Neurosymbolic Integration

INTEGRATION-STATUS-2026-02-05.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
**Infrastructure Setup**:
4949
* Built ECHIDNA from source (cargo build --release)
5050
* Created `scripts/use-echidna.sh` wrapper script
51-
* Added justfile recipes:
51+
* Added Justfile recipes:
5252
- `just echidna-list` - List Admitted proofs
5353
- `just echidna-suggest <file>` - Get tactic suggestions
5454
- `just echidna-complete <file>` - Auto-complete attempts

PROOF-VS-TEST-SUBJECTS.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ absolute-zero/
130130
│ └── whitespace/ # ❌ README mentions Python, doesn't exist
131131
132132
├── package.json # ⚠️ Only TypeScript compilation
133-
└── justfile # ⚠️ References Python that doesn't exist
133+
└── Justfile # ⚠️ References Python that doesn't exist
134134
```
135135

136136
=== What Needs to Change
@@ -146,7 +146,7 @@ cargo new --lib interpreters/brainfuck-rs
146146
cargo new --lib interpreters/whitespace-rs
147147

148148
# 3. Update README.adoc to reflect reality
149-
# 4. Update justfile recipes
149+
# 4. Update Justfile recipes
150150
```
151151

152152
**Option B: Keep as Test Subjects (Acceptable Exception)**
@@ -282,7 +282,7 @@ Once we prove CNO for mainstream languages:
282282
* [ ] **Remove outdated Python references** from README
283283
* [ ] **Clarify package.json** is for TypeScript only (minimal)
284284
* [ ] **Document**: Malbolge formalization in Coq (already done)
285-
* [ ] **Update justfile**: Remove Python interpreter recipes
285+
* [ ] **Update Justfile**: Remove Python interpreter recipes
286286

287287
### Near-term (v2.0)
288288

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ absolute-zero/
7474
├── papers/ # Research paper drafts
7575
│ └── .latex/
7676
77-
├── justfile # Build automation
77+
├── Justfile # Build automation
7878
├── Containerfile # Containerized verification (Podman/Docker)
7979
├── VERIFICATION.md # Detailed verification status
8080
└── .gitlab-ci.yml # CI/CD pipeline

ROADMAP-UPDATED.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ absolute-zero/
8080
* [ ] **Language Policy Cleanup**
8181
- Remove outdated Python references from README
8282
- Document: Python is a TEST SUBJECT, not a dependency
83-
- Update justfile to remove non-existent Python recipes
83+
- Update Justfile to remove non-existent Python recipes
8484

8585
* [ ] **Documentation Audit**
8686
- Clarify proof systems vs. test subjects

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

SESSION-COMPLETE-2026-02-05.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ $ head -1 src/rust/main.rs
149149
**Changes**:
150150
* Built ECHIDNA from source (Rust + Julia)
151151
* Created `scripts/use-echidna.sh` wrapper
152-
* Added 6 justfile recipes
152+
* Added 6 Justfile recipes
153153
* Documented integration status
154154

155155
---

0 commit comments

Comments
 (0)