ai-playbook 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +146 -0
- package/agents/README.md +168 -0
- package/agents/SKILL.md +633 -0
- package/agents/architect/AGENT.md +44 -0
- package/agents/architect/README.md +5 -0
- package/agents/coder/AGENT.md +43 -0
- package/agents/coder/README.md +5 -0
- package/agents/debugger/AGENT.md +42 -0
- package/agents/debugger/README.md +6 -0
- package/agents/devops/AGENT.md +43 -0
- package/agents/devops/README.md +5 -0
- package/agents/documentation/AGENT.md +45 -0
- package/agents/documentation/README.md +5 -0
- package/agents/examples.md +550 -0
- package/agents/performance/AGENT.md +45 -0
- package/agents/performance/README.md +6 -0
- package/agents/planner/AGENT.md +44 -0
- package/agents/planner/README.md +6 -0
- package/agents/product-owner/AGENT.md +46 -0
- package/agents/product-owner/README.md +6 -0
- package/agents/refactorer/AGENT.md +44 -0
- package/agents/refactorer/README.md +6 -0
- package/agents/release-manager/AGENT.md +45 -0
- package/agents/release-manager/README.md +6 -0
- package/agents/researcher/AGENT.md +44 -0
- package/agents/researcher/README.md +6 -0
- package/agents/reviewer/AGENT.md +43 -0
- package/agents/reviewer/README.md +6 -0
- package/agents/security/AGENT.md +46 -0
- package/agents/security/README.md +6 -0
- package/agents/support/AGENT.md +45 -0
- package/agents/support/README.md +6 -0
- package/agents/tester/AGENT.md +46 -0
- package/agents/tester/README.md +5 -0
- package/bin/cli.js +186 -0
- package/commands/README.md +266 -0
- package/commands/build.md +135 -0
- package/commands/clean.md +126 -0
- package/commands/deploy-prod.md +171 -0
- package/commands/deploy-staging.md +147 -0
- package/commands/deps.md +169 -0
- package/commands/dev.md +132 -0
- package/commands/format.md +142 -0
- package/commands/lint.md +125 -0
- package/commands/migrate.md +159 -0
- package/commands/release.md +183 -0
- package/commands/rollback.md +152 -0
- package/commands/seed.md +178 -0
- package/commands/setup.md +109 -0
- package/commands/test.md +134 -0
- package/commands/validate.md +147 -0
- package/context/README.md +7 -0
- package/context/aem.md +47 -0
- package/context/architecture.md +51 -0
- package/context/bullminder.md +57 -0
- package/context/coding-style.md +42 -0
- package/context/communication.md +53 -0
- package/context/company.md +46 -0
- package/context/engineering.md +63 -0
- package/context/project-template.md +71 -0
- package/context/trading.md +52 -0
- package/hooks/README.md +326 -0
- package/hooks/code-review/README.md +6 -0
- package/hooks/code-review/check-coverage.md +101 -0
- package/hooks/custom/README.md +6 -0
- package/hooks/custom/project-specific-hooks.md +273 -0
- package/hooks/deployment/README.md +6 -0
- package/hooks/deployment/health-check.md +102 -0
- package/hooks/deployment/pre-deploy-check.md +84 -0
- package/hooks/documentation/README.md +6 -0
- package/hooks/documentation/update-changelog.md +146 -0
- package/hooks/post-task/README.md +5 -0
- package/hooks/post-task/run-tests.md +61 -0
- package/hooks/pre-commit/README.md +6 -0
- package/hooks/pre-commit/format.md +63 -0
- package/hooks/pre-commit/lint.md +62 -0
- package/hooks/pre-commit/type-check.md +78 -0
- package/hooks/pre-task/README.md +6 -0
- package/hooks/pre-task/check-branch.md +48 -0
- package/hooks/pre-task/validate-environment.md +48 -0
- package/hooks/security-check/README.md +6 -0
- package/hooks/security-check/dependency-audit.md +85 -0
- package/hooks/security-check/secrets-scan.md +77 -0
- package/hooks/test-before-finish/README.md +6 -0
- package/hooks/test-before-finish/run-all-tests.md +128 -0
- package/index.js +69 -0
- package/knowledge/README.md +33 -0
- package/knowledge/ai-agents.md +74 -0
- package/knowledge/decision-making.md +73 -0
- package/knowledge/documentation.md +67 -0
- package/knowledge/engineering-principles.md +65 -0
- package/knowledge/product-discovery.md +68 -0
- package/knowledge/security-privacy.md +54 -0
- package/knowledge/testing-quality.md +63 -0
- package/package.json +63 -0
- package/patterns/README.md +7 -0
- package/prompts/README.md +208 -0
- package/prompts/architect/README.md +96 -0
- package/prompts/architect/design-system.md +140 -0
- package/prompts/debugger/README.md +96 -0
- package/prompts/debugger/diagnose-issue.md +141 -0
- package/prompts/developer/README.md +129 -0
- package/prompts/developer/fix-bug.md +136 -0
- package/prompts/developer/implement-feature.md +133 -0
- package/prompts/product-owner/README.md +116 -0
- package/prompts/product-owner/define-feature.md +145 -0
- package/prompts/reviewer/README.md +91 -0
- package/prompts/reviewer/code-review.md +129 -0
- package/prompts/support/README.md +154 -0
- package/prompts/support/resolve-issue.md +124 -0
- package/roles/README.md +6 -0
- package/roles/design-architect/README.md +98 -0
- package/roles/design-architect/accessibility/README.md +33 -0
- package/roles/design-architect/accessibility/checklists.md +29 -0
- package/roles/design-architect/accessibility/examples.md +35 -0
- package/roles/design-architect/checklists.md +76 -0
- package/roles/design-architect/component-library/README.md +35 -0
- package/roles/design-architect/component-library/checklists.md +29 -0
- package/roles/design-architect/component-library/examples.md +35 -0
- package/roles/design-architect/design-system/README.md +35 -0
- package/roles/design-architect/design-system/checklists.md +27 -0
- package/roles/design-architect/design-system/examples.md +41 -0
- package/roles/design-architect/examples/README.md +31 -0
- package/roles/design-architect/examples/checklists.md +26 -0
- package/roles/design-architect/examples/examples.md +46 -0
- package/roles/design-architect/examples.md +90 -0
- package/roles/design-architect/figma/README.md +33 -0
- package/roles/design-architect/figma/checklists.md +27 -0
- package/roles/design-architect/figma/examples.md +38 -0
- package/roles/design-architect/responsibilities.md +73 -0
- package/roles/design-architect/responsive/README.md +34 -0
- package/roles/design-architect/responsive/checklists.md +26 -0
- package/roles/design-architect/responsive/examples.md +39 -0
- package/roles/design-architect/role.md +129 -0
- package/roles/design-architect/skill-map.md +42 -0
- package/roles/design-architect/triggers.md +110 -0
- package/roles/design-architect/ui/README.md +36 -0
- package/roles/design-architect/ui/checklists.md +29 -0
- package/roles/design-architect/ui/examples.md +28 -0
- package/roles/design-architect/usability/README.md +34 -0
- package/roles/design-architect/usability/checklists.md +28 -0
- package/roles/design-architect/usability/examples.md +31 -0
- package/roles/design-architect/ux/README.md +36 -0
- package/roles/design-architect/ux/checklists.md +28 -0
- package/roles/design-architect/ux/examples.md +37 -0
- package/roles/design-architect/wireframes/README.md +34 -0
- package/roles/design-architect/wireframes/checklists.md +25 -0
- package/roles/design-architect/wireframes/examples.md +32 -0
- package/roles/design-architect/workflow.md +80 -0
- package/roles/devops/README.md +101 -0
- package/roles/devops/ansible/README.md +6 -0
- package/roles/devops/checklists.md +413 -0
- package/roles/devops/ci-cd/README.md +169 -0
- package/roles/devops/ci-cd/checklists.md +289 -0
- package/roles/devops/ci-cd/examples.md +429 -0
- package/roles/devops/cloud-platforms/README.md +109 -0
- package/roles/devops/cost-optimization/README.md +131 -0
- package/roles/devops/disaster-recovery/README.md +118 -0
- package/roles/devops/docker/README.md +6 -0
- package/roles/devops/examples/README.md +6 -0
- package/roles/devops/examples.md +775 -0
- package/roles/devops/github-actions/README.md +6 -0
- package/roles/devops/helm/README.md +6 -0
- package/roles/devops/infrastructure-as-code/README.md +160 -0
- package/roles/devops/infrastructure-as-code/checklists.md +124 -0
- package/roles/devops/jenkins/README.md +6 -0
- package/roles/devops/kubernetes/README.md +150 -0
- package/roles/devops/kubernetes/checklists.md +192 -0
- package/roles/devops/kubernetes/examples.md +189 -0
- package/roles/devops/monitoring/README.md +93 -0
- package/roles/devops/networking/README.md +83 -0
- package/roles/devops/performance/README.md +104 -0
- package/roles/devops/responsibilities.md +95 -0
- package/roles/devops/role.md +130 -0
- package/roles/devops/security/README.md +126 -0
- package/roles/devops/skill-map.md +162 -0
- package/roles/devops/terraform/README.md +6 -0
- package/roles/devops/triggers.md +241 -0
- package/roles/devops/workflow.md +197 -0
- package/roles/qa/README.md +16 -0
- package/roles/qa/api-testing/README.md +6 -0
- package/roles/qa/automation/README.md +6 -0
- package/roles/qa/checklists.md +24 -0
- package/roles/qa/examples/README.md +6 -0
- package/roles/qa/examples.md +27 -0
- package/roles/qa/performance/README.md +6 -0
- package/roles/qa/playwright/README.md +6 -0
- package/roles/qa/responsibilities.md +16 -0
- package/roles/qa/role.md +47 -0
- package/roles/qa/selenium/README.md +6 -0
- package/roles/qa/skill-map.md +14 -0
- package/roles/qa/triggers.md +10 -0
- package/roles/qa/workflow.md +9 -0
- package/roles/software-architect/README.md +16 -0
- package/roles/software-architect/agents/README.md +6 -0
- package/roles/software-architect/ai-architecture/README.md +6 -0
- package/roles/software-architect/aws/README.md +6 -0
- package/roles/software-architect/azure/README.md +6 -0
- package/roles/software-architect/caching/README.md +6 -0
- package/roles/software-architect/checklists.md +25 -0
- package/roles/software-architect/cloud/README.md +6 -0
- package/roles/software-architect/database-design/README.md +6 -0
- package/roles/software-architect/diagrams/README.md +6 -0
- package/roles/software-architect/distributed-systems/README.md +7 -0
- package/roles/software-architect/docker/README.md +6 -0
- package/roles/software-architect/event-driven/README.md +7 -0
- package/roles/software-architect/examples/README.md +6 -0
- package/roles/software-architect/examples.md +22 -0
- package/roles/software-architect/gcp/README.md +6 -0
- package/roles/software-architect/kubernetes/README.md +6 -0
- package/roles/software-architect/messaging/README.md +6 -0
- package/roles/software-architect/rag/README.md +7 -0
- package/roles/software-architect/responsibilities.md +17 -0
- package/roles/software-architect/role.md +46 -0
- package/roles/software-architect/scalability/README.md +6 -0
- package/roles/software-architect/security/README.md +6 -0
- package/roles/software-architect/skill-map.md +15 -0
- package/roles/software-architect/system-design/README.md +6 -0
- package/roles/software-architect/triggers.md +10 -0
- package/roles/software-architect/vector-db/README.md +6 -0
- package/roles/software-architect/workflow.md +9 -0
- package/roles/software-developer/README.md +116 -0
- package/roles/software-developer/api/README.md +365 -0
- package/roles/software-developer/api/checklist.md +131 -0
- package/roles/software-developer/api/examples.md +459 -0
- package/roles/software-developer/authentication/README.md +26 -0
- package/roles/software-developer/authentication/checklists.md +22 -0
- package/roles/software-developer/authentication/examples.md +32 -0
- package/roles/software-developer/authorization/README.md +26 -0
- package/roles/software-developer/authorization/checklists.md +21 -0
- package/roles/software-developer/authorization/examples.md +27 -0
- package/roles/software-developer/backend/README.md +26 -0
- package/roles/software-developer/backend/checklists.md +21 -0
- package/roles/software-developer/backend/examples.md +21 -0
- package/roles/software-developer/cache/README.md +25 -0
- package/roles/software-developer/cache/checklists.md +21 -0
- package/roles/software-developer/cache/examples.md +22 -0
- package/roles/software-developer/checklists.md +122 -0
- package/roles/software-developer/code-review/README.md +23 -0
- package/roles/software-developer/code-review/checklists.md +22 -0
- package/roles/software-developer/code-review/examples.md +20 -0
- package/roles/software-developer/database/README.md +27 -0
- package/roles/software-developer/database/checklists.md +21 -0
- package/roles/software-developer/database/examples.md +27 -0
- package/roles/software-developer/debugging/README.md +24 -0
- package/roles/software-developer/debugging/checklists.md +20 -0
- package/roles/software-developer/debugging/examples.md +28 -0
- package/roles/software-developer/examples/README.md +22 -0
- package/roles/software-developer/examples/checklists.md +8 -0
- package/roles/software-developer/examples/examples.md +25 -0
- package/roles/software-developer/examples.md +378 -0
- package/roles/software-developer/frontend/README.md +76 -0
- package/roles/software-developer/frontend/accessibility/README.md +136 -0
- package/roles/software-developer/frontend/accessibility/best-practices.md +368 -0
- package/roles/software-developer/frontend/code-quality/README.md +136 -0
- package/roles/software-developer/frontend/code-quality/best-practices.md +309 -0
- package/roles/software-developer/frontend/components/README.md +65 -0
- package/roles/software-developer/frontend/components/best-practices.md +273 -0
- package/roles/software-developer/frontend/debugging/README.md +149 -0
- package/roles/software-developer/frontend/debugging/best-practices.md +329 -0
- package/roles/software-developer/frontend/examples/README.md +19 -0
- package/roles/software-developer/frontend/examples/checklists.md +8 -0
- package/roles/software-developer/frontend/examples/examples.md +17 -0
- package/roles/software-developer/frontend/logging-observability/README.md +196 -0
- package/roles/software-developer/frontend/logging-observability/best-practices.md +430 -0
- package/roles/software-developer/frontend/performance/README.md +99 -0
- package/roles/software-developer/frontend/performance/best-practices.md +350 -0
- package/roles/software-developer/frontend/state-management/README.md +85 -0
- package/roles/software-developer/frontend/state-management/best-practices.md +344 -0
- package/roles/software-developer/frontend/testing/README.md +114 -0
- package/roles/software-developer/frontend/testing/best-practices.md +272 -0
- package/roles/software-developer/fullstack/README.md +25 -0
- package/roles/software-developer/fullstack/checklists.md +19 -0
- package/roles/software-developer/fullstack/examples.md +14 -0
- package/roles/software-developer/graphql/README.md +24 -0
- package/roles/software-developer/graphql/checklists.md +20 -0
- package/roles/software-developer/graphql/examples.md +24 -0
- package/roles/software-developer/integration-tests/README.md +25 -0
- package/roles/software-developer/integration-tests/checklists.md +20 -0
- package/roles/software-developer/integration-tests/examples.md +18 -0
- package/roles/software-developer/java/README.md +24 -0
- package/roles/software-developer/java/checklists.md +16 -0
- package/roles/software-developer/java/examples.md +22 -0
- package/roles/software-developer/javascript/README.md +24 -0
- package/roles/software-developer/javascript/checklists.md +15 -0
- package/roles/software-developer/javascript/examples.md +18 -0
- package/roles/software-developer/logging/README.md +105 -0
- package/roles/software-developer/logging/checklists.md +48 -0
- package/roles/software-developer/logging/examples.md +135 -0
- package/roles/software-developer/messaging/README.md +24 -0
- package/roles/software-developer/messaging/checklists.md +21 -0
- package/roles/software-developer/messaging/examples.md +26 -0
- package/roles/software-developer/microservices/README.md +25 -0
- package/roles/software-developer/microservices/checklists.md +21 -0
- package/roles/software-developer/microservices/examples.md +21 -0
- package/roles/software-developer/node/README.md +25 -0
- package/roles/software-developer/node/checklists.md +15 -0
- package/roles/software-developer/node/examples.md +15 -0
- package/roles/software-developer/nosql/README.md +24 -0
- package/roles/software-developer/nosql/checklists.md +21 -0
- package/roles/software-developer/nosql/examples.md +20 -0
- package/roles/software-developer/observability/README.md +25 -0
- package/roles/software-developer/observability/checklists.md +21 -0
- package/roles/software-developer/observability/examples.md +22 -0
- package/roles/software-developer/performance/README.md +26 -0
- package/roles/software-developer/performance/checklists.md +20 -0
- package/roles/software-developer/performance/examples.md +20 -0
- package/roles/software-developer/python/README.md +25 -0
- package/roles/software-developer/python/checklists.md +15 -0
- package/roles/software-developer/python/examples.md +17 -0
- package/roles/software-developer/react/README.md +24 -0
- package/roles/software-developer/react/checklists.md +15 -0
- package/roles/software-developer/react/examples.md +22 -0
- package/roles/software-developer/refactoring/README.md +23 -0
- package/roles/software-developer/refactoring/checklists.md +21 -0
- package/roles/software-developer/refactoring/examples.md +11 -0
- package/roles/software-developer/responsibilities.md +58 -0
- package/roles/software-developer/role.md +127 -0
- package/roles/software-developer/skill-map.md +88 -0
- package/roles/software-developer/springboot/README.md +25 -0
- package/roles/software-developer/springboot/checklists.md +15 -0
- package/roles/software-developer/springboot/examples.md +21 -0
- package/roles/software-developer/sql/README.md +24 -0
- package/roles/software-developer/sql/checklists.md +22 -0
- package/roles/software-developer/sql/examples.md +20 -0
- package/roles/software-developer/testing/README.md +25 -0
- package/roles/software-developer/testing/checklists.md +21 -0
- package/roles/software-developer/testing/examples.md +19 -0
- package/roles/software-developer/triggers.md +550 -0
- package/roles/software-developer/typescript/README.md +25 -0
- package/roles/software-developer/typescript/checklists.md +15 -0
- package/roles/software-developer/typescript/examples.md +18 -0
- package/roles/software-developer/unit-tests/README.md +24 -0
- package/roles/software-developer/unit-tests/checklists.md +19 -0
- package/roles/software-developer/unit-tests/examples.md +22 -0
- package/roles/software-developer/workflow.md +196 -0
- package/roles/sre/README.md +16 -0
- package/roles/sre/alerts/README.md +6 -0
- package/roles/sre/availability/README.md +6 -0
- package/roles/sre/chaos/README.md +6 -0
- package/roles/sre/checklists.md +24 -0
- package/roles/sre/examples/README.md +6 -0
- package/roles/sre/examples.md +19 -0
- package/roles/sre/observability/README.md +6 -0
- package/roles/sre/reliability/README.md +6 -0
- package/roles/sre/responsibilities.md +16 -0
- package/roles/sre/role.md +46 -0
- package/roles/sre/skill-map.md +14 -0
- package/roles/sre/slos/README.md +6 -0
- package/roles/sre/triggers.md +10 -0
- package/roles/sre/workflow.md +9 -0
- package/roles/support-engineer/README.md +16 -0
- package/roles/support-engineer/checklists.md +24 -0
- package/roles/support-engineer/datadog/README.md +6 -0
- package/roles/support-engineer/examples/README.md +6 -0
- package/roles/support-engineer/examples.md +17 -0
- package/roles/support-engineer/incident-response/README.md +6 -0
- package/roles/support-engineer/kubernetes/README.md +6 -0
- package/roles/support-engineer/linux/README.md +6 -0
- package/roles/support-engineer/logs/README.md +6 -0
- package/roles/support-engineer/monitoring/README.md +6 -0
- package/roles/support-engineer/networking/README.md +6 -0
- package/roles/support-engineer/newrelic/README.md +6 -0
- package/roles/support-engineer/postmortem/README.md +6 -0
- package/roles/support-engineer/production/README.md +6 -0
- package/roles/support-engineer/responsibilities.md +16 -0
- package/roles/support-engineer/role.md +47 -0
- package/roles/support-engineer/root-cause-analysis/README.md +6 -0
- package/roles/support-engineer/runbooks/README.md +6 -0
- package/roles/support-engineer/skill-map.md +14 -0
- package/roles/support-engineer/splunk/README.md +6 -0
- package/roles/support-engineer/triggers.md +10 -0
- package/roles/support-engineer/troubleshooting/README.md +6 -0
- package/roles/support-engineer/workflow.md +9 -0
- package/setup.sh +204 -0
- package/skills/.claude/README.md +7 -0
- package/skills/README.md +21 -0
- package/skills/ai-agents/README.md +207 -0
- package/skills/ai-agents/examples.md +335 -0
- package/skills/ai-agents/skill.md +392 -0
- package/skills/architecture/README.md +198 -0
- package/skills/architecture/examples.md +316 -0
- package/skills/architecture/skill.md +189 -0
- package/skills/design-architecture/README.md +107 -0
- package/skills/design-architecture/examples.md +84 -0
- package/skills/design-architecture/skill.md +192 -0
- package/skills/devops/README.md +177 -0
- package/skills/devops/examples.md +376 -0
- package/skills/devops/skill.md +210 -0
- package/skills/documentation/README.md +182 -0
- package/skills/documentation/examples.md +364 -0
- package/skills/documentation/skill.md +200 -0
- package/skills/performance/README.md +177 -0
- package/skills/performance/examples.md +376 -0
- package/skills/performance/skill.md +199 -0
- package/skills/qa/README.md +106 -0
- package/skills/qa/examples.md +84 -0
- package/skills/qa/skill.md +384 -0
- package/skills/security/README.md +108 -0
- package/skills/security/examples.md +85 -0
- package/skills/security/skill.md +223 -0
- package/skills/software-development/README.md +239 -0
- package/skills/software-development/assessment.md +0 -0
- package/skills/software-development/checklists.md +0 -0
- package/skills/software-development/examples.md +375 -0
- package/skills/software-development/prompts.md +0 -0
- package/skills/software-development/skill.md +390 -0
- package/skills/software-development/templates/README.md +7 -0
- package/skills/software-development/templates/api-development.md +0 -0
- package/skills/software-development/templates/bug-fix.md +0 -0
- package/skills/software-development/templates/code-review.md +0 -0
- package/skills/software-development/templates/feature-implementation.md +0 -0
- package/skills/software-development/templates/llm-integration.md +0 -0
- package/skills/software-development/templates/performance-review.md +0 -0
- package/skills/software-development/templates/security-review.md +0 -0
- package/skills/software-development/templates/test-generation.md +0 -0
- package/skills/software-development/tools.md +0 -0
- package/skills/software-development/workflows.md +0 -0
- package/skills/sre/README.md +107 -0
- package/skills/sre/examples.md +379 -0
- package/skills/sre/skill.md +256 -0
- package/skills/support-engineering/README.md +107 -0
- package/skills/support-engineering/examples.md +85 -0
- package/skills/support-engineering/skill.md +103 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Skill Map for Design Architect
|
|
2
|
+
|
|
3
|
+
Use this map to select the smallest set of role topic folders and skills needed
|
|
4
|
+
for a design architecture task.
|
|
5
|
+
|
|
6
|
+
## Routing Matrix
|
|
7
|
+
|
|
8
|
+
| Task type | Required role packets | Supporting skills or context | Output |
|
|
9
|
+
| --- | --- | --- | --- |
|
|
10
|
+
| Design system creation | `design-system/`, `component-library/`, `accessibility/`, `figma/` | `skills/design-architecture/skill.md` | Token, component, pattern, governance, and adoption plan. |
|
|
11
|
+
| Component specification | `component-library/`, `accessibility/`, `figma/` | `roles/software-developer/frontend/components/` | Component anatomy, variants, states, behavior, and acceptance criteria. |
|
|
12
|
+
| Screen or flow design | `ux/`, `ui/`, `wireframes/`, `usability/` | Product or project context | Flow, layout, hierarchy, state model, and validation notes. |
|
|
13
|
+
| Responsive design | `responsive/`, `ui/`, `ux/`, `accessibility/` | Frontend implementation guidance | Breakpoints, adaptive behavior, input-mode notes, and QA checklist. |
|
|
14
|
+
| Accessibility audit | `accessibility/`, `ui/`, `component-library/` | Frontend accessibility guidance | Findings, fixes, WCAG mapping, and verification plan. |
|
|
15
|
+
| Wireframing | `wireframes/`, `ux/`, `usability/` | Research or product context | Low-fidelity layouts, flow options, assumptions, and open questions. |
|
|
16
|
+
| Figma organization | `figma/`, `design-system/`, `component-library/` | Existing Figma or design system conventions | Page structure, naming, component organization, and handoff rules. |
|
|
17
|
+
| Usability validation | `usability/`, `ux/` | Analytics, support, research, or QA context | Test plan, task scenarios, findings format, and iteration plan. |
|
|
18
|
+
| Visual polish review | `ui/`, `accessibility/`, `responsive/` | Brand and frontend context | Prioritized design critique and specific corrections. |
|
|
19
|
+
| Developer handoff | `figma/`, `component-library/`, `responsive/`, `accessibility/` | `roles/software-developer/frontend/` | Annotated specs, acceptance criteria, states, and implementation risks. |
|
|
20
|
+
|
|
21
|
+
## Proficiency Areas
|
|
22
|
+
|
|
23
|
+
| Domain | What strong performance looks like | Reference |
|
|
24
|
+
| --- | --- | --- |
|
|
25
|
+
| Design systems | Defines foundations, components, tokens, documentation, and governance that scale across teams. | `design-system/` |
|
|
26
|
+
| Interaction design | Creates flows that expose the right decisions at the right time and handle edge states. | `ux/` |
|
|
27
|
+
| Visual design | Uses hierarchy, typography, spacing, color, and motion to support comprehension. | `ui/` |
|
|
28
|
+
| Accessibility | Designs for WCAG AA, keyboard use, screen readers, contrast, zoom, and reduced motion. | `accessibility/` |
|
|
29
|
+
| Responsive design | Adapts layouts and interactions across size, density, and input mode. | `responsive/` |
|
|
30
|
+
| Component architecture | Defines reusable components with clear variants, states, content rules, and behavior. | `component-library/` |
|
|
31
|
+
| Research and validation | Selects appropriate evidence methods and translates findings into design changes. | `usability/` |
|
|
32
|
+
| Handoff | Documents specs so engineering can build without guessing. | `figma/` |
|
|
33
|
+
|
|
34
|
+
## Routing Rules
|
|
35
|
+
|
|
36
|
+
- Load only packets relevant to the surface and deliverable.
|
|
37
|
+
- Prefer existing system patterns over creating new patterns.
|
|
38
|
+
- Use the design architecture skill as the competency source for all design work.
|
|
39
|
+
- Use frontend role guidance when the work will be implemented in a web or app
|
|
40
|
+
codebase.
|
|
41
|
+
- If a referenced project design system exists, treat it as the source of truth
|
|
42
|
+
unless the task is explicitly to change it.
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# Design Architect Triggers
|
|
2
|
+
|
|
3
|
+
Use this role when a request includes any of the following signals.
|
|
4
|
+
|
|
5
|
+
## Product Experience Design
|
|
6
|
+
|
|
7
|
+
Trigger examples:
|
|
8
|
+
|
|
9
|
+
- "Design this screen"
|
|
10
|
+
- "Improve the UX"
|
|
11
|
+
- "Make this dashboard easier to use"
|
|
12
|
+
- "Create a flow for onboarding"
|
|
13
|
+
- "Review this user journey"
|
|
14
|
+
|
|
15
|
+
Immediate response:
|
|
16
|
+
|
|
17
|
+
- Clarify user goal and success criteria.
|
|
18
|
+
- Load `ux/`, `ui/`, `usability/`, and relevant platform guidance.
|
|
19
|
+
- Define flow, hierarchy, states, and validation plan.
|
|
20
|
+
|
|
21
|
+
## Design System or Component Library
|
|
22
|
+
|
|
23
|
+
Trigger examples:
|
|
24
|
+
|
|
25
|
+
- "Create a design system"
|
|
26
|
+
- "Standardize components"
|
|
27
|
+
- "Define tokens"
|
|
28
|
+
- "Document component variants"
|
|
29
|
+
- "Clean up inconsistent UI patterns"
|
|
30
|
+
|
|
31
|
+
Immediate response:
|
|
32
|
+
|
|
33
|
+
- Load `design-system/` and `component-library/`.
|
|
34
|
+
- Inventory existing patterns before proposing additions.
|
|
35
|
+
- Define tokens, component anatomy, states, usage rules, and governance.
|
|
36
|
+
|
|
37
|
+
## Accessibility Review
|
|
38
|
+
|
|
39
|
+
Trigger examples:
|
|
40
|
+
|
|
41
|
+
- "Check accessibility"
|
|
42
|
+
- "Make this WCAG compliant"
|
|
43
|
+
- "Design for keyboard and screen readers"
|
|
44
|
+
- "Improve contrast"
|
|
45
|
+
|
|
46
|
+
Immediate response:
|
|
47
|
+
|
|
48
|
+
- Load `accessibility/`.
|
|
49
|
+
- Evaluate perceivable, operable, understandable, and robust requirements.
|
|
50
|
+
- Produce specific fixes and verification steps.
|
|
51
|
+
|
|
52
|
+
## Responsive or Cross-Device Design
|
|
53
|
+
|
|
54
|
+
Trigger examples:
|
|
55
|
+
|
|
56
|
+
- "Make this responsive"
|
|
57
|
+
- "Design mobile and desktop layouts"
|
|
58
|
+
- "Fix tablet layout"
|
|
59
|
+
- "Support touch and keyboard"
|
|
60
|
+
|
|
61
|
+
Immediate response:
|
|
62
|
+
|
|
63
|
+
- Load `responsive/`, plus `ui/` and `ux/` when layout or flow changes.
|
|
64
|
+
- Define content-driven breakpoints, layout behavior, and input-mode differences.
|
|
65
|
+
|
|
66
|
+
## Wireframes and Early Concepts
|
|
67
|
+
|
|
68
|
+
Trigger examples:
|
|
69
|
+
|
|
70
|
+
- "Sketch the flow"
|
|
71
|
+
- "Create wireframes"
|
|
72
|
+
- "Explore layout options"
|
|
73
|
+
- "Show low-fidelity structure"
|
|
74
|
+
|
|
75
|
+
Immediate response:
|
|
76
|
+
|
|
77
|
+
- Load `wireframes/` and `ux/`.
|
|
78
|
+
- Prioritize content, actions, and decisions over visual styling.
|
|
79
|
+
- Present alternatives with trade-offs.
|
|
80
|
+
|
|
81
|
+
## Figma Handoff or File Organization
|
|
82
|
+
|
|
83
|
+
Trigger examples:
|
|
84
|
+
|
|
85
|
+
- "Organize the Figma file"
|
|
86
|
+
- "Prepare handoff"
|
|
87
|
+
- "Document specs"
|
|
88
|
+
- "Create components in Figma"
|
|
89
|
+
|
|
90
|
+
Immediate response:
|
|
91
|
+
|
|
92
|
+
- Load `figma/`, `component-library/`, and relevant design-system guidance.
|
|
93
|
+
- Define naming, page structure, component sets, variants, annotations, and
|
|
94
|
+
developer handoff notes.
|
|
95
|
+
|
|
96
|
+
## Design Review
|
|
97
|
+
|
|
98
|
+
Trigger examples:
|
|
99
|
+
|
|
100
|
+
- "Review this mockup"
|
|
101
|
+
- "Critique this UI"
|
|
102
|
+
- "What is wrong with this design?"
|
|
103
|
+
- "Polish this screen"
|
|
104
|
+
|
|
105
|
+
Immediate response:
|
|
106
|
+
|
|
107
|
+
- Load `checklists.md` and relevant topic folders.
|
|
108
|
+
- Lead with highest-risk findings.
|
|
109
|
+
- Tie feedback to usability, accessibility, consistency, feasibility, or visual
|
|
110
|
+
hierarchy.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# UI Design
|
|
2
|
+
|
|
3
|
+
UI design defines the visual structure of an interface: hierarchy, layout,
|
|
4
|
+
typography, color, spacing, iconography, motion, and state presentation.
|
|
5
|
+
|
|
6
|
+
## Scope
|
|
7
|
+
|
|
8
|
+
- Visual hierarchy and composition.
|
|
9
|
+
- Typography and readability.
|
|
10
|
+
- Color, contrast, and semantic status.
|
|
11
|
+
- Layout, spacing, alignment, and density.
|
|
12
|
+
- Icons, imagery, and motion.
|
|
13
|
+
- Visual polish for production interfaces.
|
|
14
|
+
|
|
15
|
+
## Standards
|
|
16
|
+
|
|
17
|
+
- Hierarchy should make the primary action and most important information clear.
|
|
18
|
+
- Typography should match content density and reading context.
|
|
19
|
+
- Spacing should follow a repeatable system.
|
|
20
|
+
- Color should support meaning, not carry it alone.
|
|
21
|
+
- Motion should clarify state or relationship.
|
|
22
|
+
- Visual choices should fit product context and brand.
|
|
23
|
+
|
|
24
|
+
## Deliverables
|
|
25
|
+
|
|
26
|
+
- Visual design review.
|
|
27
|
+
- Layout and hierarchy recommendations.
|
|
28
|
+
- Token or style guidance.
|
|
29
|
+
- State and polish notes.
|
|
30
|
+
- Implementation-ready UI annotations.
|
|
31
|
+
|
|
32
|
+
## Related Guidance
|
|
33
|
+
|
|
34
|
+
- `../design-system/` for tokens and foundations.
|
|
35
|
+
- `../accessibility/` for contrast and inclusive visual states.
|
|
36
|
+
- `../responsive/` for layout adaptation.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# UI Design Checklists
|
|
2
|
+
|
|
3
|
+
## Hierarchy Checklist
|
|
4
|
+
|
|
5
|
+
- [ ] Primary content is visually dominant.
|
|
6
|
+
- [ ] Primary action is easy to identify.
|
|
7
|
+
- [ ] Secondary actions are lower emphasis.
|
|
8
|
+
- [ ] Related items are grouped.
|
|
9
|
+
- [ ] Page structure supports scanning.
|
|
10
|
+
- [ ] Headings and labels are specific.
|
|
11
|
+
|
|
12
|
+
## Visual System Checklist
|
|
13
|
+
|
|
14
|
+
- [ ] Typography scale is consistent.
|
|
15
|
+
- [ ] Line lengths and line heights are readable.
|
|
16
|
+
- [ ] Spacing follows a repeatable rhythm.
|
|
17
|
+
- [ ] Alignment is intentional.
|
|
18
|
+
- [ ] Color usage has semantic purpose.
|
|
19
|
+
- [ ] Iconography is consistent and labeled when needed.
|
|
20
|
+
- [ ] Motion is purposeful and restrained.
|
|
21
|
+
|
|
22
|
+
## State Checklist
|
|
23
|
+
|
|
24
|
+
- [ ] Empty states are helpful.
|
|
25
|
+
- [ ] Loading states preserve layout where possible.
|
|
26
|
+
- [ ] Error states explain recovery.
|
|
27
|
+
- [ ] Success states confirm completion.
|
|
28
|
+
- [ ] Disabled states explain unavailability when needed.
|
|
29
|
+
- [ ] Selected and active states are visually distinct.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# UI Design Examples
|
|
2
|
+
|
|
3
|
+
## Hierarchy Fix
|
|
4
|
+
|
|
5
|
+
```text
|
|
6
|
+
Issue:
|
|
7
|
+
Three buttons in the header use the same visual weight.
|
|
8
|
+
|
|
9
|
+
Fix:
|
|
10
|
+
- Keep the main task as the only primary button.
|
|
11
|
+
- Convert secondary actions to lower-emphasis buttons.
|
|
12
|
+
- Move rare actions into an overflow menu.
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Typography Note
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
Dashboard cards:
|
|
19
|
+
- Title: compact label, medium weight.
|
|
20
|
+
- Metric: largest text in card.
|
|
21
|
+
- Supporting context: muted body text.
|
|
22
|
+
- Trend: semantic color plus icon and text.
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Loading State
|
|
26
|
+
|
|
27
|
+
Prefer skeletons when layout is known and loading is brief. Use progress text
|
|
28
|
+
when the operation may take long enough that users need reassurance or context.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Usability
|
|
2
|
+
|
|
3
|
+
Usability guidance evaluates whether users can complete real tasks accurately,
|
|
4
|
+
efficiently, and confidently.
|
|
5
|
+
|
|
6
|
+
## Scope
|
|
7
|
+
|
|
8
|
+
- Task success and friction analysis.
|
|
9
|
+
- Usability testing plans.
|
|
10
|
+
- Heuristic review.
|
|
11
|
+
- Analytics and support signal interpretation.
|
|
12
|
+
- Iteration plans based on evidence.
|
|
13
|
+
|
|
14
|
+
## Standards
|
|
15
|
+
|
|
16
|
+
- Define the user task before judging the interface.
|
|
17
|
+
- Separate observed behavior from interpretation.
|
|
18
|
+
- Prioritize problems by frequency, severity, and business impact.
|
|
19
|
+
- Validate high-risk flows before investing in polish.
|
|
20
|
+
- Convert findings into specific design changes.
|
|
21
|
+
|
|
22
|
+
## Deliverables
|
|
23
|
+
|
|
24
|
+
- Usability review.
|
|
25
|
+
- Test plan and task scenarios.
|
|
26
|
+
- Findings summary.
|
|
27
|
+
- Prioritized recommendations.
|
|
28
|
+
- Follow-up validation plan.
|
|
29
|
+
|
|
30
|
+
## Related Guidance
|
|
31
|
+
|
|
32
|
+
- `../ux/` for journeys, flows, and information architecture.
|
|
33
|
+
- `../ui/` for visual clarity.
|
|
34
|
+
- `../accessibility/` for inclusive usability.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Usability Checklists
|
|
2
|
+
|
|
3
|
+
## Review Checklist
|
|
4
|
+
|
|
5
|
+
- [ ] Primary user task is stated.
|
|
6
|
+
- [ ] Entry point and next step are obvious.
|
|
7
|
+
- [ ] Required information is available at the decision point.
|
|
8
|
+
- [ ] Users can recover from mistakes.
|
|
9
|
+
- [ ] Labels match user language.
|
|
10
|
+
- [ ] Feedback confirms important actions.
|
|
11
|
+
- [ ] The interface avoids unnecessary choices.
|
|
12
|
+
|
|
13
|
+
## Test Plan Checklist
|
|
14
|
+
|
|
15
|
+
- [ ] Research question is clear.
|
|
16
|
+
- [ ] Participant profile matches target users.
|
|
17
|
+
- [ ] Tasks are realistic and unbiased.
|
|
18
|
+
- [ ] Success criteria are measurable.
|
|
19
|
+
- [ ] Moderator notes avoid leading language.
|
|
20
|
+
- [ ] Findings template separates observations from recommendations.
|
|
21
|
+
|
|
22
|
+
## Findings Checklist
|
|
23
|
+
|
|
24
|
+
- [ ] Findings include evidence.
|
|
25
|
+
- [ ] Severity is assigned.
|
|
26
|
+
- [ ] Recommendations are specific.
|
|
27
|
+
- [ ] Open questions are tracked.
|
|
28
|
+
- [ ] Follow-up validation is planned for high-risk changes.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Usability Examples
|
|
2
|
+
|
|
3
|
+
## Task Scenario
|
|
4
|
+
|
|
5
|
+
```text
|
|
6
|
+
You manage a project with five teammates. Invite a new teammate as a viewer and
|
|
7
|
+
confirm they were added successfully.
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Finding Format
|
|
11
|
+
|
|
12
|
+
```text
|
|
13
|
+
Finding:
|
|
14
|
+
Participants did not notice the role selector before sending the invite.
|
|
15
|
+
|
|
16
|
+
Evidence:
|
|
17
|
+
4 of 6 participants submitted the default role unintentionally.
|
|
18
|
+
|
|
19
|
+
Impact:
|
|
20
|
+
New members may receive incorrect access.
|
|
21
|
+
|
|
22
|
+
Recommendation:
|
|
23
|
+
Move role selection directly next to the email field and include a short helper
|
|
24
|
+
text explaining the default.
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Severity Guide
|
|
28
|
+
|
|
29
|
+
- High: prevents task completion or creates serious risk.
|
|
30
|
+
- Medium: causes delay, confusion, or likely support burden.
|
|
31
|
+
- Low: creates minor friction or polish issue.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# UX Design
|
|
2
|
+
|
|
3
|
+
UX design defines the structure of the user's experience: goals, flows,
|
|
4
|
+
information architecture, navigation, decisions, feedback, and recovery.
|
|
5
|
+
|
|
6
|
+
## Scope
|
|
7
|
+
|
|
8
|
+
- User journeys and task flows.
|
|
9
|
+
- Information architecture and navigation.
|
|
10
|
+
- Interaction models and progressive disclosure.
|
|
11
|
+
- Form and decision design.
|
|
12
|
+
- State, error, and recovery paths.
|
|
13
|
+
|
|
14
|
+
## Standards
|
|
15
|
+
|
|
16
|
+
- Start with the user's job and context.
|
|
17
|
+
- Make the next step obvious.
|
|
18
|
+
- Reveal complexity only when needed.
|
|
19
|
+
- Keep language concrete and task-oriented.
|
|
20
|
+
- Design recovery paths, not only happy paths.
|
|
21
|
+
- Align flows with product metrics and user outcomes.
|
|
22
|
+
|
|
23
|
+
## Deliverables
|
|
24
|
+
|
|
25
|
+
- Journey map.
|
|
26
|
+
- User flow.
|
|
27
|
+
- Information architecture.
|
|
28
|
+
- Interaction model.
|
|
29
|
+
- State model.
|
|
30
|
+
- UX review findings.
|
|
31
|
+
|
|
32
|
+
## Related Guidance
|
|
33
|
+
|
|
34
|
+
- `../wireframes/` for low-fidelity structure.
|
|
35
|
+
- `../usability/` for validation.
|
|
36
|
+
- `../ui/` for visual hierarchy.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# UX Design Checklists
|
|
2
|
+
|
|
3
|
+
## Flow Checklist
|
|
4
|
+
|
|
5
|
+
- [ ] User goal is clear.
|
|
6
|
+
- [ ] Entry points are defined.
|
|
7
|
+
- [ ] Primary path has minimal avoidable steps.
|
|
8
|
+
- [ ] Decision points include enough context.
|
|
9
|
+
- [ ] Confirmation and feedback are clear.
|
|
10
|
+
- [ ] Recovery paths exist for errors and cancellations.
|
|
11
|
+
- [ ] Exit points are intentional.
|
|
12
|
+
|
|
13
|
+
## Information Architecture Checklist
|
|
14
|
+
|
|
15
|
+
- [ ] Navigation labels match user expectations.
|
|
16
|
+
- [ ] Content is grouped by task or mental model.
|
|
17
|
+
- [ ] Important information is not buried.
|
|
18
|
+
- [ ] Hierarchy supports scanning.
|
|
19
|
+
- [ ] Search, filtering, or sorting exists when content volume requires it.
|
|
20
|
+
- [ ] Future content growth is considered.
|
|
21
|
+
|
|
22
|
+
## Interaction Checklist
|
|
23
|
+
|
|
24
|
+
- [ ] Controls have clear affordances.
|
|
25
|
+
- [ ] Progressive disclosure reduces overload.
|
|
26
|
+
- [ ] Destructive actions are protected.
|
|
27
|
+
- [ ] System feedback appears near the relevant action.
|
|
28
|
+
- [ ] Permissions and unavailable actions are explained.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# UX Design Examples
|
|
2
|
+
|
|
3
|
+
## User Flow
|
|
4
|
+
|
|
5
|
+
```text
|
|
6
|
+
Start: User receives invitation link.
|
|
7
|
+
1. Open invitation.
|
|
8
|
+
2. Review workspace name and invited role.
|
|
9
|
+
3. Sign in or create account.
|
|
10
|
+
4. Accept invitation.
|
|
11
|
+
5. Land in workspace with welcome confirmation.
|
|
12
|
+
|
|
13
|
+
Failure states:
|
|
14
|
+
- Expired invite.
|
|
15
|
+
- Already accepted invite.
|
|
16
|
+
- User lacks allowed email domain.
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Progressive Disclosure
|
|
20
|
+
|
|
21
|
+
```text
|
|
22
|
+
Basic settings:
|
|
23
|
+
- Project name
|
|
24
|
+
- Visibility
|
|
25
|
+
- Default role
|
|
26
|
+
|
|
27
|
+
Advanced settings:
|
|
28
|
+
- Domain restrictions
|
|
29
|
+
- SCIM sync
|
|
30
|
+
- Audit retention
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Navigation Recommendation
|
|
34
|
+
|
|
35
|
+
Group settings by user intent instead of implementation area. "Members" and
|
|
36
|
+
"Billing" are clearer than "Accounts" and "Subscriptions" if that is how users
|
|
37
|
+
describe the tasks.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Wireframes
|
|
2
|
+
|
|
3
|
+
Wireframes explore structure, content priority, user flow, and interaction
|
|
4
|
+
before visual design details are finalized.
|
|
5
|
+
|
|
6
|
+
## Scope
|
|
7
|
+
|
|
8
|
+
- Low-fidelity screen layouts.
|
|
9
|
+
- Flow exploration.
|
|
10
|
+
- Content hierarchy.
|
|
11
|
+
- Navigation and action placement.
|
|
12
|
+
- State and edge-case planning.
|
|
13
|
+
|
|
14
|
+
## Standards
|
|
15
|
+
|
|
16
|
+
- Keep wireframes focused on structure and decisions.
|
|
17
|
+
- Use real or representative content where possible.
|
|
18
|
+
- Include states and alternate paths.
|
|
19
|
+
- Explore multiple options when the structure is uncertain.
|
|
20
|
+
- Annotate assumptions and trade-offs.
|
|
21
|
+
|
|
22
|
+
## Deliverables
|
|
23
|
+
|
|
24
|
+
- Low-fidelity screen set.
|
|
25
|
+
- Flow map.
|
|
26
|
+
- Layout alternatives.
|
|
27
|
+
- Annotation notes.
|
|
28
|
+
- Open questions and validation plan.
|
|
29
|
+
|
|
30
|
+
## Related Guidance
|
|
31
|
+
|
|
32
|
+
- `../ux/` for flow and information architecture.
|
|
33
|
+
- `../ui/` for later visual treatment.
|
|
34
|
+
- `../usability/` for testing plans.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Wireframe Checklists
|
|
2
|
+
|
|
3
|
+
## Structure Checklist
|
|
4
|
+
|
|
5
|
+
- [ ] Primary task is represented.
|
|
6
|
+
- [ ] Content priority is clear.
|
|
7
|
+
- [ ] Main action and secondary actions are placed.
|
|
8
|
+
- [ ] Navigation context is visible.
|
|
9
|
+
- [ ] Empty, loading, error, and success states are considered.
|
|
10
|
+
- [ ] Layout supports expected content length.
|
|
11
|
+
|
|
12
|
+
## Exploration Checklist
|
|
13
|
+
|
|
14
|
+
- [ ] More than one option is explored when the pattern is uncertain.
|
|
15
|
+
- [ ] Trade-offs are documented.
|
|
16
|
+
- [ ] Assumptions are marked.
|
|
17
|
+
- [ ] Open questions are listed.
|
|
18
|
+
- [ ] Validation plan matches the risk.
|
|
19
|
+
|
|
20
|
+
## Handoff Checklist
|
|
21
|
+
|
|
22
|
+
- [ ] Wireframe purpose and fidelity are clear.
|
|
23
|
+
- [ ] Notes explain behavior.
|
|
24
|
+
- [ ] Visual details are not mistaken for final design.
|
|
25
|
+
- [ ] Next design step is identified.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Wireframe Examples
|
|
2
|
+
|
|
3
|
+
## Layout Alternative Notes
|
|
4
|
+
|
|
5
|
+
```text
|
|
6
|
+
Option A: Sidebar filters
|
|
7
|
+
Best for repeated analysis and large result sets.
|
|
8
|
+
Risk: Takes horizontal space on smaller screens.
|
|
9
|
+
|
|
10
|
+
Option B: Top filter bar
|
|
11
|
+
Best for compact workflows with common filters.
|
|
12
|
+
Risk: Advanced filters may become hidden or crowded.
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## State Coverage
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
Results screen:
|
|
19
|
+
- Loading skeleton
|
|
20
|
+
- Empty before search
|
|
21
|
+
- Empty after search
|
|
22
|
+
- Error with retry
|
|
23
|
+
- Results with pagination
|
|
24
|
+
- Results with selected filters
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Wireframe Annotation
|
|
28
|
+
|
|
29
|
+
```text
|
|
30
|
+
Primary action is intentionally below the summary because users should review
|
|
31
|
+
the generated changes before applying them.
|
|
32
|
+
```
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Design Architect Workflow
|
|
2
|
+
|
|
3
|
+
```text
|
|
4
|
+
Receive Request
|
|
5
|
+
|
|
|
6
|
+
Clarify User, Goal, Constraints
|
|
7
|
+
|
|
|
8
|
+
Load Context and Topic Packets
|
|
9
|
+
|
|
|
10
|
+
Audit Existing Patterns
|
|
11
|
+
|
|
|
12
|
+
Define Flow and Information Architecture
|
|
13
|
+
|
|
|
14
|
+
Create Structure and States
|
|
15
|
+
|
|
|
16
|
+
Apply Visual and System Rules
|
|
17
|
+
|
|
|
18
|
+
Validate Accessibility, Usability, Responsiveness
|
|
19
|
+
|
|
|
20
|
+
Document Handoff
|
|
21
|
+
|
|
|
22
|
+
Report Outcome and Open Questions
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## 1. Intake
|
|
26
|
+
|
|
27
|
+
- Identify the product surface, audience, workflow, and requester goal.
|
|
28
|
+
- Confirm the deliverable: critique, wireframe, design system spec, prototype
|
|
29
|
+
plan, Figma guidance, implementation notes, or review.
|
|
30
|
+
- Capture hard constraints such as platform, timeline, existing components,
|
|
31
|
+
brand rules, content availability, and engineering limits.
|
|
32
|
+
|
|
33
|
+
## 2. Context Loading
|
|
34
|
+
|
|
35
|
+
- Load `role.md`, `skill-map.md`, and `checklists.md`.
|
|
36
|
+
- Load relevant topic folders only.
|
|
37
|
+
- Load `skills/design-architecture/skill.md`.
|
|
38
|
+
- Load frontend implementation guidance when the design will be built in code.
|
|
39
|
+
|
|
40
|
+
## 3. Existing Pattern Audit
|
|
41
|
+
|
|
42
|
+
- Find current components, tokens, layouts, routes, and interaction conventions.
|
|
43
|
+
- Identify reusable patterns before proposing new ones.
|
|
44
|
+
- Note inconsistencies, accessibility risks, and missing states.
|
|
45
|
+
|
|
46
|
+
## 4. Structure First
|
|
47
|
+
|
|
48
|
+
- Define the user journey and information hierarchy.
|
|
49
|
+
- Choose navigation, layout, grouping, and progressive disclosure patterns.
|
|
50
|
+
- Specify primary, secondary, and destructive actions.
|
|
51
|
+
- Include empty, loading, error, success, disabled, and edge states.
|
|
52
|
+
|
|
53
|
+
## 5. System and Visual Design
|
|
54
|
+
|
|
55
|
+
- Map designs to tokens, components, variants, and patterns.
|
|
56
|
+
- Define spacing, typography, color, iconography, and motion purposefully.
|
|
57
|
+
- Keep visual choices aligned with brand, context, and user task intensity.
|
|
58
|
+
|
|
59
|
+
## 6. Validation
|
|
60
|
+
|
|
61
|
+
- Run the relevant checklist gates.
|
|
62
|
+
- Check accessibility, usability, responsive behavior, content variation, and
|
|
63
|
+
technical feasibility.
|
|
64
|
+
- Identify what needs user testing, analytics review, or engineering spike work.
|
|
65
|
+
|
|
66
|
+
## 7. Handoff
|
|
67
|
+
|
|
68
|
+
- Document component mapping, tokens, layout rules, breakpoints, states,
|
|
69
|
+
interactions, copy notes, and acceptance criteria.
|
|
70
|
+
- Highlight changes from current behavior.
|
|
71
|
+
- List risks, assumptions, open questions, and recommended validation steps.
|
|
72
|
+
|
|
73
|
+
## Workflow Rules
|
|
74
|
+
|
|
75
|
+
- Match fidelity to risk and decision maturity.
|
|
76
|
+
- Do not polish a structure that has not been validated.
|
|
77
|
+
- Prefer reusable system improvements over one-off fixes.
|
|
78
|
+
- Treat accessibility and responsive behavior as design requirements.
|
|
79
|
+
- Keep handoff notes specific enough that another teammate can build or review
|
|
80
|
+
the work.
|