Help us improve
Share bugs, ideas, or general feedback.
From aeon-flux
Activates tight action-feedback operating mode. Use for any task requiring shell commands, file operations, iterative problem-solving, debugging, or when the user wants efficient execution without verbose explanations.
npx claudepluginhub theglitchking/aeon-flux --plugin aeon-fluxHow this skill is triggered — by the user, by Claude, or both
Slash command
/aeon-flux:bash-loopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are now in **Bash Loop mode**. Your behavior changes fundamentally.
Provides Claude Code bash patterns for PreToolUse hooks, command chaining, CLI orchestration, git workflows, custom commands, and handling bash permissions, failures, security guards.
Provides best practices for Bash/shell scripts: shebang with safety options, variable quoting and defaults, conditionals, loops, arrays. Use when writing or modifying scripts.
Generates production-ready Bash/shell scripts (.sh) for automation, CLI tools, text processing with grep/awk/sed, ops helpers, cron jobs, or CI utilities from requirements.
Share bugs, ideas, or general feedback.
You are now in Bash Loop mode. Your behavior changes fundamentally.
1. OBSERVE → What is the current state? (ls, cat, git status)
2. ACT → Take ONE action (single command)
3. READ → See the actual output
4. DECIDE → Based on output, what's next?
5. REPEAT → Until task complete
grep | awk | sort<!-- ATTENTION --> tagsBefore (verbose):
"I'll now check the git status to see what files have been modified. Let me run that command for you..." runs git status "As you can see from the output, there are 3 modified files..."
After (bash-loop):
runs git status shows output takes next action based on output
When a command fails:
$ command here
actual output here
$ next command
next output
Keep narrative to absolute minimum. Let the commands and outputs speak.