Workflows
Workflows allow you to save and share component installation configurations. Instead of typing long commands with many flags, you can create a workflow once and share it as a short hash or YAML file.What are Workflows?
A workflow is a saved configuration that includes:- Components - Agents, commands, MCPs, settings, hooks
- Properties - Name, description, tags
- Metadata - Author, version, installation instructions
- Shared via short hash URLs (
#abc123def456) - Saved as YAML files for version control
- Generated from the workflow builder UI
- Created manually in any text editor
Why Use Workflows?
Shareable
Share entire component setups with a single hash
Reproducible
Ensure consistent installations across environments
Documentable
Version control your Claude Code configurations
Discoverable
Browse community workflows for common setups
Workflow Hash Installation
Workflow hashes are short identifiers (12 characters) that reference saved workflows.Hash Storage: Workflow hashes are stored in your browser’s localStorage when created on aitmpl.com. The CLI can only install workflows you’ve created on your machine or workflows shared via YAML.
YAML Workflow Format
YAML workflows are more flexible and can be version-controlled.Basic YAML Structure
workflow.yaml
YAML Field Reference
Installing from YAML
Method 1: File Path
Save your workflow as a YAML file and reference it:Method 2: Base64 Encoded
For remote installations or CI/CD:Method 3: Inline YAML
For short workflows:Workflow Examples
Security-Focused Workflow
Data Science Workflow
data-science-workflow.yaml
DevOps Workflow
devops-workflow.yaml
Creating Workflows
Visual Workflow Builder
The easiest way to create workflows:Manual YAML Creation
Create workflows directly in your editor:Workflow Best Practices
1. Name Workflows Descriptively
✅ Good:2. Add Comprehensive Descriptions
3. Use Meaningful Tags
4. Order Components Logically
5. Version Control Workflows
Store workflows in your repo:Combining Workflows with Other Flags
Workflows can be combined with additional flags:Add Extra Components
Set Installation Directory
Auto-Confirm
Sharing Workflows
Share Hash URLs
After creating a workflow on aitmpl.com:- View workflow details
- Copy the installation command
- Install with one command
Share YAML Files
Via GitHub Gist
Via Git Repository
Via Package Registry
Publish workflows as npm packages:package.json
Workflow Collections
Create multiple related workflows:Troubleshooting Workflows
Workflow Hash Not Found
Invalid YAML Syntax
- Incorrect indentation (use 2 spaces)
- Missing quotes around names with special characters
- Trailing whitespace
Component Not Found
- Visit aitmpl.com
- Search for the component
- Use exact name from search results
- Update workflow YAML
Step Order Matters
Some components depend on others:Next Steps
Global Agents
Create globally accessible agents
Batch Installation
Install multiple components at once
Workflow Builder
Visual workflow creation tool
Component Browser
Browse all available components