| name | cmd_gan_design |
| description | GAN design pipeline: run gan-generator → gan-evaluator in sequence. Loops until evaluator score ≥ 7.0. |
| user-invocable | true |
| origin | openclaw-mas |
| argument-hint | <project-path> <design description> |
Run specialist agents in sequence: gan-generator → gan-evaluator.
Include in the task payload:
- Project path (the absolute path the user provided as the first argument)
- The user's full request and build/design brief
- Any flags or configuration options (max iterations, pass threshold, etc.)
- Relevant codebase context
Execute specialist agents in sequence: gan-generator → gan-evaluator
- Reply to the user briefly, then call sessions_spawn:
{
"agentId": "gan-generator",
"sessionKey": "gan-generator",
"task": "<task description with full context from previous step>",
"runTimeoutSeconds": 0
}
Wait for this agent to complete before proceeding.
- Reply to the user briefly, then call sessions_spawn:
{
"agentId": "gan-evaluator",
"sessionKey": "gan-evaluator",
"task": "<task description with full context from previous step>",
"runTimeoutSeconds": 0
}
Wait for this agent to complete before proceeding.
Do not spawn the next agent until the current one completes. Do not spawn agents in parallel.
After all agents complete, return the final result to the user.