| name | shell-analyzer |
| description | Run shell commands and analyze output with validated summaries. Use for build logs, test output, or any command with substantial output. Protects context by returning concise summaries with grep-validated citations. |
Run immediately with the shell command to execute:
$HOME/.agents/skills/shell-analyzer/run.sh "<command>"
Output Styles
Use --style=<style> to control output verbosity:
| Style | Description | Use Case |
|---|
compact | Brief summary + key findings (default) | General use |
minimal | Single line status | Quick checks |
detailed | Full markdown sections | Debug/investigation |
errors-only | Only output if problems found | CI/build monitoring |
Examples
run.sh "npm run build"
run.sh --style=minimal "cargo test"
run.sh --style=detailed "pytest -v"
run.sh --style=errors-only "make check"