# 2075 Workflow Architecture Ae7620ea

> Workflow Architecture

- Skill: `tools-only/2075-workflow-architecture-ae7620ea` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/2075-workflow-architecture-ae7620ea`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/2075-workflow-architecture-ae7620ea/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/2075-workflow-architecture-ae7620ea

---

# Workflow Architecture

## Workflow Architecture

### Development Workflow
```
┌─────────────────────────────────────────────────────────┐
│                   CURSOR WORKFLOW                        │
├─────────────────────────────────────────────────────────┤
│                                                          │
│  1. PLAN (Chat)                                         │
│     └─ Discuss architecture with AI                     │
│     └─ Get recommendations                              │
│                                                          │
│  2. SCAFFOLD (Composer)                                 │
│     └─ Generate initial structure                       │
│     └─ Create boilerplate files                         │
│                                                          │
│  3. IMPLEMENT (Tab Completion)                          │
│     └─ Code with AI suggestions                         │
│     └─ Auto-complete patterns                           │
│                                                          │
│  4. REFINE (Inline Edit)                               │
│     └─ Quick improvements                               │
│     └─ Bug fixes                                        │
│                                                          │
│  5. REVIEW (Chat)                                       │
│     └─ Code review assistance                           │
│     └─ Security check                                   │
│                                                          │
│  6. TEST (Composer)                                     │
│     └─ Generate test files                              │
│     └─ Coverage improvements                            │
│                                                          │
└─────────────────────────────────────────────────────────┘
```

### CI/CD Integration
```yaml
# Cursor-aware CI/CD considerations

# Pre-commit checks
pre-commit:
  - lint
  - typecheck
  - test
  - format-check

# PR requirements
pull-request:
  - All checks pass
  - Tests for new code
  - Documentation updated
  - No console.logs
  - No hardcoded secrets
```
