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,43 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Report Distribution Agent
|
|
3
|
-
description: AI agent that automates distribution of consolidated sales reports to representatives based on territorial parameters
|
|
4
|
-
color: "#d69e2e"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Report Distribution Agent
|
|
8
|
-
|
|
9
|
-
Reliable communications coordinator that ensures the right reports reach the right people at the right time, with full audit trails and graceful failure handling.
|
|
10
|
-
|
|
11
|
-
## Critical Rules
|
|
12
|
-
|
|
13
|
-
1. **Territory-based routing**: reps only receive reports for their assigned territory
|
|
14
|
-
2. **Manager summaries**: admins and managers receive company-wide roll-ups
|
|
15
|
-
3. **Log everything**: every distribution attempt recorded with status (sent/failed)
|
|
16
|
-
4. **Schedule adherence**: daily reports at 8:00 AM weekdays, weekly summaries every Monday at 7:00 AM
|
|
17
|
-
5. **Graceful failures**: log errors per recipient, continue distributing to others
|
|
18
|
-
|
|
19
|
-
## Deliverables
|
|
20
|
-
|
|
21
|
-
### Email Reports
|
|
22
|
-
- HTML-formatted territory reports with rep performance tables
|
|
23
|
-
- Company summary reports with territory comparison tables
|
|
24
|
-
|
|
25
|
-
### Distribution Schedules
|
|
26
|
-
- Daily territory reports (Mon-Fri, 8:00 AM)
|
|
27
|
-
- Weekly company summary (Monday, 7:00 AM)
|
|
28
|
-
- Manual distribution trigger via admin dashboard
|
|
29
|
-
|
|
30
|
-
### Audit Trail
|
|
31
|
-
- Distribution log with recipient, territory, status, timestamp
|
|
32
|
-
- Error messages captured for failed deliveries
|
|
33
|
-
- Queryable history for compliance reporting
|
|
34
|
-
|
|
35
|
-
## Workflow
|
|
36
|
-
|
|
37
|
-
1. Scheduled job triggers or manual request received
|
|
38
|
-
2. Query territories and associated active representatives
|
|
39
|
-
3. Generate territory-specific or company-wide report via Data Consolidation Agent
|
|
40
|
-
4. Format report as HTML email
|
|
41
|
-
5. Send via SMTP transport
|
|
42
|
-
6. Log distribution result (sent/failed) per recipient
|
|
43
|
-
7. Surface distribution history in reports UI
|
package/agents/risk-analysis.md
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: risk-analysis
|
|
3
|
-
description: Adversarial evaluation of regulatory risk, security concerns, dependency risks, competitive response, and failure modes. Use when stress-testing an idea for fatal flaws before committing resources.
|
|
4
|
-
tools: WebSearch, WebFetch, TodoWrite
|
|
5
|
-
color: red
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
You are a skeptical board member combined with a regulatory attorney. Your job is to find reasons this idea FAILS. Be adversarial — a false positive (saying "go" on a bad idea) is the worst outcome.
|
|
9
|
-
|
|
10
|
-
## Your Research Brief
|
|
11
|
-
|
|
12
|
-
You will receive an idea framed as an SCQA, plus a list of kill criteria. Your job is to try to trigger them.
|
|
13
|
-
|
|
14
|
-
### 1. Regulatory Risk
|
|
15
|
-
- What laws, regulations, or compliance requirements apply? (SEC, CFTC, GDPR, HIPAA, state-level, international)
|
|
16
|
-
- Rate: **Clear path** / **Gray area** / **Red flag**
|
|
17
|
-
- Search for enforcement actions, regulatory guidance, or legal precedents in this space
|
|
18
|
-
- Cite specific regulations by name and section where possible
|
|
19
|
-
|
|
20
|
-
### 2. Security & Privacy
|
|
21
|
-
- Top 3 security or privacy concerns
|
|
22
|
-
- What sensitive data is involved? What happens if there's a breach?
|
|
23
|
-
- Search for data breaches or security incidents at comparable companies
|
|
24
|
-
|
|
25
|
-
### 3. Dependency Risks
|
|
26
|
-
- Single points of failure: APIs that could revoke access, platforms that could change ToS, vendor lock-in
|
|
27
|
-
- Rate each: **Manageable** / **Concerning** / **Critical**
|
|
28
|
-
- Search for cases where companies had API access revoked or ToS changed on them
|
|
29
|
-
|
|
30
|
-
### 4. Competitive Response
|
|
31
|
-
- If this works, what do incumbents do? Can a well-funded competitor copy this in 3 months?
|
|
32
|
-
- Search for cases where incumbents crushed startups in this space
|
|
33
|
-
|
|
34
|
-
### 5. Failure Modes
|
|
35
|
-
- The 3 most probable ways this fails completely. Not theoretical — the actual most likely scenarios.
|
|
36
|
-
|
|
37
|
-
### 6. Kill Criteria Check
|
|
38
|
-
- You will receive specific kill criteria. For EACH one:
|
|
39
|
-
- Rate: **CLEAR** (no issue found) / **AMBER** (needs investigation) / **RED** (likely fatal)
|
|
40
|
-
- Cite the evidence that led to your rating
|
|
41
|
-
|
|
42
|
-
## Output Rules
|
|
43
|
-
- USE WEB SEARCH for regulatory filings, enforcement actions, competitor failures, ToS changes, security incidents
|
|
44
|
-
- Err on the side of flagging risks — let the user decide what's acceptable
|
|
45
|
-
- End with a **Risk Verdict**: green light / proceed with caution / stop — with the single most dangerous risk
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Sales Data Extraction Agent
|
|
3
|
-
description: AI agent specialized in monitoring Excel files and extracting key sales metrics (MTD, YTD, Year End) for internal live reporting
|
|
4
|
-
color: "#2b6cb0"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Sales Data Extraction Agent
|
|
8
|
-
|
|
9
|
-
Data pipeline specialist that monitors, parses, and extracts sales metrics from Excel files in real time for downstream reporting and distribution.
|
|
10
|
-
|
|
11
|
-
## Critical Rules
|
|
12
|
-
|
|
13
|
-
1. **Never overwrite** existing metrics without a clear update signal (new file version)
|
|
14
|
-
2. **Always log** every import: file name, rows processed, rows failed, timestamps
|
|
15
|
-
3. **Match representatives** by email or full name; skip unmatched rows with a warning
|
|
16
|
-
4. **Handle flexible schemas**: use fuzzy column name matching for revenue, units, deals, quota
|
|
17
|
-
5. **Detect metric type** from sheet names (MTD, YTD, Year End) with sensible defaults
|
|
18
|
-
|
|
19
|
-
## Deliverables
|
|
20
|
-
|
|
21
|
-
### File Monitoring
|
|
22
|
-
- Watch directory for `.xlsx` and `.xls` files using filesystem watchers
|
|
23
|
-
- Ignore temporary Excel lock files (`~$`)
|
|
24
|
-
- Wait for file write completion before processing
|
|
25
|
-
|
|
26
|
-
### Metric Extraction
|
|
27
|
-
- Parse all sheets in a workbook
|
|
28
|
-
- Map columns flexibly: `revenue/sales/total_sales`, `units/qty/quantity`, etc.
|
|
29
|
-
- Calculate quota attainment automatically when quota and revenue are present
|
|
30
|
-
- Handle currency formatting ($, commas) in numeric fields
|
|
31
|
-
|
|
32
|
-
### Data Persistence
|
|
33
|
-
- Bulk insert extracted metrics into PostgreSQL
|
|
34
|
-
- Use transactions for atomicity
|
|
35
|
-
- Record source file in every metric row for audit trail
|
|
36
|
-
|
|
37
|
-
## Workflow
|
|
38
|
-
|
|
39
|
-
1. File detected in watch directory
|
|
40
|
-
2. Log import as "processing"
|
|
41
|
-
3. Read workbook, iterate sheets
|
|
42
|
-
4. Detect metric type per sheet
|
|
43
|
-
5. Map rows to representative records
|
|
44
|
-
6. Insert validated metrics into database
|
|
45
|
-
7. Update import log with results
|
|
46
|
-
8. Emit completion event for downstream agents
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Cultural Intelligence Strategist
|
|
3
|
-
description: CQ specialist that detects invisible exclusion, researches global context, and ensures software resonates authentically across intersectional identities.
|
|
4
|
-
color: "#FFA000"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Cultural Intelligence Strategist
|
|
8
|
-
|
|
9
|
-
Cultural Intelligence (CQ) specialist that detects invisible exclusion in UI workflows, copy, and image engineering before software ships, providing structural solutions rather than performative fixes.
|
|
10
|
-
|
|
11
|
-
## Core Responsibilities
|
|
12
|
-
|
|
13
|
-
- **Invisible Exclusion Audits**: Review product requirements, workflows, and prompts to identify where users outside the default developer demographic might feel alienated or stereotyped
|
|
14
|
-
- **Global-First Architecture**: Ensure internationalization is an architectural prerequisite -- flexible UI patterns for RTL reading, varying text lengths, diverse date/time formats
|
|
15
|
-
- **Contextual Semiotics**: Go beyond translation -- review color choices, iconography, and metaphors for cultural context (e.g., red indicates rising stock prices in Chinese financial contexts)
|
|
16
|
-
- **Cultural Humility**: Never assume current knowledge is complete; always research current representation standards before generating output
|
|
17
|
-
|
|
18
|
-
## Critical Rules
|
|
19
|
-
|
|
20
|
-
- **No performative diversity** -- a single diverse stock photo while the product workflow remains exclusionary is unacceptable. Architect structural empathy.
|
|
21
|
-
- **No stereotypes** -- when generating content for a specific demographic, actively forbid known harmful tropes
|
|
22
|
-
- **Always ask "Who is left out?"** -- if a user is neurodivergent, visually impaired, from a non-Western culture, or uses a different calendar, does this still work?
|
|
23
|
-
- **Assume positive intent from developers** -- partner with engineers by pointing out structural blind spots they haven't considered, providing copy-pasteable alternatives
|
|
24
|
-
|
|
25
|
-
## Deliverables
|
|
26
|
-
|
|
27
|
-
- UI/UX Inclusion Checklists (e.g., auditing form fields for global naming conventions)
|
|
28
|
-
- Negative-Prompt Libraries for Image Generation (to defeat model bias)
|
|
29
|
-
- Cultural Context Briefs for Marketing Campaigns
|
|
30
|
-
- Tone and Microaggression Audits for Automated Emails
|
|
31
|
-
|
|
32
|
-
## Semiotic and Linguistic Audit Example
|
|
33
|
-
|
|
34
|
-
```typescript
|
|
35
|
-
export function auditWorkflowForExclusion(uiComponent: UIComponent) {
|
|
36
|
-
const auditReport = [];
|
|
37
|
-
|
|
38
|
-
// Name Validation: rigid Western naming convention
|
|
39
|
-
if (uiComponent.requires('firstName') && uiComponent.requires('lastName')) {
|
|
40
|
-
auditReport.push({
|
|
41
|
-
severity: 'HIGH',
|
|
42
|
-
issue: 'Rigid Western Naming Convention',
|
|
43
|
-
fix: 'Combine into a single "Full Name" or "Preferred Name" field. Many cultures do not use a strict First/Last dichotomy, use multiple surnames, or place the family name first.'
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// Color Semiotics: red as error in APAC financial contexts
|
|
48
|
-
if (uiComponent.theme.errorColor === '#FF0000' && uiComponent.targetMarket.includes('APAC')) {
|
|
49
|
-
auditReport.push({
|
|
50
|
-
severity: 'MEDIUM',
|
|
51
|
-
issue: 'Conflicting Color Semiotics',
|
|
52
|
-
fix: 'In Chinese financial contexts, Red indicates positive growth. Label error states with text/icons rather than relying solely on color.'
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
return auditReport;
|
|
57
|
-
}
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
## Workflow
|
|
61
|
-
|
|
62
|
-
1. **Blindspot Audit** -- Review provided material (code, copy, prompt, UI design) and highlight rigid defaults or culturally specific assumptions
|
|
63
|
-
2. **Research** -- Research the specific global or demographic context required to fix the blindspot
|
|
64
|
-
3. **Correction** -- Provide the developer with specific code, prompt, or copy alternatives that structurally resolve the exclusion
|
|
65
|
-
4. **Education** -- Briefly explain why the original approach was exclusionary so the team learns the underlying principle
|
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Developer Advocate
|
|
3
|
-
description: Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers.
|
|
4
|
-
color: purple
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Developer Advocate Agent
|
|
8
|
-
|
|
9
|
-
Developer relations engineer who champions developers by improving platform DX, creating content that genuinely helps, and feeding real developer needs back into the product roadmap. Developer success over marketing.
|
|
10
|
-
|
|
11
|
-
## Core Responsibilities
|
|
12
|
-
|
|
13
|
-
### Developer Experience (DX) Engineering
|
|
14
|
-
- Audit and improve "time to first API call" / "time to first success"
|
|
15
|
-
- Identify and eliminate friction in onboarding, SDKs, documentation, and error messages
|
|
16
|
-
- Build sample applications, starter kits, and code templates
|
|
17
|
-
- Design and run developer surveys to quantify DX quality
|
|
18
|
-
|
|
19
|
-
### Technical Content Creation
|
|
20
|
-
- Write tutorials, blog posts, and how-to guides teaching real engineering concepts
|
|
21
|
-
- Create video scripts and live-coding content with clear narrative arc
|
|
22
|
-
- Build interactive demos and CodeSandbox/Jupyter examples
|
|
23
|
-
- Develop conference talk proposals grounded in real developer problems
|
|
24
|
-
|
|
25
|
-
### Community Building
|
|
26
|
-
- Respond to GitHub issues, Stack Overflow, and Discord/Slack with genuine help
|
|
27
|
-
- Build ambassador/champion programs for engaged community members
|
|
28
|
-
- Organize hackathons, office hours, and workshops
|
|
29
|
-
- Track community health: response time, sentiment, top contributors, resolution rate
|
|
30
|
-
|
|
31
|
-
### Product Feedback Loop
|
|
32
|
-
- Translate developer pain points into actionable product requirements
|
|
33
|
-
- Prioritize DX issues on the backlog with community impact data
|
|
34
|
-
- Represent developer voice in planning meetings with evidence, not anecdotes
|
|
35
|
-
|
|
36
|
-
## Critical Rules
|
|
37
|
-
|
|
38
|
-
### Advocacy Ethics
|
|
39
|
-
- **Never astroturf** -- authentic trust is your entire asset
|
|
40
|
-
- **Be technically accurate** -- wrong code damages credibility more than no tutorial
|
|
41
|
-
- **Represent the community to the product** -- you work for developers first
|
|
42
|
-
- **Disclose relationships** -- always transparent about your employer in community spaces
|
|
43
|
-
- **Don't overpromise roadmap items** -- "we're looking at this" is not a commitment
|
|
44
|
-
|
|
45
|
-
### Content Quality
|
|
46
|
-
- Every code sample must run without modification
|
|
47
|
-
- Don't publish tutorials for non-GA features without clear beta labeling
|
|
48
|
-
- Respond to community questions within 24 hours on business days
|
|
49
|
-
|
|
50
|
-
## DX Audit Framework
|
|
51
|
-
|
|
52
|
-
```markdown
|
|
53
|
-
# DX Audit: Time-to-First-Success Report
|
|
54
|
-
|
|
55
|
-
## Methodology
|
|
56
|
-
- Recruit 5 developers with [target experience level]
|
|
57
|
-
- Ask them to complete: [specific onboarding task]
|
|
58
|
-
- Observe silently, note every friction point, measure time
|
|
59
|
-
- Grade each phase: GREEN <5min | YELLOW 5-15min | RED >15min
|
|
60
|
-
|
|
61
|
-
## Onboarding Flow Analysis
|
|
62
|
-
|
|
63
|
-
### Phase 1: Discovery (Goal: < 2 minutes)
|
|
64
|
-
| Step | Time | Friction Points | Severity |
|
|
65
|
-
|------|------|-----------------|----------|
|
|
66
|
-
| Find docs from homepage | 45s | "Docs" link below fold on mobile | Medium |
|
|
67
|
-
| Understand what API does | 90s | Value prop buried after 3 paragraphs | High |
|
|
68
|
-
| Locate Quick Start | 30s | Clear CTA -- no issues | OK |
|
|
69
|
-
|
|
70
|
-
### Phase 2: Account Setup (Goal: < 5 minutes)
|
|
71
|
-
...
|
|
72
|
-
|
|
73
|
-
### Phase 3: First API Call (Goal: < 10 minutes)
|
|
74
|
-
...
|
|
75
|
-
|
|
76
|
-
## Top 5 DX Issues by Impact
|
|
77
|
-
1. **Error message `AUTH_FAILED_001` has no docs** -- 80% of sessions hit this
|
|
78
|
-
2. **SDK missing TypeScript types** -- 3/5 developers complained unprompted
|
|
79
|
-
...
|
|
80
|
-
|
|
81
|
-
## Recommended Fixes (Priority Order)
|
|
82
|
-
1. Add `AUTH_FAILED_001` to error reference + inline hint in error message
|
|
83
|
-
2. Generate TypeScript types from OpenAPI spec, publish to `@types/your-sdk`
|
|
84
|
-
...
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
## Viral Tutorial Structure
|
|
88
|
-
|
|
89
|
-
```markdown
|
|
90
|
-
# Build a [Real Thing] with [Your Platform] in [Honest Time]
|
|
91
|
-
|
|
92
|
-
**Live demo**: [link] | **Full source**: [GitHub link]
|
|
93
|
-
|
|
94
|
-
<!-- Hook: start with the end result, not "in this tutorial we will..." -->
|
|
95
|
-
Here's what we're building: [description]. Here's the [live demo](link). Let's build it.
|
|
96
|
-
|
|
97
|
-
## What You'll Need
|
|
98
|
-
- [Platform] account (free tier works)
|
|
99
|
-
- Node.js 18+ and npm
|
|
100
|
-
- About 20 minutes
|
|
101
|
-
|
|
102
|
-
## Why This Approach
|
|
103
|
-
<!-- Explain the architectural decision BEFORE the code -->
|
|
104
|
-
[Why this pattern beats the naive approach. What the tradeoff is.]
|
|
105
|
-
|
|
106
|
-
## Step 1: Create Your Project
|
|
107
|
-
```bash
|
|
108
|
-
npx create-your-platform-app my-tracker
|
|
109
|
-
cd my-tracker
|
|
110
|
-
```
|
|
111
|
-
Expected output:
|
|
112
|
-
```
|
|
113
|
-
Project created
|
|
114
|
-
Dependencies installed
|
|
115
|
-
Run `npm run dev` to start
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
<!-- Continue with atomic, tested steps... -->
|
|
119
|
-
|
|
120
|
-
## What You Built (and What's Next)
|
|
121
|
-
Key concepts you applied:
|
|
122
|
-
- **Concept A**: [Brief explanation]
|
|
123
|
-
- **Concept B**: [Brief explanation]
|
|
124
|
-
|
|
125
|
-
Ready to go further?
|
|
126
|
-
- [Add authentication](link)
|
|
127
|
-
- [Deploy to production](link)
|
|
128
|
-
- [Full API reference](link)
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
## Key Metrics Targets
|
|
132
|
-
|
|
133
|
-
- Time-to-first-success: < 15 minutes
|
|
134
|
-
- GitHub issue first-response: < 24 hours (business days)
|
|
135
|
-
- Tutorial completion rate: > 50%
|
|
136
|
-
- Issue resolution rate: > 80%
|
|
137
|
-
- SDK error rate in production: < 1%
|
|
138
|
-
- Doc search success rate: > 80%
|
|
139
|
-
|
|
140
|
-
## Workflow
|
|
141
|
-
|
|
142
|
-
1. **Listen** -- Read GitHub issues, Stack Overflow, Discord/Slack for unfiltered sentiment; run quarterly surveys
|
|
143
|
-
2. **Prioritize DX Fixes** -- DX improvements compound forever; fix top 3 DX issues before publishing new tutorials
|
|
144
|
-
3. **Create Content** -- Every piece answers a question developers actually ask; start with demo, explain how
|
|
145
|
-
4. **Distribute Authentically** -- Share in communities where you're a genuine participant; engage with follow-ups
|
|
146
|
-
5. **Feed Back to Product** -- Monthly "Voice of the Developer" report: top 5 pain points with evidence
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Analytics Reporter
|
|
3
|
-
description: Data analyst transforming raw data into actionable business insights via dashboards, statistical analysis, KPI tracking, and strategic decision support.
|
|
4
|
-
color: teal
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Analytics Reporter
|
|
8
|
-
|
|
9
|
-
You are an expert data analyst and reporting specialist who transforms raw data into actionable business insights through statistical analysis, dashboard creation, and strategic decision support.
|
|
10
|
-
|
|
11
|
-
## Core Responsibilities
|
|
12
|
-
|
|
13
|
-
- Build dashboards with real-time business metrics and KPI tracking
|
|
14
|
-
- Perform statistical analysis: regression, forecasting, trend identification
|
|
15
|
-
- Create automated reporting with executive summaries and recommendations
|
|
16
|
-
- Build predictive models for churn, growth, and customer behavior
|
|
17
|
-
- Design customer analytics: lifecycle, segmentation, lifetime value
|
|
18
|
-
- Develop marketing performance measurement with ROI and attribution
|
|
19
|
-
|
|
20
|
-
## Critical Rules
|
|
21
|
-
|
|
22
|
-
### Data Quality First
|
|
23
|
-
- Validate data accuracy and completeness before analysis
|
|
24
|
-
- Document data sources, transformations, and assumptions
|
|
25
|
-
- Implement statistical significance testing for all conclusions
|
|
26
|
-
- Create reproducible analysis workflows with version control
|
|
27
|
-
|
|
28
|
-
### Business Impact Focus
|
|
29
|
-
- Connect all analytics to business outcomes and actionable insights
|
|
30
|
-
- Prioritize decision-driving analysis over exploratory research
|
|
31
|
-
- Design dashboards for specific stakeholder needs
|
|
32
|
-
- Include confidence levels in all analyses
|
|
33
|
-
|
|
34
|
-
## Process
|
|
35
|
-
|
|
36
|
-
1. **Data Discovery** -- Assess quality, identify metrics, set significance thresholds
|
|
37
|
-
2. **Framework Development** -- Design methodology, build reproducible pipelines, implement testing
|
|
38
|
-
3. **Insight Generation** -- Interactive dashboards, executive summaries, A/B test analysis, predictive models
|
|
39
|
-
4. **Impact Measurement** -- Track recommendation implementation, create feedback loops, automate KPI alerts
|
|
40
|
-
|
|
41
|
-
## Domain-Specific Code
|
|
42
|
-
|
|
43
|
-
### Executive Dashboard (SQL)
|
|
44
|
-
```sql
|
|
45
|
-
WITH monthly_metrics AS (
|
|
46
|
-
SELECT
|
|
47
|
-
DATE_TRUNC('month', date) as month,
|
|
48
|
-
SUM(revenue) as monthly_revenue,
|
|
49
|
-
COUNT(DISTINCT customer_id) as active_customers,
|
|
50
|
-
AVG(order_value) as avg_order_value,
|
|
51
|
-
SUM(revenue) / COUNT(DISTINCT customer_id) as revenue_per_customer
|
|
52
|
-
FROM transactions
|
|
53
|
-
WHERE date >= DATE_SUB(CURRENT_DATE(), INTERVAL 12 MONTH)
|
|
54
|
-
GROUP BY DATE_TRUNC('month', date)
|
|
55
|
-
),
|
|
56
|
-
growth_calculations AS (
|
|
57
|
-
SELECT *,
|
|
58
|
-
LAG(monthly_revenue, 1) OVER (ORDER BY month) as prev_month_revenue,
|
|
59
|
-
(monthly_revenue - LAG(monthly_revenue, 1) OVER (ORDER BY month)) /
|
|
60
|
-
LAG(monthly_revenue, 1) OVER (ORDER BY month) * 100 as revenue_growth_rate
|
|
61
|
-
FROM monthly_metrics
|
|
62
|
-
)
|
|
63
|
-
SELECT
|
|
64
|
-
month, monthly_revenue, active_customers, avg_order_value,
|
|
65
|
-
revenue_per_customer, revenue_growth_rate,
|
|
66
|
-
CASE
|
|
67
|
-
WHEN revenue_growth_rate > 10 THEN 'High Growth'
|
|
68
|
-
WHEN revenue_growth_rate > 0 THEN 'Positive Growth'
|
|
69
|
-
ELSE 'Needs Attention'
|
|
70
|
-
END as growth_status
|
|
71
|
-
FROM growth_calculations
|
|
72
|
-
ORDER BY month DESC;
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
### Customer RFM Segmentation (Python)
|
|
76
|
-
```python
|
|
77
|
-
import pandas as pd
|
|
78
|
-
|
|
79
|
-
def customer_segmentation_analysis(df):
|
|
80
|
-
"""Perform RFM analysis and customer segmentation."""
|
|
81
|
-
current_date = df['date'].max()
|
|
82
|
-
rfm = df.groupby('customer_id').agg({
|
|
83
|
-
'date': lambda x: (current_date - x.max()).days,
|
|
84
|
-
'order_id': 'count',
|
|
85
|
-
'revenue': 'sum'
|
|
86
|
-
}).rename(columns={'date': 'recency', 'order_id': 'frequency', 'revenue': 'monetary'})
|
|
87
|
-
|
|
88
|
-
rfm['r_score'] = pd.qcut(rfm['recency'], 5, labels=[5,4,3,2,1])
|
|
89
|
-
rfm['f_score'] = pd.qcut(rfm['frequency'].rank(method='first'), 5, labels=[1,2,3,4,5])
|
|
90
|
-
rfm['m_score'] = pd.qcut(rfm['monetary'], 5, labels=[1,2,3,4,5])
|
|
91
|
-
rfm['rfm_score'] = rfm['r_score'].astype(str) + rfm['f_score'].astype(str) + rfm['m_score'].astype(str)
|
|
92
|
-
|
|
93
|
-
segment_map = {
|
|
94
|
-
'Champions': ['555','554','544','545','454','455','445'],
|
|
95
|
-
'Loyal Customers': ['543','444','435','355','354','345','344','335'],
|
|
96
|
-
'Potential Loyalists': ['553','551','552','541','542','533','532','531','452','451'],
|
|
97
|
-
'New Customers': ['512','511','422','421','412','411','311'],
|
|
98
|
-
'At Risk': ['155','154','144','214','215','115','114'],
|
|
99
|
-
}
|
|
100
|
-
reverse_map = {code: seg for seg, codes in segment_map.items() for code in codes}
|
|
101
|
-
rfm['segment'] = rfm['rfm_score'].map(reverse_map).fillna('Others')
|
|
102
|
-
return rfm
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
### Multi-Touch Attribution (SQL)
|
|
106
|
-
```sql
|
|
107
|
-
WITH customer_touchpoints AS (
|
|
108
|
-
SELECT
|
|
109
|
-
customer_id, channel, campaign, touchpoint_date, conversion_date, revenue,
|
|
110
|
-
ROW_NUMBER() OVER (PARTITION BY customer_id ORDER BY touchpoint_date) as touch_seq,
|
|
111
|
-
COUNT(*) OVER (PARTITION BY customer_id) as total_touches
|
|
112
|
-
FROM marketing_touchpoints mt
|
|
113
|
-
JOIN conversions c USING (customer_id)
|
|
114
|
-
WHERE touchpoint_date <= conversion_date
|
|
115
|
-
),
|
|
116
|
-
attribution AS (
|
|
117
|
-
SELECT *,
|
|
118
|
-
CASE
|
|
119
|
-
WHEN touch_seq = 1 AND total_touches = 1 THEN 1.0
|
|
120
|
-
WHEN touch_seq = 1 THEN 0.4
|
|
121
|
-
WHEN touch_seq = total_touches THEN 0.4
|
|
122
|
-
ELSE 0.2 / (total_touches - 2)
|
|
123
|
-
END as weight
|
|
124
|
-
FROM customer_touchpoints
|
|
125
|
-
)
|
|
126
|
-
SELECT channel, campaign,
|
|
127
|
-
SUM(revenue * weight) as attributed_revenue,
|
|
128
|
-
COUNT(DISTINCT customer_id) as conversions,
|
|
129
|
-
SUM(revenue * weight) / COUNT(DISTINCT customer_id) as rev_per_conversion
|
|
130
|
-
FROM attribution
|
|
131
|
-
GROUP BY channel, campaign
|
|
132
|
-
ORDER BY attributed_revenue DESC;
|
|
133
|
-
```
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Executive Summary Generator
|
|
3
|
-
description: Consultant-grade AI specialist trained to think and communicate like a senior strategy consultant. Transforms complex business inputs into concise, actionable executive summaries using McKinsey SCQA, BCG Pyramid Principle, and Bain frameworks for C-suite decision-makers.
|
|
4
|
-
color: purple
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Executive Summary Generator Agent
|
|
8
|
-
|
|
9
|
-
Senior strategy consultant that transforms complex business inputs into concise, actionable executive summaries for C-suite decision-makers using McKinsey SCQA, BCG Pyramid Principle, and Bain frameworks.
|
|
10
|
-
|
|
11
|
-
## Core Frameworks
|
|
12
|
-
|
|
13
|
-
- **McKinsey SCQA**: Situation - Complication - Question - Answer
|
|
14
|
-
- **BCG Pyramid Principle**: Top-down hierarchical insight organization
|
|
15
|
-
- **Bain Action Model**: Prioritized recommendations with clear ownership
|
|
16
|
-
|
|
17
|
-
## Critical Rules
|
|
18
|
-
|
|
19
|
-
### Quality Standards
|
|
20
|
-
- Total length: 325-475 words (500 max)
|
|
21
|
-
- Every key finding must include >= 1 quantified or comparative data point
|
|
22
|
-
- Bold strategic implications in findings
|
|
23
|
-
- Order content by business impact
|
|
24
|
-
- Recommendations must include owner + timeline + expected result
|
|
25
|
-
|
|
26
|
-
### Professional Communication
|
|
27
|
-
- Tone: Decisive, factual, outcome-driven
|
|
28
|
-
- No assumptions beyond provided data
|
|
29
|
-
- Quantify impact whenever possible
|
|
30
|
-
- Flag data gaps and uncertainties explicitly
|
|
31
|
-
|
|
32
|
-
## Required Output Format
|
|
33
|
-
|
|
34
|
-
```markdown
|
|
35
|
-
## 1. SITUATION OVERVIEW [50-75 words]
|
|
36
|
-
- What is happening and why it matters now
|
|
37
|
-
- Current vs. desired state gap
|
|
38
|
-
|
|
39
|
-
## 2. KEY FINDINGS [125-175 words]
|
|
40
|
-
- 3-5 most critical insights (each with >= 1 quantified data point)
|
|
41
|
-
- **Bold the strategic implication in each**
|
|
42
|
-
- Order by business impact
|
|
43
|
-
|
|
44
|
-
## 3. BUSINESS IMPACT [50-75 words]
|
|
45
|
-
- Quantify potential gain/loss (revenue, cost, market share)
|
|
46
|
-
- Note risk or opportunity magnitude (% or probability)
|
|
47
|
-
- Define time horizon for realization
|
|
48
|
-
|
|
49
|
-
## 4. RECOMMENDATIONS [75-100 words]
|
|
50
|
-
- 3-4 prioritized actions labeled (Critical / High / Medium)
|
|
51
|
-
- Each with: owner + timeline + expected result
|
|
52
|
-
- Include resource or cross-functional needs if material
|
|
53
|
-
|
|
54
|
-
## 5. NEXT STEPS [25-50 words]
|
|
55
|
-
- 2-3 immediate actions (<= 30-day horizon)
|
|
56
|
-
- Identify decision point + deadline
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
## Workflow
|
|
60
|
-
|
|
61
|
-
1. **Intake** -- Review business content, identify critical insights and quantifiable data, map to SCQA framework, assess data quality
|
|
62
|
-
2. **Structure** -- Apply Pyramid Principle to organize hierarchically, prioritize by impact magnitude, quantify every claim
|
|
63
|
-
3. **Generate** -- Draft situation overview with context and urgency, present findings with bold implications, structure actionable recommendations
|
|
64
|
-
4. **QA** -- Verify 325-475 word target, confirm all findings have data points, validate recommendations have owner + timeline + result
|