buildanything 1.8.0 → 2.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/.claude-plugin/marketplace.json +3 -3
- package/.claude-plugin/plugin.json +9 -3
- package/CHANGELOG.md +57 -0
- package/README.md +2 -2
- package/agents/a11y-architect.md +166 -0
- package/agents/business-model.md +80 -29
- package/agents/code-architect.md +75 -0
- package/agents/code-reviewer.md +255 -0
- package/agents/code-simplifier.md +64 -0
- package/agents/design-brand-guardian.md +293 -53
- package/agents/design-critic.md +139 -0
- package/agents/design-inclusive-visuals-specialist.md +6 -19
- package/agents/design-ui-designer.md +335 -56
- package/agents/design-ux-architect.md +403 -55
- package/agents/design-ux-researcher.md +264 -49
- package/agents/engineering-ai-engineer.md +26 -36
- package/agents/engineering-backend-architect.md +185 -36
- package/agents/engineering-data-engineer.md +225 -43
- package/agents/engineering-devops-automator.md +227 -74
- package/agents/engineering-frontend-developer.md +210 -34
- package/agents/engineering-mobile-app-builder.md +6 -1
- package/agents/engineering-rapid-prototyper.md +30 -9
- package/agents/engineering-security-engineer.md +263 -61
- package/agents/engineering-senior-developer.md +128 -19
- package/agents/engineering-sre.md +84 -0
- package/agents/engineering-technical-writer.md +285 -41
- package/agents/feature-intel.md +110 -0
- package/agents/ios-app-review-guardian.md +19 -2
- package/agents/ios-foundation-models-specialist.md +20 -2
- package/agents/ios-storekit-specialist.md +9 -2
- package/agents/ios-swift-architect.md +28 -1
- package/agents/ios-swift-search.md +8 -1
- package/agents/ios-swift-ui-design.md +33 -1
- package/agents/marketing-app-store-optimizer.md +246 -64
- package/agents/planner.md +216 -0
- package/agents/pr-test-analyzer.md +63 -0
- package/agents/product-feedback-synthesizer.md +8 -2
- package/agents/refactor-cleaner.md +102 -0
- package/agents/security-reviewer.md +128 -0
- package/agents/silent-failure-hunter.md +54 -0
- package/agents/swift-build-resolver.md +119 -0
- package/agents/swift-reviewer.md +112 -0
- package/agents/tech-feasibility.md +21 -1
- package/agents/testing-api-tester.md +236 -59
- package/agents/testing-evidence-collector.md +26 -1
- package/agents/testing-performance-benchmarker.md +21 -1
- package/agents/testing-reality-checker.md +6 -1
- package/agents/visual-research.md +116 -0
- package/bin/adapters/cycle-counter-tool.ts +155 -0
- package/bin/adapters/scribe-tool.ts +71 -0
- package/bin/adapters/state-save-tool.ts +130 -0
- package/bin/adapters/write-lease-tool.ts +127 -0
- package/bin/buildanything-runtime.js +15 -0
- package/bin/buildanything-runtime.ts +328 -0
- package/bin/setup.js +83 -8
- package/commands/add-feature.md +2 -0
- package/commands/build.md +782 -266
- package/commands/fix.md +1 -1
- package/commands/self-check.md +121 -0
- package/commands/setup.md +50 -9
- package/commands/ux-review.md +2 -2
- package/commands/verify.md +6 -9
- package/docs/migration/agents.yaml +729 -0
- package/docs/migration/phase-graph.yaml +1088 -0
- package/docs/migration/sdk-host-compat.md +18 -0
- package/hooks/compile-writer-owner-cache.ts +171 -0
- package/hooks/hooks.json +36 -0
- package/hooks/pre-tool-use +19 -0
- package/hooks/pre-tool-use.ts +776 -0
- package/hooks/record-mode-transitions.ts +178 -0
- package/hooks/session-start +71 -1
- package/hooks/subagent-start +17 -0
- package/hooks/subagent-start.ts +471 -0
- package/hooks/subagent-stop +17 -0
- package/hooks/subagent-stop.ts +153 -0
- package/package.json +24 -4
- package/protocols/architecture-schema.md +171 -0
- package/protocols/decision-log.md +131 -0
- package/protocols/ios-context.md +10 -11
- package/protocols/ios-phase-branches.md +208 -33
- package/protocols/launch-readiness.md +258 -0
- package/protocols/metric-loop.md +62 -2
- package/protocols/smoke-test.md +9 -1
- package/protocols/state-schema.json +388 -0
- package/protocols/state-schema.md +172 -0
- package/protocols/verify.md +62 -2
- package/protocols/visual-dna.md +185 -0
- package/protocols/web-phase-branches.md +222 -72
- package/skills/ios/_VENDORED.md +2 -0
- package/skills/ios/app-store-connect-metadata/SKILL.md +148 -0
- package/skills/ios/asc-privacy-manifest/SKILL.md +350 -0
- package/skills/ios/hig-components-content/SKILL.md +86 -0
- package/skills/ios/hig-components-content/references/activity-views.md +79 -0
- package/skills/ios/hig-components-content/references/charts.md +180 -0
- package/skills/ios/hig-components-content/references/collections.md +48 -0
- package/skills/ios/hig-components-content/references/color-wells.md +42 -0
- package/skills/ios/hig-components-content/references/image-views.md +82 -0
- package/skills/ios/hig-components-content/references/image-wells.md +34 -0
- package/skills/ios/hig-components-content/references/lockups.md +78 -0
- package/skills/ios/hig-components-content/references/web-views.md +36 -0
- package/skills/ios/hig-components-controls/SKILL.md +88 -0
- package/skills/ios/hig-components-controls/references/combo-boxes.md +40 -0
- package/skills/ios/hig-components-controls/references/controls.md +112 -0
- package/skills/ios/hig-components-controls/references/gauges.md +74 -0
- package/skills/ios/hig-components-controls/references/labels.md +92 -0
- package/skills/ios/hig-components-controls/references/pickers.md +128 -0
- package/skills/ios/hig-components-controls/references/rating-indicators.md +38 -0
- package/skills/ios/hig-components-controls/references/segmented-controls.md +94 -0
- package/skills/ios/hig-components-controls/references/sliders.md +92 -0
- package/skills/ios/hig-components-controls/references/steppers.md +40 -0
- package/skills/ios/hig-components-controls/references/text-fields.md +88 -0
- package/skills/ios/hig-components-controls/references/text-views.md +56 -0
- package/skills/ios/hig-components-controls/references/toggles.md +127 -0
- package/skills/ios/hig-components-controls/references/token-fields.md +48 -0
- package/skills/ios/hig-components-controls/references/virtual-keyboards.md +156 -0
- package/skills/ios/hig-components-dialogs/SKILL.md +76 -0
- package/skills/ios/hig-components-dialogs/references/action-sheets.md +74 -0
- package/skills/ios/hig-components-dialogs/references/alerts.md +158 -0
- package/skills/ios/hig-components-dialogs/references/digit-entry-views.md +32 -0
- package/skills/ios/hig-components-dialogs/references/popovers.md +81 -0
- package/skills/ios/hig-components-dialogs/references/sheets.md +157 -0
- package/skills/ios/hig-components-layout/SKILL.md +99 -0
- package/skills/ios/hig-components-layout/references/boxes.md +48 -0
- package/skills/ios/hig-components-layout/references/column-views.md +44 -0
- package/skills/ios/hig-components-layout/references/lists-and-tables.md +99 -0
- package/skills/ios/hig-components-layout/references/ornaments.md +56 -0
- package/skills/ios/hig-components-layout/references/outline-views.md +64 -0
- package/skills/ios/hig-components-layout/references/panels.md +75 -0
- package/skills/ios/hig-components-layout/references/scroll-views.md +123 -0
- package/skills/ios/hig-components-layout/references/sidebars.md +109 -0
- package/skills/ios/hig-components-layout/references/split-views.md +110 -0
- package/skills/ios/hig-components-layout/references/tab-bars.md +173 -0
- package/skills/ios/hig-components-layout/references/tab-views.md +68 -0
- package/skills/ios/hig-components-layout/references/windows.md +188 -0
- package/skills/ios/hig-components-menus/SKILL.md +81 -0
- package/skills/ios/hig-components-menus/references/action-button.md +61 -0
- package/skills/ios/hig-components-menus/references/buttons.md +261 -0
- package/skills/ios/hig-components-menus/references/context-menus.md +105 -0
- package/skills/ios/hig-components-menus/references/disclosure-controls.md +84 -0
- package/skills/ios/hig-components-menus/references/dock-menus.md +40 -0
- package/skills/ios/hig-components-menus/references/edit-menus.md +88 -0
- package/skills/ios/hig-components-menus/references/menus.md +171 -0
- package/skills/ios/hig-components-menus/references/pop-up-buttons.md +70 -0
- package/skills/ios/hig-components-menus/references/pull-down-buttons.md +77 -0
- package/skills/ios/hig-components-menus/references/the-menu-bar.md +303 -0
- package/skills/ios/hig-components-menus/references/toolbars.md +256 -0
- package/skills/ios/hig-components-search/SKILL.md +68 -0
- package/skills/ios/hig-components-search/references/page-controls.md +120 -0
- package/skills/ios/hig-components-search/references/path-controls.md +40 -0
- package/skills/ios/hig-components-search/references/search-fields.md +189 -0
- package/skills/ios/hig-components-status/SKILL.md +80 -0
- package/skills/ios/hig-components-status/references/activity-rings.md +105 -0
- package/skills/ios/hig-components-status/references/progress-indicators.md +116 -0
- package/skills/ios/hig-components-status/references/status-bars.md +38 -0
- package/skills/ios/hig-components-system/SKILL.md +88 -0
- package/skills/ios/hig-components-system/references/app-clips.md +387 -0
- package/skills/ios/hig-components-system/references/app-shortcuts.md +114 -0
- package/skills/ios/hig-components-system/references/complications.md +425 -0
- package/skills/ios/hig-components-system/references/home-screen-quick-actions.md +42 -0
- package/skills/ios/hig-components-system/references/live-activities.md +442 -0
- package/skills/ios/hig-components-system/references/notifications.md +153 -0
- package/skills/ios/hig-components-system/references/top-shelf.md +135 -0
- package/skills/ios/hig-components-system/references/watch-faces.md +40 -0
- package/skills/ios/hig-components-system/references/widgets.md +517 -0
- package/skills/ios/hig-foundations/SKILL.md +98 -0
- package/skills/ios/hig-foundations/references/accessibility.md +291 -0
- package/skills/ios/hig-foundations/references/app-icons.md +210 -0
- package/skills/ios/hig-foundations/references/branding.md +44 -0
- package/skills/ios/hig-foundations/references/color.md +274 -0
- package/skills/ios/hig-foundations/references/dark-mode.md +116 -0
- package/skills/ios/hig-foundations/references/icons.md +263 -0
- package/skills/ios/hig-foundations/references/images.md +176 -0
- package/skills/ios/hig-foundations/references/immersive-experiences.md +174 -0
- package/skills/ios/hig-foundations/references/inclusion.md +189 -0
- package/skills/ios/hig-foundations/references/layout.md +425 -0
- package/skills/ios/hig-foundations/references/materials.md +238 -0
- package/skills/ios/hig-foundations/references/motion.md +103 -0
- package/skills/ios/hig-foundations/references/privacy.md +231 -0
- package/skills/ios/hig-foundations/references/right-to-left.md +206 -0
- package/skills/ios/hig-foundations/references/sf-symbols.md +310 -0
- package/skills/ios/hig-foundations/references/spatial-layout.md +142 -0
- package/skills/ios/hig-foundations/references/typography.md +1146 -0
- package/skills/ios/hig-foundations/references/writing.md +91 -0
- package/skills/ios/hig-inputs/SKILL.md +94 -0
- package/skills/ios/hig-inputs/references/apple-pencil-and-scribble.md +148 -0
- package/skills/ios/hig-inputs/references/camera-control.md +107 -0
- package/skills/ios/hig-inputs/references/digital-crown.md +83 -0
- package/skills/ios/hig-inputs/references/eyes.md +120 -0
- package/skills/ios/hig-inputs/references/focus-and-selection.md +120 -0
- package/skills/ios/hig-inputs/references/game-controls.md +156 -0
- package/skills/ios/hig-inputs/references/gestures.md +208 -0
- package/skills/ios/hig-inputs/references/gyro-and-accelerometer.md +40 -0
- package/skills/ios/hig-inputs/references/keyboards.md +234 -0
- package/skills/ios/hig-inputs/references/nearby-interactions.md +70 -0
- package/skills/ios/hig-inputs/references/pointing-devices.md +237 -0
- package/skills/ios/hig-inputs/references/remotes.md +67 -0
- package/skills/ios/hig-inputs/references/spatial-interactions.md +70 -0
- package/skills/ios/hig-patterns/SKILL.md +104 -0
- package/skills/ios/hig-patterns/references/charting-data.md +81 -0
- package/skills/ios/hig-patterns/references/collaboration-and-sharing.md +86 -0
- package/skills/ios/hig-patterns/references/drag-and-drop.md +134 -0
- package/skills/ios/hig-patterns/references/entering-data.md +69 -0
- package/skills/ios/hig-patterns/references/feedback.md +67 -0
- package/skills/ios/hig-patterns/references/file-management.md +135 -0
- package/skills/ios/hig-patterns/references/going-full-screen.md +79 -0
- package/skills/ios/hig-patterns/references/launching.md +81 -0
- package/skills/ios/hig-patterns/references/live-viewing-apps.md +79 -0
- package/skills/ios/hig-patterns/references/loading.md +59 -0
- package/skills/ios/hig-patterns/references/managing-accounts.md +107 -0
- package/skills/ios/hig-patterns/references/managing-notifications.md +99 -0
- package/skills/ios/hig-patterns/references/modality.md +82 -0
- package/skills/ios/hig-patterns/references/multitasking.md +131 -0
- package/skills/ios/hig-patterns/references/offering-help.md +117 -0
- package/skills/ios/hig-patterns/references/onboarding.md +69 -0
- package/skills/ios/hig-patterns/references/playing-audio.md +124 -0
- package/skills/ios/hig-patterns/references/playing-haptics.md +280 -0
- package/skills/ios/hig-patterns/references/playing-video.md +180 -0
- package/skills/ios/hig-patterns/references/printing.md +50 -0
- package/skills/ios/hig-patterns/references/ratings-and-reviews.md +48 -0
- package/skills/ios/hig-patterns/references/searching.md +70 -0
- package/skills/ios/hig-patterns/references/settings.md +84 -0
- package/skills/ios/hig-patterns/references/undo-and-redo.md +58 -0
- package/skills/ios/hig-patterns/references/workouts.md +76 -0
- package/skills/ios/hig-platforms/SKILL.md +84 -0
- package/skills/ios/hig-platforms/references/designing-for-games.md +159 -0
- package/skills/ios/hig-platforms/references/designing-for-ios.md +66 -0
- package/skills/ios/hig-platforms/references/designing-for-ipados.md +64 -0
- package/skills/ios/hig-platforms/references/designing-for-macos.md +70 -0
- package/skills/ios/hig-platforms/references/designing-for-tvos.md +68 -0
- package/skills/ios/hig-platforms/references/designing-for-visionos.md +85 -0
- package/skills/ios/hig-platforms/references/designing-for-watchos.md +74 -0
- package/skills/ios/hig-project-context/SKILL.md +133 -0
- package/skills/ios/hig-technologies/SKILL.md +107 -0
- package/skills/ios/hig-technologies/references/airplay.md +125 -0
- package/skills/ios/hig-technologies/references/always-on.md +62 -0
- package/skills/ios/hig-technologies/references/apple-pay.md +441 -0
- package/skills/ios/hig-technologies/references/augmented-reality.md +247 -0
- package/skills/ios/hig-technologies/references/carekit.md +224 -0
- package/skills/ios/hig-technologies/references/carplay.md +119 -0
- package/skills/ios/hig-technologies/references/game-center.md +343 -0
- package/skills/ios/hig-technologies/references/generative-ai.md +110 -0
- package/skills/ios/hig-technologies/references/healthkit.md +120 -0
- package/skills/ios/hig-technologies/references/homekit.md +343 -0
- package/skills/ios/hig-technologies/references/icloud.md +52 -0
- package/skills/ios/hig-technologies/references/id-verifier.md +73 -0
- package/skills/ios/hig-technologies/references/imessage-apps-and-stickers.md +105 -0
- package/skills/ios/hig-technologies/references/in-app-purchase.md +263 -0
- package/skills/ios/hig-technologies/references/live-photos.md +54 -0
- package/skills/ios/hig-technologies/references/mac-catalyst.md +216 -0
- package/skills/ios/hig-technologies/references/machine-learning.md +394 -0
- package/skills/ios/hig-technologies/references/maps.md +221 -0
- package/skills/ios/hig-technologies/references/nfc.md +51 -0
- package/skills/ios/hig-technologies/references/photo-editing.md +40 -0
- package/skills/ios/hig-technologies/references/researchkit.md +134 -0
- package/skills/ios/hig-technologies/references/shareplay.md +142 -0
- package/skills/ios/hig-technologies/references/shazamkit.md +47 -0
- package/skills/ios/hig-technologies/references/sign-in-with-apple.md +288 -0
- package/skills/ios/hig-technologies/references/siri.md +523 -0
- package/skills/ios/hig-technologies/references/tap-to-pay-on-iphone.md +208 -0
- package/skills/ios/hig-technologies/references/voiceover.md +90 -0
- package/skills/ios/hig-technologies/references/wallet.md +420 -0
- package/skills/ios/ios-bootstrap/SKILL.md +16 -7
- package/skills/ios/swift-actor-persistence/SKILL.md +143 -0
- package/skills/ios/swift-concurrency-6-2/SKILL.md +216 -0
- package/skills/ios/swift-protocol-di-testing/SKILL.md +190 -0
- package/skills/ios/swiftui-design-tokens/SKILL.md +475 -0
- package/skills/ios/writing-for-interfaces/SKILL.md +75 -0
- package/skills/web/accessibility/SKILL.md +146 -0
- package/skills/web/aceternity-ui/SKILL.md +719 -0
- package/skills/web/aceternity-ui/metadata.json +10 -0
- package/skills/web/api-design/SKILL.md +523 -0
- package/skills/web/chart-accessibility/SKILL.md +332 -0
- package/skills/web/composition-patterns/AGENTS.md +946 -0
- package/skills/web/composition-patterns/README.md +60 -0
- package/skills/web/composition-patterns/SKILL.md +89 -0
- package/skills/web/composition-patterns/metadata.json +11 -0
- package/skills/web/composition-patterns/rules/_sections.md +29 -0
- package/skills/web/composition-patterns/rules/_template.md +24 -0
- package/skills/web/composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
- package/skills/web/composition-patterns/rules/architecture-compound-components.md +112 -0
- package/skills/web/composition-patterns/rules/patterns-children-over-render-props.md +87 -0
- package/skills/web/composition-patterns/rules/patterns-explicit-variants.md +100 -0
- package/skills/web/composition-patterns/rules/react19-no-forwardref.md +42 -0
- package/skills/web/composition-patterns/rules/state-context-interface.md +191 -0
- package/skills/web/composition-patterns/rules/state-decouple-implementation.md +113 -0
- package/skills/web/composition-patterns/rules/state-lift-state.md +125 -0
- package/skills/web/cost-aware-llm-pipeline/SKILL.md +183 -0
- package/skills/web/database-migrations/SKILL.md +429 -0
- package/skills/web/deployment-patterns/SKILL.md +427 -0
- package/skills/web/docker-patterns/SKILL.md +364 -0
- package/skills/web/e2e-testing/SKILL.md +326 -0
- package/skills/web/lighthouse-ci/SKILL.md +361 -0
- package/skills/web/mcp-server-patterns/SKILL.md +69 -0
- package/skills/web/next-best-practices/SKILL.md +153 -0
- package/skills/web/next-best-practices/async-patterns.md +87 -0
- package/skills/web/next-best-practices/bundling.md +180 -0
- package/skills/web/next-best-practices/data-patterns.md +297 -0
- package/skills/web/next-best-practices/debug-tricks.md +105 -0
- package/skills/web/next-best-practices/directives.md +73 -0
- package/skills/web/next-best-practices/error-handling.md +227 -0
- package/skills/web/next-best-practices/file-conventions.md +140 -0
- package/skills/web/next-best-practices/font.md +245 -0
- package/skills/web/next-best-practices/functions.md +108 -0
- package/skills/web/next-best-practices/hydration-error.md +91 -0
- package/skills/web/next-best-practices/image.md +173 -0
- package/skills/web/next-best-practices/metadata.md +301 -0
- package/skills/web/next-best-practices/parallel-routes.md +287 -0
- package/skills/web/next-best-practices/route-handlers.md +146 -0
- package/skills/web/next-best-practices/rsc-boundaries.md +159 -0
- package/skills/web/next-best-practices/runtime-selection.md +39 -0
- package/skills/web/next-best-practices/scripts.md +141 -0
- package/skills/web/next-best-practices/self-hosting.md +371 -0
- package/skills/web/next-best-practices/suspense-boundaries.md +67 -0
- package/skills/web/next-cache-components/SKILL.md +411 -0
- package/skills/web/postgres-best-practices/SKILL.md +14 -0
- package/skills/web/postgres-best-practices/references/schema-design.md +9 -0
- package/skills/web/react-best-practices/AGENTS.md +3810 -0
- package/skills/web/react-best-practices/README.md +123 -0
- package/skills/web/react-best-practices/SKILL.md +149 -0
- package/skills/web/react-best-practices/metadata.json +15 -0
- package/skills/web/react-best-practices/rules/_sections.md +46 -0
- package/skills/web/react-best-practices/rules/_template.md +28 -0
- package/skills/web/react-best-practices/rules/advanced-effect-event-deps.md +56 -0
- package/skills/web/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/skills/web/react-best-practices/rules/advanced-init-once.md +42 -0
- package/skills/web/react-best-practices/rules/advanced-use-latest.md +39 -0
- package/skills/web/react-best-practices/rules/async-api-routes.md +38 -0
- package/skills/web/react-best-practices/rules/async-cheap-condition-before-await.md +37 -0
- package/skills/web/react-best-practices/rules/async-defer-await.md +82 -0
- package/skills/web/react-best-practices/rules/async-dependencies.md +51 -0
- package/skills/web/react-best-practices/rules/async-parallel.md +28 -0
- package/skills/web/react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/skills/web/react-best-practices/rules/bundle-analyzable-paths.md +63 -0
- package/skills/web/react-best-practices/rules/bundle-barrel-imports.md +60 -0
- package/skills/web/react-best-practices/rules/bundle-conditional.md +31 -0
- package/skills/web/react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/skills/web/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/skills/web/react-best-practices/rules/bundle-preload.md +50 -0
- package/skills/web/react-best-practices/rules/client-event-listeners.md +74 -0
- package/skills/web/react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/skills/web/react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/skills/web/react-best-practices/rules/client-swr-dedup.md +56 -0
- package/skills/web/react-best-practices/rules/js-batch-dom-css.md +107 -0
- package/skills/web/react-best-practices/rules/js-cache-function-results.md +80 -0
- package/skills/web/react-best-practices/rules/js-cache-property-access.md +28 -0
- package/skills/web/react-best-practices/rules/js-cache-storage.md +70 -0
- package/skills/web/react-best-practices/rules/js-combine-iterations.md +32 -0
- package/skills/web/react-best-practices/rules/js-early-exit.md +50 -0
- package/skills/web/react-best-practices/rules/js-flatmap-filter.md +60 -0
- package/skills/web/react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/skills/web/react-best-practices/rules/js-index-maps.md +37 -0
- package/skills/web/react-best-practices/rules/js-length-check-first.md +49 -0
- package/skills/web/react-best-practices/rules/js-min-max-loop.md +82 -0
- package/skills/web/react-best-practices/rules/js-request-idle-callback.md +105 -0
- package/skills/web/react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/skills/web/react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/skills/web/react-best-practices/rules/rendering-activity.md +26 -0
- package/skills/web/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/skills/web/react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/skills/web/react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/skills/web/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/skills/web/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/skills/web/react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
- package/skills/web/react-best-practices/rules/rendering-resource-hints.md +85 -0
- package/skills/web/react-best-practices/rules/rendering-script-defer-async.md +68 -0
- package/skills/web/react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/skills/web/react-best-practices/rules/rendering-usetransition-loading.md +75 -0
- package/skills/web/react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/skills/web/react-best-practices/rules/rerender-dependencies.md +45 -0
- package/skills/web/react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
- package/skills/web/react-best-practices/rules/rerender-derived-state.md +29 -0
- package/skills/web/react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/skills/web/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/skills/web/react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
- package/skills/web/react-best-practices/rules/rerender-memo.md +44 -0
- package/skills/web/react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
- package/skills/web/react-best-practices/rules/rerender-no-inline-components.md +82 -0
- package/skills/web/react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
- package/skills/web/react-best-practices/rules/rerender-split-combined-hooks.md +64 -0
- package/skills/web/react-best-practices/rules/rerender-transitions.md +40 -0
- package/skills/web/react-best-practices/rules/rerender-use-deferred-value.md +59 -0
- package/skills/web/react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
- package/skills/web/react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/skills/web/react-best-practices/rules/server-auth-actions.md +96 -0
- package/skills/web/react-best-practices/rules/server-cache-lru.md +41 -0
- package/skills/web/react-best-practices/rules/server-cache-react.md +76 -0
- package/skills/web/react-best-practices/rules/server-dedup-props.md +65 -0
- package/skills/web/react-best-practices/rules/server-hoist-static-io.md +149 -0
- package/skills/web/react-best-practices/rules/server-no-shared-module-state.md +50 -0
- package/skills/web/react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/skills/web/react-best-practices/rules/server-parallel-nested-fetching.md +34 -0
- package/skills/web/react-best-practices/rules/server-serialization.md +38 -0
- package/skills/web/seo/SKILL.md +154 -0
- package/skills/web/web-design-guidelines/SKILL.md +39 -0
- package/skills/web/zap-scan-config/SKILL.md +444 -0
- package/skills/web/zap-scan-config/assets/.gitkeep +9 -0
- package/skills/web/zap-scan-config/assets/github_action.yml +207 -0
- package/skills/web/zap-scan-config/assets/gitlab_ci.yml +226 -0
- package/skills/web/zap-scan-config/assets/zap_automation.yaml +196 -0
- package/skills/web/zap-scan-config/assets/zap_context.xml +192 -0
- package/skills/web/zap-scan-config/references/EXAMPLE.md +40 -0
- package/skills/web/zap-scan-config/references/api_testing_guide.md +475 -0
- package/skills/web/zap-scan-config/references/authentication_guide.md +431 -0
- package/skills/web/zap-scan-config/references/false_positive_handling.md +427 -0
- package/skills/web/zap-scan-config/references/owasp_mapping.md +255 -0
- package/src/lrr/aggregator.ts +80 -0
- package/src/orchestrator/hooks/context-header.ts +95 -0
- package/src/orchestrator/hooks/token-accounting-emitter.ts +77 -0
- package/src/orchestrator/hooks/token-accounting.ts +101 -0
- package/src/orchestrator/mcp/cycle-counter.ts +129 -0
- package/src/orchestrator/mcp/scribe.ts +283 -0
- package/src/orchestrator/mcp/state-save.ts +149 -0
- package/src/orchestrator/mcp/write-lease.ts +167 -0
- package/src/orchestrator/phase4-shared-context.ts +41 -0
- package/src/orchestrator/schemas/backward-edge.ts +46 -0
- package/agents/agentic-identity-trust.md +0 -121
- package/agents/data-consolidation-agent.md +0 -39
- package/agents/design-image-prompt-engineer.md +0 -105
- package/agents/design-visual-storyteller.md +0 -147
- package/agents/design-whimsy-injector.md +0 -89
- package/agents/engineering-autonomous-optimization-architect.md +0 -105
- package/agents/market-intel.md +0 -35
- package/agents/marketing-instagram-curator.md +0 -111
- package/agents/marketing-reddit-community-builder.md +0 -121
- package/agents/marketing-social-media-strategist.md +0 -74
- package/agents/marketing-tiktok-strategist.md +0 -123
- package/agents/marketing-twitter-engager.md +0 -124
- package/agents/marketing-wechat-official-account.md +0 -143
- package/agents/marketing-xiaohongshu-specialist.md +0 -136
- package/agents/marketing-zhihu-strategist.md +0 -160
- package/agents/product-behavioral-nudge-engine.md +0 -78
- package/agents/project-management-experiment-tracker.md +0 -102
- package/agents/report-distribution-agent.md +0 -43
- package/agents/risk-analysis.md +0 -45
- package/agents/sales-data-extraction-agent.md +0 -46
- package/agents/specialized-cultural-intelligence-strategist.md +0 -65
- package/agents/specialized-developer-advocate.md +0 -146
- package/agents/support-analytics-reporter.md +0 -133
- package/agents/support-executive-summary-generator.md +0 -64
- package/agents/support-finance-tracker.md +0 -145
- package/agents/support-legal-compliance-checker.md +0 -129
- package/agents/support-support-responder.md +0 -91
- package/agents/testing-accessibility-auditor.md +0 -110
- package/agents/testing-test-results-analyzer.md +0 -97
- package/agents/testing-tool-evaluator.md +0 -76
- package/agents/testing-workflow-optimizer.md +0 -99
- package/agents/user-research.md +0 -40
- package/protocols/brainstorm.md +0 -99
- package/protocols/design.md +0 -269
- package/protocols/planning.md +0 -87
- package/skills/ios/ios-hig/SKILL.md +0 -41
- package/skills/ios/ios-hig/references/accessibility.md +0 -81
- package/skills/ios/ios-hig/references/content.md +0 -142
- package/skills/ios/ios-hig/references/feedback.md +0 -123
- package/skills/ios/ios-hig/references/interaction.md +0 -199
- package/skills/ios/ios-hig/references/performance-platform.md +0 -129
- package/skills/ios/ios-hig/references/privacy-permissions.md +0 -181
- package/skills/ios/ios-hig/references/visual-design.md +0 -84
|
@@ -1,76 +1,291 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: design-ux-researcher
|
|
3
3
|
description: Expert user experience researcher specializing in user behavior analysis, usability testing, and data-driven design insights. Provides actionable research findings that improve product usability and user satisfaction
|
|
4
4
|
color: green
|
|
5
|
+
emoji: 🔬
|
|
6
|
+
vibe: Validates design decisions with real user data, not assumptions.
|
|
5
7
|
---
|
|
6
8
|
|
|
7
|
-
# UX Researcher
|
|
9
|
+
# UX Researcher Agent Personality
|
|
8
10
|
|
|
9
|
-
You are
|
|
11
|
+
You are **UX Researcher**, an expert user experience researcher who specializes in understanding user behavior, validating design decisions, and providing actionable insights. You bridge the gap between user needs and design solutions through rigorous research methodologies and data-driven recommendations.
|
|
10
12
|
|
|
11
|
-
##
|
|
13
|
+
## Skill Access
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
+
The orchestrator passes these variables into your dispatch prompt: `project_type` and `phase`.
|
|
16
|
+
|
|
17
|
+
**Rules:**
|
|
18
|
+
- Load skills from this shortlist ONLY. Never consult skills outside this list.
|
|
19
|
+
- No defaulting. When no gate matches a skill, do NOT load it.
|
|
20
|
+
|
|
21
|
+
**Project-type gated (iOS):**
|
|
22
|
+
- `project_type=ios AND phase=5` → `skills/ios/writing-for-interfaces` — microcopy and voice audit criteria for iOS UX quality review
|
|
23
|
+
|
|
24
|
+
Otherwise this agent operates from its system prompt alone. UX research methodology is not covered by the vendored skill shortlist.
|
|
25
|
+
|
|
26
|
+
## 🎯 Your Core Mission
|
|
27
|
+
|
|
28
|
+
### Understand User Behavior
|
|
29
|
+
- Conduct comprehensive user research using qualitative and quantitative methods
|
|
30
|
+
- Create detailed user personas based on empirical data and behavioral patterns
|
|
31
|
+
- Map complete user journeys identifying pain points and optimization opportunities
|
|
15
32
|
- Validate design decisions through usability testing and behavioral analysis
|
|
16
|
-
-
|
|
17
|
-
|
|
33
|
+
- **Default requirement**: Include accessibility research and inclusive design testing
|
|
34
|
+
|
|
35
|
+
### Provide Actionable Insights
|
|
36
|
+
- Translate research findings into specific, implementable design recommendations
|
|
37
|
+
- Conduct A/B testing and statistical analysis for data-driven decision making
|
|
38
|
+
- Create research repositories that build institutional knowledge over time
|
|
39
|
+
- Establish research processes that support continuous product improvement
|
|
18
40
|
|
|
19
|
-
|
|
41
|
+
### Validate Product Decisions
|
|
42
|
+
- Test product-market fit through user interviews and behavioral data
|
|
43
|
+
- Conduct international usability research for global product expansion
|
|
44
|
+
- Perform competitive research and market analysis for strategic positioning
|
|
45
|
+
- Evaluate feature effectiveness through user feedback and usage analytics
|
|
20
46
|
|
|
21
|
-
|
|
47
|
+
## 🚨 Critical Rules You Must Follow
|
|
48
|
+
|
|
49
|
+
### Research Methodology First
|
|
22
50
|
- Establish clear research questions before selecting methods
|
|
23
|
-
- Use appropriate sample sizes for reliable insights
|
|
51
|
+
- Use appropriate sample sizes and statistical methods for reliable insights
|
|
24
52
|
- Mitigate bias through proper study design and participant selection
|
|
25
|
-
- Validate findings through triangulation
|
|
53
|
+
- Validate findings through triangulation and multiple data sources
|
|
26
54
|
|
|
27
|
-
### Ethical Research
|
|
55
|
+
### Ethical Research Practices
|
|
28
56
|
- Obtain proper consent and protect participant privacy
|
|
29
|
-
-
|
|
57
|
+
- Ensure inclusive participant recruitment across diverse demographics
|
|
30
58
|
- Present findings objectively without confirmation bias
|
|
59
|
+
- Store and handle research data securely and responsibly
|
|
60
|
+
|
|
61
|
+
## 📋 Your Research Deliverables
|
|
62
|
+
|
|
63
|
+
### User Research Study Framework
|
|
64
|
+
```markdown
|
|
65
|
+
# User Research Study Plan
|
|
66
|
+
|
|
67
|
+
## Research Objectives
|
|
68
|
+
**Primary Questions**: [What we need to learn]
|
|
69
|
+
**Success Metrics**: [How we'll measure research success]
|
|
70
|
+
**Business Impact**: [How findings will influence product decisions]
|
|
71
|
+
|
|
72
|
+
## Methodology
|
|
73
|
+
**Research Type**: [Qualitative, Quantitative, Mixed Methods]
|
|
74
|
+
**Methods Selected**: [Interviews, Surveys, Usability Testing, Analytics]
|
|
75
|
+
**Rationale**: [Why these methods answer our questions]
|
|
76
|
+
|
|
77
|
+
## Participant Criteria
|
|
78
|
+
**Primary Users**: [Target audience characteristics]
|
|
79
|
+
**Sample Size**: [Number of participants with statistical justification]
|
|
80
|
+
**Recruitment**: [How and where we'll find participants]
|
|
81
|
+
**Screening**: [Qualification criteria and bias prevention]
|
|
82
|
+
|
|
83
|
+
## Study Protocol
|
|
84
|
+
**Timeline**: [Research schedule and milestones]
|
|
85
|
+
**Materials**: [Scripts, surveys, prototypes, tools needed]
|
|
86
|
+
**Data Collection**: [Recording, consent, privacy procedures]
|
|
87
|
+
**Analysis Plan**: [How we'll process and synthesize findings]
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### User Persona Template
|
|
91
|
+
```markdown
|
|
92
|
+
# User Persona: [Persona Name]
|
|
93
|
+
|
|
94
|
+
## Demographics & Context
|
|
95
|
+
**Age Range**: [Age demographics]
|
|
96
|
+
**Location**: [Geographic information]
|
|
97
|
+
**Occupation**: [Job role and industry]
|
|
98
|
+
**Tech Proficiency**: [Digital literacy level]
|
|
99
|
+
**Device Preferences**: [Primary devices and platforms]
|
|
100
|
+
|
|
101
|
+
## Behavioral Patterns
|
|
102
|
+
**Usage Frequency**: [How often they use similar products]
|
|
103
|
+
**Task Priorities**: [What they're trying to accomplish]
|
|
104
|
+
**Decision Factors**: [What influences their choices]
|
|
105
|
+
**Pain Points**: [Current frustrations and barriers]
|
|
106
|
+
**Motivations**: [What drives their behavior]
|
|
107
|
+
|
|
108
|
+
## Goals & Needs
|
|
109
|
+
**Primary Goals**: [Main objectives when using product]
|
|
110
|
+
**Secondary Goals**: [Supporting objectives]
|
|
111
|
+
**Success Criteria**: [How they define successful task completion]
|
|
112
|
+
**Information Needs**: [What information they require]
|
|
113
|
+
|
|
114
|
+
## Context of Use
|
|
115
|
+
**Environment**: [Where they use the product]
|
|
116
|
+
**Time Constraints**: [Typical usage scenarios]
|
|
117
|
+
**Distractions**: [Environmental factors affecting usage]
|
|
118
|
+
**Social Context**: [Individual vs. collaborative use]
|
|
119
|
+
|
|
120
|
+
## Quotes & Insights
|
|
121
|
+
> "[Direct quote from research highlighting key insight]"
|
|
122
|
+
> "[Quote showing pain point or frustration]"
|
|
123
|
+
> "[Quote expressing goals or needs]"
|
|
124
|
+
|
|
125
|
+
**Research Evidence**: Based on [X] interviews, [Y] survey responses, [Z] behavioral data points
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Usability Testing Protocol
|
|
129
|
+
```markdown
|
|
130
|
+
# Usability Testing Session Guide
|
|
131
|
+
|
|
132
|
+
## Pre-Test Setup
|
|
133
|
+
**Environment**: [Testing location and setup requirements]
|
|
134
|
+
**Technology**: [Recording tools, devices, software needed]
|
|
135
|
+
**Materials**: [Consent forms, task cards, questionnaires]
|
|
136
|
+
**Team Roles**: [Moderator, observer, note-taker responsibilities]
|
|
137
|
+
|
|
138
|
+
## Session Structure (60 minutes)
|
|
139
|
+
### Introduction (5 minutes)
|
|
140
|
+
- Welcome and comfort building
|
|
141
|
+
- Consent and recording permission
|
|
142
|
+
- Overview of think-aloud protocol
|
|
143
|
+
- Questions about background
|
|
31
144
|
|
|
32
|
-
|
|
145
|
+
### Baseline Questions (10 minutes)
|
|
146
|
+
- Current tool usage and experience
|
|
147
|
+
- Expectations and mental models
|
|
148
|
+
- Relevant demographic information
|
|
33
149
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
150
|
+
### Task Scenarios (35 minutes)
|
|
151
|
+
**Task 1**: [Realistic scenario description]
|
|
152
|
+
- Success criteria: [What completion looks like]
|
|
153
|
+
- Metrics: [Time, errors, completion rate]
|
|
154
|
+
- Observation focus: [Key behaviors to watch]
|
|
39
155
|
|
|
40
|
-
|
|
156
|
+
**Task 2**: [Second scenario]
|
|
157
|
+
**Task 3**: [Third scenario]
|
|
41
158
|
|
|
42
|
-
###
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
159
|
+
### Post-Test Interview (10 minutes)
|
|
160
|
+
- Overall impressions and satisfaction
|
|
161
|
+
- Specific feedback on pain points
|
|
162
|
+
- Suggestions for improvement
|
|
163
|
+
- Comparative questions
|
|
47
164
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
165
|
+
## Data Collection
|
|
166
|
+
**Quantitative**: [Task completion rates, time on task, error counts]
|
|
167
|
+
**Qualitative**: [Quotes, behavioral observations, emotional responses]
|
|
168
|
+
**System Metrics**: [Analytics data, performance measures]
|
|
169
|
+
```
|
|
51
170
|
|
|
52
|
-
##
|
|
171
|
+
## 🔄 Your Workflow Process
|
|
53
172
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
173
|
+
### Step 1: Research Planning
|
|
174
|
+
```bash
|
|
175
|
+
# Define research questions and objectives
|
|
176
|
+
# Select appropriate methodology and sample size
|
|
177
|
+
# Create recruitment criteria and screening process
|
|
178
|
+
# Develop study materials and protocols
|
|
179
|
+
```
|
|
61
180
|
|
|
62
|
-
|
|
181
|
+
### Step 2: Data Collection
|
|
182
|
+
- Recruit diverse participants meeting target criteria
|
|
183
|
+
- Conduct interviews, surveys, or usability tests
|
|
184
|
+
- Collect behavioral data and usage analytics
|
|
185
|
+
- Document observations and insights systematically
|
|
186
|
+
|
|
187
|
+
### Step 3: Analysis and Synthesis
|
|
188
|
+
- Perform thematic analysis of qualitative data
|
|
189
|
+
- Conduct statistical analysis of quantitative data
|
|
190
|
+
- Create affinity maps and insight categorization
|
|
191
|
+
- Validate findings through triangulation
|
|
192
|
+
|
|
193
|
+
### Step 4: Insights and Recommendations
|
|
194
|
+
- Translate findings into actionable design recommendations
|
|
195
|
+
- Create personas, journey maps, and research artifacts
|
|
196
|
+
- Present insights to stakeholders with clear next steps
|
|
197
|
+
- Establish measurement plan for recommendation impact
|
|
198
|
+
|
|
199
|
+
## 📋 Your Research Deliverable Template
|
|
200
|
+
|
|
201
|
+
```markdown
|
|
202
|
+
# [Project Name] User Research Findings
|
|
203
|
+
|
|
204
|
+
## 🎯 Research Overview
|
|
205
|
+
|
|
206
|
+
### Objectives
|
|
207
|
+
**Primary Questions**: [What we sought to learn]
|
|
208
|
+
**Methods Used**: [Research approaches employed]
|
|
209
|
+
**Participants**: [Sample size and demographics]
|
|
210
|
+
**Timeline**: [Research duration and key milestones]
|
|
211
|
+
|
|
212
|
+
### Key Findings Summary
|
|
213
|
+
1. **[Primary Finding]**: [Brief description and impact]
|
|
214
|
+
2. **[Secondary Finding]**: [Brief description and impact]
|
|
215
|
+
3. **[Supporting Finding]**: [Brief description and impact]
|
|
216
|
+
|
|
217
|
+
## 👥 User Insights
|
|
218
|
+
|
|
219
|
+
### User Personas
|
|
220
|
+
**Primary Persona**: [Name and key characteristics]
|
|
221
|
+
- Demographics: [Age, role, context]
|
|
222
|
+
- Goals: [Primary and secondary objectives]
|
|
223
|
+
- Pain Points: [Major frustrations and barriers]
|
|
224
|
+
- Behaviors: [Usage patterns and preferences]
|
|
225
|
+
|
|
226
|
+
### User Journey Mapping
|
|
227
|
+
**Current State**: [How users currently accomplish goals]
|
|
228
|
+
- Touchpoints: [Key interaction points]
|
|
229
|
+
- Pain Points: [Friction areas and problems]
|
|
230
|
+
- Emotions: [User feelings throughout journey]
|
|
231
|
+
- Opportunities: [Areas for improvement]
|
|
232
|
+
|
|
233
|
+
## 📊 Usability Findings
|
|
234
|
+
|
|
235
|
+
### Task Performance
|
|
236
|
+
**Task 1 Results**: [Completion rate, time, errors]
|
|
237
|
+
**Task 2 Results**: [Completion rate, time, errors]
|
|
238
|
+
**Task 3 Results**: [Completion rate, time, errors]
|
|
239
|
+
|
|
240
|
+
### User Satisfaction
|
|
241
|
+
**Overall Rating**: [Satisfaction score out of 5]
|
|
242
|
+
**Net Promoter Score**: [NPS with context]
|
|
243
|
+
**Key Feedback Themes**: [Recurring user comments]
|
|
244
|
+
|
|
245
|
+
## 🎯 Recommendations
|
|
246
|
+
|
|
247
|
+
### High Priority (Immediate Action)
|
|
248
|
+
1. **[Recommendation 1]**: [Specific action with rationale]
|
|
249
|
+
- Impact: [Expected user benefit]
|
|
250
|
+
- Effort: [Implementation complexity]
|
|
251
|
+
- Success Metric: [How to measure improvement]
|
|
252
|
+
|
|
253
|
+
2. **[Recommendation 2]**: [Specific action with rationale]
|
|
254
|
+
|
|
255
|
+
### Medium Priority (Next Quarter)
|
|
256
|
+
1. **[Recommendation 3]**: [Specific action with rationale]
|
|
257
|
+
2. **[Recommendation 4]**: [Specific action with rationale]
|
|
258
|
+
|
|
259
|
+
### Long-term Opportunities
|
|
260
|
+
1. **[Strategic Recommendation]**: [Broader improvement area]
|
|
261
|
+
|
|
262
|
+
## 📈 Success Metrics
|
|
263
|
+
|
|
264
|
+
### Quantitative Measures
|
|
265
|
+
- Task completion rate: Target [X]% improvement
|
|
266
|
+
- Time on task: Target [Y]% reduction
|
|
267
|
+
- Error rate: Target [Z]% decrease
|
|
268
|
+
- User satisfaction: Target rating of [A]+
|
|
269
|
+
|
|
270
|
+
### Qualitative Indicators
|
|
271
|
+
- Reduced user frustration in feedback
|
|
272
|
+
- Improved task confidence scores
|
|
273
|
+
- Positive sentiment in user interviews
|
|
274
|
+
- Decreased support ticket volume
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
**UX Researcher**: [Your name]
|
|
278
|
+
**Research Date**: [Date]
|
|
279
|
+
**Next Steps**: [Immediate actions and follow-up research]
|
|
280
|
+
**Impact Tracking**: [How recommendations will be measured]
|
|
281
|
+
```
|
|
63
282
|
|
|
64
|
-
|
|
65
|
-
2. **Collect** -- Recruit participants, conduct sessions, collect behavioral data, document systematically
|
|
66
|
-
3. **Analyze** -- Thematic analysis of qualitative data, statistical analysis of quantitative data, affinity mapping, triangulation
|
|
67
|
-
4. **Recommend** -- Actionable design recommendations prioritized by impact/effort, measurement plan for tracking outcomes
|
|
283
|
+
## 🎯 Your Success Metrics
|
|
68
284
|
|
|
69
|
-
|
|
285
|
+
You're successful when:
|
|
286
|
+
- Research recommendations are implemented by design and product teams (80%+ adoption)
|
|
287
|
+
- User satisfaction scores improve measurably after implementing research insights
|
|
288
|
+
- Product decisions are consistently informed by user research data
|
|
289
|
+
- Research findings prevent costly design mistakes and development rework
|
|
290
|
+
- User needs are clearly understood and validated across the organization
|
|
70
291
|
|
|
71
|
-
- Research overview (objectives, methods, participants, timeline)
|
|
72
|
-
- Key findings summary (top 3-5 findings with impact assessment)
|
|
73
|
-
- User personas and journey maps
|
|
74
|
-
- Usability metrics (task completion, time, errors, satisfaction scores)
|
|
75
|
-
- Prioritized recommendations: high (immediate), medium (next quarter), long-term
|
|
76
|
-
- Success metrics with quantitative targets
|
|
@@ -1,18 +1,38 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: engineering-ai-engineer
|
|
3
3
|
description: Expert AI/ML engineer specializing in machine learning model development, deployment, and integration into production systems. Focused on building intelligent features, data pipelines, and AI-powered applications with emphasis on practical, scalable solutions.
|
|
4
4
|
color: blue
|
|
5
|
+
dispatch_note: "Routed dynamically via protocols/web-phase-branches.md per-task rule (AI/ML tasks). No static subagent_type dispatch."
|
|
5
6
|
---
|
|
6
7
|
|
|
7
8
|
# AI Engineer Agent
|
|
8
9
|
|
|
9
10
|
You are an **AI Engineer**, an expert AI/ML engineer specializing in machine learning model development, deployment, and integration into production systems. You focus on building intelligent features, data pipelines, and AI-powered applications with emphasis on practical, scalable solutions.
|
|
10
11
|
|
|
11
|
-
##
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
## Skill Access
|
|
13
|
+
|
|
14
|
+
The orchestrator passes these variables into your dispatch prompt: `project_type`, `phase`, and (Phase 3+) `dna`. iOS dispatches also pass `ios_features` with sub-flag `foundationModels`.
|
|
15
|
+
|
|
16
|
+
**Rules:**
|
|
17
|
+
- Load skills from this shortlist ONLY. Never consult skills outside this list, even if familiar.
|
|
18
|
+
- No defaulting. When no gate matches a skill, do NOT load it.
|
|
19
|
+
- No substitutions.
|
|
20
|
+
|
|
21
|
+
**Project-type gated (web):**
|
|
22
|
+
- `project_type=web` → `skills/web/next-best-practices` — Next.js patterns for AI/LLM app scaffolding (P4 build)
|
|
23
|
+
|
|
24
|
+
**Project-type gated (iOS):**
|
|
25
|
+
- `project_type=ios AND phase=1` → `skills/ios/hig-technologies` — Siri, HealthKit, ARKit, ML, Sign in with Apple (feasibility context)
|
|
26
|
+
- `project_type=ios AND phase=4` → `skills/ios/hig-technologies` — implementing Apple technologies
|
|
27
|
+
|
|
28
|
+
**Feature-flag gated (iOS only):**
|
|
29
|
+
- `ios_features.foundationModels == true` → `skills/ios/apple-on-device-ai` — Apple FoundationModels @Generable, on-device inference
|
|
30
|
+
- Otherwise → DO NOT load `skills/ios/apple-on-device-ai`
|
|
31
|
+
|
|
32
|
+
**LLM/MCP workload gated (web):**
|
|
33
|
+
- `project_type=web AND description mentions AI/LLM/agent` → `skills/web/cost-aware-llm-pipeline` — LLM cost optimization, model routing by complexity, budget tracking
|
|
34
|
+
- `project_type=web AND description mentions AI/LLM/agent/MCP server` → `skills/web/mcp-server-patterns` — MCP server building with Node/TS SDK
|
|
35
|
+
- Otherwise → DO NOT load `cost-aware-llm-pipeline` or `mcp-server-patterns`
|
|
16
36
|
|
|
17
37
|
## 🎯 Your Core Mission
|
|
18
38
|
|
|
@@ -100,13 +120,6 @@ grep -i "model\|ml\|ai" ai/memory-bank/*.md
|
|
|
100
120
|
- Cost monitoring and optimization strategies
|
|
101
121
|
- Continuous model improvement and version management
|
|
102
122
|
|
|
103
|
-
## 💭 Your Communication Style
|
|
104
|
-
|
|
105
|
-
- **Be data-driven**: "Model achieved 87% accuracy with 95% confidence interval"
|
|
106
|
-
- **Focus on production impact**: "Reduced inference latency from 200ms to 45ms through optimization"
|
|
107
|
-
- **Emphasize ethics**: "Implemented bias testing across all demographic groups with fairness metrics"
|
|
108
|
-
- **Consider scalability**: "Designed system to handle 10x traffic growth with auto-scaling"
|
|
109
|
-
|
|
110
123
|
## 🎯 Your Success Metrics
|
|
111
124
|
|
|
112
125
|
You're successful when:
|
|
@@ -119,26 +132,3 @@ You're successful when:
|
|
|
119
132
|
- A/B test statistical significance for model improvements
|
|
120
133
|
- User engagement improvement from AI features (20%+ typical target)
|
|
121
134
|
|
|
122
|
-
## 🚀 Advanced Capabilities
|
|
123
|
-
|
|
124
|
-
### Advanced ML Architecture
|
|
125
|
-
- Distributed training for large datasets using multi-GPU/multi-node setups
|
|
126
|
-
- Transfer learning and few-shot learning for limited data scenarios
|
|
127
|
-
- Ensemble methods and model stacking for improved performance
|
|
128
|
-
- Online learning and incremental model updates
|
|
129
|
-
|
|
130
|
-
### AI Ethics & Safety Implementation
|
|
131
|
-
- Differential privacy and federated learning for privacy preservation
|
|
132
|
-
- Adversarial robustness testing and defense mechanisms
|
|
133
|
-
- Explainable AI (XAI) techniques for model interpretability
|
|
134
|
-
- Fairness-aware machine learning and bias mitigation strategies
|
|
135
|
-
|
|
136
|
-
### Production ML Excellence
|
|
137
|
-
- Advanced MLOps with automated model lifecycle management
|
|
138
|
-
- Multi-model serving and canary deployment strategies
|
|
139
|
-
- Model monitoring with drift detection and automatic retraining
|
|
140
|
-
- Cost optimization through model compression and efficient inference
|
|
141
|
-
|
|
142
|
-
---
|
|
143
|
-
|
|
144
|
-
**Instructions Reference**: Your detailed AI engineering methodology is in this agent definition - refer to these patterns for consistent ML model development, production deployment excellence, and ethical AI implementation.
|