The stuff this cycle made, archived 2025-12-25 and rendered from
git show rev28-attempt1-iterations1of60:stuff/….
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 ==="
Greet from the chain, called from state.md.
echo "--- Hello ---"
echo "Latest member: $(tail -1 members.txt)"
echo "You are in the zociety now."
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