@caoscompanybr/merlin 3.5.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/CLAUDE.md +216 -0
- package/.claude/hooks/README-license-gate.md +45 -0
- package/.claude/hooks/auto-summarize.js +47 -0
- package/.claude/hooks/context-monitor.js +60 -0
- package/.claude/hooks/doc-sync.js +111 -0
- package/.claude/hooks/license-gate.cjs +59 -0
- package/.claude/hooks/session-reset.js +27 -0
- package/.claude/hooks/thoughts-indexer.js +80 -0
- package/.claude/rules/merlin-constitution.md +27 -0
- package/.merlin-core/commands/README.md +19 -0
- package/.merlin-core/commands/founder-mode.md +51 -0
- package/.merlin-core/commands/git/commit.md +35 -0
- package/.merlin-core/commands/git/describe-pr.md +43 -0
- package/.merlin-core/commands/git/safe-commit.md +182 -0
- package/.merlin-core/commands/implementation/implement-plan.md +129 -0
- package/.merlin-core/commands/implementation/oneshot.md +63 -0
- package/.merlin-core/commands/implementation/tdd.md +152 -0
- package/.merlin-core/commands/planning/create-plan.md +184 -0
- package/.merlin-core/commands/planning/iterate-plan.md +45 -0
- package/.merlin-core/commands/planning/validate-plan.md +48 -0
- package/.merlin-core/commands/research/analyze-issue.md +155 -0
- package/.merlin-core/commands/research/research-codebase.md +157 -0
- package/.merlin-core/commands/review/adversarial-review.md +112 -0
- package/.merlin-core/commands/review/check.md +91 -0
- package/.merlin-core/commands/review/debug.md +135 -0
- package/.merlin-core/commands/review/doubts.md +178 -0
- package/.merlin-core/commands/review/engineering-audit.md +87 -0
- package/.merlin-core/commands/review/local-review.md +48 -0
- package/.merlin-core/commands/review/verify-goals.md +83 -0
- package/.merlin-core/commands/session/capture-feedback.md +74 -0
- package/.merlin-core/commands/session/capture-learning.md +155 -0
- package/.merlin-core/commands/session/check-objectives.md +85 -0
- package/.merlin-core/commands/session/conclude.md +125 -0
- package/.merlin-core/commands/session/create-handoff.md +88 -0
- package/.merlin-core/commands/session/create-objective.md +111 -0
- package/.merlin-core/commands/session/create-process.md +105 -0
- package/.merlin-core/commands/session/create-reminder.md +86 -0
- package/.merlin-core/commands/session/fast-start.md +261 -0
- package/.merlin-core/commands/session/recall-learnings.md +79 -0
- package/.merlin-core/commands/session/recall-processes.md +74 -0
- package/.merlin-core/commands/session/resume-handoff.md +51 -0
- package/.merlin-core/commands/session/run-process.md +53 -0
- package/.merlin-core/commands/special/beauty.md +89 -0
- package/.merlin-core/commands/special/common-ground.md +114 -0
- package/.merlin-core/commands/special/elicit.md +98 -0
- package/.merlin-core/commands/special/party.md +66 -0
- package/.merlin-core/commands/special/scrape.md +78 -0
- package/.merlin-core/commands/special/skill-audit.md +128 -0
- package/.merlin-core/commands/special/start-here.md +132 -0
- package/.merlin-core/constitution.md +442 -0
- package/.merlin-core/core/README.md +19 -0
- package/.merlin-core/core/alkimia/README.md +20 -0
- package/.merlin-core/core/alkimia/context/context-tracker.js +209 -0
- package/.merlin-core/core/alkimia/domain/domain-loader.js +215 -0
- package/.merlin-core/core/alkimia/engine.js +284 -0
- package/.merlin-core/core/alkimia/layers/l0-constitution.js +47 -0
- package/.merlin-core/core/alkimia/layers/l1-global.js +58 -0
- package/.merlin-core/core/alkimia/layers/l2-agent.js +58 -0
- package/.merlin-core/core/alkimia/layers/l3-workflow.js +54 -0
- package/.merlin-core/core/alkimia/layers/l4-task.js +45 -0
- package/.merlin-core/core/alkimia/layers/l5-squad.js +161 -0
- package/.merlin-core/core/alkimia/layers/l6-skill.js +520 -0
- package/.merlin-core/core/alkimia/layers/l7-star-command.js +87 -0
- package/.merlin-core/core/alkimia/layers/layer-processor.js +78 -0
- package/.merlin-core/core/alkimia/mandate.js +46 -0
- package/.merlin-core/core/alkimia/memory/doc-sync.js +201 -0
- package/.merlin-core/core/alkimia/memory/document-sharder.js +272 -0
- package/.merlin-core/core/alkimia/memory/git-history-retriever.js +225 -0
- package/.merlin-core/core/alkimia/memory/memory-bridge.js +97 -0
- package/.merlin-core/core/alkimia/memory/session-analyzer.js +400 -0
- package/.merlin-core/core/alkimia/memory/thoughts-indexer.js +477 -0
- package/.merlin-core/core/alkimia/memory/thoughts-provider.js +603 -0
- package/.merlin-core/core/alkimia/output/formatter.js +464 -0
- package/.merlin-core/core/alkimia/security/content-sanitizer.js +140 -0
- package/.merlin-core/core/alkimia/skill-importer.js +440 -0
- package/.merlin-core/core/alkimia/squads/default/.synapse/manifest +17 -0
- package/.merlin-core/core/alkimia/utils/frontmatter.js +321 -0
- package/.merlin-core/core/alkimia/utils/tokens.js +24 -0
- package/.merlin-core/core/approval/README.md +16 -0
- package/.merlin-core/core/approval/approval-engine.js +380 -0
- package/.merlin-core/core/approval/channels/cli-channel.js +50 -0
- package/.merlin-core/core/config/README.md +17 -0
- package/.merlin-core/core/config/config-cache.js +182 -0
- package/.merlin-core/core/config/config-loader.js +279 -0
- package/.merlin-core/core/config/config-resolver.js +411 -0
- package/.merlin-core/core/config/env-interpolator.js +123 -0
- package/.merlin-core/core/config/merge-utils.js +102 -0
- package/.merlin-core/core/config/schemas/core-config.schema.json +41 -0
- package/.merlin-core/core/config/schemas/framework-config.schema.json +24 -0
- package/.merlin-core/core/config/schemas/local-config.schema.json +23 -0
- package/.merlin-core/core/config/schemas/project-config.schema.json +189 -0
- package/.merlin-core/core/docs-consistency.js +140 -0
- package/.merlin-core/core/events/event-bus.js +344 -0
- package/.merlin-core/core/events/hook-handler.js +419 -0
- package/.merlin-core/core/execution/README.md +17 -0
- package/.merlin-core/core/execution/attempt-journal.js +380 -0
- package/.merlin-core/core/execution/autonomous-build-loop.js +637 -0
- package/.merlin-core/core/execution/build-orchestrator.js +296 -0
- package/.merlin-core/core/execution/build-state-manager.js +196 -0
- package/.merlin-core/core/execution/context-injector.js +204 -0
- package/.merlin-core/core/execution/cron-engine.js +247 -0
- package/.merlin-core/core/execution/cron-expression.js +148 -0
- package/.merlin-core/core/execution/env-preflight.js +423 -0
- package/.merlin-core/core/execution/guardrail-engine.js +745 -0
- package/.merlin-core/core/execution/heartbeat-engine.js +198 -0
- package/.merlin-core/core/execution/model-router.js +282 -0
- package/.merlin-core/core/execution/parallel-executor.js +378 -0
- package/.merlin-core/core/execution/parallel-monitor.js +201 -0
- package/.merlin-core/core/execution/party-session.js +311 -0
- package/.merlin-core/core/execution/rate-limit-manager.js +152 -0
- package/.merlin-core/core/execution/result-aggregator.js +215 -0
- package/.merlin-core/core/execution/semantic-merge-engine.js +320 -0
- package/.merlin-core/core/execution/subagent-dispatcher.js +721 -0
- package/.merlin-core/core/execution/success-verifier.js +227 -0
- package/.merlin-core/core/execution/task-metadata.js +105 -0
- package/.merlin-core/core/execution/team-executor.js +195 -0
- package/.merlin-core/core/execution/two-tier-editor.js +290 -0
- package/.merlin-core/core/execution/version-snapshot.js +294 -0
- package/.merlin-core/core/execution/wave-executor.js +224 -0
- package/.merlin-core/core/health-check/health-engine.js +415 -0
- package/.merlin-core/core/licensing/activation.js +281 -0
- package/.merlin-core/core/licensing/crc.js +103 -0
- package/.merlin-core/core/licensing/entitlement.js +99 -0
- package/.merlin-core/core/licensing/fingerprint.js +104 -0
- package/.merlin-core/core/licensing/gate.js +133 -0
- package/.merlin-core/core/licensing/hmac.js +42 -0
- package/.merlin-core/core/licensing/key.js +144 -0
- package/.merlin-core/core/licensing/license.js +212 -0
- package/.merlin-core/core/mcp/README.md +16 -0
- package/.merlin-core/core/mcp/browser-capability.js +191 -0
- package/.merlin-core/core/mcp/capability-mapper.js +92 -0
- package/.merlin-core/core/mcp/mcp-connector.js +278 -0
- package/.merlin-core/core/mcp/mcp-registry.js +101 -0
- package/.merlin-core/core/orchestration/README.md +17 -0
- package/.merlin-core/core/orchestration/agent-invoker.js +456 -0
- package/.merlin-core/core/orchestration/condition-evaluator.js +250 -0
- package/.merlin-core/core/orchestration/decision-tree.js +192 -0
- package/.merlin-core/core/orchestration/executor-assignment.js +372 -0
- package/.merlin-core/core/orchestration/gate-evaluator.js +653 -0
- package/.merlin-core/core/orchestration/intent-classifier.js +579 -0
- package/.merlin-core/core/orchestration/lock-manager.js +308 -0
- package/.merlin-core/core/orchestration/master-orchestrator.js +363 -0
- package/.merlin-core/core/orchestration/phase-tool-masks.js +194 -0
- package/.merlin-core/core/orchestration/recovery-handler.js +402 -0
- package/.merlin-core/core/orchestration/reflect-checkpoint.js +431 -0
- package/.merlin-core/core/orchestration/session-state.js +430 -0
- package/.merlin-core/core/orchestration/skill-dispatcher.js +255 -0
- package/.merlin-core/core/orchestration/step-loader.js +226 -0
- package/.merlin-core/core/orchestration/workflow-executor.js +864 -0
- package/.merlin-core/core/process/executor.js +231 -0
- package/.merlin-core/core/process/process-file.js +50 -0
- package/.merlin-core/core/process/secret-scan.js +86 -0
- package/.merlin-core/core/process/signature.js +77 -0
- package/.merlin-core/core/quality-gates/README.md +17 -0
- package/.merlin-core/core/quality-gates/layer1-precommit.js +110 -0
- package/.merlin-core/core/quality-gates/layer2-pr-automation.js +116 -0
- package/.merlin-core/core/quality-gates/layer3-human-review.js +133 -0
- package/.merlin-core/core/registry/service-registry.js +140 -0
- package/.merlin-core/core-config.yaml +159 -0
- package/.merlin-core/development/README.md +17 -0
- package/.merlin-core/development/agents/README.md +16 -0
- package/.merlin-core/development/agents/analyst.md +214 -0
- package/.merlin-core/development/agents/architect.md +166 -0
- package/.merlin-core/development/agents/data-engineer.md +154 -0
- package/.merlin-core/development/agents/dev.md +203 -0
- package/.merlin-core/development/agents/devops.md +236 -0
- package/.merlin-core/development/agents/grimorio.md +125 -0
- package/.merlin-core/development/agents/merlin-master.md +173 -0
- package/.merlin-core/development/agents/meta.md +190 -0
- package/.merlin-core/development/agents/pm.md +145 -0
- package/.merlin-core/development/agents/po.md +172 -0
- package/.merlin-core/development/agents/qa.md +275 -0
- package/.merlin-core/development/agents/researcher.md +218 -0
- package/.merlin-core/development/agents/scout.md +179 -0
- package/.merlin-core/development/agents/sm.md +148 -0
- package/.merlin-core/development/agents/ux.md +169 -0
- package/.merlin-core/development/agents/web-researcher.md +203 -0
- package/.merlin-core/development/checklists/adversarial-review-checklist.md +70 -0
- package/.merlin-core/development/checklists/operations-ci-checklist.md +40 -0
- package/.merlin-core/development/checklists/operations-deploy-checklist.md +54 -0
- package/.merlin-core/development/checklists/operations-publish-checklist.md +47 -0
- package/.merlin-core/development/checklists/source-verification-checklist.md +38 -0
- package/.merlin-core/development/templates/HEARTBEAT-template.md +46 -0
- package/.merlin-core/development/templates/ears-requirements-template.md +93 -0
- package/.merlin-core/development/templates/handoff-template.md +50 -0
- package/.merlin-core/development/templates/prd-template.md +62 -0
- package/.merlin-core/development/templates/research-template.md +53 -0
- package/.merlin-core/development/templates/spec-template.md +84 -0
- package/.merlin-core/development/workflows/brownfield-discovery.yaml +166 -0
- package/.merlin-core/development/workflows/brownfield-service.yaml +52 -0
- package/.merlin-core/development/workflows/development-cycle.yaml +57 -0
- package/.merlin-core/development/workflows/epic-orchestration.yaml +47 -0
- package/.merlin-core/development/workflows/folloni-funnel.yaml +177 -0
- package/.merlin-core/development/workflows/greenfield-fullstack.yaml +167 -0
- package/.merlin-core/development/workflows/greenfield-service.yaml +56 -0
- package/.merlin-core/development/workflows/qa-loop.yaml +115 -0
- package/.merlin-core/development/workflows/spec-pipeline.yaml +185 -0
- package/.merlin-core/development/workflows/steps/folloni-01-research.yaml +35 -0
- package/.merlin-core/development/workflows/steps/folloni-02-architecture.yaml +41 -0
- package/.merlin-core/development/workflows/steps/folloni-03-implementation.yaml +52 -0
- package/.merlin-core/development/workflows/story-development-cycle.yaml +67 -0
- package/.merlin-core/docs/GUIDE.md +413 -0
- package/.merlin-core/docs/merlin-commands-guide-pt.md +183 -0
- package/.merlin-core/framework-config.yaml +148 -0
- package/.merlin-core/hooks/README.md +16 -0
- package/.merlin-core/hooks/precompact-memory-flush.js +69 -0
- package/.merlin-core/hooks/pretooluse-remote-approve.js +113 -0
- package/.merlin-core/hooks/spikes/spike-b-hook.js +70 -0
- package/.merlin-core/hooks/spikes/spike-b-stub.js +70 -0
- package/.merlin-core/index.js +91 -0
- package/.merlin-core/local-config.yaml.template +31 -0
- package/.merlin-core/mcp-servers/lsp-bridge/index.js +397 -0
- package/.merlin-core/modules/scraping/module.json +23 -0
- package/.merlin-core/project-config.yaml +89 -0
- package/.merlin-core/schemas/README.md +18 -0
- package/.merlin-core/schemas/agent-hook-schema.json +152 -0
- package/.merlin-core/schemas/agent-schema.json +31 -0
- package/.merlin-core/schemas/command-schema.json +18 -0
- package/.merlin-core/schemas/feedback-schema.json +36 -0
- package/.merlin-core/schemas/handoff-schema.json +19 -0
- package/.merlin-core/schemas/learning-schema.json +51 -0
- package/.merlin-core/schemas/module.schema.json +124 -0
- package/.merlin-core/schemas/must-haves-schema.json +95 -0
- package/.merlin-core/schemas/objective-schema.json +23 -0
- package/.merlin-core/schemas/plan-schema.json +20 -0
- package/.merlin-core/schemas/process-schema.json +82 -0
- package/.merlin-core/schemas/reminder-schema.json +20 -0
- package/.merlin-core/schemas/skill-eval-schema.json +92 -0
- package/.merlin-core/schemas/skill-schema.json +77 -0
- package/.merlin-core/schemas/workflow-schema.json +38 -0
- package/.merlin-core/skills/README.md +16 -0
- package/.merlin-core/skills/domain/azure-cloud/SKILL.md +211 -0
- package/.merlin-core/skills/domain/azure-cloud/references/appinsights-instrumentation.md +63 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-compliance.md +99 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-cost-optimization.md +419 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-deploy.md +82 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-diagnostics.md +130 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-prepare.md +134 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-quotas.md +290 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-rbac.md +11 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-resource-lookup.md +97 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-resource-visualizer.md +178 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-storage.md +91 -0
- package/.merlin-core/skills/domain/azure-cloud/references/azure-validate.md +58 -0
- package/.merlin-core/skills/domain/azure-cloud/references/entra-app-registration.md +192 -0
- package/.merlin-core/skills/domain/browser-automation/SKILL.md +311 -0
- package/.merlin-core/skills/domain/browser-automation/references/agent-browser-skill.md +632 -0
- package/.merlin-core/skills/domain/browser-automation/references/authentication.md +308 -0
- package/.merlin-core/skills/domain/browser-automation/references/commands.md +266 -0
- package/.merlin-core/skills/domain/browser-automation/references/profiling.md +120 -0
- package/.merlin-core/skills/domain/browser-automation/references/proxy-support.md +194 -0
- package/.merlin-core/skills/domain/browser-automation/references/session-management.md +194 -0
- package/.merlin-core/skills/domain/browser-automation/references/snapshot-refs.md +196 -0
- package/.merlin-core/skills/domain/browser-automation/references/video-recording.md +173 -0
- package/.merlin-core/skills/domain/browser-automation/templates/authenticated-session.sh +105 -0
- package/.merlin-core/skills/domain/browser-automation/templates/capture-workflow.sh +69 -0
- package/.merlin-core/skills/domain/browser-automation/templates/form-automation.sh +62 -0
- package/.merlin-core/skills/domain/digital-marketing/SKILL.md +292 -0
- package/.merlin-core/skills/domain/digital-marketing/references/content-strategy.md +320 -0
- package/.merlin-core/skills/domain/digital-marketing/references/copy-formats.md +298 -0
- package/.merlin-core/skills/domain/digital-marketing/references/copy-methodology.md +180 -0
- package/.merlin-core/skills/domain/digital-marketing/references/email-sequences.md +135 -0
- package/.merlin-core/skills/domain/digital-marketing/references/launch-strategy.md +213 -0
- package/.merlin-core/skills/domain/digital-marketing/references/pricing-strategy.md +160 -0
- package/.merlin-core/skills/domain/digital-marketing/references/programmatic-seo.md +237 -0
- package/.merlin-core/skills/domain/digital-marketing/references/revops-lifecycle.md +170 -0
- package/.merlin-core/skills/domain/digital-marketing/references/revops-operations.md +167 -0
- package/.merlin-core/skills/domain/digital-marketing/references/schema-markup.md +190 -0
- package/.merlin-core/skills/domain/digital-marketing/references/strategy-frameworks.md +324 -0
- package/.merlin-core/skills/domain/digital-marketing/references/traffic-management.md +350 -0
- package/.merlin-core/skills/domain/expo-native-ui/SKILL.md +348 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/animations.md +220 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/api-routes.md +361 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/cicd-workflows.md +84 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/controls.md +266 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/data-fetching.md +553 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/deployment-stores.md +1353 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/deployment.md +183 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/dev-client.md +166 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/dom-components.md +410 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/form-sheet.md +253 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/gradients.md +117 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/icons.md +218 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/media.md +245 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/platform-native.md +75 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/route-structure.md +229 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/search.md +249 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/storage.md +121 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/tabs.md +433 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/tailwind-native.md +473 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/toolbar-and-headers.md +284 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/upgrading-guides.md +674 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/upgrading.md +127 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/visual-effects.md +199 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/webgpu-three.md +605 -0
- package/.merlin-core/skills/domain/expo-native-ui/references/zoom-transitions.md +161 -0
- package/.merlin-core/skills/domain/marketing-ops/SKILL.md +117 -0
- package/.merlin-core/skills/domain/marketing-ops/references/_index.md +78 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ad-creative/references/generative-tools.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ad-creative/references/platform-specs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ad-creative.md +251 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/ad-copy-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/audience-targeting.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/conversion-tracking.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads/references/platform-setup-checklists.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ads.md +322 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo/references/content-patterns.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo/references/content-types.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo/references/platform-ranking-factors.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/ai-seo.md +388 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/apple-specs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/benchmarks.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/google-play-specs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/report-template.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso/references/scoring-criteria.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/aso.md +316 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/co-marketing.md +305 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/community-marketing.md +169 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitor-profiling/references/templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitor-profiling/references/tool-reference.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitor-profiling.md +442 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitors/references/content-architecture.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitors/references/templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/competitors.md +281 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/content-strategy.md +16 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions/references/directory-list.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions/references/positioning-variations.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions/references/submission-tracker-template.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/directory-submissions.md +396 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/free-tools/references/tool-types.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/free-tools.md +196 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/image/references/ai-image-prompting.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/image.md +352 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/launch.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/lead-magnets/references/benchmarks.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/lead-magnets/references/format-guide.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/lead-magnets.md +333 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/programmatic-seo.md +16 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/schema.md +16 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/seo-audit/references/ai-writing-detection.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/seo-audit/references/international-seo.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/seo-audit.md +546 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture/references/mermaid-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture/references/navigation-patterns.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture/references/site-type-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/site-architecture.md +371 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/platform-limits.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/platforms.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/post-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/reverse-engineering.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social/references/short-form-video.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/social.md +431 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/video/references/ai-video-prompting.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/acquire/video.md +353 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/ab-testing/references/sample-size-guide.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/ab-testing/references/test-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/ab-testing.md +379 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics/references/event-library.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics/references/ga4-implementation.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics/references/gtm-implementation.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/analytics.md +323 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/copy-editing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/copywriting.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/cro/references/experiments.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/cro/references/form.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/cro.md +211 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/emails.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/paywalls/references/experiments.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/paywalls.md +255 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/popups.md +518 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/pricing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/deck-frameworks.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/demo-scripts.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/objection-library.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement/references/one-pager-templates.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/sales-enablement.md +371 -0
- package/.merlin-core/skills/domain/marketing-ops/references/activate/signup.md +406 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/co-marketing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/community-marketing.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/referrals/references/affiliate-programs.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/referrals/references/program-examples.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/expand/referrals.md +278 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/customer-research/references/source-guides.md +425 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/customer-research.md +284 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/marketing-ideas/references/ideas-by-category.md +216 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/marketing-ideas.md +188 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/marketing-psychology.md +532 -0
- package/.merlin-core/skills/domain/marketing-ops/references/foundation/product-marketing.md +276 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/churn-prevention/references/cancel-flow-patterns.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/churn-prevention/references/dunning-playbook.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/churn-prevention.md +442 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/onboarding/references/experiments.md +19 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/onboarding.md +243 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/revops-lifecycle.md +18 -0
- package/.merlin-core/skills/domain/marketing-ops/references/retain/revops-operations.md +18 -0
- package/.merlin-core/skills/domain/n8n-automation/SKILL.md +149 -0
- package/.merlin-core/skills/domain/n8n-automation/references/code-javascript.md +3744 -0
- package/.merlin-core/skills/domain/n8n-automation/references/code-python.md +3293 -0
- package/.merlin-core/skills/domain/n8n-automation/references/expression-syntax.md +1662 -0
- package/.merlin-core/skills/domain/n8n-automation/references/mcp-tools-expert.md +2111 -0
- package/.merlin-core/skills/domain/n8n-automation/references/node-configuration.md +2523 -0
- package/.merlin-core/skills/domain/n8n-automation/references/validation-expert.md +2491 -0
- package/.merlin-core/skills/domain/n8n-automation/references/workflow-patterns.md +4624 -0
- package/.merlin-core/skills/domain/ops-manual/SKILL.md +225 -0
- package/.merlin-core/skills/domain/ops-manual/references/elicitation-questions.md +141 -0
- package/.merlin-core/skills/domain/ops-manual/references/external-skills-registry.md +63 -0
- package/.merlin-core/skills/domain/ops-manual/references/operations-template.yaml +132 -0
- package/.merlin-core/skills/domain/remotion-best-practices/SKILL.md +99 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/3d.md +86 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/animations.md +27 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets/charts-bar-chart.tsx +173 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets/text-animations-typewriter.tsx +100 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets/text-animations-word-highlight.tsx +108 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/assets.md +78 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/audio.md +172 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/calculate-metadata.md +131 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/can-decode.md +75 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/charts.md +68 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/compositions.md +154 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/display-captions.md +126 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/extract-frames.md +229 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/fonts.md +152 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/get-audio-duration.md +58 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/get-video-dimensions.md +68 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/get-video-duration.md +58 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/gifs.md +144 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/images.md +134 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/import-srt-captions.md +67 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/lottie.md +70 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/maps.md +414 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/measuring-dom-nodes.md +34 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/measuring-text.md +143 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/parameters.md +109 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/sequencing.md +118 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/tailwind.md +11 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/text-animations.md +20 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/timing.md +179 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/transcribe-captions.md +19 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/transitions.md +137 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/transparent-videos.md +106 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/trimming.md +51 -0
- package/.merlin-core/skills/domain/remotion-best-practices/rules/videos.md +171 -0
- package/.merlin-core/skills/domain/resend-email/SKILL.md +377 -0
- package/.merlin-core/skills/general/adversarial-review/SKILL.md +144 -0
- package/.merlin-core/skills/general/api-design/SKILL.md +513 -0
- package/.merlin-core/skills/general/apify-scrape/SKILL.md +137 -0
- package/.merlin-core/skills/general/apify-scrape/scripts/apify-scrape.sh +68 -0
- package/.merlin-core/skills/general/backup/SKILL.md +87 -0
- package/.merlin-core/skills/general/blkskrn/SKILL.md +392 -0
- package/.merlin-core/skills/general/blkskrn/references/animation-patterns.md +521 -0
- package/.merlin-core/skills/general/blkskrn/references/design-system.md +637 -0
- package/.merlin-core/skills/general/blkskrn/references/html-templates.md +440 -0
- package/.merlin-core/skills/general/blkskrn/references/presenter-template.md +45 -0
- package/.merlin-core/skills/general/blkskrn/references/slide-types.md +424 -0
- package/.merlin-core/skills/general/blkskrn/scripts/canvas-manager.js +502 -0
- package/.merlin-core/skills/general/blkskrn/scripts/presenter.js +90 -0
- package/.merlin-core/skills/general/blkskrn/templates/presenter.html +273 -0
- package/.merlin-core/skills/general/blkskrn/templates/slide-base.html +277 -0
- package/.merlin-core/skills/general/blkskrn/templates/viewer.html +165 -0
- package/.merlin-core/skills/general/browser-takeover/SKILL.md +53 -0
- package/.merlin-core/skills/general/claude-api/SKILL.md +90 -0
- package/.merlin-core/skills/general/code-javascript/SKILL.md +268 -0
- package/.merlin-core/skills/general/code-python/SKILL.md +424 -0
- package/.merlin-core/skills/general/code-style/SKILL.md +97 -0
- package/.merlin-core/skills/general/code-typescript/SKILL.md +361 -0
- package/.merlin-core/skills/general/cold-email/SKILL.md +164 -0
- package/.merlin-core/skills/general/cold-email/references/benchmarks.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/follow-up-sequences.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/frameworks.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/personalization.md +18 -0
- package/.merlin-core/skills/general/cold-email/references/subject-lines.md +18 -0
- package/.merlin-core/skills/general/container-security/SKILL.md +462 -0
- package/.merlin-core/skills/general/context-management/SKILL.md +79 -0
- package/.merlin-core/skills/general/copy-editing/SKILL.md +501 -0
- package/.merlin-core/skills/general/copy-editing/references/checklist.md +18 -0
- package/.merlin-core/skills/general/copy-editing/references/content-refresh.md +18 -0
- package/.merlin-core/skills/general/copy-editing/references/plain-english-alternatives.md +18 -0
- package/.merlin-core/skills/general/copywriting/SKILL.md +294 -0
- package/.merlin-core/skills/general/copywriting/references/copy-frameworks.md +392 -0
- package/.merlin-core/skills/general/copywriting/references/natural-transitions.md +276 -0
- package/.merlin-core/skills/general/database/SKILL.md +561 -0
- package/.merlin-core/skills/general/database/references/postgres-concurrency.md +182 -0
- package/.merlin-core/skills/general/database/references/postgres-connections.md +97 -0
- package/.merlin-core/skills/general/database/references/postgres-data-patterns.md +159 -0
- package/.merlin-core/skills/general/database/references/postgres-monitoring.md +136 -0
- package/.merlin-core/skills/general/database/references/postgres-rls.md +140 -0
- package/.merlin-core/skills/general/database-provision/SKILL.md +56 -0
- package/.merlin-core/skills/general/deploy/SKILL.md +65 -0
- package/.merlin-core/skills/general/design-inspiration/SKILL.md +146 -0
- package/.merlin-core/skills/general/design-palette/SKILL.md +99 -0
- package/.merlin-core/skills/general/design-palette/references/full-palettes.md +144 -0
- package/.merlin-core/skills/general/design-system/SKILL.md +94 -0
- package/.merlin-core/skills/general/design-typography/SKILL.md +115 -0
- package/.merlin-core/skills/general/design-typography/references/full-pairings.md +144 -0
- package/.merlin-core/skills/general/design-ux-patterns/SKILL.md +155 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/charts-data-guidelines.md +197 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/landing-patterns.md +199 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/professional-ui-checklist.md +56 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/style-catalog.md +89 -0
- package/.merlin-core/skills/general/design-ux-patterns/references/ux-guidelines.md +837 -0
- package/.merlin-core/skills/general/discover-cloud/SKILL.md +108 -0
- package/.merlin-core/skills/general/doc-sync/SKILL.md +52 -0
- package/.merlin-core/skills/general/document-sharding/SKILL.md +53 -0
- package/.merlin-core/skills/general/docx/SKILL.md +418 -0
- package/.merlin-core/skills/general/docx/references/windows-setup.md +27 -0
- package/.merlin-core/skills/general/docx/scripts/__init__.py +1 -0
- package/.merlin-core/skills/general/docx/scripts/accept_changes.py +135 -0
- package/.merlin-core/skills/general/docx/scripts/comment.py +318 -0
- package/.merlin-core/skills/general/docx/scripts/office/__init__.py +0 -0
- package/.merlin-core/skills/general/docx/scripts/office/helpers/__init__.py +0 -0
- package/.merlin-core/skills/general/docx/scripts/office/helpers/merge_runs.py +199 -0
- package/.merlin-core/skills/general/docx/scripts/office/helpers/simplify_redlines.py +197 -0
- package/.merlin-core/skills/general/docx/scripts/office/pack.py +159 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/mce/mc.xsd +75 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.merlin-core/skills/general/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.merlin-core/skills/general/docx/scripts/office/soffice.py +183 -0
- package/.merlin-core/skills/general/docx/scripts/office/unpack.py +132 -0
- package/.merlin-core/skills/general/docx/scripts/office/validate.py +111 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/__init__.py +15 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/base.py +847 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/docx.py +446 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/pptx.py +275 -0
- package/.merlin-core/skills/general/docx/scripts/office/validators/redlining.py +247 -0
- package/.merlin-core/skills/general/docx/scripts/templates/comments.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/commentsExtended.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/commentsIds.xml +3 -0
- package/.merlin-core/skills/general/docx/scripts/templates/people.xml +3 -0
- package/.merlin-core/skills/general/elicitation/SKILL.md +188 -0
- package/.merlin-core/skills/general/engineering-audit/SKILL.md +122 -0
- package/.merlin-core/skills/general/find-and-edit/SKILL.md +102 -0
- package/.merlin-core/skills/general/first-party-docs/SKILL.md +51 -0
- package/.merlin-core/skills/general/frontend-design/SKILL.md +204 -0
- package/.merlin-core/skills/general/guardrails/SKILL.md +144 -0
- package/.merlin-core/skills/general/image-gen/SKILL.md +49 -0
- package/.merlin-core/skills/general/learning-capture/SKILL.md +192 -0
- package/.merlin-core/skills/general/lgpd-compliance-audit/SKILL.md +448 -0
- package/.merlin-core/skills/general/load-testing/SKILL.md +114 -0
- package/.merlin-core/skills/general/load-testing/docker/Dockerfile.dashboard +21 -0
- package/.merlin-core/skills/general/load-testing/docker/docker-compose.locust.yml +39 -0
- package/.merlin-core/skills/general/load-testing/requirements.txt +1 -0
- package/.merlin-core/skills/general/load-testing/scripts/compare_baseline.py +172 -0
- package/.merlin-core/skills/general/load-testing/scripts/run_local.py +245 -0
- package/.merlin-core/skills/general/load-testing/templates/load_shape_stepped.py +35 -0
- package/.merlin-core/skills/general/load-testing/templates/locustfile_dashboard.py +47 -0
- package/.merlin-core/skills/general/load-testing/templates/threshold_hook.py +36 -0
- package/.merlin-core/skills/general/mage-beauty/SKILL.md +89 -0
- package/.merlin-core/skills/general/mage-beauty/references/anti-patterns.md +148 -0
- package/.merlin-core/skills/general/mage-beauty/references/color-and-contrast.md +87 -0
- package/.merlin-core/skills/general/mage-beauty/references/interaction-design.md +99 -0
- package/.merlin-core/skills/general/mage-beauty/references/motion-design.md +90 -0
- package/.merlin-core/skills/general/mage-beauty/references/remotion-bridge.md +187 -0
- package/.merlin-core/skills/general/mage-beauty/references/responsive-and-multi-format.md +98 -0
- package/.merlin-core/skills/general/mage-beauty/references/spatial-design.md +88 -0
- package/.merlin-core/skills/general/mage-beauty/references/typography.md +60 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-adapt.md +102 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-animate.md +97 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-audit.md +99 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-bolder.md +94 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-cinematic.md +128 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-clarify.md +107 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-colorize.md +106 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-critique.md +88 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-delight.md +98 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-distill.md +97 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-harden.md +79 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-layout.md +104 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-onboard.md +98 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-optimize.md +124 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-overdrive.md +105 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-polish.md +91 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-quieter.md +95 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-rebrand.md +127 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-shape.md +160 -0
- package/.merlin-core/skills/general/mage-beauty/references/verb-typeset.md +109 -0
- package/.merlin-core/skills/general/mage-beauty/references/voice-and-microcopy.md +137 -0
- package/.merlin-core/skills/general/mcp-builder/SKILL.md +92 -0
- package/.merlin-core/skills/general/network-debug/SKILL.md +51 -0
- package/.merlin-core/skills/general/next-best-practices/SKILL.md +177 -0
- package/.merlin-core/skills/general/next-best-practices/references/async-patterns.md +87 -0
- package/.merlin-core/skills/general/next-best-practices/references/bundling.md +182 -0
- package/.merlin-core/skills/general/next-best-practices/references/data-patterns.md +306 -0
- package/.merlin-core/skills/general/next-best-practices/references/debug-tricks.md +125 -0
- package/.merlin-core/skills/general/next-best-practices/references/directives.md +74 -0
- package/.merlin-core/skills/general/next-best-practices/references/error-handling.md +232 -0
- package/.merlin-core/skills/general/next-best-practices/references/file-conventions.md +141 -0
- package/.merlin-core/skills/general/next-best-practices/references/font.md +257 -0
- package/.merlin-core/skills/general/next-best-practices/references/functions.md +108 -0
- package/.merlin-core/skills/general/next-best-practices/references/hydration-error.md +88 -0
- package/.merlin-core/skills/general/next-best-practices/references/image.md +179 -0
- package/.merlin-core/skills/general/next-best-practices/references/metadata.md +296 -0
- package/.merlin-core/skills/general/next-best-practices/references/parallel-routes.md +298 -0
- package/.merlin-core/skills/general/next-best-practices/references/route-handlers.md +146 -0
- package/.merlin-core/skills/general/next-best-practices/references/rsc-boundaries.md +164 -0
- package/.merlin-core/skills/general/next-best-practices/references/runtime-selection.md +40 -0
- package/.merlin-core/skills/general/next-best-practices/references/scripts.md +141 -0
- package/.merlin-core/skills/general/next-best-practices/references/self-hosting.md +384 -0
- package/.merlin-core/skills/general/next-best-practices/references/suspense-boundaries.md +67 -0
- package/.merlin-core/skills/general/next-steps/SKILL.md +43 -0
- package/.merlin-core/skills/general/party-mode/SKILL.md +57 -0
- package/.merlin-core/skills/general/pdf/SKILL.md +298 -0
- package/.merlin-core/skills/general/pdf/references/forms.md +312 -0
- package/.merlin-core/skills/general/pdf/references/reference.md +640 -0
- package/.merlin-core/skills/general/pdf/references/windows-setup.md +40 -0
- package/.merlin-core/skills/general/pdf/scripts/check_bounding_boxes.py +65 -0
- package/.merlin-core/skills/general/pdf/scripts/check_fillable_fields.py +11 -0
- package/.merlin-core/skills/general/pdf/scripts/convert_pdf_to_images.py +33 -0
- package/.merlin-core/skills/general/pdf/scripts/create_validation_image.py +37 -0
- package/.merlin-core/skills/general/pdf/scripts/extract_form_field_info.py +122 -0
- package/.merlin-core/skills/general/pdf/scripts/extract_form_structure.py +115 -0
- package/.merlin-core/skills/general/pdf/scripts/fill_fillable_fields.py +98 -0
- package/.merlin-core/skills/general/pdf/scripts/fill_pdf_form_with_annotations.py +107 -0
- package/.merlin-core/skills/general/pptx/SKILL.md +133 -0
- package/.merlin-core/skills/general/pptx/references/editing.md +213 -0
- package/.merlin-core/skills/general/pptx/references/pptxgenjs.md +581 -0
- package/.merlin-core/skills/general/pptx/references/windows-setup.md +27 -0
- package/.merlin-core/skills/general/pptx/scripts/__init__.py +0 -0
- package/.merlin-core/skills/general/pptx/scripts/add_slide.py +195 -0
- package/.merlin-core/skills/general/pptx/scripts/clean.py +286 -0
- package/.merlin-core/skills/general/pptx/scripts/thumbnail.py +289 -0
- package/.merlin-core/skills/general/property-testing/SKILL.md +214 -0
- package/.merlin-core/skills/general/purge-leaked-secret/SKILL.md +383 -0
- package/.merlin-core/skills/general/reflection/SKILL.md +100 -0
- package/.merlin-core/skills/general/secret-safe-commit/SKILL.md +246 -0
- package/.merlin-core/skills/general/secret-safe-commit/templates/.gitleaks.toml +91 -0
- package/.merlin-core/skills/general/secret-safe-commit/templates/.pre-commit-config.yaml +57 -0
- package/.merlin-core/skills/general/secret-safe-commit/templates/secret-scan.yml +48 -0
- package/.merlin-core/skills/general/semantic-search/SKILL.md +79 -0
- package/.merlin-core/skills/general/skill-creator/SKILL.md +342 -0
- package/.merlin-core/skills/general/skill-creator/agents/analyzer.md +283 -0
- package/.merlin-core/skills/general/skill-creator/agents/comparator.md +211 -0
- package/.merlin-core/skills/general/skill-creator/agents/grader.md +227 -0
- package/.merlin-core/skills/general/skill-creator/assets/eval_review.html +146 -0
- package/.merlin-core/skills/general/skill-creator/eval-viewer/generate_review.py +471 -0
- package/.merlin-core/skills/general/skill-creator/eval-viewer/viewer.html +1325 -0
- package/.merlin-core/skills/general/skill-creator/references/schemas.md +439 -0
- package/.merlin-core/skills/general/skill-creator/scripts/__init__.py +0 -0
- package/.merlin-core/skills/general/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/.merlin-core/skills/general/skill-creator/scripts/generate_report.py +326 -0
- package/.merlin-core/skills/general/skill-creator/scripts/improve_description.py +247 -0
- package/.merlin-core/skills/general/skill-creator/scripts/package_skill.py +136 -0
- package/.merlin-core/skills/general/skill-creator/scripts/quick_validate.py +103 -0
- package/.merlin-core/skills/general/skill-creator/scripts/run_eval.py +310 -0
- package/.merlin-core/skills/general/skill-creator/scripts/run_loop.py +328 -0
- package/.merlin-core/skills/general/skill-creator/scripts/utils.py +47 -0
- package/.merlin-core/skills/general/start-here/SKILL.md +63 -0
- package/.merlin-core/skills/general/start-here/recipes.json +758 -0
- package/.merlin-core/skills/general/start-here/recipes.schema.json +57 -0
- package/.merlin-core/skills/general/static-analysis/SKILL.md +151 -0
- package/.merlin-core/skills/general/tailwind-design-system/SKILL.md +201 -0
- package/.merlin-core/skills/general/tailwind-design-system/references/advanced-v4.md +152 -0
- package/.merlin-core/skills/general/tailwind-design-system/references/component-patterns.md +353 -0
- package/.merlin-core/skills/general/teach-method/SKILL.md +86 -0
- package/.merlin-core/skills/general/team-execution/SKILL.md +67 -0
- package/.merlin-core/skills/general/testing/SKILL.md +412 -0
- package/.merlin-core/skills/general/token-economy/SKILL.md +55 -0
- package/.merlin-core/skills/general/vps-security-hardening/SKILL.md +406 -0
- package/.merlin-core/skills/general/web-quality/SKILL.md +180 -0
- package/.merlin-core/skills/general/webapp-testing/SKILL.md +153 -0
- package/.merlin-core/skills/general/webapp-testing/scripts/screenshot_compare.py +72 -0
- package/.merlin-core/skills/general/webapp-testing/scripts/with_server.py +103 -0
- package/.merlin-core/skills/general/xlsx/SKILL.md +167 -0
- package/.merlin-core/skills/general/xlsx/references/nodejs-sheetjs-styled-reports.md +141 -0
- package/.merlin-core/skills/general/xlsx/references/windows-setup.md +17 -0
- package/.merlin-core/skills/general/xlsx/scripts/recalc.py +184 -0
- package/.merlin-core/skills/general/xlsx/scripts/styled-report.js +130 -0
- package/.merlin-core/skills/general/yolo-mode/SKILL.md +60 -0
- package/.merlin-core/skills/general/youtube-transcript/SKILL.md +177 -0
- package/.merlin-core/skills/general/youtube-transcript/scripts/fetch_transcript.py +188 -0
- package/.merlin-core/skills/general/youtube-transcript/scripts/gladia_transcribe.mjs +230 -0
- package/.merlin-core/tools/commands/activate.js +72 -0
- package/.merlin-core/tools/commands/archive-thoughts.js +181 -0
- package/.merlin-core/tools/commands/backup.js +156 -0
- package/.merlin-core/tools/commands/certify-process.js +196 -0
- package/.merlin-core/tools/commands/convert.js +87 -0
- package/.merlin-core/tools/commands/cron.js +147 -0
- package/.merlin-core/tools/commands/disable.js +73 -0
- package/.merlin-core/tools/commands/doc-sync.js +127 -0
- package/.merlin-core/tools/commands/eval-skill.js +193 -0
- package/.merlin-core/tools/commands/frontmatter.js +49 -0
- package/.merlin-core/tools/commands/heartbeat.js +43 -0
- package/.merlin-core/tools/commands/index-thoughts.js +35 -0
- package/.merlin-core/tools/commands/install-remote-approve.js +184 -0
- package/.merlin-core/tools/commands/install.js +81 -0
- package/.merlin-core/tools/commands/lib/__verify__/diff-reports.js +170 -0
- package/.merlin-core/tools/commands/lib/fs-safe.js +186 -0
- package/.merlin-core/tools/commands/lib/preflight.js +607 -0
- package/.merlin-core/tools/commands/lib/preserve.js +232 -0
- package/.merlin-core/tools/commands/lib/project-config.template.yaml +69 -0
- package/.merlin-core/tools/commands/lib/report.js +231 -0
- package/.merlin-core/tools/commands/lib/settings-merge.js +134 -0
- package/.merlin-core/tools/commands/license.js +52 -0
- package/.merlin-core/tools/commands/list.js +125 -0
- package/.merlin-core/tools/commands/migrate-alkimia.js +271 -0
- package/.merlin-core/tools/commands/modules.js +68 -0
- package/.merlin-core/tools/commands/provision.js +83 -0
- package/.merlin-core/tools/commands/prune-feedback.js +114 -0
- package/.merlin-core/tools/commands/run-process.js +28 -0
- package/.merlin-core/tools/commands/state.js +79 -0
- package/.merlin-core/tools/commands/sync-bridges.js +197 -0
- package/.merlin-core/tools/commands/upgrade.js +1135 -0
- package/.merlin-core/tools/commands/validate-recipes.js +218 -0
- package/.merlin-core/tools/commands/validate.js +159 -0
- package/.merlin-core/tools/commands/yolo.js +82 -0
- package/.merlin-core/tools/compose-rules.mjs +179 -0
- package/.merlin-core/tools/disable-module.mjs +150 -0
- package/.merlin-core/tools/lib/deployer.mjs +131 -0
- package/.merlin-core/tools/lib/modules-activation.mjs +225 -0
- package/.merlin-core/tools/merlin-tools.js +153 -0
- package/.merlin-core/tools/migrate-frontmatter-v3.js +192 -0
- package/.merlin-core/tools/modules-catalog.mjs +174 -0
- package/.merlin-core/tools/provision-module.mjs +191 -0
- package/.merlin-core/tools/verify-module.mjs +99 -0
- package/.merlin-core/tools/vps-security-audit.sh +234 -0
- package/INSTALL.md +312 -0
- package/LICENSE +118 -0
- package/PRIVACY-LICENSING.md +65 -0
- package/README.md +391 -0
- package/bin/README.md +15 -0
- package/bin/convert-to-merlin.sh +109 -0
- package/bin/fleet-patch-hooks.sh +144 -0
- package/bin/fleet-patch-v3-fixes.sh +127 -0
- package/bin/merlin-init.js +232 -0
- package/bin/merlin.js +321 -0
- package/package.json +127 -0
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
---
|
|
2
|
+
source: coreyhaines31/marketingskills (MIT) v2.0.1
|
|
3
|
+
imported: 2026-05-20
|
|
4
|
+
stage: acquire
|
|
5
|
+
upstream_path: skills/aso/SKILL.md
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
> **Adjacency:** This skill is part of the [`marketing-ops`](../../SKILL.md) umbrella, organized by funnel stage (acquire). For Brazilian direct-response methodology (3-Document Protocol, Schwartz awareness levels, Anti-AI Copy Detection, ROAS viability, WhatsApp formats), see [`digital-marketing/SKILL.md`](../../../digital-marketing/SKILL.md). For page-level SaaS copy, see [`general/copywriting/SKILL.md`](../../../../general/copywriting/SKILL.md). For email delivery use [`general/resend-email`](../../../../general/resend-email/SKILL.md), for visuals [`general/image-gen`](../../../../general/image-gen/SKILL.md), for decks [`general/blkskrn`](../../../../general/blkskrn/SKILL.md).
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ASO Audit
|
|
13
|
+
|
|
14
|
+
Analyze App Store and Google Play listings against ASO best practices. Fetches
|
|
15
|
+
live listing data, scores metadata, visuals, and ratings, then produces a
|
|
16
|
+
prioritized action plan.
|
|
17
|
+
|
|
18
|
+
## When to Use
|
|
19
|
+
|
|
20
|
+
- User shares an App Store or Google Play URL
|
|
21
|
+
- User asks to audit or optimize an app listing
|
|
22
|
+
- User wants to compare their app against competitors
|
|
23
|
+
- User asks about app store ranking, visibility, or download conversion
|
|
24
|
+
|
|
25
|
+
## Before Auditing
|
|
26
|
+
|
|
27
|
+
**Check for product marketing context first:**
|
|
28
|
+
If `.agents/product-marketing.md` exists (or `.claude/product-marketing.md`, or the legacy `product-marketing-context.md` filename, in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
|
29
|
+
|
|
30
|
+
## Phase 1 — Identify Store & Fetch
|
|
31
|
+
|
|
32
|
+
### Detect store type from URL
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
Apple: apps.apple.com/{country}/app/{name}/id{digits}
|
|
36
|
+
Google: play.google.com/store/apps/details?id={package}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
If the user gives an app name instead of a URL, search the web for:
|
|
40
|
+
`site:apps.apple.com "{app name}"` or `site:play.google.com "{app name}"`
|
|
41
|
+
|
|
42
|
+
### Fetch the listing
|
|
43
|
+
|
|
44
|
+
Use WebFetch to retrieve the listing page. Extract every available field:
|
|
45
|
+
|
|
46
|
+
**Apple App Store fields:**
|
|
47
|
+
|
|
48
|
+
- App name (title) — 30 char limit
|
|
49
|
+
- Subtitle — 30 char limit
|
|
50
|
+
- Description (long) — not indexed for search, but matters for conversion
|
|
51
|
+
- Promotional text — 170 chars, updatable without new release
|
|
52
|
+
- Category (primary + secondary)
|
|
53
|
+
- Screenshots (count, order, caption text)
|
|
54
|
+
- Preview video (presence, duration)
|
|
55
|
+
- Rating (average + count)
|
|
56
|
+
- Recent reviews (visible ones)
|
|
57
|
+
- Price / in-app purchases
|
|
58
|
+
- Developer name
|
|
59
|
+
- Last updated date
|
|
60
|
+
- Version history notes
|
|
61
|
+
- Age rating
|
|
62
|
+
- Size
|
|
63
|
+
- Languages / localizations listed
|
|
64
|
+
- In-app events (if any visible)
|
|
65
|
+
|
|
66
|
+
**Google Play fields:**
|
|
67
|
+
|
|
68
|
+
- App name (title) — 30 char limit
|
|
69
|
+
- Short description — 80 char limit
|
|
70
|
+
- Full description — 4,000 char limit, IS indexed for search
|
|
71
|
+
- Category + tags
|
|
72
|
+
- Feature graphic (presence)
|
|
73
|
+
- Screenshots (count, order)
|
|
74
|
+
- Preview video (presence)
|
|
75
|
+
- Rating (average + count)
|
|
76
|
+
- Recent reviews (visible ones)
|
|
77
|
+
- Price / in-app purchases
|
|
78
|
+
- Developer name
|
|
79
|
+
- Last updated date
|
|
80
|
+
- What's new text
|
|
81
|
+
- Downloads range
|
|
82
|
+
- Content rating
|
|
83
|
+
- Data safety section
|
|
84
|
+
- Languages listed
|
|
85
|
+
|
|
86
|
+
If WebFetch returns incomplete data (stores render client-side), note gaps and
|
|
87
|
+
work with what's available. Ask the user to paste missing fields if critical.
|
|
88
|
+
|
|
89
|
+
### Visual asset assessment
|
|
90
|
+
|
|
91
|
+
WebFetch cannot extract screenshot images or caption text. **Take a screenshot
|
|
92
|
+
of the listing page** to get visual data:
|
|
93
|
+
|
|
94
|
+
1. Navigate to the listing URL and capture a full-page screenshot
|
|
95
|
+
2. Assess the screenshot for: icon quality, screenshot count, caption text,
|
|
96
|
+
messaging quality, preview video presence, feature graphic (Google Play)
|
|
97
|
+
3. If browser tools are unavailable, ask the user to share a screenshot of the
|
|
98
|
+
listing page
|
|
99
|
+
|
|
100
|
+
**Promotional text (Apple):** This 170-char field appears above the description
|
|
101
|
+
but is often indistinguishable from it in scraped HTML. If you cannot confirm
|
|
102
|
+
its presence, note this and recommend the user check App Store Connect.
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## Phase 1.5 — Assess Brand Maturity
|
|
107
|
+
|
|
108
|
+
Before scoring, classify the app into one of three tiers. This determines how
|
|
109
|
+
you interpret "textbook ASO" deviations — a deliberate brand choice by a
|
|
110
|
+
household name is not the same as a missed opportunity by an unknown app.
|
|
111
|
+
|
|
112
|
+
### Tier definitions
|
|
113
|
+
|
|
114
|
+
| Tier | Signals | Examples |
|
|
115
|
+
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------- |
|
|
116
|
+
| **Dominant** | Household name, 1M+ ratings, top-10 in category, near-universal brand recognition. Users search by brand name, not generic keywords. | Instagram, Uber, Spotify, WhatsApp, Netflix |
|
|
117
|
+
| **Established** | Well-known in their category, 100K+ ratings, strong organic installs, recognized brand but not universally known. | Strava, Notion, Duolingo, Cash App, Calm |
|
|
118
|
+
| **Challenger** | Building awareness, <100K ratings, needs discovery through keywords and ASO tactics. Most apps fall here. | Your app, most indie/startup apps |
|
|
119
|
+
|
|
120
|
+
### How tier affects scoring
|
|
121
|
+
|
|
122
|
+
**Dominant apps** get adjusted scoring in these areas:
|
|
123
|
+
|
|
124
|
+
- **Title:** Brand-only or brand-first titles are valid (score 8+ if brand is the keyword). These apps don't need generic keyword discovery.
|
|
125
|
+
- **Description:** Score purely on conversion quality, not keyword presence. If the app is a household name, a well-crafted brand description beats a keyword-stuffed one.
|
|
126
|
+
- **Visual Assets:** Lifestyle/brand photography instead of UI demos is a legitimate conversion strategy. No video is acceptable if the product is hard to demo in 30s or brand awareness is near-universal.
|
|
127
|
+
- **What's New:** Generic release notes at weekly+ cadence are acceptable (score 8+). At scale, detailed changelogs have minimal ROI and risk backlash.
|
|
128
|
+
- **In-app events:** Missing events for utility apps with massive install bases (Uber, WhatsApp) is not a penalty. These apps don't need discovery help.
|
|
129
|
+
- **Localization:** Score relative to actual market, not absolute count. A US-only fintech with 2 languages (English + Spanish) is appropriately localized.
|
|
130
|
+
|
|
131
|
+
**Established apps** get partial adjustment:
|
|
132
|
+
|
|
133
|
+
- Brand-first titles are fine but should still include 1-2 keywords
|
|
134
|
+
- Strategic description choices get benefit of the doubt
|
|
135
|
+
- Other dimensions scored normally
|
|
136
|
+
|
|
137
|
+
**Challenger apps** are scored strictly against textbook ASO best practices — every character, screenshot, and keyword matters.
|
|
138
|
+
|
|
139
|
+
**Key principle:** Before docking points, ask: "Is this a mistake or a deliberate
|
|
140
|
+
choice by a team that has data I don't?" If the app has 1M+ ratings and a
|
|
141
|
+
dedicated ASO team, assume their choices are data-informed unless clearly wrong.
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Phase 2 — Score Each Dimension
|
|
146
|
+
|
|
147
|
+
Score each dimension 0-10 using the criteria in `references/scoring-criteria.md`.
|
|
148
|
+
Apply the brand maturity tier adjustments from Phase 1.5.
|
|
149
|
+
|
|
150
|
+
Reference files for platform specs and benchmarks:
|
|
151
|
+
|
|
152
|
+
- `references/apple-specs.md` — Official Apple character limits, screenshot/video specs, CPP/PPO rules, rejection triggers
|
|
153
|
+
- `references/google-play-specs.md` — Official Google Play limits, screenshot specs, Android Vitals thresholds, policies
|
|
154
|
+
- `references/benchmarks.md` — Conversion data, rating impact, video lift, screenshot behavior, CPP/event benchmarks
|
|
155
|
+
|
|
156
|
+
### Dimensions and Weights
|
|
157
|
+
|
|
158
|
+
| # | Dimension | Weight | What It Covers |
|
|
159
|
+
| --- | -------------------- | ------ | ------------------------------------------------------------------------- |
|
|
160
|
+
| 1 | Title & Subtitle | 20% | Character usage, keyword presence, clarity, brand + keyword balance |
|
|
161
|
+
| 2 | Description | 15% | First 3 lines, keyword density (Google), CTA, structure, promotional text |
|
|
162
|
+
| 3 | Visual Assets | 25% | Screenshot count/quality/messaging, video, icon, feature graphic |
|
|
163
|
+
| 4 | Ratings & Reviews | 20% | Average rating, volume, recency, developer responses |
|
|
164
|
+
| 5 | Metadata & Freshness | 10% | Category choice, update recency, localization count, data safety |
|
|
165
|
+
| 6 | Conversion Signals | 10% | Price positioning, IAP transparency, social proof, download range |
|
|
166
|
+
|
|
167
|
+
**Final score** = weighted sum, out of 100.
|
|
168
|
+
|
|
169
|
+
### Score interpretation
|
|
170
|
+
|
|
171
|
+
| Score | Grade | Meaning |
|
|
172
|
+
| ------ | ----- | --------------------------------------------------------- |
|
|
173
|
+
| 85-100 | A | Well-optimized; focus on A/B testing and iteration |
|
|
174
|
+
| 70-84 | B | Good foundation; clear opportunities to improve |
|
|
175
|
+
| 50-69 | C | Significant gaps; prioritized fixes will have high impact |
|
|
176
|
+
| 30-49 | D | Major optimization needed across multiple dimensions |
|
|
177
|
+
| 0-29 | F | Listing needs a complete overhaul |
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## Phase 3 — Competitor Comparison (Optional)
|
|
182
|
+
|
|
183
|
+
If the user provides competitor URLs or asks for comparison:
|
|
184
|
+
|
|
185
|
+
1. Fetch 2-3 top competitors in the same category
|
|
186
|
+
2. Run the same scoring on each
|
|
187
|
+
3. Build a comparison table highlighting where the user's app is weaker/stronger
|
|
188
|
+
4. Identify keyword gaps — terms competitors rank for that the user's app doesn't target
|
|
189
|
+
|
|
190
|
+
If no competitors are specified, suggest the user provide 2-3 or offer to search
|
|
191
|
+
for top apps in their category.
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
## Phase 4 — Generate Report
|
|
196
|
+
|
|
197
|
+
Use the template in `references/report-template.md` to structure the output.
|
|
198
|
+
|
|
199
|
+
The report must include:
|
|
200
|
+
|
|
201
|
+
1. **Score card** — table with all 6 dimensions, scores, and grade
|
|
202
|
+
2. **Top 3 quick wins** — changes that take <1 hour and have highest impact
|
|
203
|
+
3. **Detailed findings** — per-dimension breakdown with specific issues and fixes
|
|
204
|
+
4. **Keyword suggestions** — based on title/description analysis and competitor gaps
|
|
205
|
+
5. **Visual asset recommendations** — specific screenshot/video improvements
|
|
206
|
+
6. **Priority action plan** — ordered list of changes by impact vs effort
|
|
207
|
+
|
|
208
|
+
### Report rules
|
|
209
|
+
|
|
210
|
+
- Every recommendation must be **specific and actionable** ("Change subtitle from X to Y" not "Improve subtitle")
|
|
211
|
+
- Include character counts for all text recommendations
|
|
212
|
+
- Flag platform-specific differences (Apple vs Google) when relevant
|
|
213
|
+
- Note what CANNOT be assessed without paid tools (search volume, exact rankings)
|
|
214
|
+
- When suggesting keyword changes, explain WHY each keyword matters
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## Platform-Specific Rules
|
|
219
|
+
|
|
220
|
+
### Apple App Store — Key Facts
|
|
221
|
+
|
|
222
|
+
- Title (30 chars) + Subtitle (30 chars) + Keyword field (100 **bytes**, hidden) = indexed text
|
|
223
|
+
- Keywords field is bytes not chars — Arabic/CJK use 2-3 bytes per char
|
|
224
|
+
- Long description is NOT indexed for search — optimize for conversion only
|
|
225
|
+
- Promotional text (170 chars) does NOT affect search (Apple confirmed)
|
|
226
|
+
- Never repeat words across title/subtitle/keyword field (Apple indexes each word once)
|
|
227
|
+
- Keyword field: commas, no spaces ("photo,editor,filter" not "photo, editor, filter")
|
|
228
|
+
- Screenshots: up to 10 per device. First 3 visible in search — 90% never scroll past 3rd
|
|
229
|
+
- Screenshot captions indexed since June 2025 (AI extraction)
|
|
230
|
+
- In-app events: max 10 published at once, max 31 days each. Indexed and appear in search
|
|
231
|
+
- Custom Product Pages (up to 70) in organic search since July 2025. +5.9% avg conversion lift
|
|
232
|
+
- App preview video: up to 3, 15-30s each. Autoplays muted — +20-40% conversion lift
|
|
233
|
+
- SKStoreReviewController: max 3 prompts per 365 days
|
|
234
|
+
- Apple has human editorial curation — quality and design matter more
|
|
235
|
+
- See `references/apple-specs.md` for full specs, dimensions, and rejection triggers
|
|
236
|
+
|
|
237
|
+
### Google Play — Key Facts
|
|
238
|
+
|
|
239
|
+
- Title (30 chars) + Short description (80 chars) + Full description (4,000 chars) = indexed text
|
|
240
|
+
- Full description IS indexed — target 2-3% keyword density naturally
|
|
241
|
+
- No hidden keyword field — all keywords must be in visible text
|
|
242
|
+
- Google NLP/semantic understanding — keyword stuffing detected and penalized
|
|
243
|
+
- Prohibited in title: emojis, ALL CAPS, "best"/"#1"/"free", CTAs (enforced since 2021)
|
|
244
|
+
- Screenshots: min 2, **max 8** per device (not 10 like Apple)
|
|
245
|
+
- Feature graphic (1024x500, exact) required for featured placements
|
|
246
|
+
- Video does NOT autoplay — only ~6% of users tap play (low ROI vs iOS)
|
|
247
|
+
- Android Vitals directly affect ranking: crash >1.09% or ANR >0.47% = reduced visibility
|
|
248
|
+
- Promotional Content: submit 14 days early for featuring. Apps see 2x explore acquisitions
|
|
249
|
+
- Custom Store Listings: up to 50 (can target churned users, specific countries, ad campaigns)
|
|
250
|
+
- Store Listing Experiments: test up to 3 variants, run 7+ days, 1 experiment at a time
|
|
251
|
+
- See `references/google-play-specs.md` for full specs and policy details
|
|
252
|
+
|
|
253
|
+
### What Apple Indexes vs What Google Indexes
|
|
254
|
+
|
|
255
|
+
| Field | Apple Indexed? | Google Indexed? |
|
|
256
|
+
| --------------------- | ---------------- | ---------------------- |
|
|
257
|
+
| Title | Yes | Yes (strongest signal) |
|
|
258
|
+
| Subtitle / Short desc | Yes | Yes |
|
|
259
|
+
| Keyword field | Yes (hidden) | Does not exist |
|
|
260
|
+
| Long description | No | Yes (heavily) |
|
|
261
|
+
| Screenshot captions | Yes (since 2025) | No |
|
|
262
|
+
| In-app events | Yes | N/A (LiveOps instead) |
|
|
263
|
+
| Developer name | No | Partial |
|
|
264
|
+
| IAP names | Yes | Yes |
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
## Common Issues Checklist
|
|
269
|
+
|
|
270
|
+
Flag these if found. Items marked _(tier-dependent)_ should be evaluated against
|
|
271
|
+
the app's brand maturity tier — they may be deliberate choices for Dominant apps.
|
|
272
|
+
|
|
273
|
+
**Always flag (all tiers):**
|
|
274
|
+
|
|
275
|
+
- [ ] Rating below 4.0
|
|
276
|
+
- [ ] Last update > 3 months ago
|
|
277
|
+
- [ ] Google Play description has no keyword strategy (under 1% density)
|
|
278
|
+
- [ ] Google Play missing feature graphic
|
|
279
|
+
- [ ] Apple keyword field likely has repeated words (inferred from title+subtitle)
|
|
280
|
+
- [ ] Category mismatch — app would face less competition in a different category
|
|
281
|
+
- [ ] Fewer than 5 screenshots
|
|
282
|
+
|
|
283
|
+
**Flag for Challenger/Established only** _(not mistakes for Dominant apps):_
|
|
284
|
+
|
|
285
|
+
- [ ] Title wastes characters on brand name only (no keywords) _(Dominant: brand IS the keyword)_
|
|
286
|
+
- [ ] Subtitle/short description duplicates title keywords
|
|
287
|
+
- [ ] Description first 3 lines are generic _(Dominant: may be brand-voice choice)_
|
|
288
|
+
- [ ] No preview video _(Dominant: may be rational if product is hard to demo)_
|
|
289
|
+
- [ ] Screenshots are just UI dumps with no messaging/captions _(Dominant: lifestyle/brand shots may convert better)_
|
|
290
|
+
- [ ] Only 1-2 localizations _(score relative to actual market, not absolute count)_
|
|
291
|
+
- [ ] No in-app events or promotional content _(Dominant utility apps may not need discovery help)_
|
|
292
|
+
|
|
293
|
+
**Flag for all tiers but note context:**
|
|
294
|
+
|
|
295
|
+
- [ ] No developer responses to negative reviews _(note volume — responding at 10M+ reviews is a different challenge than at 1K)_
|
|
296
|
+
- [ ] Generic "What's New" text _(acceptable at weekly+ release cadence for Established/Dominant)_
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
## Task-Specific Questions
|
|
301
|
+
|
|
302
|
+
1. What is the App Store or Google Play URL?
|
|
303
|
+
2. Is this your app or a competitor's?
|
|
304
|
+
3. What category does the app compete in?
|
|
305
|
+
4. Do you have competitor URLs to compare against?
|
|
306
|
+
5. Are you focused on search visibility, conversion rate, or both?
|
|
307
|
+
6. Do you have access to App Store Connect or Google Play Console data?
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
## Related Skills
|
|
312
|
+
|
|
313
|
+
- **cro**: For optimizing the conversion of web-based landing pages that drive app installs
|
|
314
|
+
- **ad-creative**: For creating App Store and Google Play ad creatives
|
|
315
|
+
- **analytics**: For setting up install attribution and in-app event tracking
|
|
316
|
+
- **customer-research**: For understanding user needs and language to inform listing copy
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
---
|
|
2
|
+
source: coreyhaines31/marketingskills (MIT) v2.0.1
|
|
3
|
+
imported: 2026-05-20
|
|
4
|
+
stage: acquire
|
|
5
|
+
upstream_path: skills/co-marketing/SKILL.md
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
> **Adjacency:** This skill is part of the [`marketing-ops`](../../SKILL.md) umbrella, organized by funnel stage (acquire). For Brazilian direct-response methodology (3-Document Protocol, Schwartz awareness levels, Anti-AI Copy Detection, ROAS viability, WhatsApp formats), see [`digital-marketing/SKILL.md`](../../../digital-marketing/SKILL.md). For page-level SaaS copy, see [`general/copywriting/SKILL.md`](../../../../general/copywriting/SKILL.md). For email delivery use [`general/resend-email`](../../../../general/resend-email/SKILL.md), for visuals [`general/image-gen`](../../../../general/image-gen/SKILL.md), for decks [`general/blkskrn`](../../../../general/blkskrn/SKILL.md).
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
You are a co-marketing strategist who helps SaaS companies identify ideal partners and brainstorm high-impact joint campaigns.
|
|
13
|
+
|
|
14
|
+
## Before Starting
|
|
15
|
+
|
|
16
|
+
**Check for product marketing context first:**
|
|
17
|
+
If `.agents/product-marketing.md` exists (or `.claude/product-marketing.md`, or the legacy `product-marketing-context.md` filename, in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
|
18
|
+
|
|
19
|
+
## When to Use This Skill
|
|
20
|
+
|
|
21
|
+
- Finding potential co-marketing partners
|
|
22
|
+
- Brainstorming campaign ideas with a specific partner
|
|
23
|
+
- Planning joint launches or promotions
|
|
24
|
+
- Evaluating partnership fit
|
|
25
|
+
- Structuring co-marketing agreements
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Partner Identification Framework
|
|
30
|
+
|
|
31
|
+
### 1. Audience Overlap Analysis
|
|
32
|
+
|
|
33
|
+
The best partners share your audience but don't compete for the same budget.
|
|
34
|
+
|
|
35
|
+
**Ideal partner characteristics:**
|
|
36
|
+
|
|
37
|
+
- Same buyer persona, different problem solved
|
|
38
|
+
- Adjacent in the workflow (before, after, or alongside your tool)
|
|
39
|
+
- Similar company stage and customer size
|
|
40
|
+
- Complementary, not competitive
|
|
41
|
+
|
|
42
|
+
**Questions to identify partners:**
|
|
43
|
+
|
|
44
|
+
- What tools do your customers already use?
|
|
45
|
+
- What do they use before/after your product?
|
|
46
|
+
- Who else is selling to your ICP?
|
|
47
|
+
- Which integrations do customers request most?
|
|
48
|
+
|
|
49
|
+
### 2. Partner Scoring Criteria
|
|
50
|
+
|
|
51
|
+
Rate potential partners (1-5) on:
|
|
52
|
+
|
|
53
|
+
| Criteria | What to Evaluate |
|
|
54
|
+
| ------------------------- | ---------------------------------------------------------- |
|
|
55
|
+
| **Audience fit** | How closely does their audience match your ICP? |
|
|
56
|
+
| **Audience size** | Do they have reach worth partnering for? |
|
|
57
|
+
| **Brand alignment** | Would you be proud to be associated? |
|
|
58
|
+
| **Engagement quality** | Do they have an active, engaged audience? |
|
|
59
|
+
| **Reciprocity potential** | Can you offer them equal value? |
|
|
60
|
+
| **Ease of execution** | Do they have a partnerships team? History of co-marketing? |
|
|
61
|
+
|
|
62
|
+
### 3. Where to Find Partners
|
|
63
|
+
|
|
64
|
+
**Integration ecosystem:**
|
|
65
|
+
|
|
66
|
+
- Your existing integration partners
|
|
67
|
+
- Tools in the same app marketplace category
|
|
68
|
+
- Platforms your product plugs into
|
|
69
|
+
|
|
70
|
+
**Adjacent categories:**
|
|
71
|
+
|
|
72
|
+
- Tools that solve the problem before yours
|
|
73
|
+
- Tools that solve the problem after yours
|
|
74
|
+
- Tools used by the same role but different workflow
|
|
75
|
+
|
|
76
|
+
**Community signals:**
|
|
77
|
+
|
|
78
|
+
- Who sponsors the same podcasts/newsletters?
|
|
79
|
+
- Who exhibits at the same conferences?
|
|
80
|
+
- Who's active in the same communities?
|
|
81
|
+
- Whose content does your audience share?
|
|
82
|
+
|
|
83
|
+
**Data sources:**
|
|
84
|
+
|
|
85
|
+
- Crossbeam or Reveal for account overlap
|
|
86
|
+
- Customer surveys ("what else do you use?")
|
|
87
|
+
- G2/Capterra category neighbors
|
|
88
|
+
- Job postings mentioning your tool + others
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## Co-Marketing Campaign Types
|
|
93
|
+
|
|
94
|
+
### Content Partnerships
|
|
95
|
+
|
|
96
|
+
| Format | Effort | Lead Sharing | Best For |
|
|
97
|
+
| -------------------------- | ------ | ---------------------------- | ----------------------- |
|
|
98
|
+
| **Co-authored blog post** | Low | Shared byline, link exchange | Thought leadership, SEO |
|
|
99
|
+
| **Joint ebook/guide** | Medium | Gated, split leads | Lead gen, deeper topic |
|
|
100
|
+
| **Research report** | High | Gated, split leads | Authority, PR |
|
|
101
|
+
| **Guest newsletter swap** | Low | Each keeps own leads | Audience exposure |
|
|
102
|
+
| **Podcast guest exchange** | Low | Each keeps own leads | Relationship building |
|
|
103
|
+
|
|
104
|
+
### Webinars & Events
|
|
105
|
+
|
|
106
|
+
| Format | Effort | Best For |
|
|
107
|
+
| ---------------------------- | ------ | ------------------------------------- |
|
|
108
|
+
| **Joint webinar** | Medium | Lead gen, product education |
|
|
109
|
+
| **Virtual summit panel** | Medium | Multi-partner exposure |
|
|
110
|
+
| **Co-hosted workshop** | High | Hands-on education, deeper engagement |
|
|
111
|
+
| **Conference booth sharing** | Medium | Cost splitting, audience overlap |
|
|
112
|
+
| **Joint happy hour/dinner** | Low | Relationship building at events |
|
|
113
|
+
|
|
114
|
+
### Product & Integration Marketing
|
|
115
|
+
|
|
116
|
+
| Format | Effort | Best For |
|
|
117
|
+
| ---------------------------------- | ------ | ----------------------------- |
|
|
118
|
+
| **Integration launch** | Medium | Existing integration partners |
|
|
119
|
+
| **Joint case study** | Medium | Shared customers |
|
|
120
|
+
| **"Better together" landing page** | Low | Integration discovery |
|
|
121
|
+
| **Bundle or discount** | Medium | Conversion boost, cross-sell |
|
|
122
|
+
| **In-app cross-promotion** | Medium | User activation |
|
|
123
|
+
|
|
124
|
+
### Community & Social
|
|
125
|
+
|
|
126
|
+
| Format | Effort | Best For |
|
|
127
|
+
| ---------------------------------- | ------ | ------------------------- |
|
|
128
|
+
| **Social media takeover** | Low | Audience exposure |
|
|
129
|
+
| **Joint giveaway/contest** | Low | List building, engagement |
|
|
130
|
+
| **Slack/Discord community collab** | Low | Community building |
|
|
131
|
+
| **Joint AMA or Twitter Space** | Low | Thought leadership |
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## Brainstorming Partner Campaigns
|
|
136
|
+
|
|
137
|
+
When brainstorming with a specific partner, consider:
|
|
138
|
+
|
|
139
|
+
### 1. Shared Audience Moments
|
|
140
|
+
|
|
141
|
+
- What trigger events matter to both audiences?
|
|
142
|
+
- What seasonal moments align with both products?
|
|
143
|
+
- What industry trends affect both customer bases?
|
|
144
|
+
|
|
145
|
+
### 2. Combined Value Propositions
|
|
146
|
+
|
|
147
|
+
- What can customers achieve with both tools that they can't with one?
|
|
148
|
+
- What workflow does the combination enable?
|
|
149
|
+
- What pain point does the integration solve?
|
|
150
|
+
|
|
151
|
+
### 3. Unique Assets Each Brings
|
|
152
|
+
|
|
153
|
+
| Your Assets | Their Assets |
|
|
154
|
+
| ----------------------------- | ------------------------------ |
|
|
155
|
+
| Your audience size/engagement | Their audience size/engagement |
|
|
156
|
+
| Your content expertise | Their content expertise |
|
|
157
|
+
| Your product capabilities | Their product capabilities |
|
|
158
|
+
| Your brand credibility | Their brand credibility |
|
|
159
|
+
| Your customer stories | Their customer stories |
|
|
160
|
+
|
|
161
|
+
### 4. Campaign Idea Prompts
|
|
162
|
+
|
|
163
|
+
Ask these to generate ideas:
|
|
164
|
+
|
|
165
|
+
- "What would we create if we had to launch something in 2 weeks?"
|
|
166
|
+
- "What content do both our audiences desperately need?"
|
|
167
|
+
- "What would make customers say 'finally, someone did this'?"
|
|
168
|
+
- "What exclusive thing could we offer together?"
|
|
169
|
+
- "What data do we both have that would make a compelling story?"
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## Approaching Potential Partners
|
|
174
|
+
|
|
175
|
+
### Cold Outreach Template
|
|
176
|
+
|
|
177
|
+
```
|
|
178
|
+
Subject: [Your Company] + [Their Company] co-marketing idea
|
|
179
|
+
|
|
180
|
+
Hey [Name],
|
|
181
|
+
|
|
182
|
+
I'm [Role] at [Your Company]. We [one-line description].
|
|
183
|
+
|
|
184
|
+
I noticed we share a lot of the same audience—[specific observation about overlap].
|
|
185
|
+
|
|
186
|
+
I have an idea for [specific campaign type] that could work well for both of us: [one-sentence pitch].
|
|
187
|
+
|
|
188
|
+
Would you be open to a quick call to explore?
|
|
189
|
+
|
|
190
|
+
[Your name]
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
### What to Prepare for the Call
|
|
194
|
+
|
|
195
|
+
1. **Account overlap data** (if available via Crossbeam/Reveal)
|
|
196
|
+
2. **2-3 specific campaign ideas** (not just "let's do something")
|
|
197
|
+
3. **Your audience metrics** (list size, traffic, engagement)
|
|
198
|
+
4. **Examples of past partnerships** (shows you can execute)
|
|
199
|
+
5. **Clear ask** (what you want from them, what you'll provide)
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## Structuring the Partnership
|
|
204
|
+
|
|
205
|
+
### Key Questions to Align On
|
|
206
|
+
|
|
207
|
+
- **Lead ownership**: How are leads split or shared?
|
|
208
|
+
- **Promotion commitments**: What will each party do to promote?
|
|
209
|
+
- **Asset creation**: Who creates what? Who approves?
|
|
210
|
+
- **Timeline**: When does each phase happen?
|
|
211
|
+
- **Success metrics**: How will you measure success?
|
|
212
|
+
- **Follow-up**: Will you do more together if it works?
|
|
213
|
+
|
|
214
|
+
### Simple Co-Marketing Agreement Outline
|
|
215
|
+
|
|
216
|
+
1. **Campaign description**: What you're doing together
|
|
217
|
+
2. **Responsibilities**: Who does what
|
|
218
|
+
3. **Timeline**: Key dates and deadlines
|
|
219
|
+
4. **Lead handling**: How leads are captured, shared, followed up
|
|
220
|
+
5. **Promotion**: Minimum commitments from each side
|
|
221
|
+
6. **Branding**: Logo usage, approval process
|
|
222
|
+
7. **Costs**: Who pays for what (if any)
|
|
223
|
+
8. **Metrics sharing**: What data you'll share post-campaign
|
|
224
|
+
|
|
225
|
+
---
|
|
226
|
+
|
|
227
|
+
## Measuring Co-Marketing Success
|
|
228
|
+
|
|
229
|
+
### Quantitative Metrics
|
|
230
|
+
|
|
231
|
+
- Leads generated (total and per partner)
|
|
232
|
+
- Lead quality (MQL/SQL conversion rate)
|
|
233
|
+
- Revenue attributed
|
|
234
|
+
- Audience growth (new subscribers, followers)
|
|
235
|
+
- Content engagement (views, downloads, shares)
|
|
236
|
+
|
|
237
|
+
### Qualitative Metrics
|
|
238
|
+
|
|
239
|
+
- Ease of collaboration
|
|
240
|
+
- Partner responsiveness
|
|
241
|
+
- Audience reception
|
|
242
|
+
- Brand lift
|
|
243
|
+
- Relationship strengthened for future campaigns
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
## Co-Marketing Checklist
|
|
248
|
+
|
|
249
|
+
### Partner Identification
|
|
250
|
+
|
|
251
|
+
- [ ] List tools your customers already use
|
|
252
|
+
- [ ] Check Crossbeam/Reveal for account overlap
|
|
253
|
+
- [ ] Score top 5 potential partners
|
|
254
|
+
- [ ] Research their past co-marketing activities
|
|
255
|
+
|
|
256
|
+
### Campaign Planning
|
|
257
|
+
|
|
258
|
+
- [ ] Agree on campaign type and goals
|
|
259
|
+
- [ ] Define lead sharing arrangement
|
|
260
|
+
- [ ] Assign responsibilities and deadlines
|
|
261
|
+
- [ ] Set success metrics
|
|
262
|
+
|
|
263
|
+
### Execution
|
|
264
|
+
|
|
265
|
+
- [ ] Create shared assets (landing page, content, etc.)
|
|
266
|
+
- [ ] Coordinate promotion schedules
|
|
267
|
+
- [ ] Brief both teams on talking points
|
|
268
|
+
|
|
269
|
+
### Post-Campaign
|
|
270
|
+
|
|
271
|
+
- [ ] Share metrics with partner
|
|
272
|
+
- [ ] Debrief on what worked/didn't
|
|
273
|
+
- [ ] Discuss future collaboration opportunities
|
|
274
|
+
|
|
275
|
+
---
|
|
276
|
+
|
|
277
|
+
## Task-Specific Questions
|
|
278
|
+
|
|
279
|
+
1. Are you looking for partners or planning a campaign with a specific partner?
|
|
280
|
+
2. What type of co-marketing are you most interested in? (content, events, integrations, community)
|
|
281
|
+
3. What's your audience size? (email list, social following, traffic)
|
|
282
|
+
4. Do you have existing integration partners?
|
|
283
|
+
5. Have you done co-marketing before? What worked/didn't?
|
|
284
|
+
6. What's your timeline and budget for co-marketing?
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## Tool Integrations
|
|
289
|
+
|
|
290
|
+
For implementation, see the [tools registry](../../tools/REGISTRY.md). Key tools for co-marketing:
|
|
291
|
+
|
|
292
|
+
| Tool | Best For | Guide |
|
|
293
|
+
| ---------------- | --------------------------------------------- | ----------------------------------------------------------- |
|
|
294
|
+
| **Crossbeam** | Account overlap with partners | [crossbeam.md](../../tools/integrations/crossbeam.md) |
|
|
295
|
+
| **Introw** | Partner program management, deal registration | [introw.md](../../tools/integrations/introw.md) |
|
|
296
|
+
| **PartnerStack** | Partner and affiliate program management | [partnerstack.md](../../tools/integrations/partnerstack.md) |
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
## Related Skills
|
|
301
|
+
|
|
302
|
+
- **referrals** — For customer referral and affiliate programs (customers referring customers)
|
|
303
|
+
- **launch** — For product launches with partners; covers co-marketing as a "borrowed channel"
|
|
304
|
+
- **content-strategy** — For content planning including co-created content
|
|
305
|
+
- **sales-enablement** — For partner-facing collateral and enablement materials
|