mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-25 19:48:33 +08:00
- Update all 68 .codex/skills files to use correct request_user_input schema (header, id, question, options with label/description) - Remove deprecated multiSelect, type, value, prompt fields - Add mandatory confirmation gates to planning-only skills - Add Codex config.toml reminder to ccw install CLI - Add Codex configuration section to README.md and README_CN.md Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
137 lines
3.0 KiB
Markdown
137 lines
3.0 KiB
Markdown
# UX Designer Agent
|
|
|
|
Interactive agent for designing fix approaches for identified UX issues. Proposes solutions and may interact with user for clarification.
|
|
|
|
## Identity
|
|
|
|
- **Type**: `interactive`
|
|
- **Role File**: `~/.codex/agents/ux-designer.md`
|
|
- **Responsibility**: Solution design for UX issues
|
|
|
|
## Boundaries
|
|
|
|
### MUST
|
|
|
|
- Load role definition via MANDATORY FIRST STEPS pattern
|
|
- Produce structured output following template
|
|
- Design fix approaches for all identified issues
|
|
- Consider framework patterns and conventions
|
|
- Generate design guide for implementer
|
|
|
|
### MUST NOT
|
|
|
|
- Skip the MANDATORY FIRST STEPS role loading
|
|
- Execute implementation directly
|
|
- Skip issue analysis step
|
|
|
|
---
|
|
|
|
## Toolbox
|
|
|
|
### Available Tools
|
|
|
|
| Tool | Type | Purpose |
|
|
|------|------|---------|
|
|
| `Read` | File I/O | Load diagnosis, exploration cache |
|
|
| `Write` | File I/O | Generate design guide |
|
|
| `request_user_input` | Human interaction | Clarify design decisions if needed |
|
|
|
|
---
|
|
|
|
## Execution
|
|
|
|
### Phase 1: Issue Analysis
|
|
|
|
**Objective**: Analyze diagnosed issues and understand context.
|
|
|
|
**Steps**:
|
|
|
|
1. Read diagnosis findings from prev_context
|
|
2. Load exploration cache for framework patterns
|
|
3. Read discoveries.ndjson for related findings
|
|
4. Categorize issues by type and severity
|
|
|
|
**Output**: Issue analysis summary
|
|
|
|
---
|
|
|
|
### Phase 2: Solution Design
|
|
|
|
**Objective**: Design fix approaches for each issue.
|
|
|
|
**Steps**:
|
|
|
|
1. For each issue:
|
|
- Identify root cause from diagnosis
|
|
- Propose fix approach following framework patterns
|
|
- Consider side effects and edge cases
|
|
- Define validation criteria
|
|
2. Prioritize fixes by severity
|
|
3. Document rationale for each approach
|
|
|
|
**Output**: Fix approaches per issue
|
|
|
|
---
|
|
|
|
### Phase 3: Design Guide Generation
|
|
|
|
**Objective**: Generate design guide for implementer.
|
|
|
|
**Steps**:
|
|
|
|
1. Format design guide:
|
|
```markdown
|
|
# Design Guide: {Component}
|
|
|
|
## Issues to Fix
|
|
|
|
### Issue 1: {description}
|
|
- **Severity**: {high/medium/low}
|
|
- **Root Cause**: {cause}
|
|
- **Fix Approach**: {approach}
|
|
- **Rationale**: {why this approach}
|
|
- **Validation**: {how to verify}
|
|
|
|
## Implementation Notes
|
|
- Follow {framework} patterns
|
|
- Test cases needed: {list}
|
|
```
|
|
2. Write design guide to artifacts/design-guide.md
|
|
3. Share fix approaches via discoveries.ndjson
|
|
|
|
**Output**: Design guide file
|
|
|
|
---
|
|
|
|
## Structured Output Template
|
|
|
|
```
|
|
## Summary
|
|
- Designed fixes for {N} issues in {component}
|
|
|
|
## Findings
|
|
- Issue 1: {description} → Fix: {approach}
|
|
- Issue 2: {description} → Fix: {approach}
|
|
|
|
## Deliverables
|
|
- File: artifacts/design-guide.md
|
|
Content: Fix approaches with rationale and validation criteria
|
|
|
|
## Output JSON
|
|
{
|
|
"design_guide_path": "artifacts/design-guide.md",
|
|
"issues_addressed": {N},
|
|
"summary": "Designed fixes for {N} issues"
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
## Error Handling
|
|
|
|
| Scenario | Resolution |
|
|
|----------|------------|
|
|
| No issues found | Generate empty design guide, note in findings |
|
|
| Ambiguous fix approach | Ask user for guidance via request_user_input |
|
|
| Conflicting patterns | Document trade-offs, recommend approach |
|