← ClaudeAtlas

autonomouslisted

/autonomous - Toggle Autonomous Developer Loop
samibs/skillfoundry · ★ 10 · AI & Automation · score 76
Install: claude install-skill samibs/skillfoundry
# /autonomous - Toggle Autonomous Developer Loop > Toggle autonomous mode on/off. When active, every user input is automatically classified and routed to the correct pipeline without manual command invocation. --- ## Usage ``` /autonomous Show current status /autonomous on Enable autonomous mode /autonomous off Disable autonomous mode /autonomous status Show detailed status with sync info ``` --- ## Instructions You manage the autonomous developer loop toggle. When invoked: ### `/autonomous` or `/autonomous status` Check the current state and report: ```bash # Check if autonomous mode is active FLAG_FILE=".claude/.autonomous" ``` Display: ``` Autonomous Mode: [ON/OFF] ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Protocol: agents/_autonomous-protocol.md Classifier: agents/_intent-classifier.md Mode: [ACTIVE — all inputs auto-routed / INACTIVE — manual commands] Knowledge Sync: [RUNNING (PID: XXXX) / STOPPED] Last Sync: [timestamp or "never"] Sync Repo: [repo URL or "not configured"] Session Stats: Inputs classified: [N] Pipelines executed: [N] User corrections: [N] ``` ### `/autonomous on` 1. Create the flag file: ```bash mkdir -p .claude echo '{"enabled":true,"activated":"'$(date -u +%Y-%m-%dT%H:%M:%SZ)'","version":"1.0"}' > .claude/.autonomous ``` 2. Verify the protocol files exist: - `agents/_autonomous-protocol.md` — routing rules - `agents/_intent-classifier.md` — classifi