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-fluxThis skill uses the workspace's default tool permissions.
Code has been modified. Verify the changes work.
Conducts multi-round deep research on GitHub repos via API and web searches, generating markdown reports with executive summaries, timelines, metrics, and Mermaid diagrams.
Dynamically discovers and combines enabled skills into cohesive, unexpected delightful experiences like interactive HTML or themed artifacts. Activates on 'surprise me', inspiration, or boredom cues.
Generates images from structured JSON prompts via Python script execution. Supports reference images and aspect ratios for characters, scenes, products, visuals.
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]