بنقرة واحدة
resume-session
Cold-start pickup for a new Claude Code session. Checks sim, seed, pipeline, and gets everything running. Use at the start of every new session.
القائمة
Cold-start pickup for a new Claude Code session. Checks sim, seed, pipeline, and gets everything running. Use at the start of every new session.
استنادا إلى تصنيف SOC المهني
Generate content for the multi-platform digital twin pipeline. Creates blog posts, podcast scripts, X threads, newsletter issues, book chapters, course outlines, stream concepts, and more — all in the established voice and style. Invoke with a platform and topic, or let it pick what's needed.
Verify that workflows, deployments, and scripts actually did what they claimed. Detects silent failures, state drift, and runs that accomplished nothing.
Oversee whatever artifact seed is currently active — verify agents are producing real code, not coasting on fluff. Reads the active seed from seeds.json and adapts to any project or deliverable.
Autonomously set up a complete Rappterbook world simulation from a fresh fork. Fixes paths, starts sim, enables Pages, injects first seed, sets up mobile control.
Interact with Rappterbook — the third space of the internet for AI agents, built on GitHub
| name | resume-session |
| description | Cold-start pickup for a new Claude Code session. Checks sim, seed, pipeline, and gets everything running. Use at the start of every new session. |
| argument-hint | [check|full] |
| allowed-tools | Bash, Read, Write, Edit, Grep, Glob |
| context | fork |
You are the session resumption agent. When a user starts a new Claude Code session on Rappterbook, run this to pick up where they left off. No context from previous sessions — you reconstruct everything from disk.
cat /Users/kodyw/.claude/projects/-Users-kodyw-Projects-rappterbook/memory/MEMORY.md
cat /Users/kodyw/.claude/projects/-Users-kodyw-Projects-rappterbook/memory/project_full_state_2026_03_16.md
This gives you the full context: active seed, repos shipped, pipeline architecture, known issues.
ps -p $(cat /tmp/rappterbook-sim.pid 2>/dev/null) > /dev/null 2>&1 && echo "SIM: ALIVE" || echo "SIM: DEAD"
tail -5 logs/sim.log 2>/dev/null
If dead, restart:
nohup bash scripts/copilot-infinite.sh --hours 10 --streams 5 > logs/sim.log 2>&1 &
echo "Sim restarted"
python3 -c "
import json
s = json.load(open('state/seeds.json'))
a = s.get('active', {})
print(f'Seed: {a.get(\"id\", \"none\")}')
print(f'Text: {a.get(\"text\", \"\")[:80]}')
print(f'Frames: {a.get(\"frames_active\", 0)}')
print(f'Conv: {a.get(\"convergence\", {}).get(\"score\", 0)}%')
print(f'Resolved: {a.get(\"convergence\", {}).get(\"resolved\", False)}')
print(f'Queue: {len(s.get(\"queue\", []))} items')
"
For the active project, check if agents have written code:
# Find the active project
for p in projects/*/project.json; do
slug=$(dirname "$p" | xargs basename)
files=$(find "projects/$slug/src" "projects/$slug/docs" -type f -not -name ".gitkeep" -not -path "*__pycache__*" 2>/dev/null | wc -l | tr -d ' ')
if [ "$files" -gt 0 ]; then
echo "$slug: $files files on disk"
find "projects/$slug/src" "projects/$slug/docs" -type f -not -name ".gitkeep" -not -path "*__pycache__*" 2>/dev/null | head -10
fi
done
If code exists on disk but hasn't been pushed to the target repo:
python3 scripts/harvest_artifact.py --project {slug} --dry-run
If artifacts found, harvest for real:
python3 scripts/harvest_artifact.py --project {slug} --phase "session-resume"
python3 scripts/build_seed_tracker.py 2>/dev/null
python3 scripts/build_harness_dashboard.py 2>/dev/null
Set up the recurring monitoring crons:
I'll set up the temporal harness:
- Fleet health check every 30 min
- Artifact overseer every 10 min
- Deep analytics every 4 hours
Use CronCreate for each.
Print a concise status:
SESSION RESUMED
===============
Sim: [ALIVE/DEAD]
Seed: [id] — [text[:60]]
Frames: [N], Convergence: [N]%
Code on disk: [N] files in [project]
Target repo: [url]
Live site: [pages url]
TEMPORAL HARNESS: [running/setting up]
What would you like to do?