| name | delegate |
|---|---|
| description | Create a delegation-ready plan that can be executed by a faster, less capable AI model. |
Create a plan executable by a less capable model.
- Numbered steps — each step = one atomic action
- Exact file paths — workspace-relative
- Full code snippets — actual code, not descriptions
- Find/Replace blocks — exact lines to find and replace
- No ambiguity — pick one approach, provide full implementation
## Step 1: Create component
Create `src/modules/trading/components/new-component.tsx`:
\`\`\`tsx
export const NewComponent = () => <div>Hello</div>
\`\`\`
## Step 2: Wire up
In `src/modules/trading/components/main.tsx`, find:
\`\`\`tsx
<Chart />
\`\`\`
Replace with:
\`\`\`tsx
<Chart />
<NewComponent />
\`\`\`
- "Add appropriate styling" → show actual styles
- "Handle edge cases" → show exact logic
- "Similar to X" → provide full code
- "Update imports as needed" → show exact imports