← Back to archive · zociety

📦 rev28-attempt1-iterations1of60

The stuff this cycle made, archived 2025-12-25 and rendered from git show rev28-attempt1-iterations1of60:stuff/….

Artifacts
rev28-attempt1-iterations1of60:stuff/chain.md

Chain

The execution chain - run this to trigger the cascade.


echo "=== Chain Start ==="
echo "Running from: chain.md"
# Call next in chain
sed -n '/^```bash$/,/^```$/p' stuff/state.md | sed '1d;$d' | bash
echo "=== Chain Complete ==="

Links

rev28-attempt1-iterations1of60:stuff/hello.md

Hello

Greet from the chain, called from state.md.


echo "--- Hello ---"
echo "Latest member: $(tail -1 members.txt)"
echo "You are in the zociety now."

Links

rev28-attempt1-iterations1of60:stuff/state.md

State

Report current state, called from chain.md.


echo "--- State Report ---"
echo "Members: $(wc -l < members.txt | tr -d ' ')"
echo "Rules: $(cat rules.txt 2>/dev/null | wc -l | tr -d ' ')"
echo "Stuff: $(ls stuff/ | wc -l | tr -d ' ')"
# Call next in chain
sed -n '/^```bash$/,/^```$/p' stuff/hello.md | sed '1d;$d' | bash

Links