From angreal
Guides discovering, running, chaining, and interpreting Angreal CLI tasks via commands like `angreal tree` and `angreal test all`. Covers workflows for testing, building, deploying.
npx claudepluginhub angreal/angreal --plugin angrealThis skill uses the workspace's default tool permissions.
Learn to discover, run, and chain angreal tasks effectively.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Learn to discover, run, and chain angreal tasks effectively.
.angreal/ directory)angreal CLI installed and availableangreal tree
Shows all commands with arguments and short descriptions:
dev: development utilities
check-deps - Verify required development tools are installed
test: commands for testing the application
all - Run complete test suite
rust [--unit-only] - Run Rust tests
docs: commands for documentation
build [--draft] - Build documentation site
angreal tree --long
Includes full ToolDescription prose for each command:
angreal --help # List all commands
angreal test rust --help # Help for specific command
angreal <group> <command> [arguments]
# Examples
angreal test all
angreal test rust --unit-only
angreal build --release
angreal docs serve --prod
Flags (boolean switches):
angreal build --release
angreal test rust --unit-only
Value arguments:
angreal deploy --version v1.2.3
angreal test completion --shell=bash
0 = successangreal test all && angreal deploy # Chain with &&
angreal test unit # Fast unit tests first
angreal test all # Full suite if units pass
angreal lint check # Check code style
angreal test all # Ensure tests pass
angreal build --release # Create release build
angreal docs build # Update documentation
angreal deploy staging # Deploy to staging
angreal test <specific-test> --verbose # Verbose output
# Check stdout/stderr for error details
# Fix issue, re-run specific test
angreal test all # Verify no regressions
Tasks are organized by function:
| Group | Purpose |
|---|---|
dev | Development utilities |
test | Testing commands |
docs | Documentation |
build | Build and compilation |
deploy | Deployment and release |
Groups can nest: angreal docker compose up
angreal tree to see available commandsangreal tree --long for detailed guidance