Skip to content

Commit b27f376

Browse files
Fix CI citation-spine bash bug + add missing spine elements
((SCORE++)) returns exit code 1 when SCORE goes 0→1 under bash -e. Replaced with SCORE=$((SCORE + 1)) which always returns 0. Added Paul Desai, Active MirrorOS, N1 Intelligence to README footer. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5c28f16 commit b27f376

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
for element in "${SPINE_ELEMENTS[@]}"; do
117117
if grep -qi "$element" README.md 2>/dev/null; then
118118
echo "✓ Found: $element"
119-
((SCORE++))
119+
SCORE=$((SCORE + 1))
120120
else
121121
echo "✗ Missing: $element"
122122
fi

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,7 @@ The local OS securely exposes read-only or authorized nodes to the internet via
6666
---
6767

6868
*This repository represents the meta-layer documentation of MirrorDNA. The actual infrastructure spans 120 separate repositories and 45 persistent background services. It is the groundwork for a future where personal AI is an operating system, not a subscription.*
69+
70+
---
71+
72+
Built by [Paul Desai](https://activemirror.ai) as part of the Active MirrorOS ecosystem — a product of N1 Intelligence.

0 commit comments

Comments
 (0)