← ClaudeAtlas

orbitlisted

Transform any product repository into a production-grade, self-prompting agentic loop system following Daisy Hollman's "build a system that prompts itself" methodology. Audits the current project, then scaffolds persistent memory (CLAUDE.md + STATE files), a specialized sub-agent team, domain skills, a read→act→evaluate→update→decide loop, and HARD stop conditions (iteration/cost/ runtime caps, eval gates, human-approval checkpoints). Produces a model-agnostic core PLUS a Claude Code adapter, so the loop can run on your own orchestrator (e.g. Gemini) or via headless `claude -p`. Domain-agnostic: it characterizes whatever product it runs in and fits the system to it. Use this skill whenever the user wants to set up, upgrade, or "productionize" an autonomous agent / agentic loop / self-prompting system, build an orchestrator, add a sub-agent team or persistent memory, or mentions Daisy Hollman, "a system that prompts itself", "Ralph loop", agentic SDLC roles, or stop conditions for a runaway agent.
Abdulaziz-almoshen/orbit · ★ 4 · AI & Automation · score 77
Install: claude install-skill Abdulaziz-almoshen/orbit
# Orbit — install a self-prompting system into a repo ## Preamble — STEP 0, run this BEFORE anything else (update check) This is your **first action** the moment `/orbit` loads — before you read the repo, plan, respond, or run any other phase. **Do not skip it. Do not batch it after other work.** Run exactly this one block (it finds `orbit-preamble` whether Orbit is a user skill or a marketplace plugin, and falls back to an inline resolver if that script is missing): ```bash # The executable is ALWAYS a literal (`./orbit-preamble`) — the variable is only ever a `cd` # argument. So Orbit never asks you to trust a `$VAR` command before Orbit has even started. _CC="${CLAUDE_CONFIG_DIR:-$HOME/.claude}" if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -x "$CLAUDE_PLUGIN_ROOT/bin/orbit-preamble" ]; then ( cd "$CLAUDE_PLUGIN_ROOT/bin" && ./orbit-preamble ); exit 0 elif [ -x "$_CC/skills/orbit/bin/orbit-preamble" ]; then ( cd "$_CC/skills/orbit/bin" && ./orbit-preamble ); exit 0 elif [ -x "$HOME/.claude/skills/orbit/bin/orbit-preamble" ]; then ( cd "$HOME/.claude/skills/orbit/bin" && ./orbit-preamble ); exit 0 elif [ -x ".claude/skills/orbit/bin/orbit-preamble" ]; then ( cd .claude/skills/orbit/bin && ./orbit-preamble ); exit 0 fi # fallback: older install without orbit-preamble — resolve orbit-update-check inline (literal exec too) _UPD=""; _DIR="" if [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -x "$CLAUDE_PLUGIN_ROOT/bin/orbit-update-check" ]; then _UPD="$( cd "$CLAUDE_PLUG