Task automation and project templating with angreal. Use when running project tasks, creating new tasks, or setting up project automation. Teaches both using existing tasks and authoring new ones.
/plugin marketplace add angreal/angreal/plugin install angreal@angreal-angrealThis skill inherits all available tools. When active, it can use any tool Claude has access to.
authoring/arguments.mdauthoring/basics.mdauthoring/best-practices.mdauthoring/groups.mdauthoring/tool-descriptions.mdpatterns/development.mdpatterns/documentation.mdpatterns/testing.mdusing/discovery.mdusing/execution.mdusing/workflows.mdThis skill teaches angreal task automation - both using existing tasks as an AI agent and authoring new tasks as a developer.
.angreal/ directory)The Angreal MCP server teaches how to call tools (parameters, syntax). This skill teaches when and why.
See using/discovery.md for:
See using/execution.md for:
See using/workflows.md for:
See authoring/basics.md for:
@command decoratorSee authoring/groups.md for:
@groupSee authoring/tool-descriptions.md for:
ToolDescriptionSee authoring/arguments.md for:
@argument decoratorSee authoring/best-practices.md for:
See patterns/testing.md for test automation patterns. See patterns/documentation.md for doc generation patterns. See patterns/development.md for dev workflow patterns.
project/
└── .angreal/
├── task_dev.py # Development tasks
├── task_test.py # Testing tasks
├── task_docs.py # Documentation tasks
└── task_deploy.py # Deployment tasks
import angreal
@angreal.command(
name="build",
about="Build the project",
tool=angreal.ToolDescription("""
Build the project for distribution.
## When to use
- Before releasing a new version
- Testing production builds
## Examples
angreal build angreal build --release
""", risk_level="safe")
)
@angreal.argument(name="release", long="release", is_flag=True, takes_value=False, help="Build in release mode")
def build(release=False):
# Implementation
pass
ToolDescription as guidance for AIpython_type for proper conversionApplies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.