Export and import agent team configurations for sharing. Package your Dev Flow setup as portable YAML. Triggers on "export team", "import team", "package team", "share team config", "team template", "/export-team", "/import-team".
Export your agent team configuration as shareable YAML packages. Import team templates from others to instantly set up your Dev Flow environment.
For Export:
team_name: Optional custom name (defaults to workspace name)agents: Optional list of specific agents to include (defaults to all)output_path: Optional save location (defaults to current directory)For Import:
package_path: Path to devflow-team.yaml fileworkspace: Optional target workspace (defaults to current)rename_prefix: Optional prefix for agent IDs to avoid conflictsRead current configuration
~/.openclaw/openclaw.json for agent definitionsGenerate package
Output package file
devflow-team.yamlValidate package
Create agents
openclaw agents add for each agentopenclaw agents set-identityConfigure skills
Verify setup
## Team Package Created
**Package:** devflow-team.yaml
**Team Name:** {{team_name}}
**Agents:** {{agent_count}}
### Included Agents
| ID | Role | Model |
|----|------|-------|
{{#each agents}}
| {{id}} | {{role}} | {{model}} |
{{/each}}
### Workspace Files Included
- AGENTS.md
- SOUL.md
- IDENTITY.md
- USER.md (template)
### Required Skills
{{#each skills}}
- {{name}}
{{/each}}
### How to Use This Package
1. Copy `devflow-team.yaml` to target machine
2. Run: `team-packager import devflow-team.yaml`
3. Restart gateway: `openclaw gateway run --force`
Package saved to: {{output_path}}
## Team Imported Successfully
**Package:** {{package_name}}
**Agents Created:** {{agent_count}}
**Workspace:** {{workspace_path}}
### Agents Created
| ID | Identity | Status |
|----|----------|--------|
{{#each agents}}
| {{id}} | {{identity.emoji}} {{identity.name}} | ✅ Created |
{{/each}}
### Next Steps
1. Restart gateway: `openclaw gateway run --force`
2. Verify agents: `openclaw agents list`
3. Run onboarding: "get started with dev flow"
### Notes
{{#if warnings}}
**Warnings:**
{{#each warnings}}
- {{this}}
{{/each}}
{{/if}}
# Dev Flow Team Package