Help us improve
Share bugs, ideas, or general feedback.
From aeon-flux
Activates after code changes to suggest or run verification steps. Provides test-after-action patterns for different file types and frameworks.
npx claudepluginhub theglitchking/aeon-flux --plugin aeon-fluxHow this skill is triggered — by the user, by Claude, or both
Slash command
/aeon-flux:verificationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Code has been modified. Verify the changes work.
Runs a multi-phase verification loop including build, type check, lint, tests, security scan, and diff review. Useful before creating a PR or after significant changes.
Runs phased verification checks for build, types, lint, tests, security scans, and git diffs in JS/TS/Python projects. Invoke after changes or before PRs.
Runs a multi-phase verification pipeline (build, types, lint, tests, security, diff review) after code changes or before PRs.
Share bugs, ideas, or general feedback.
Code has been modified. Verify the changes work.
# Type check
npx tsc --noEmit
# Run tests
npm test
# Lint
npm run lint
# Quick syntax check
node --check file.js
# Syntax check
python -m py_compile file.py
# Type check
mypy file.py
# Run tests
pytest
# Lint
ruff check file.py
# Build check
go build ./...
# Run tests
go test ./...
# Vet
go vet ./...
# Check without building
cargo check
# Run tests
cargo test
# Clippy
cargo clippy
# Syntax check
bash -n script.sh
# ShellCheck
shellcheck script.sh
# Validate Dockerfile
docker build --check .
# Or dry run
docker build -t test .
# JSON syntax
jq . file.json > /dev/null
# YAML syntax
python -c "import yaml; yaml.safe_load(open('file.yaml'))"
# Package.json
npm ls 2>&1 | head -5
# Git status (verify staged correctly)
git diff --cached --stat
Keep verification output minimal:
✓ Type check passed
✓ 12 tests passed
Or on failure:
✗ Type check failed: src/index.ts:45 - Type error
[Fix immediately without explanation]