sinapse-ai 9.2.0 → 9.4.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 +56 -343
- package/.claude/hooks/README.md +1 -0
- package/.claude/hooks/enforce-architecture-first.py +197 -196
- package/.claude/hooks/install-hooks.sh +1 -0
- package/.claude/hooks/mind-clone-governance.py +193 -192
- package/.claude/hooks/pre-commit-version-check.sh +1 -0
- package/.claude/hooks/precompact-session-digest.cjs +1 -0
- package/.claude/hooks/precompact-wrapper.cjs +1 -0
- package/.claude/hooks/read-protection.py +152 -151
- package/.claude/hooks/sql-governance.py +183 -182
- package/.claude/hooks/synapse-engine.cjs +1 -0
- package/.claude/hooks/synapse-wrapper.cjs +1 -0
- package/.claude/hooks/write-path-validation.py +195 -194
- package/.claude/rules/agent-authority.md +6 -0
- package/.claude/rules/agent-handoff.md +5 -0
- package/.claude/rules/cross-squad-routing.md +5 -0
- package/.claude/rules/hook-governance.md +6 -0
- package/.claude/rules/ids-principles.md +1 -0
- package/.claude/rules/mcp-usage.md +3 -1
- package/.claude/rules/safe-collaboration.md +10 -0
- package/.claude/rules/security-data-protection.md +9 -0
- package/.claude/rules/squad-awareness.md +73 -0
- package/.claude/rules/story-lifecycle.md +1 -0
- package/.claude/rules/tool-examples.md +7 -0
- package/.claude/rules/workflow-execution.md +8 -0
- package/.codex/agents/analyst.md +253 -72
- package/.codex/agents/architect.md +455 -68
- package/.codex/agents/data-engineer.md +492 -106
- package/.codex/agents/developer.md +560 -0
- package/.codex/agents/devops.md +518 -69
- package/.codex/agents/product-lead.md +335 -0
- package/.codex/agents/project-lead.md +377 -0
- package/.codex/agents/quality-gate.md +449 -0
- package/.codex/agents/sinapse-orqx.md +9 -7
- package/.codex/agents/sprint-lead.md +287 -0
- package/.codex/agents/squad-creator.md +344 -0
- package/.codex/agents/ux-design-expert.md +495 -0
- package/.codex/delegation-matrix.json +756 -44
- package/.codex/handoff-packet.schema.json +30 -6
- package/.sinapse-ai/cli/commands/config/index.js +1 -0
- package/.sinapse-ai/cli/commands/generate/index.js +1 -0
- package/.sinapse-ai/cli/commands/manifest/index.js +1 -0
- package/.sinapse-ai/cli/commands/manifest/regenerate.js +1 -0
- package/.sinapse-ai/cli/commands/manifest/validate.js +1 -0
- package/.sinapse-ai/cli/commands/mcp/add.js +1 -0
- package/.sinapse-ai/cli/commands/mcp/index.js +1 -0
- package/.sinapse-ai/cli/commands/mcp/link.js +1 -0
- package/.sinapse-ai/cli/commands/mcp/setup.js +1 -0
- package/.sinapse-ai/cli/commands/mcp/status.js +1 -0
- package/.sinapse-ai/cli/commands/metrics/cleanup.js +1 -0
- package/.sinapse-ai/cli/commands/metrics/index.js +1 -0
- package/.sinapse-ai/cli/commands/metrics/record.js +1 -0
- package/.sinapse-ai/cli/commands/metrics/seed.js +1 -0
- package/.sinapse-ai/cli/commands/metrics/show.js +1 -0
- package/.sinapse-ai/cli/commands/migrate/analyze.js +1 -0
- package/.sinapse-ai/cli/commands/migrate/backup.js +1 -0
- package/.sinapse-ai/cli/commands/migrate/execute.js +1 -0
- package/.sinapse-ai/cli/commands/migrate/index.js +1 -0
- package/.sinapse-ai/cli/commands/migrate/rollback.js +1 -0
- package/.sinapse-ai/cli/commands/migrate/update-imports.js +1 -0
- package/.sinapse-ai/cli/commands/migrate/validate.js +1 -0
- package/.sinapse-ai/cli/commands/qa/run.js +1 -0
- package/.sinapse-ai/cli/commands/qa/status.js +1 -0
- package/.sinapse-ai/cli/commands/workers/formatters/info-formatter.js +1 -0
- package/.sinapse-ai/cli/commands/workers/formatters/list-table.js +1 -0
- package/.sinapse-ai/cli/commands/workers/formatters/list-tree.js +1 -0
- package/.sinapse-ai/cli/commands/workers/index.js +1 -0
- package/.sinapse-ai/cli/commands/workers/info.js +1 -0
- package/.sinapse-ai/cli/commands/workers/list.js +1 -0
- package/.sinapse-ai/cli/commands/workers/search-filters.js +1 -0
- package/.sinapse-ai/cli/commands/workers/search-keyword.js +1 -0
- package/.sinapse-ai/cli/commands/workers/search-semantic.js +1 -0
- package/.sinapse-ai/cli/commands/workers/search.js +1 -0
- package/.sinapse-ai/cli/commands/workers/utils/pagination.js +1 -0
- package/.sinapse-ai/cli/index.js +1 -0
- package/.sinapse-ai/cli/utils/output-formatter-cli.js +1 -0
- package/.sinapse-ai/cli/utils/score-calculator.js +1 -0
- package/.sinapse-ai/core/README.md +1 -0
- package/.sinapse-ai/core/code-intel/code-intel-client.js +1 -0
- package/.sinapse-ai/core/code-intel/code-intel-enricher.js +1 -0
- package/.sinapse-ai/core/code-intel/helpers/creation-helper.js +1 -0
- package/.sinapse-ai/core/code-intel/helpers/dev-helper.js +1 -0
- package/.sinapse-ai/core/code-intel/helpers/devops-helper.js +1 -0
- package/.sinapse-ai/core/code-intel/helpers/planning-helper.js +1 -0
- package/.sinapse-ai/core/code-intel/helpers/qa-helper.js +1 -0
- package/.sinapse-ai/core/code-intel/helpers/story-helper.js +1 -0
- package/.sinapse-ai/core/code-intel/hook-runtime.js +1 -0
- package/.sinapse-ai/core/code-intel/index.js +1 -0
- package/.sinapse-ai/core/code-intel/providers/code-graph-provider.js +1 -0
- package/.sinapse-ai/core/code-intel/providers/provider-interface.js +1 -0
- package/.sinapse-ai/core/code-intel/providers/registry-provider.js +1 -0
- package/.sinapse-ai/core/code-intel/registry-syncer.js +1 -0
- package/.sinapse-ai/core/config/config-cache.js +1 -0
- package/.sinapse-ai/core/config/config-loader.js +1 -0
- package/.sinapse-ai/core/config/config-resolver.js +1 -0
- package/.sinapse-ai/core/config/env-interpolator.js +1 -0
- package/.sinapse-ai/core/config/merge-utils.js +1 -0
- package/.sinapse-ai/core/config/migrate-config.js +1 -0
- package/.sinapse-ai/core/config/schemas/framework-config.schema.json +2 -1
- package/.sinapse-ai/core/config/schemas/local-config.schema.json +1 -0
- package/.sinapse-ai/core/config/schemas/project-config.schema.json +1 -0
- package/.sinapse-ai/core/config/schemas/user-config.schema.json +1 -0
- package/.sinapse-ai/core/config/template-overrides.js +1 -0
- package/.sinapse-ai/core/config/templates/user-config.yaml +1 -0
- package/.sinapse-ai/core/docs/SHARD-TRANSLATION-GUIDE.md +1 -0
- package/.sinapse-ai/core/docs/component-creation-guide.md +1 -1
- package/.sinapse-ai/core/docs/session-update-pattern.md +1 -0
- package/.sinapse-ai/core/docs/template-syntax.md +1 -1
- package/.sinapse-ai/core/docs/troubleshooting-guide.md +1 -1
- package/.sinapse-ai/core/doctor/checks/agent-memory.js +1 -0
- package/.sinapse-ai/core/doctor/checks/claude-md.js +1 -0
- package/.sinapse-ai/core/doctor/checks/code-intel.js +1 -0
- package/.sinapse-ai/core/doctor/checks/commands-count.js +1 -0
- package/.sinapse-ai/core/doctor/checks/core-config.js +1 -0
- package/.sinapse-ai/core/doctor/checks/entity-registry.js +1 -0
- package/.sinapse-ai/core/doctor/checks/git-hooks.js +1 -0
- package/.sinapse-ai/core/doctor/checks/graph-dashboard.js +1 -0
- package/.sinapse-ai/core/doctor/checks/hooks-claude-count.js +1 -0
- package/.sinapse-ai/core/doctor/checks/ide-sync.js +1 -0
- package/.sinapse-ai/core/doctor/checks/node-version.js +1 -0
- package/.sinapse-ai/core/doctor/checks/npm-packages.js +1 -0
- package/.sinapse-ai/core/doctor/checks/rules-files.js +1 -0
- package/.sinapse-ai/core/doctor/checks/settings-json.js +1 -0
- package/.sinapse-ai/core/doctor/checks/skills-count.js +1 -0
- package/.sinapse-ai/core/doctor/fix-handler.js +1 -0
- package/.sinapse-ai/core/doctor/formatters/json.js +1 -0
- package/.sinapse-ai/core/doctor/formatters/text.js +1 -0
- package/.sinapse-ai/core/elicitation/agent-elicitation.js +1 -1
- package/.sinapse-ai/core/elicitation/elicitation-engine.js +1 -0
- package/.sinapse-ai/core/elicitation/session-manager.js +1 -0
- package/.sinapse-ai/core/elicitation/task-elicitation.js +1 -1
- package/.sinapse-ai/core/events/dashboard-emitter.js +1 -0
- package/.sinapse-ai/core/events/index.js +1 -0
- package/.sinapse-ai/core/events/types.js +1 -0
- package/.sinapse-ai/core/execution/autonomous-build-loop.js +1 -0
- package/.sinapse-ai/core/execution/build-orchestrator.js +1 -0
- package/.sinapse-ai/core/execution/build-state-manager.js +1 -0
- package/.sinapse-ai/core/execution/context-injector.js +1 -0
- package/.sinapse-ai/core/execution/parallel-executor.js +1 -0
- package/.sinapse-ai/core/execution/parallel-monitor.js +1 -0
- package/.sinapse-ai/core/execution/rate-limit-manager.js +1 -0
- package/.sinapse-ai/core/execution/result-aggregator.js +1 -0
- package/.sinapse-ai/core/execution/semantic-merge-engine.js +1 -0
- package/.sinapse-ai/core/execution/subagent-dispatcher.js +1 -0
- package/.sinapse-ai/core/execution/wave-executor.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/cli.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/data-sources/code-intel-source.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/data-sources/metrics-source.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/data-sources/registry-source.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/formatters/dot-formatter.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/formatters/html-formatter.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/formatters/json-formatter.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/formatters/mermaid-formatter.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/index.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/renderers/stats-renderer.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/renderers/status-renderer.js +1 -0
- package/.sinapse-ai/core/graph-dashboard/renderers/tree-renderer.js +1 -0
- package/.sinapse-ai/core/health-check/base-check.js +1 -0
- package/.sinapse-ai/core/health-check/check-registry.js +1 -0
- package/.sinapse-ai/core/health-check/checks/deployment/build-config.js +1 -0
- package/.sinapse-ai/core/health-check/checks/deployment/ci-config.js +1 -0
- package/.sinapse-ai/core/health-check/checks/deployment/deployment-readiness.js +1 -0
- package/.sinapse-ai/core/health-check/checks/deployment/docker-config.js +1 -0
- package/.sinapse-ai/core/health-check/checks/deployment/env-file.js +1 -0
- package/.sinapse-ai/core/health-check/checks/deployment/index.js +1 -0
- package/.sinapse-ai/core/health-check/checks/index.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/disk-space.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/environment-vars.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/git-install.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/ide-detection.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/index.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/memory.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/network.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/npm-install.js +1 -0
- package/.sinapse-ai/core/health-check/checks/local/shell-environment.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/agent-config.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/dependencies.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/framework-config.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/node-version.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/package-json.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/sinapse-directory.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/task-definitions.js +1 -0
- package/.sinapse-ai/core/health-check/checks/project/workflow-dependencies.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/branch-protection.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/commit-history.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/conflicts.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/git-repo.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/git-status.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/gitignore.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/index.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/large-files.js +1 -0
- package/.sinapse-ai/core/health-check/checks/repository/lockfile-integrity.js +1 -0
- package/.sinapse-ai/core/health-check/checks/services/api-endpoints.js +1 -0
- package/.sinapse-ai/core/health-check/checks/services/claude-code.js +1 -0
- package/.sinapse-ai/core/health-check/checks/services/github-cli.js +1 -0
- package/.sinapse-ai/core/health-check/checks/services/index.js +1 -2
- package/.sinapse-ai/core/health-check/checks/services/mcp-integration.js +1 -0
- package/.sinapse-ai/core/health-check/engine.js +1 -0
- package/.sinapse-ai/core/health-check/healers/backup-manager.js +1 -0
- package/.sinapse-ai/core/health-check/healers/index.js +1 -0
- package/.sinapse-ai/core/health-check/index.js +1 -0
- package/.sinapse-ai/core/health-check/reporters/console.js +1 -0
- package/.sinapse-ai/core/health-check/reporters/index.js +1 -0
- package/.sinapse-ai/core/health-check/reporters/markdown.js +1 -0
- package/.sinapse-ai/core/ideation/ideation-engine.js +1 -0
- package/.sinapse-ai/core/ids/README.md +1 -0
- package/.sinapse-ai/core/ids/circuit-breaker.js +1 -0
- package/.sinapse-ai/core/ids/framework-governor.js +1 -0
- package/.sinapse-ai/core/ids/gates/g1-epic-creation.js +1 -0
- package/.sinapse-ai/core/ids/gates/g2-story-creation.js +1 -0
- package/.sinapse-ai/core/ids/gates/g3-story-validation.js +1 -0
- package/.sinapse-ai/core/ids/gates/g4-dev-context.js +1 -0
- package/.sinapse-ai/core/ids/incremental-decision-engine.js +1 -0
- package/.sinapse-ai/core/ids/index.js +1 -0
- package/.sinapse-ai/core/ids/layer-classifier.js +1 -0
- package/.sinapse-ai/core/ids/registry-healer.js +1 -0
- package/.sinapse-ai/core/ids/registry-loader.js +1 -0
- package/.sinapse-ai/core/ids/registry-updater.js +1 -0
- package/.sinapse-ai/core/ids/verification-gate.js +1 -0
- package/.sinapse-ai/core/index.esm.js +1 -0
- package/.sinapse-ai/core/index.js +1 -0
- package/.sinapse-ai/core/manifest/manifest-generator.js +1 -0
- package/.sinapse-ai/core/manifest/manifest-validator.js +1 -0
- package/.sinapse-ai/core/mcp/config-migrator.js +1 -0
- package/.sinapse-ai/core/mcp/global-config-manager.js +1 -0
- package/.sinapse-ai/core/mcp/index.js +1 -0
- package/.sinapse-ai/core/mcp/os-detector.js +1 -0
- package/.sinapse-ai/core/mcp/symlink-manager.js +1 -0
- package/.sinapse-ai/core/memory/__tests__/active-modules.verify.js +1 -0
- package/.sinapse-ai/core/memory/gotchas-memory.js +1 -0
- package/.sinapse-ai/core/migration/migration-config.yaml +1 -0
- package/.sinapse-ai/core/migration/module-mapping.yaml +1 -0
- package/.sinapse-ai/core/orchestration/agent-invoker.js +1 -0
- package/.sinapse-ai/core/orchestration/bob-orchestrator.js +1 -0
- package/.sinapse-ai/core/orchestration/bob-status-writer.js +1 -0
- package/.sinapse-ai/core/orchestration/bob-surface-criteria.yaml +1 -0
- package/.sinapse-ai/core/orchestration/brownfield-handler.js +1 -0
- package/.sinapse-ai/core/orchestration/checklist-runner.js +1 -0
- package/.sinapse-ai/core/orchestration/cli-commands.js +1 -0
- package/.sinapse-ai/core/orchestration/condition-evaluator.js +1 -0
- package/.sinapse-ai/core/orchestration/context-manager.js +1 -0
- package/.sinapse-ai/core/orchestration/dashboard-integration.js +1 -0
- package/.sinapse-ai/core/orchestration/data-lifecycle-manager.js +1 -0
- package/.sinapse-ai/core/orchestration/epic-context-accumulator.js +1 -0
- package/.sinapse-ai/core/orchestration/execution-profile-resolver.js +1 -0
- package/.sinapse-ai/core/orchestration/executor-assignment.js +1 -0
- package/.sinapse-ai/core/orchestration/executors/epic-3-executor.js +1 -0
- package/.sinapse-ai/core/orchestration/executors/epic-4-executor.js +1 -0
- package/.sinapse-ai/core/orchestration/executors/epic-5-executor.js +1 -0
- package/.sinapse-ai/core/orchestration/executors/epic-6-executor.js +1 -0
- package/.sinapse-ai/core/orchestration/executors/epic-executor.js +1 -0
- package/.sinapse-ai/core/orchestration/executors/index.js +1 -0
- package/.sinapse-ai/core/orchestration/gate-evaluator.js +1 -0
- package/.sinapse-ai/core/orchestration/greenfield-handler.js +1 -0
- package/.sinapse-ai/core/orchestration/index.js +1 -0
- package/.sinapse-ai/core/orchestration/lock-manager.js +1 -0
- package/.sinapse-ai/core/orchestration/master-orchestrator.js +1 -0
- package/.sinapse-ai/core/orchestration/message-formatter.js +1 -0
- package/.sinapse-ai/core/orchestration/parallel-executor.js +1 -0
- package/.sinapse-ai/core/orchestration/recovery-handler.js +1 -0
- package/.sinapse-ai/core/orchestration/session-state.js +1 -0
- package/.sinapse-ai/core/orchestration/skill-dispatcher.js +1 -0
- package/.sinapse-ai/core/orchestration/subagent-prompt-builder.js +1 -0
- package/.sinapse-ai/core/orchestration/surface-checker.js +1 -0
- package/.sinapse-ai/core/orchestration/task-complexity-classifier.js +1 -0
- package/.sinapse-ai/core/orchestration/tech-stack-detector.js +1 -0
- package/.sinapse-ai/core/orchestration/terminal-spawner.js +1 -0
- package/.sinapse-ai/core/orchestration/workflow-executor.js +1 -0
- package/.sinapse-ai/core/orchestration/workflow-orchestrator.js +1 -0
- package/.sinapse-ai/core/permissions/__tests__/permission-mode.test.js +1 -0
- package/.sinapse-ai/core/permissions/index.js +1 -0
- package/.sinapse-ai/core/permissions/operation-guard.js +1 -0
- package/.sinapse-ai/core/permissions/permission-mode.js +1 -0
- package/.sinapse-ai/core/quality-gates/base-layer.js +1 -0
- package/.sinapse-ai/core/quality-gates/checklist-generator.js +1 -0
- package/.sinapse-ai/core/quality-gates/human-review-orchestrator.js +1 -0
- package/.sinapse-ai/core/quality-gates/index.js +244 -0
- package/.sinapse-ai/core/quality-gates/layer1-precommit.js +1 -0
- package/.sinapse-ai/core/quality-gates/layer2-pr-automation.js +1 -0
- package/.sinapse-ai/core/quality-gates/layer3-human-review.js +1 -0
- package/.sinapse-ai/core/quality-gates/notification-manager.js +1 -0
- package/.sinapse-ai/core/quality-gates/quality-gate-config.js +462 -0
- package/.sinapse-ai/core/quality-gates/quality-gate-config.yaml +105 -16
- package/.sinapse-ai/core/quality-gates/quality-gate-manager.js +1 -0
- package/.sinapse-ai/core/registry/README.md +1 -0
- package/.sinapse-ai/core/registry/build-registry.js +1 -0
- package/.sinapse-ai/core/registry/registry-loader.js +1 -0
- package/.sinapse-ai/core/registry/registry-schema.json +1 -0
- package/.sinapse-ai/core/registry/service-registry.json +0 -120
- package/.sinapse-ai/core/registry/validate-registry.js +1 -0
- package/.sinapse-ai/core/session/context-detector.js +1 -0
- package/.sinapse-ai/core/session/context-loader.js +1 -0
- package/.sinapse-ai/core/synapse/context/context-builder.js +1 -0
- package/.sinapse-ai/core/synapse/context/context-tracker.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/consistency-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/hook-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/manifest-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/output-analyzer.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/pipeline-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/quality-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/relevance-matrix.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/safe-read-json.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/session-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/timing-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/collectors/uap-collector.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/report-formatter.js +1 -0
- package/.sinapse-ai/core/synapse/diagnostics/synapse-diagnostics.js +1 -0
- package/.sinapse-ai/core/synapse/domain/domain-loader.js +1 -0
- package/.sinapse-ai/core/synapse/engine.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l0-constitution.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l1-global.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l2-agent.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l3-workflow.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l4-task.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l5-squad.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l6-keyword.js +1 -0
- package/.sinapse-ai/core/synapse/layers/l7-star-command.js +1 -0
- package/.sinapse-ai/core/synapse/layers/layer-processor.js +1 -0
- package/.sinapse-ai/core/synapse/memory/memory-bridge.js +1 -0
- package/.sinapse-ai/core/synapse/memory/synapse-memory-provider.js +1 -0
- package/.sinapse-ai/core/synapse/output/formatter.js +1 -0
- package/.sinapse-ai/core/synapse/runtime/hook-runtime.js +1 -0
- package/.sinapse-ai/core/synapse/scripts/generate-constitution.js +1 -0
- package/.sinapse-ai/core/synapse/session/session-manager.js +1 -0
- package/.sinapse-ai/core/synapse/utils/atomic-write.js +1 -0
- package/.sinapse-ai/core/synapse/utils/paths.js +1 -0
- package/.sinapse-ai/core/synapse/utils/tokens.js +1 -0
- package/.sinapse-ai/core/ui/index.js +1 -0
- package/.sinapse-ai/core/ui/observability-panel.js +1 -0
- package/.sinapse-ai/core/ui/panel-renderer.js +1 -0
- package/.sinapse-ai/core/utils/output-formatter.js +1 -0
- package/.sinapse-ai/core/utils/security-utils.js +1 -0
- package/.sinapse-ai/core/utils/yaml-validator.js +1 -0
- package/.sinapse-ai/data/agent-config-requirements.yaml +1 -0
- package/.sinapse-ai/data/capability-detection.js +1 -0
- package/.sinapse-ai/data/entity-registry.yaml +1654 -1831
- package/.sinapse-ai/data/learned-patterns.yaml +1 -0
- package/.sinapse-ai/data/mcp-discipline.js +1 -0
- package/.sinapse-ai/data/mcp-tool-examples.yaml +1 -0
- package/.sinapse-ai/data/registry-update-log.jsonl +709 -0
- package/.sinapse-ai/data/tok2-validation.js +1 -0
- package/.sinapse-ai/data/tok3-token-comparison.js +1 -0
- package/.sinapse-ai/data/tool-registry.yaml +1 -0
- package/.sinapse-ai/data/tool-search-validation.js +1 -0
- package/.sinapse-ai/data/workflow-chains.yaml +1 -0
- package/.sinapse-ai/data/workflow-patterns.yaml +1 -0
- package/.sinapse-ai/data/workflow-state-schema.yaml +1 -0
- package/.sinapse-ai/development/README.md +1 -0
- package/.sinapse-ai/development/agents/analyst/MEMORY.md +1 -0
- package/.sinapse-ai/development/agents/analyst.md +90 -0
- package/.sinapse-ai/development/agents/architect.md +73 -0
- package/.sinapse-ai/development/agents/data-engineer/MEMORY.md +1 -0
- package/.sinapse-ai/development/agents/data-engineer.md +1 -0
- package/.sinapse-ai/development/agents/developer/MEMORY.md +1 -0
- package/.sinapse-ai/development/agents/developer.md +69 -0
- package/.sinapse-ai/development/agents/devops/MEMORY.md +1 -0
- package/.sinapse-ai/development/agents/devops.md +117 -0
- package/.sinapse-ai/development/agents/project-lead/MEMORY.md +1 -0
- package/.sinapse-ai/development/agents/quality-gate/MEMORY.md +1 -0
- package/.sinapse-ai/development/agents/quality-gate.md +85 -0
- package/.sinapse-ai/development/agents/sprint-lead/MEMORY.md +1 -0
- package/.sinapse-ai/development/agents/ux/MEMORY.md +1 -0
- package/.sinapse-ai/development/checklists/agent-quality-gate.md +28 -0
- package/.sinapse-ai/development/checklists/brownfield-compatibility-checklist.md +21 -0
- package/.sinapse-ai/development/checklists/code-review-checklist.md +106 -0
- package/.sinapse-ai/development/checklists/issue-triage-checklist.md +10 -0
- package/.sinapse-ai/development/checklists/memory-audit-checklist.md +17 -0
- package/.sinapse-ai/development/checklists/pr-quality-checklist.md +72 -0
- package/.sinapse-ai/development/checklists/security-deployment-checklist.md +54 -0
- package/.sinapse-ai/development/checklists/self-critique-checklist.md +20 -1
- package/.sinapse-ai/development/data/quality-dimensions-framework.md +1 -0
- package/.sinapse-ai/development/data/tier-system-framework.md +1 -0
- package/.sinapse-ai/development/scripts/activation-runtime.js +1 -0
- package/.sinapse-ai/development/scripts/agent-assignment-resolver.js +1 -0
- package/.sinapse-ai/development/scripts/agent-config-loader.js +1 -0
- package/.sinapse-ai/development/scripts/agent-exit-hooks.js +1 -0
- package/.sinapse-ai/development/scripts/apply-inline-greeting-all-agents.js +1 -0
- package/.sinapse-ai/development/scripts/approval-workflow.js +1 -1
- package/.sinapse-ai/development/scripts/backlog-manager.js +1 -0
- package/.sinapse-ai/development/scripts/backup-manager.js +1 -1
- package/.sinapse-ai/development/scripts/batch-update-agents-session-context.js +1 -0
- package/.sinapse-ai/development/scripts/branch-manager.js +1 -1
- package/.sinapse-ai/development/scripts/code-quality-improver.js +1 -1
- package/.sinapse-ai/development/scripts/commit-message-generator.js +1 -1
- package/.sinapse-ai/development/scripts/conflict-resolver.js +1 -1
- package/.sinapse-ai/development/scripts/decision-context.js +1 -0
- package/.sinapse-ai/development/scripts/decision-log-generator.js +1 -0
- package/.sinapse-ai/development/scripts/decision-log-indexer.js +1 -0
- package/.sinapse-ai/development/scripts/decision-recorder.js +1 -0
- package/.sinapse-ai/development/scripts/dependency-analyzer.js +1 -1
- package/.sinapse-ai/development/scripts/dev-context-loader.js +1 -0
- package/.sinapse-ai/development/scripts/diff-generator.js +1 -1
- package/.sinapse-ai/development/scripts/elicitation-engine.js +1 -1
- package/.sinapse-ai/development/scripts/elicitation-session-manager.js +1 -1
- package/.sinapse-ai/development/scripts/generate-greeting.js +1 -0
- package/.sinapse-ai/development/scripts/git-wrapper.js +1 -1
- package/.sinapse-ai/development/scripts/greeting-builder.js +1 -0
- package/.sinapse-ai/development/scripts/greeting-config-cli.js +1 -0
- package/.sinapse-ai/development/scripts/greeting-preference-manager.js +1 -0
- package/.sinapse-ai/development/scripts/issue-triage.js +1 -0
- package/.sinapse-ai/development/scripts/manifest-preview.js +1 -1
- package/.sinapse-ai/development/scripts/metrics-tracker.js +1 -1
- package/.sinapse-ai/development/scripts/migrate-task-to-v2.js +1 -0
- package/.sinapse-ai/development/scripts/modification-validator.js +1 -1
- package/.sinapse-ai/development/scripts/pattern-learner.js +1 -1
- package/.sinapse-ai/development/scripts/performance-analyzer.js +1 -1
- package/.sinapse-ai/development/scripts/populate-entity-registry.js +1 -0
- package/.sinapse-ai/development/scripts/refactoring-suggester.js +1 -1
- package/.sinapse-ai/development/scripts/rollback-handler.js +1 -1
- package/.sinapse-ai/development/scripts/security-checker.js +1 -1
- package/.sinapse-ai/development/scripts/skill-validator.js +1 -0
- package/.sinapse-ai/development/scripts/squad/README.md +1 -0
- package/.sinapse-ai/development/scripts/squad/index.js +1 -0
- package/.sinapse-ai/development/scripts/squad/squad-analyzer.js +1 -0
- package/.sinapse-ai/development/scripts/squad/squad-designer.js +1 -0
- package/.sinapse-ai/development/scripts/squad/squad-extender.js +1 -0
- package/.sinapse-ai/development/scripts/squad/squad-generator.js +1 -0
- package/.sinapse-ai/development/scripts/squad/squad-loader.js +1 -0
- package/.sinapse-ai/development/scripts/squad/squad-migrator.js +1 -0
- package/.sinapse-ai/development/scripts/squad/squad-validator.js +1 -0
- package/.sinapse-ai/development/scripts/story-index-generator.js +1 -0
- package/.sinapse-ai/development/scripts/story-manager.js +1 -0
- package/.sinapse-ai/development/scripts/story-update-hook.js +1 -0
- package/.sinapse-ai/development/scripts/task-identifier-resolver.js +1 -0
- package/.sinapse-ai/development/scripts/template-engine.js +1 -1
- package/.sinapse-ai/development/scripts/template-validator.js +1 -1
- package/.sinapse-ai/development/scripts/test-generator.js +1 -1
- package/.sinapse-ai/development/scripts/test-greeting-system.js +1 -0
- package/.sinapse-ai/development/scripts/transaction-manager.js +1 -1
- package/.sinapse-ai/development/scripts/unified-activation-pipeline.js +1 -0
- package/.sinapse-ai/development/scripts/usage-tracker.js +1 -1
- package/.sinapse-ai/development/scripts/validate-filenames.js +1 -0
- package/.sinapse-ai/development/scripts/validate-task-v2.js +1 -0
- package/.sinapse-ai/development/scripts/verify-workflow-gaps.js +1 -0
- package/.sinapse-ai/development/scripts/version-tracker.js +1 -1
- package/.sinapse-ai/development/scripts/workflow-navigator.js +1 -0
- package/.sinapse-ai/development/scripts/workflow-state-manager.js +1 -0
- package/.sinapse-ai/development/scripts/workflow-validator.js +1 -0
- package/.sinapse-ai/development/scripts/yaml-validator.js +1 -1
- package/.sinapse-ai/development/skills/debug.md +57 -0
- package/.sinapse-ai/development/skills/fast-review.md +69 -0
- package/.sinapse-ai/development/skills/research-synthesis.md +77 -0
- package/.sinapse-ai/development/skills/security-scan.md +73 -0
- package/.sinapse-ai/development/skills/verify.md +53 -0
- package/.sinapse-ai/development/tasks/add-mcp.md +1 -0
- package/.sinapse-ai/development/tasks/advanced-elicitation.md +1 -1
- package/.sinapse-ai/development/tasks/analyst-facilitate-brainstorming.md +1 -1
- package/.sinapse-ai/development/tasks/analyze-brownfield.md +1 -0
- package/.sinapse-ai/development/tasks/analyze-cross-artifact.md +1 -0
- package/.sinapse-ai/development/tasks/analyze-framework.md +1 -1
- package/.sinapse-ai/development/tasks/analyze-performance.md +1 -0
- package/.sinapse-ai/development/tasks/architect-analyze-impact.md +1 -1
- package/.sinapse-ai/development/tasks/audit-codebase.md +1 -0
- package/.sinapse-ai/development/tasks/audit-tailwind-config.md +1 -0
- package/.sinapse-ai/development/tasks/audit-utilities.md +1 -0
- package/.sinapse-ai/development/tasks/blocks/README.md +1 -0
- package/.sinapse-ai/development/tasks/blocks/agent-prompt-template.md +1 -0
- package/.sinapse-ai/development/tasks/blocks/context-loading.md +1 -0
- package/.sinapse-ai/development/tasks/blocks/execution-pattern.md +1 -0
- package/.sinapse-ai/development/tasks/blocks/finalization.md +1 -0
- package/.sinapse-ai/development/tasks/bootstrap-shadcn-library.md +1 -0
- package/.sinapse-ai/development/tasks/build-component.md +1 -0
- package/.sinapse-ai/development/tasks/calculate-roi.md +1 -0
- package/.sinapse-ai/development/tasks/check-docs-links.md +1 -0
- package/.sinapse-ai/development/tasks/ci-cd-configuration.md +1 -0
- package/.sinapse-ai/development/tasks/cleanup-utilities.md +1 -0
- package/.sinapse-ai/development/tasks/cleanup-worktrees.md +1 -0
- package/.sinapse-ai/development/tasks/collaborative-edit.md +1 -1
- package/.sinapse-ai/development/tasks/compose-molecule.md +1 -0
- package/.sinapse-ai/development/tasks/consolidate-patterns.md +1 -0
- package/.sinapse-ai/development/tasks/correct-course.md +1 -1
- package/.sinapse-ai/development/tasks/create-doc.md +1 -0
- package/.sinapse-ai/development/tasks/create-task.md +1 -1
- package/.sinapse-ai/development/tasks/db-analyze-hotpaths.md +1 -0
- package/.sinapse-ai/development/tasks/db-apply-migration.md +1 -0
- package/.sinapse-ai/development/tasks/db-bootstrap.md +1 -0
- package/.sinapse-ai/development/tasks/db-domain-modeling.md +1 -0
- package/.sinapse-ai/development/tasks/db-dry-run.md +1 -0
- package/.sinapse-ai/development/tasks/db-env-check.md +1 -0
- package/.sinapse-ai/development/tasks/db-explain.md +1 -0
- package/.sinapse-ai/development/tasks/db-impersonate.md +1 -0
- package/.sinapse-ai/development/tasks/db-load-csv.md +1 -0
- package/.sinapse-ai/development/tasks/db-policy-apply.md +1 -0
- package/.sinapse-ai/development/tasks/db-rls-audit.md +1 -0
- package/.sinapse-ai/development/tasks/db-rollback.md +1 -0
- package/.sinapse-ai/development/tasks/db-run-sql.md +1 -0
- package/.sinapse-ai/development/tasks/db-schema-audit.md +1 -0
- package/.sinapse-ai/development/tasks/db-seed.md +1 -0
- package/.sinapse-ai/development/tasks/db-smoke-test.md +1 -0
- package/.sinapse-ai/development/tasks/db-snapshot.md +1 -0
- package/.sinapse-ai/development/tasks/db-squad-integration.md +1 -0
- package/.sinapse-ai/development/tasks/db-supabase-setup.md +1 -0
- package/.sinapse-ai/development/tasks/db-verify-order.md +1 -0
- package/.sinapse-ai/development/tasks/deprecate-component.md +1 -1
- package/.sinapse-ai/development/tasks/dev-apply-qa-fixes.md +1 -0
- package/.sinapse-ai/development/tasks/dev-improve-code-quality.md +1 -1
- package/.sinapse-ai/development/tasks/dev-optimize-performance.md +1 -1
- package/.sinapse-ai/development/tasks/dev-suggest-refactoring.md +1 -1
- package/.sinapse-ai/development/tasks/dev-validate-next-story.md +1 -1
- package/.sinapse-ai/development/tasks/document-gotchas.md +1 -0
- package/.sinapse-ai/development/tasks/document-project.md +1 -1
- package/.sinapse-ai/development/tasks/export-design-tokens-dtcg.md +1 -0
- package/.sinapse-ai/development/tasks/extend-pattern.md +1 -0
- package/.sinapse-ai/development/tasks/extract-tokens.md +1 -0
- package/.sinapse-ai/development/tasks/facilitate-brainstorming-session.md +1 -0
- package/.sinapse-ai/development/tasks/generate-ai-frontend-prompt.md +1 -1
- package/.sinapse-ai/development/tasks/generate-documentation.md +1 -0
- package/.sinapse-ai/development/tasks/generate-migration-strategy.md +1 -0
- package/.sinapse-ai/development/tasks/generate-shock-report.md +1 -0
- package/.sinapse-ai/development/tasks/github-devops-pre-push-quality-gate.md +1 -0
- package/.sinapse-ai/development/tasks/github-devops-repository-cleanup.md +1 -0
- package/.sinapse-ai/development/tasks/github-devops-version-management.md +1 -0
- package/.sinapse-ai/development/tasks/github-issue-triage.md +1 -0
- package/.sinapse-ai/development/tasks/ids-health.md +1 -0
- package/.sinapse-ai/development/tasks/ids-query.md +1 -0
- package/.sinapse-ai/development/tasks/improve-self.md +1 -1
- package/.sinapse-ai/development/tasks/index-docs.md +1 -1
- package/.sinapse-ai/development/tasks/integrate-squad.md +1 -0
- package/.sinapse-ai/development/tasks/kb-mode-interaction.md +1 -1
- package/.sinapse-ai/development/tasks/learn-patterns.md +1 -1
- package/.sinapse-ai/development/tasks/list-mcps.md +1 -0
- package/.sinapse-ai/development/tasks/mcp-workflow.md +1 -0
- package/.sinapse-ai/development/tasks/merge-worktree.md +1 -0
- package/.sinapse-ai/development/tasks/modify-agent.md +1 -1
- package/.sinapse-ai/development/tasks/modify-task.md +1 -1
- package/.sinapse-ai/development/tasks/modify-workflow.md +1 -1
- package/.sinapse-ai/development/tasks/orchestrate-resume.md +1 -0
- package/.sinapse-ai/development/tasks/orchestrate-status.md +1 -0
- package/.sinapse-ai/development/tasks/orchestrate-stop.md +1 -0
- package/.sinapse-ai/development/tasks/orchestrate.md +1 -0
- package/.sinapse-ai/development/tasks/po-manage-story-backlog.md +1 -0
- package/.sinapse-ai/development/tasks/po-pull-story-from-clickup.md +1 -0
- package/.sinapse-ai/development/tasks/po-pull-story.md +1 -0
- package/.sinapse-ai/development/tasks/po-sync-story-to-clickup.md +1 -0
- package/.sinapse-ai/development/tasks/po-sync-story.md +1 -0
- package/.sinapse-ai/development/tasks/propose-modification.md +1 -1
- package/.sinapse-ai/development/tasks/publish-npm.md +1 -0
- package/.sinapse-ai/development/tasks/qa-browser-console-check.md +1 -0
- package/.sinapse-ai/development/tasks/qa-evidence-requirements.md +1 -0
- package/.sinapse-ai/development/tasks/qa-false-positive-detection.md +1 -0
- package/.sinapse-ai/development/tasks/qa-gate.md +1 -1
- package/.sinapse-ai/development/tasks/qa-generate-tests.md +1 -1
- package/.sinapse-ai/development/tasks/qa-library-validation.md +1 -0
- package/.sinapse-ai/development/tasks/qa-migration-validation.md +1 -0
- package/.sinapse-ai/development/tasks/qa-nfr-assess.md +1 -1
- package/.sinapse-ai/development/tasks/qa-review-proposal.md +1 -1
- package/.sinapse-ai/development/tasks/qa-risk-profile.md +1 -1
- package/.sinapse-ai/development/tasks/qa-security-checklist.md +1 -0
- package/.sinapse-ai/development/tasks/qa-test-design.md +1 -1
- package/.sinapse-ai/development/tasks/qa-trace-requirements.md +1 -1
- package/.sinapse-ai/development/tasks/remove-mcp.md +1 -0
- package/.sinapse-ai/development/tasks/review-contributor-pr.md +1 -0
- package/.sinapse-ai/development/tasks/run-design-system-pipeline.md +1 -0
- package/.sinapse-ai/development/tasks/run-workflow.md +1 -0
- package/.sinapse-ai/development/tasks/search-mcp.md +1 -0
- package/.sinapse-ai/development/tasks/security-audit.md +1 -0
- package/.sinapse-ai/development/tasks/security-scan.md +1 -0
- package/.sinapse-ai/development/tasks/session-resume.md +1 -0
- package/.sinapse-ai/development/tasks/setup-database.md +1 -0
- package/.sinapse-ai/development/tasks/setup-design-system.md +1 -0
- package/.sinapse-ai/development/tasks/setup-project-docs.md +1 -0
- package/.sinapse-ai/development/tasks/shard-doc.md +1 -1
- package/.sinapse-ai/development/tasks/sm-create-next-story.md +1 -0
- package/.sinapse-ai/development/tasks/squad-creator-analyze.md +1 -0
- package/.sinapse-ai/development/tasks/squad-creator-design.md +1 -0
- package/.sinapse-ai/development/tasks/squad-creator-extend.md +1 -0
- package/.sinapse-ai/development/tasks/squad-creator-list.md +1 -0
- package/.sinapse-ai/development/tasks/squad-creator-migrate.md +1 -0
- package/.sinapse-ai/development/tasks/squad-creator-validate.md +1 -0
- package/.sinapse-ai/development/tasks/sync-documentation.md +1 -1
- package/.sinapse-ai/development/tasks/sync-registry-intel.md +1 -0
- package/.sinapse-ai/development/tasks/tailwind-upgrade.md +1 -0
- package/.sinapse-ai/development/tasks/test-as-user.md +1 -0
- package/.sinapse-ai/development/tasks/test-validation-task.md +1 -0
- package/.sinapse-ai/development/tasks/triage-github-issues.md +1 -0
- package/.sinapse-ai/development/tasks/undo-last.md +1 -1
- package/.sinapse-ai/development/tasks/update-manifest.md +1 -1
- package/.sinapse-ai/development/tasks/update-source-tree.md +1 -0
- package/.sinapse-ai/development/tasks/ux-create-wireframe.md +1 -0
- package/.sinapse-ai/development/tasks/ux-ds-scan-artifact.md +1 -0
- package/.sinapse-ai/development/tasks/ux-user-research.md +1 -0
- package/.sinapse-ai/development/tasks/validate-agents.md +1 -0
- package/.sinapse-ai/development/tasks/validate-workflow.md +1 -0
- package/.sinapse-ai/development/tasks/yolo-toggle.md +1 -0
- package/.sinapse-ai/development/templates/ptc-entity-validation.md +1 -0
- package/.sinapse-ai/development/templates/ptc-qa-gate.md +1 -0
- package/.sinapse-ai/development/templates/ptc-research-aggregation.md +1 -0
- package/.sinapse-ai/development/templates/research-prompt-tmpl.md +1 -0
- package/.sinapse-ai/development/templates/service-template/README.md.hbs +159 -158
- package/.sinapse-ai/development/templates/service-template/__tests__/index.test.ts.hbs +238 -237
- package/.sinapse-ai/development/templates/service-template/client.ts.hbs +404 -403
- package/.sinapse-ai/development/templates/service-template/errors.ts.hbs +183 -182
- package/.sinapse-ai/development/templates/service-template/index.ts.hbs +121 -120
- package/.sinapse-ai/development/templates/service-template/jest.config.js +1 -0
- package/.sinapse-ai/development/templates/service-template/package.json.hbs +88 -87
- package/.sinapse-ai/development/templates/service-template/tsconfig.json +1 -0
- package/.sinapse-ai/development/templates/service-template/types.ts.hbs +146 -145
- package/.sinapse-ai/development/templates/sinapse-doc-template.md +1 -0
- package/.sinapse-ai/development/templates/squad/agent-template.md +18 -4
- package/.sinapse-ai/development/templates/squad/checklist-template.md +14 -5
- package/.sinapse-ai/development/templates/squad/data-template.yaml +1 -0
- package/.sinapse-ai/development/templates/squad/script-template.js +1 -0
- package/.sinapse-ai/development/templates/squad/task-template.md +8 -0
- package/.sinapse-ai/development/templates/squad/template-template.md +1 -0
- package/.sinapse-ai/development/templates/squad/tool-template.js +1 -0
- package/.sinapse-ai/development/templates/squad/workflow-template.yaml +8 -0
- package/.sinapse-ai/development/templates/squad-template/LICENSE +22 -21
- package/.sinapse-ai/development/templates/squad-template/README.md +1 -0
- package/.sinapse-ai/development/templates/squad-template/agents/example-agent.yaml +1 -0
- package/.sinapse-ai/development/templates/squad-template/package.json +1 -0
- package/.sinapse-ai/development/templates/squad-template/squad.yaml +1 -0
- package/.sinapse-ai/development/templates/squad-template/tasks/example-task.yaml +1 -0
- package/.sinapse-ai/development/templates/squad-template/templates/example-template.md +1 -0
- package/.sinapse-ai/development/templates/squad-template/tests/example-agent.test.js +1 -0
- package/.sinapse-ai/development/templates/squad-template/workflows/example-workflow.yaml +1 -0
- package/.sinapse-ai/development/workflows/README.md +1 -0
- package/.sinapse-ai/development/workflows/auto-worktree.yaml +1 -0
- package/.sinapse-ai/development/workflows/brownfield-discovery.yaml +1 -0
- package/.sinapse-ai/development/workflows/brownfield-fullstack.yaml +1 -0
- package/.sinapse-ai/development/workflows/brownfield-service.yaml +1 -0
- package/.sinapse-ai/development/workflows/brownfield-ui.yaml +1 -0
- package/.sinapse-ai/development/workflows/design-system-build-quality.yaml +1 -0
- package/.sinapse-ai/development/workflows/development-cycle.yaml +1 -0
- package/.sinapse-ai/development/workflows/epic-orchestration.yaml +1 -0
- package/.sinapse-ai/development/workflows/fast-track.yaml +87 -0
- package/.sinapse-ai/development/workflows/greenfield-fullstack.yaml +1 -0
- package/.sinapse-ai/development/workflows/greenfield-service.yaml +1 -0
- package/.sinapse-ai/development/workflows/greenfield-ui.yaml +1 -0
- package/.sinapse-ai/development/workflows/qa-loop.yaml +1 -0
- package/.sinapse-ai/development/workflows/spec-pipeline.yaml +1 -0
- package/.sinapse-ai/development/workflows/story-development-cycle.yaml +1 -0
- package/.sinapse-ai/docs/standards/EXECUTOR-DECISION-TREE.md +1 -0
- package/.sinapse-ai/docs/standards/OPEN-SOURCE-VS-SERVICE-DIFFERENCES.md +1 -0
- package/.sinapse-ai/docs/standards/QUALITY-GATES-SPECIFICATION.md +1 -0
- package/.sinapse-ai/docs/standards/SINAPSE-COLOR-PALETTE-QUICK-REFERENCE.md +1 -0
- package/.sinapse-ai/docs/standards/SINAPSE-COLOR-PALETTE-V2.1.md +1 -0
- package/.sinapse-ai/docs/standards/SINAPSE-LIVRO-DE-OURO-V2.1-COMPLETE.md +1 -0
- package/.sinapse-ai/docs/standards/STANDARDS-INDEX.md +1 -0
- package/.sinapse-ai/docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md +1 -0
- package/.sinapse-ai/docs/standards/TASK-FORMAT-SPECIFICATION-V1.md +1 -0
- package/.sinapse-ai/elicitation/agent-elicitation.js +1 -1
- package/.sinapse-ai/elicitation/task-elicitation.js +1 -1
- package/.sinapse-ai/elicitation/workflow-elicitation.js +1 -1
- package/.sinapse-ai/framework-config.yaml +1 -16
- package/.sinapse-ai/hooks/ids-post-commit.js +1 -0
- package/.sinapse-ai/hooks/ids-pre-push.js +1 -0
- package/.sinapse-ai/hooks/unified/README.md +11 -11
- package/.sinapse-ai/hooks/unified/hook-interface.js +1 -0
- package/.sinapse-ai/hooks/unified/hook-registry.js +1 -0
- package/.sinapse-ai/hooks/unified/index.js +1 -0
- package/.sinapse-ai/hooks/unified/runners/precompact-runner.js +1 -0
- package/.sinapse-ai/index.esm.js +1 -1
- package/.sinapse-ai/index.js +1 -1
- package/.sinapse-ai/infrastructure/README.md +1 -0
- package/.sinapse-ai/infrastructure/contracts/compatibility/sinapse-4.0.4.yaml +1 -21
- package/.sinapse-ai/infrastructure/index.js +1 -0
- package/.sinapse-ai/infrastructure/integrations/ai-providers/README.md +1 -0
- package/.sinapse-ai/infrastructure/integrations/ai-providers/ai-provider-factory.js +7 -5
- package/.sinapse-ai/infrastructure/integrations/ai-providers/ai-provider.js +1 -0
- package/.sinapse-ai/infrastructure/integrations/ai-providers/claude-provider.js +1 -0
- package/.sinapse-ai/infrastructure/integrations/ai-providers/index.js +1 -0
- package/.sinapse-ai/infrastructure/integrations/pm-adapters/README.md +1 -0
- package/.sinapse-ai/infrastructure/integrations/pm-adapters/clickup-adapter.js +1 -0
- package/.sinapse-ai/infrastructure/integrations/pm-adapters/github-adapter.js +1 -0
- package/.sinapse-ai/infrastructure/integrations/pm-adapters/jira-adapter.js +1 -0
- package/.sinapse-ai/infrastructure/integrations/pm-adapters/local-adapter.js +1 -0
- package/.sinapse-ai/infrastructure/schemas/agent-v3-schema.json +1 -0
- package/.sinapse-ai/infrastructure/schemas/task-v3-schema.json +1 -0
- package/.sinapse-ai/infrastructure/scripts/approach-manager.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/approval-workflow.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/asset-inventory.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/atomic-layer-classifier.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/backup-manager.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/batch-creator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/branch-manager.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/capability-analyzer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/changelog-generator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/cicd-discovery.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/clickup-helpers.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/code-quality-improver.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/codebase-mapper.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/collect-tool-usage.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/commit-message-generator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/component-generator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/component-metadata.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/component-search.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/config-cache.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/config-loader.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/conflict-resolver.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/coverage-analyzer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/dashboard-status-writer.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/dependency-analyzer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/dependency-impact-analyzer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/diff-generator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-integrity/brownfield-analyzer.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-integrity/config-generator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-integrity/deployment-config-loader.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-integrity/doc-generator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-integrity/gitignore-generator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-integrity/index.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-integrity/mode-detector.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/documentation-synchronizer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/framework-analyzer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/generate-optimization-report.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/generate-settings-json.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/git-config-detector.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/git-hooks/post-commit.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/git-wrapper.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/gotchas-documenter.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/README.md +1 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/agent-parser.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/redirect-generator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/claude-code.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/validator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/improvement-engine.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/improvement-validator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/llm-routing/install-llm-routing.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-free-tracked.sh +1 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-free.cmd +81 -80
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-free.sh +1 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-max.cmd +27 -26
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-max.sh +1 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-proxy.sh +1 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-usage.sh +1 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/usage-tracker/index.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/migrate-agent.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/modification-risk-assessment.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/modification-validator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/output-formatter.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/path-analyzer.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/pattern-extractor.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/performance-analyzer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/performance-and-error-resolver.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/performance-optimizer.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/performance-tracker.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/plan-tracker.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/pm-adapter-factory.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/pm-adapter.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/pr-review-ai.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/project-status-loader.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/qa-loop-orchestrator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/qa-report-generator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/recovery-tracker.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/refactoring-suggester.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/repository-detector.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/rollback-manager.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/sandbox-tester.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/security-checker.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/sinapse-validator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/spot-check-validator.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/status-mapper.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/story-worktree-hooks.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/stuck-detector.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/subtask-verifier.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/template-engine.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/template-validator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/test-discovery.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/test-generator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/test-quality-assessment.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/test-utilities-fast.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/test-utilities.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/tool-resolver.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/transaction-manager.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/usage-analytics.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/validate-agents.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/validate-claude-integration.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +3 -1
- package/.sinapse-ai/infrastructure/scripts/validate-output-pattern.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/validate-user-profile.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/visual-impact-generator.js +1 -1
- package/.sinapse-ai/infrastructure/scripts/worktree-manager.js +1 -0
- package/.sinapse-ai/infrastructure/scripts/yaml-validator.js +1 -1
- package/.sinapse-ai/infrastructure/templates/coderabbit.yaml.template +280 -279
- package/.sinapse-ai/infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml +1 -0
- package/.sinapse-ai/infrastructure/templates/core-config/core-config-greenfield.tmpl.yaml +1 -0
- package/.sinapse-ai/infrastructure/templates/github-workflows/README.md +1 -0
- package/.sinapse-ai/infrastructure/templates/github-workflows/ci.yml.template +170 -169
- package/.sinapse-ai/infrastructure/templates/github-workflows/pr-automation.yml.template +331 -330
- package/.sinapse-ai/infrastructure/templates/github-workflows/release.yml.template +197 -196
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +19 -18
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-node.tmpl +86 -85
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-python.tmpl +146 -145
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-sinapse-base.tmpl +64 -63
- package/.sinapse-ai/infrastructure/templates/project-docs/coding-standards-tmpl.md +1 -0
- package/.sinapse-ai/infrastructure/templates/project-docs/source-tree-tmpl.md +1 -0
- package/.sinapse-ai/infrastructure/templates/project-docs/tech-stack-tmpl.md +1 -0
- package/.sinapse-ai/infrastructure/templates/sinapse-sync.yaml.template +183 -182
- package/.sinapse-ai/infrastructure/tests/project-status-loader.test.js +1 -0
- package/.sinapse-ai/infrastructure/tests/regression-suite-v2.md +1 -0
- package/.sinapse-ai/infrastructure/tests/validate-module.js +1 -0
- package/.sinapse-ai/infrastructure/tests/worktree-manager.test.js +1 -0
- package/.sinapse-ai/infrastructure/tools/README.md +1 -0
- package/.sinapse-ai/infrastructure/tools/cli/github-cli.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/cli/llm-routing.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/cli/railway-cli.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/cli/supabase-cli.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/local/ffmpeg.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/21st-dev-magic.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/browser.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/clickup.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/context7.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/desktop-commander.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/exa.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/google-workspace.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/n8n.yaml +1 -0
- package/.sinapse-ai/infrastructure/tools/mcp/supabase.yaml +1 -0
- package/.sinapse-ai/install-manifest.yaml +1933 -1937
- package/.sinapse-ai/local-config.yaml.template +65 -71
- package/.sinapse-ai/manifests/agents.csv +29 -0
- package/.sinapse-ai/manifests/schema/manifest-schema.json +1 -0
- package/.sinapse-ai/manifests/tasks.csv +204 -0
- package/.sinapse-ai/manifests/workers.csv +196 -0
- package/.sinapse-ai/monitor/hooks/lib/__init__.py +2 -1
- package/.sinapse-ai/monitor/hooks/lib/enrich.py +59 -58
- package/.sinapse-ai/monitor/hooks/lib/send_event.py +48 -47
- package/.sinapse-ai/monitor/hooks/notification.py +30 -29
- package/.sinapse-ai/monitor/hooks/post_tool_use.py +46 -45
- package/.sinapse-ai/monitor/hooks/pre_compact.py +30 -29
- package/.sinapse-ai/monitor/hooks/pre_tool_use.py +41 -40
- package/.sinapse-ai/monitor/hooks/stop.py +30 -29
- package/.sinapse-ai/monitor/hooks/subagent_stop.py +30 -29
- package/.sinapse-ai/monitor/hooks/user_prompt_submit.py +39 -38
- package/.sinapse-ai/presets/README.md +1 -0
- package/.sinapse-ai/product/README.md +1 -0
- package/.sinapse-ai/product/checklists/accessibility-wcag-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/architect-checklist.md +1 -1
- package/.sinapse-ai/product/checklists/change-checklist.md +1 -1
- package/.sinapse-ai/product/checklists/component-quality-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/database-design-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/dba-predeploy-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/dba-rollback-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/migration-readiness-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/pattern-audit-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/pm-checklist.md +1 -1
- package/.sinapse-ai/product/checklists/po-master-checklist.md +1 -1
- package/.sinapse-ai/product/checklists/pre-push-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/release-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/self-critique-checklist.md +1 -0
- package/.sinapse-ai/product/checklists/story-dod-checklist.md +1 -1
- package/.sinapse-ai/product/data/atomic-design-principles.md +1 -0
- package/.sinapse-ai/product/data/brainstorming-techniques.md +1 -1
- package/.sinapse-ai/product/data/consolidation-algorithms.md +1 -0
- package/.sinapse-ai/product/data/database-best-practices.md +1 -0
- package/.sinapse-ai/product/data/design-token-best-practices.md +1 -0
- package/.sinapse-ai/product/data/elicitation-methods.md +1 -1
- package/.sinapse-ai/product/data/integration-patterns.md +1 -0
- package/.sinapse-ai/product/data/migration-safety-guide.md +1 -0
- package/.sinapse-ai/product/data/mode-selection-best-practices.md +1 -0
- package/.sinapse-ai/product/data/postgres-tuning-guide.md +1 -0
- package/.sinapse-ai/product/data/rls-security-patterns.md +1 -0
- package/.sinapse-ai/product/data/roi-calculation-guide.md +1 -0
- package/.sinapse-ai/product/data/supabase-patterns.md +1 -0
- package/.sinapse-ai/product/data/test-levels-framework.md +1 -1
- package/.sinapse-ai/product/data/test-priorities-matrix.md +1 -1
- package/.sinapse-ai/product/data/wcag-compliance-guide.md +1 -0
- package/.sinapse-ai/product/templates/activation-instructions-inline-greeting.yaml +1 -0
- package/.sinapse-ai/product/templates/activation-instructions-template.md +1 -0
- package/.sinapse-ai/product/templates/adr.hbs +126 -125
- package/.sinapse-ai/product/templates/agent-template.yaml +1 -1
- package/.sinapse-ai/product/templates/architecture-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/brainstorming-output-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/brownfield-architecture-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/brownfield-prd-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/brownfield-risk-report-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/changelog-template.md +1 -0
- package/.sinapse-ai/product/templates/command-rationalization-matrix.md +1 -0
- package/.sinapse-ai/product/templates/competitor-analysis-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/component-react-tmpl.tsx +1 -0
- package/.sinapse-ai/product/templates/current-approach-tmpl.md +1 -0
- package/.sinapse-ai/product/templates/dbdr.hbs +242 -241
- package/.sinapse-ai/product/templates/design-story-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/ds-artifact-analysis.md +1 -0
- package/.sinapse-ai/product/templates/engine/elicitation.js +1 -0
- package/.sinapse-ai/product/templates/engine/index.js +1 -0
- package/.sinapse-ai/product/templates/engine/loader.js +1 -0
- package/.sinapse-ai/product/templates/engine/renderer.js +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/adr.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/dbdr.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/epic.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/pmdr.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/prd-v2.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/prd.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/story.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/schemas/task.schema.json +1 -0
- package/.sinapse-ai/product/templates/engine/validator.js +1 -0
- package/.sinapse-ai/product/templates/epic.hbs +213 -212
- package/.sinapse-ai/product/templates/eslintrc-security.json +1 -0
- package/.sinapse-ai/product/templates/front-end-architecture-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/front-end-spec-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/fullstack-architecture-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/github-actions-cd.yml +1 -0
- package/.sinapse-ai/product/templates/github-actions-ci.yml +1 -0
- package/.sinapse-ai/product/templates/github-pr-template.md +1 -0
- package/.sinapse-ai/product/templates/gordon-mcp.yaml +1 -0
- package/.sinapse-ai/product/templates/index-strategy-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/market-research-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/mcp-workflow.js +1 -0
- package/.sinapse-ai/product/templates/migration-plan-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/migration-strategy-tmpl.md +1 -0
- package/.sinapse-ai/product/templates/personalized-agent-template.md +1 -0
- package/.sinapse-ai/product/templates/personalized-checklist-template.md +1 -0
- package/.sinapse-ai/product/templates/personalized-task-template.md +1 -0
- package/.sinapse-ai/product/templates/personalized-template-file.yaml +1 -0
- package/.sinapse-ai/product/templates/personalized-workflow-template.yaml +1 -0
- package/.sinapse-ai/product/templates/pmdr.hbs +187 -186
- package/.sinapse-ai/product/templates/prd-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/prd-v2.0.hbs +217 -216
- package/.sinapse-ai/product/templates/prd.hbs +202 -201
- package/.sinapse-ai/product/templates/project-brief-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/qa-gate-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/qa-report-tmpl.md +1 -0
- package/.sinapse-ai/product/templates/rls-policies-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/schema-design-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/shock-report-tmpl.html +1 -0
- package/.sinapse-ai/product/templates/spec-tmpl.md +1 -0
- package/.sinapse-ai/product/templates/state-persistence-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/statusline/statusline-script.js +1 -0
- package/.sinapse-ai/product/templates/statusline/track-agent.sh +1 -0
- package/.sinapse-ai/product/templates/story-tmpl.yaml +1 -1
- package/.sinapse-ai/product/templates/story.hbs +264 -263
- package/.sinapse-ai/product/templates/task-execution-report.md +1 -0
- package/.sinapse-ai/product/templates/task-template.md +1 -1
- package/.sinapse-ai/product/templates/task.hbs +171 -170
- package/.sinapse-ai/product/templates/tmpl-comment-on-examples.sql +159 -158
- package/.sinapse-ai/product/templates/tmpl-migration-script.sql +92 -91
- package/.sinapse-ai/product/templates/tmpl-rls-granular-policies.sql +105 -104
- package/.sinapse-ai/product/templates/tmpl-rls-kiss-policy.sql +11 -10
- package/.sinapse-ai/product/templates/tmpl-rls-roles.sql +136 -135
- package/.sinapse-ai/product/templates/tmpl-rls-simple.sql +78 -77
- package/.sinapse-ai/product/templates/tmpl-rls-tenant.sql +153 -152
- package/.sinapse-ai/product/templates/tmpl-rollback-script.sql +78 -77
- package/.sinapse-ai/product/templates/tmpl-seed-data.sql +141 -140
- package/.sinapse-ai/product/templates/tmpl-smoke-test.sql +17 -16
- package/.sinapse-ai/product/templates/tmpl-staging-copy-merge.sql +140 -139
- package/.sinapse-ai/product/templates/tmpl-stored-proc.sql +141 -140
- package/.sinapse-ai/product/templates/tmpl-trigger.sql +153 -152
- package/.sinapse-ai/product/templates/tmpl-view-materialized.sql +134 -133
- package/.sinapse-ai/product/templates/tmpl-view.sql +178 -177
- package/.sinapse-ai/product/templates/token-exports-css-tmpl.css +1 -0
- package/.sinapse-ai/product/templates/token-exports-tailwind-tmpl.js +1 -0
- package/.sinapse-ai/product/templates/tokens-schema-tmpl.yaml +1 -0
- package/.sinapse-ai/product/templates/workflow-template.yaml +1 -1
- package/.sinapse-ai/quality/metrics-collector.js +1 -0
- package/.sinapse-ai/quality/metrics-hook.js +1 -0
- package/.sinapse-ai/quality/schemas/quality-metrics.schema.json +1 -0
- package/.sinapse-ai/quality/seed-metrics.js +1 -0
- package/.sinapse-ai/schemas/README.md +1 -0
- package/.sinapse-ai/schemas/validate-v3-schema.js +1 -0
- package/.sinapse-ai/scripts/README.md +1 -0
- package/.sinapse-ai/scripts/batch-migrate-phase1.ps1 +37 -36
- package/.sinapse-ai/scripts/batch-migrate-phase2.ps1 +89 -88
- package/.sinapse-ai/scripts/batch-migrate-phase3.ps1 +46 -45
- package/.sinapse-ai/scripts/command-execution-hook.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/diagnose-npx-issue.ps1 +97 -96
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/README.md +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/index.html +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/package-lock.json +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/package.json +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/public/favicon.svg +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/App.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/AutoFixLog.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/AutoFixLog.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/DomainCard.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/DomainCard.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/HealthScore.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/HealthScore.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/IssuesList.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/IssuesList.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/TechDebtList.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/TechDebtList.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/index.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/Card.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/Card.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/Chart.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/Chart.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/Header.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/Header.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/StatusBadge.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/StatusBadge.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/components/shared/index.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/hooks/index.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/hooks/useAutoRefresh.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/hooks/useHealthData.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/main.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/pages/Dashboard.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/pages/Dashboard.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/pages/DomainDetail.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/pages/DomainDetail.jsx +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/pages/index.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/styles/App.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/src/styles/index.css +1 -0
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/vite.config.js +1 -0
- package/.sinapse-ai/scripts/diagnostics/quick-diagnose.cmd +86 -85
- package/.sinapse-ai/scripts/diagnostics/quick-diagnose.ps1 +118 -117
- package/.sinapse-ai/scripts/migrate-framework-docs.sh +1 -0
- package/.sinapse-ai/scripts/pm.sh +1 -0
- package/.sinapse-ai/scripts/session-context-loader.js +1 -0
- package/.sinapse-ai/scripts/sinapse-doc-template.md +1 -0
- package/.sinapse-ai/scripts/test-template-system.js +1 -1
- package/.sinapse-ai/scripts/validate-phase1.ps1 +36 -35
- package/.sinapse-ai/scripts/workflow-management.md +1 -0
- package/.sinapse-ai/utils/filters/constants.js +1 -0
- package/.sinapse-ai/utils/filters/content-filter.js +1 -0
- package/.sinapse-ai/utils/filters/field-filter.js +1 -0
- package/.sinapse-ai/utils/filters/index.js +1 -0
- package/.sinapse-ai/utils/filters/schema-filter.js +1 -0
- package/.sinapse-ai/utils/format-duration.js +1 -0
- package/.sinapse-ai/utils/sinapse-validator.js +1 -0
- package/.sinapse-ai/workflow-intelligence/__tests__/confidence-scorer.test.js +1 -0
- package/.sinapse-ai/workflow-intelligence/__tests__/integration.test.js +1 -0
- package/.sinapse-ai/workflow-intelligence/__tests__/suggestion-engine.test.js +1 -0
- package/.sinapse-ai/workflow-intelligence/__tests__/wave-analyzer.test.js +1 -0
- package/.sinapse-ai/workflow-intelligence/__tests__/workflow-registry.test.js +1 -0
- package/.sinapse-ai/workflow-intelligence/engine/confidence-scorer.js +1 -0
- package/.sinapse-ai/workflow-intelligence/engine/output-formatter.js +1 -0
- package/.sinapse-ai/workflow-intelligence/engine/suggestion-engine.js +1 -0
- package/.sinapse-ai/workflow-intelligence/engine/wave-analyzer.js +1 -0
- package/.sinapse-ai/workflow-intelligence/index.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/capture-hook.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/gotcha-registry.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/index.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/pattern-capture.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/pattern-store.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/pattern-validator.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/qa-feedback.js +1 -0
- package/.sinapse-ai/workflow-intelligence/learning/semantic-search.js +1 -0
- package/.sinapse-ai/workflow-intelligence/registry/workflow-registry.js +1 -0
- package/LICENSE +34 -33
- package/README.en.md +192 -229
- package/README.md +118 -308
- package/bin/modules/mcp-installer.js +1 -0
- package/bin/sinapse-graph.js +1 -0
- package/bin/sinapse-ids.js +1 -0
- package/bin/sinapse-minimal.js +1 -0
- package/bin/utils/detect-fsmonitor.js +1 -0
- package/bin/utils/framework-guard.js +1 -0
- package/bin/utils/install-errors.js +1 -0
- package/bin/utils/install-transaction.js +1 -0
- package/bin/utils/pro-detector.js +1 -0
- package/docs/README.md +1 -0
- package/docs/codex-integration-process.md +12 -160
- package/docs/codex-parity-program.md +18 -661
- package/docs/examples/squads/basic-squad/README.md +1 -0
- package/docs/examples/squads/basic-squad/agents/greeter-agent.md +1 -0
- package/docs/examples/squads/basic-squad/tasks/greet-user.md +1 -0
- package/docs/examples/squads/multi-agent-squad/README.md +1 -0
- package/docs/examples/squads/multi-agent-squad/agents/lead-agent.md +1 -0
- package/docs/examples/squads/multi-agent-squad/agents/researcher-agent.md +1 -0
- package/docs/examples/squads/multi-agent-squad/agents/writer-agent.md +1 -0
- package/docs/examples/squads/multi-agent-squad/tasks/research-topic.md +1 -0
- package/docs/examples/squads/multi-agent-squad/tasks/write-report.md +1 -0
- package/docs/examples/squads/squad-with-tools/README.md +1 -0
- package/docs/examples/squads/squad-with-tools/agents/analyzer-agent.md +1 -0
- package/docs/examples/squads/squad-with-tools/tools/text-analyzer.js +1 -0
- package/docs/framework/codex-parity/codex-integration-process.md +171 -0
- package/docs/framework/codex-parity/codex-parity-program.md +670 -0
- package/docs/framework/config-override-guide.md +1 -0
- package/docs/{core-architecture.md → framework/core-architecture.md} +1 -0
- package/docs/framework/entity-layer-classification.md +1 -0
- package/docs/{glossary.md → framework/glossary.md} +1 -0
- package/docs/framework/performance-tips.md +1 -0
- package/docs/{00-shared-activation-pipeline.md → framework/shared-activation-pipeline.md} +1 -0
- package/docs/framework/source-tree.md +1 -0
- package/docs/framework/squad-creation-standards.md +331 -0
- package/docs/{versioning-and-releases.md → framework/versioning-and-releases.md} +1 -0
- package/docs/guides/README.md +1 -0
- package/docs/guides/ade-guide.md +1 -0
- package/docs/guides/agent-reference.md +131 -194
- package/docs/guides/agent-selection-guide.md +1 -0
- package/docs/guides/agents/ANALYST-SYSTEM.md +1 -0
- package/docs/guides/agents/ARCHITECT-SYSTEM.md +1 -0
- package/docs/guides/agents/DATA-ENGINEER-SYSTEM.md +1 -0
- package/docs/guides/agents/DEV-SYSTEM.md +1 -0
- package/docs/guides/agents/DEVOPS-SYSTEM.md +1 -0
- package/docs/guides/agents/PM-SYSTEM.md +1 -0
- package/docs/guides/agents/QA-SYSTEM.md +1 -0
- package/docs/guides/agents/SINAPSE-AGENT-FLOWS.zip +0 -0
- package/docs/guides/agents/SINAPSE-MASTER-SYSTEM.md +1 -0
- package/docs/guides/agents/SM-SYSTEM.md +1 -0
- package/docs/guides/agents/SQUAD-CREATOR-SYSTEM.md +1 -0
- package/docs/guides/agents/UX-DESIGN-EXPERT-SYSTEM.md +1 -0
- package/docs/guides/agents/traces/00-shared-activation-pipeline.md +1 -0
- package/docs/guides/agents/traces/00-shared-activation-pipeline.v1-act8.md +1 -0
- package/docs/guides/agents/traces/README.md +1 -0
- package/docs/guides/agents/traces/analyst-execution-trace.md +1 -0
- package/docs/guides/agents/traces/architect-execution-trace.md +1 -0
- package/docs/guides/agents/traces/data-engineer-execution-trace.md +1 -0
- package/docs/guides/agents/traces/dev-execution-trace.md +1 -0
- package/docs/guides/agents/traces/devops-execution-trace.md +1 -0
- package/docs/guides/agents/traces/execution-traces.zip +0 -0
- package/docs/guides/agents/traces/pm-execution-trace.md +1 -0
- package/docs/guides/agents/traces/po-execution-trace.md +1 -0
- package/docs/guides/agents/traces/qa-execution-trace.md +1 -0
- package/docs/guides/agents/traces/sinapse-orqx-execution-trace.md +1 -0
- package/docs/guides/agents/traces/sm-execution-trace.md +1 -0
- package/docs/guides/agents/traces/squad-creation-execution-trace.md +1 -0
- package/docs/guides/agents/traces/ux-design-expert-execution-trace.md +1 -0
- package/docs/guides/api-reference.md +1 -0
- package/docs/guides/build-recovery-guide.md +1 -0
- package/docs/guides/code-graph-mcp-setup.md +1 -0
- package/docs/guides/coderabbit/README.md +1 -0
- package/docs/guides/config-migration-guide.md +1 -0
- package/docs/guides/contextual-greeting-system-guide.md +1 -0
- package/docs/guides/development-setup.md +1 -0
- package/docs/{docker-mcp-setup.md → guides/docker-mcp-setup.md} +1 -0
- package/docs/guides/ide-integration.md +237 -0
- package/docs/guides/ide-sync-guide.md +1 -0
- package/docs/guides/mcp/desktop-commander.md +1 -0
- package/docs/guides/mcp/docker-gateway-tutorial.md +1 -0
- package/docs/guides/mcp-global-setup.md +1 -0
- package/docs/{meta-agent-commands.md → guides/meta-agent-commands.md} +1 -1
- package/docs/guides/permission-modes.md +1 -0
- package/docs/guides/project-status-feature.md +1 -0
- package/docs/guides/quality-dashboard.md +1 -0
- package/docs/guides/quality-gates.md +1 -0
- package/docs/guides/service-discovery.md +1 -0
- package/docs/guides/squad-examples/README.md +1 -0
- package/docs/guides/squad-examples/data-processor-squad.yaml +1 -0
- package/docs/guides/squad-examples/simple-agent.yaml +1 -0
- package/docs/guides/squad-migration.md +1 -0
- package/docs/guides/testing-guide.md +1 -0
- package/docs/guides/vertical-trails/data-engineer-trail.md +1 -0
- package/docs/guides/vertical-trails/devops-trail.md +1 -0
- package/docs/guides/vertical-trails/squad-creator-trail.md +1 -0
- package/docs/guides/workflows/AUTO-WORKTREE-WORKFLOW.md +1 -0
- package/docs/guides/workflows/BROWNFIELD-DISCOVERY-WORKFLOW.md +1 -0
- package/docs/guides/workflows/BROWNFIELD-FULLSTACK-WORKFLOW.md +1 -0
- package/docs/guides/workflows/BROWNFIELD-SERVICE-WORKFLOW.md +1 -0
- package/docs/guides/workflows/BROWNFIELD-UI-WORKFLOW.md +1 -0
- package/docs/guides/workflows/DESIGN-SYSTEM-BUILD-QUALITY-WORKFLOW.md +1 -0
- package/docs/guides/workflows/GREENFIELD-FULLSTACK-WORKFLOW.md +1 -0
- package/docs/guides/workflows/GREENFIELD-SERVICE-WORKFLOW.md +1 -0
- package/docs/guides/workflows/GREENFIELD-UI-WORKFLOW.md +1 -0
- package/docs/guides/workflows/QA-LOOP-WORKFLOW.md +1 -0
- package/docs/guides/workflows/SINAPSE-COMPLETE-CROSS-REFERENCE-ANALYSIS.md +1 -0
- package/docs/guides/workflows/SINAPSE-WORKFLOWS.zip +0 -0
- package/docs/guides/workflows/SPEC-PIPELINE-WORKFLOW.md +1 -0
- package/docs/guides/workflows/STORY-DEVELOPMENT-CYCLE-WORKFLOW.md +1 -0
- package/docs/guides/workflows/WORKFLOW-TASK-AGENT-ANALYSIS.md +1 -0
- package/docs/guides/workflows/xref-phase3-scripts.md +1 -0
- package/docs/guides/workflows/xref-phase5-core.md +1 -0
- package/docs/ide-integration.md +30 -231
- package/docs/pt/ENVIRONMENT.md +1 -0
- package/docs/pt/README.md +1 -0
- package/docs/pt/agents/archetype-rationale.md +1 -0
- package/docs/pt/agents/persona-definitions.md +1 -0
- package/docs/pt/architecture/ADE-ARCHITECT-HANDOFF.md +1 -0
- package/docs/pt/architecture/ADE-EPIC1-HANDOFF.md +1 -0
- package/docs/pt/architecture/ADE-EPIC2-HANDOFF.md +1 -0
- package/docs/pt/architecture/ADE-EPIC3-HANDOFF.md +1 -0
- package/docs/pt/architecture/ade-architecture.md +1 -0
- package/docs/pt/architecture/adr/adr-hcs-health-check-system.md +1 -0
- package/docs/pt/architecture/adr/adr-isolated-vm-decision.md +1 -0
- package/docs/pt/architecture/agent-config-audit.md +1 -0
- package/docs/pt/architecture/agent-responsibility-matrix.md +1 -0
- package/docs/pt/architecture/agent-tool-integration-guide.md +1 -0
- package/docs/pt/architecture/contribution-workflow-research.md +1 -0
- package/docs/pt/architecture/dashboard-architecture.md +1 -0
- package/docs/pt/architecture/dashboard-realtime.md +1 -0
- package/docs/pt/architecture/hcs-check-specifications.md +1 -0
- package/docs/pt/architecture/hcs-execution-modes.md +1 -0
- package/docs/pt/architecture/hcs-self-healing-spec.md +1 -0
- package/docs/pt/architecture/high-level-architecture.md +1 -0
- package/docs/pt/architecture/introduction.md +1 -0
- package/docs/pt/architecture/mcp-api-keys-management.md +1 -0
- package/docs/pt/architecture/mcp-system-diagrams.md +1 -0
- package/docs/pt/architecture/module-system.md +1 -0
- package/docs/pt/architecture/source-tree.md +1 -0
- package/docs/pt/architecture/squad-improvement-recommended-approach.md +1 -0
- package/docs/pt/architecture/utility-integration-guide.md +1 -0
- package/docs/pt/contributing.md +1 -0
- package/docs/pt/core-architecture.md +1 -0
- package/docs/pt/docker-mcp-setup.md +1 -0
- package/docs/pt/framework/source-tree.md +1 -0
- package/docs/pt/getting-started.md +1 -0
- package/docs/pt/guides/README.md +1 -0
- package/docs/pt/guides/ade-guide.md +1 -0
- package/docs/pt/guides/agent-selection-guide.md +1 -0
- package/docs/pt/guides/api-reference.md +1 -0
- package/docs/pt/guides/build-recovery-guide.md +1 -0
- package/docs/pt/guides/contextual-greeting-system-guide.md +1 -0
- package/docs/pt/guides/development-setup.md +1 -0
- package/docs/pt/guides/ide-sync-guide.md +1 -0
- package/docs/pt/guides/mcp/desktop-commander.md +1 -0
- package/docs/pt/guides/mcp/docker-gateway-tutorial.md +1 -0
- package/docs/pt/guides/mcp-global-setup.md +1 -0
- package/docs/pt/guides/permission-modes.md +1 -0
- package/docs/pt/guides/project-status-feature.md +1 -0
- package/docs/pt/guides/quality-dashboard.md +1 -0
- package/docs/pt/guides/quality-gates.md +1 -0
- package/docs/pt/guides/service-discovery.md +1 -0
- package/docs/pt/guides/squad-examples/README.md +1 -0
- package/docs/pt/guides/squad-migration.md +1 -0
- package/docs/pt/guides/testing-guide.md +1 -0
- package/docs/pt/guides/user-guide.md +1 -0
- package/docs/pt/guides/workflows-guide.md +1 -0
- package/docs/pt/installation/troubleshooting.md +1 -0
- package/docs/pt/installation/v4-quick-start.md +1 -0
- package/docs/pt/meta-agent-commands.md +1 -0
- package/docs/pt/performance-tuning-guide.md +1 -0
- package/docs/pt/platforms/claude-code.md +1 -0
- package/docs/pt/sinapse-nomenclature-specification.md +1 -0
- package/docs/pt/specifications/docs-agent-technical-specification.md +1 -0
- package/docs/pt/troubleshooting.md +1 -0
- package/docs/pt/versioning-and-releases.md +1 -0
- package/docs/sinapse-agent-flows/README.md +1 -0
- package/docs/sinapse-agent-flows/analyst-system.md +1 -0
- package/docs/sinapse-agent-flows/architect-system.md +1 -0
- package/docs/sinapse-agent-flows/data-engineer-system.md +1 -0
- package/docs/sinapse-agent-flows/dev-system.md +1 -0
- package/docs/sinapse-agent-flows/devops-system.md +1 -0
- package/docs/sinapse-agent-flows/pm-system.md +1 -0
- package/docs/sinapse-agent-flows/qa-system.md +1 -0
- package/docs/sinapse-agent-flows/sinapse-orqx-system.md +1 -0
- package/docs/sinapse-agent-flows/sm-system.md +1 -0
- package/docs/sinapse-agent-flows/squad-creator-system.md +1 -0
- package/docs/sinapse-agent-flows/ux-design-expert-system.md +1 -0
- package/docs/sinapse-workflows/README.md +1 -0
- package/docs/sinapse-workflows/auto-worktree-workflow.md +1 -0
- package/docs/sinapse-workflows/brownfield-discovery-workflow.md +1 -0
- package/docs/sinapse-workflows/brownfield-fullstack-workflow.md +1 -0
- package/docs/sinapse-workflows/brownfield-service-workflow.md +1 -0
- package/docs/sinapse-workflows/brownfield-ui-workflow.md +1 -0
- package/docs/sinapse-workflows/design-system-build-quality-workflow.md +1 -0
- package/docs/sinapse-workflows/greenfield-fullstack-workflow.md +1 -0
- package/docs/sinapse-workflows/greenfield-service-workflow.md +1 -0
- package/docs/sinapse-workflows/greenfield-ui-workflow.md +1 -0
- package/docs/sinapse-workflows/qa-loop-workflow.md +1 -0
- package/docs/sinapse-workflows/spec-pipeline-workflow.md +1 -0
- package/docs/sinapse-workflows/story-development-cycle-workflow.md +1 -0
- package/package.json +1 -1
- package/packages/installer/package.json +1 -0
- package/packages/installer/src/__tests__/performance-benchmark.js +1 -0
- package/packages/installer/src/config/templates/env-template.js +1 -0
- package/packages/installer/src/config/validation/config-validator.js +1 -0
- package/packages/installer/src/detection/detect-project-type.js +1 -0
- package/packages/installer/src/installer/dependency-installer.js +1 -0
- package/packages/installer/src/installer/file-hasher.js +1 -0
- package/packages/installer/src/installer/manifest-signature.js +1 -0
- package/packages/installer/src/merger/index.js +1 -0
- package/packages/installer/src/merger/parsers/env-parser.js +1 -0
- package/packages/installer/src/merger/parsers/markdown-section-parser.js +1 -0
- package/packages/installer/src/merger/strategies/base-merger.js +1 -0
- package/packages/installer/src/merger/strategies/env-merger.js +1 -0
- package/packages/installer/src/merger/strategies/index.js +1 -0
- package/packages/installer/src/merger/strategies/markdown-merger.js +1 -0
- package/packages/installer/src/merger/strategies/replace-merger.js +1 -0
- package/packages/installer/src/merger/strategies/yaml-merger.js +1 -0
- package/packages/installer/src/merger/types.js +1 -0
- package/packages/installer/src/updater/index.js +1 -0
- package/packages/installer/src/utils/sinapse-colors.js +1 -0
- package/packages/installer/src/wizard/ide-selector.js +1 -0
- package/packages/installer/src/wizard/validation/index.js +1 -0
- package/packages/installer/src/wizard/validation/validators/config-validator.js +1 -0
- package/packages/installer/src/wizard/validation/validators/dependency-validator.js +1 -0
- package/packages/installer/src/wizard/validation/validators/file-structure-validator.js +1 -0
- package/packages/installer/src/wizard/validation/validators/mcp-health-checker.js +1 -0
- package/packages/installer/src/wizard/validators.js +1 -0
- package/packages/installer/src/wizard/wizard.js +1 -0
- package/packages/installer/tests/integration/environment-configuration.test.js +1 -0
- package/packages/installer/tests/integration/wizard-detection.test.js +1 -0
- package/packages/installer/tests/unit/claude-md-template-v5/claude-md-template-v5.test.js +1 -0
- package/packages/installer/tests/unit/detection/detect-project-type.test.js +1 -0
- package/packages/installer/tests/unit/doctor/doctor-checks.test.js +1 -0
- package/packages/installer/tests/unit/doctor/doctor-orchestrator.test.js +1 -0
- package/packages/installer/tests/unit/generate-settings-json/generate-settings-json.test.js +1 -0
- package/packages/installer/tests/unit/ide-sync-integration/ide-sync-integration.test.js +1 -0
- package/packages/installer/tests/unit/merger/markdown-merger.test.js +1 -0
- package/packages/installer/tests/unit/merger/strategies.test.js +1 -0
- package/packages/installer/tests/unit/merger/yaml-merger.test.js +1 -0
- package/packages/sinapse-install/README.md +1 -0
- package/packages/sinapse-install/src/dep-checker.js +1 -0
- package/packages/sinapse-install/src/edmcp/index.js +1 -0
- package/packages/sinapse-install/src/os-detector.js +1 -0
- package/packages/sinapse-pro-cli/src/recover.js +1 -0
- package/scripts/check-markdown-links.py +353 -352
- package/scripts/code-intel-health-check.js +1 -0
- package/scripts/dashboard-parallel-dev.sh +1 -0
- package/scripts/dashboard-parallel-phase3.sh +1 -0
- package/scripts/dashboard-parallel-phase4.sh +1 -0
- package/scripts/install-monitor-hooks.sh +1 -0
- package/scripts/package-synapse.js +1 -0
- package/scripts/semantic-lint.js +1 -0
- package/scripts/sign-manifest.ps1 +131 -130
- package/scripts/validate-sinapse-ai-deps.js +1 -0
- package/sinapse/knowledge-base/cross-squad-patterns.md +1 -0
- package/sinapse/knowledge-base/routing-catalog.md +1 -0
- package/sinapse/squad.yaml +1 -0
- package/sinapse/tasks/compose-multi-squad-plan.md +1 -0
- package/sinapse/tasks/coordinate-cross-squad.md +1 -0
- package/sinapse/tasks/diagnose-and-route.md +1 -0
- package/sinapse/tasks/onboard-user.md +1 -0
- package/sinapse/tasks/resolve-conflict.md +1 -0
- package/sinapse/tasks/squad-status-report.md +1 -0
- package/sinapse/tasks/strategic-brief.md +1 -0
- package/squads/claude-code-mastery/README.md +1 -0
- package/squads/claude-code-mastery/agents/claude-mastery-chief.md +1 -0
- package/squads/claude-code-mastery/checklists/brownfield-readiness-checklist.md +1 -0
- package/squads/claude-code-mastery/checklists/change-checklist.md +1 -0
- package/squads/claude-code-mastery/checklists/context-rot-checklist.md +1 -0
- package/squads/claude-code-mastery/checklists/integration-audit-checklist.md +1 -0
- package/squads/claude-code-mastery/checklists/pre-push-checklist.md +1 -0
- package/squads/claude-code-mastery/data/ci-cd-patterns.yaml +1 -0
- package/squads/claude-code-mastery/data/claude-code-quick-ref.yaml +1 -0
- package/squads/claude-code-mastery/data/hook-patterns.yaml +1 -0
- package/squads/claude-code-mastery/data/mcp-integration-catalog.yaml +1 -0
- package/squads/claude-code-mastery/data/project-type-signatures.yaml +1 -0
- package/squads/claude-code-mastery/knowledge-base/claude-code-internals-reference.md +927 -0
- package/squads/claude-code-mastery/scripts/validate-setup.js +1 -0
- package/squads/claude-code-mastery/templates/claude-md-fullstack.md +1 -0
- package/squads/claude-code-mastery/templates/claude-md-library.md +1 -0
- package/squads/claude-code-mastery/templates/claude-md-microservices.md +1 -0
- package/squads/claude-code-mastery/templates/claude-md-mobile.md +1 -0
- package/squads/claude-code-mastery/templates/claude-md-monorepo.md +1 -0
- package/squads/claude-code-mastery/templates/github-actions-claude-ci.yml +1 -0
- package/squads/claude-code-mastery/templates/github-actions-claude-review.yml +1 -0
- package/squads/claude-code-mastery/workflows/wf-audit-complete.yaml +1 -0
- package/squads/claude-code-mastery/workflows/wf-knowledge-update.yaml +1 -0
- package/squads/claude-code-mastery/workflows/wf-project-setup.yaml +1 -0
- package/squads/squad-animations/knowledge-base/unicorn-studio-pipeline.md +197 -0
- package/squads/squad-animations/squad.yaml +7 -2
- package/squads/squad-animations/tasks/create-unicorn-animation.md +61 -0
- package/squads/squad-animations/tasks/identify-website-animation.md +120 -0
- package/squads/squad-brand/knowledge-base/archetype-brand-mapping.md +12 -1
- package/squads/squad-brand/knowledge-base/brand-activism-cultural-branding.md +216 -0
- package/squads/squad-brand/knowledge-base/brand-audit-criteria.md +58 -0
- package/squads/squad-brand/knowledge-base/brand-digital-strategy.md +188 -0
- package/squads/squad-brand/knowledge-base/brand-experience-bx.md +227 -0
- package/squads/squad-brand/knowledge-base/brand-legal-ip.md +222 -0
- package/squads/squad-brand/knowledge-base/brand-naming-framework.md +163 -0
- package/squads/squad-brand/knowledge-base/brand-rebranding-framework.md +208 -0
- package/squads/squad-brand/knowledge-base/brand-strategy-frameworks-catalog.md +330 -52
- package/squads/squad-brand/knowledge-base/brand-valuation-frameworks.md +92 -13
- package/squads/squad-brand/knowledge-base/branding-master-reference.md +1001 -0
- package/squads/squad-brand/knowledge-base/brazilian-branding-context.md +208 -0
- package/squads/squad-brand/knowledge-base/color-psychology.md +25 -12
- package/squads/squad-brand/knowledge-base/employer-personal-branding.md +206 -0
- package/squads/squad-brand/knowledge-base/routing-catalog.md +34 -0
- package/squads/squad-brand/knowledge-base/sonic-branding-principles.md +6 -1
- package/squads/squad-brand/knowledge-base/typography-personality.md +34 -0
- package/squads/squad-claude/knowledge-base/claude-code-internals-deep.md +578 -0
- package/squads/squad-claude/knowledge-base/claude-code-tools-reference.md +313 -0
- package/squads/squad-claude/knowledge-base/context-window-optimization.md +334 -0
- package/squads/squad-claude/knowledge-base/knowledge-architecture-reference.md +403 -0
- package/squads/squad-claude/knowledge-base/memory-systems-reference.md +412 -0
- package/squads/squad-claude/knowledge-base/obsidian-claude-integration.md +423 -0
- package/squads/squad-claude/knowledge-base/retrieval-augmented-generation.md +320 -0
- package/squads/squad-claude/knowledge-base/skill-creation-patterns.md +380 -0
- package/squads/squad-claude/knowledge-base/swarm-orchestration-patterns.md +411 -0
- package/squads/squad-cloning/knowledge-base/agent-generation-guide.md +89 -0
- package/squads/squad-cloning/knowledge-base/clone-quality-assurance.md +211 -0
- package/squads/squad-cloning/knowledge-base/cognitive-dna-framework.md +90 -0
- package/squads/squad-cloning/knowledge-base/confidence-scoring.md +51 -0
- package/squads/squad-cloning/knowledge-base/cross-squad-deployment.md +47 -0
- package/squads/squad-cloning/knowledge-base/ethical-guidelines.md +237 -0
- package/squads/squad-cloning/knowledge-base/knowledge-graph-for-clones.md +295 -0
- package/squads/squad-cloning/knowledge-base/memory-architecture-for-clones.md +229 -0
- package/squads/squad-cloning/knowledge-base/multi-agent-deployment-patterns.md +320 -0
- package/squads/squad-cloning/knowledge-base/skill-standard-for-clones.md +262 -0
- package/squads/squad-cloning/knowledge-base/sop-extraction-guide.md +243 -0
- package/squads/squad-cloning/knowledge-base/source-classification.md +68 -0
- package/squads/squad-commercial/knowledge-base/account-based-selling.md +206 -0
- package/squads/squad-commercial/knowledge-base/ai-as-competitive-infrastructure.md +14 -0
- package/squads/squad-commercial/knowledge-base/ai-in-sales.md +199 -0
- package/squads/squad-commercial/knowledge-base/brazilian-sales-context.md +195 -0
- package/squads/squad-commercial/knowledge-base/commercial-analytics-reporting.md +120 -1
- package/squads/squad-commercial/knowledge-base/customer-success-operations.md +83 -2
- package/squads/squad-commercial/knowledge-base/negotiation-frameworks.md +166 -0
- package/squads/squad-commercial/knowledge-base/plg-pls-framework.md +160 -0
- package/squads/squad-commercial/knowledge-base/prospecting-pipeline-generation.md +69 -0
- package/squads/squad-commercial/knowledge-base/revenue-architecture-models.md +153 -1
- package/squads/squad-commercial/knowledge-base/sales-compensation-brazil.md +210 -0
- package/squads/squad-commercial/knowledge-base/sales-enablement-playbook.md +260 -0
- package/squads/squad-commercial/knowledge-base/sales-methodology-comparison.md +185 -0
- package/squads/squad-commercial/knowledge-base/sales-qualification-methodology.md +97 -4
- package/squads/squad-commercial/knowledge-base/sales-revenue-master-reference.md +1123 -0
- package/squads/squad-content/knowledge-base/ai-leverage-content-framework.md +104 -0
- package/squads/squad-content/knowledge-base/brazilian-content-context.md +176 -0
- package/squads/squad-content/knowledge-base/competitor-analysis-methods.md +40 -1
- package/squads/squad-content/knowledge-base/content-architecture-taxonomy.md +206 -0
- package/squads/squad-content/knowledge-base/content-formats-encyclopedia.md +58 -1
- package/squads/squad-content/knowledge-base/content-governance-principles.md +132 -1
- package/squads/squad-content/knowledge-base/content-measurement-framework.md +99 -3
- package/squads/squad-content/knowledge-base/content-references-bibliography.md +130 -0
- package/squads/squad-content/knowledge-base/content-repurposing-playbook.md +107 -1
- package/squads/squad-content/knowledge-base/content-strategy-master-reference.md +1097 -0
- package/squads/squad-content/knowledge-base/content-tech-stack.md +150 -0
- package/squads/squad-content/knowledge-base/copywriting-formulas-library.md +188 -0
- package/squads/squad-content/knowledge-base/editorial-strategy-frameworks.md +148 -5
- package/squads/squad-content/knowledge-base/email-newsletter-strategy.md +161 -0
- package/squads/squad-content/knowledge-base/hook-formulas-library.md +88 -0
- package/squads/squad-content/knowledge-base/narrative-structures-library.md +72 -1
- package/squads/squad-content/knowledge-base/platform-algorithm-intelligence.md +86 -1
- package/squads/squad-content/knowledge-base/seo-content-deep.md +231 -0
- package/squads/squad-content/knowledge-base/social-algorithms-master-reference.md +1007 -0
- package/squads/squad-content/knowledge-base/video-audio-content-playbook.md +218 -0
- package/squads/squad-copy/knowledge-base/ai-copy-production.md +254 -0
- package/squads/squad-copy/knowledge-base/brazilian-copywriting-context.md +242 -0
- package/squads/squad-copy/knowledge-base/copywriting-formulas-encyclopedia.md +164 -80
- package/squads/squad-copy/knowledge-base/email-copywriting-system.md +299 -0
- package/squads/squad-copy/knowledge-base/headline-patterns-library.md +70 -0
- package/squads/squad-copy/knowledge-base/landing-page-copy-architecture.md +267 -0
- package/squads/squad-copy/knowledge-base/legendary-copywriters-frameworks.md +128 -0
- package/squads/squad-copy/knowledge-base/power-words-catalog.md +205 -0
- package/squads/squad-copy/knowledge-base/seo-copywriting.md +255 -0
- package/squads/squad-copy/knowledge-base/storytelling-frameworks.md +103 -0
- package/squads/squad-copy/knowledge-base/video-script-copywriting.md +239 -0
- package/squads/squad-council/knowledge-base/brand-strategy-models.md +193 -0
- package/squads/squad-council/knowledge-base/decision-frameworks-encyclopedia.md +266 -0
- package/squads/squad-council/knowledge-base/financial-strategy-models.md +239 -0
- package/squads/squad-council/knowledge-base/growth-strategy-models.md +267 -0
- package/squads/squad-council/knowledge-base/innovation-disruption-frameworks.md +193 -0
- package/squads/squad-council/knowledge-base/market-analysis-frameworks.md +240 -0
- package/squads/squad-council/knowledge-base/organizational-leadership-models.md +212 -0
- package/squads/squad-council/knowledge-base/sales-strategy-models.md +215 -0
- package/squads/squad-courses/knowledge-base/adult-learning-principles.md +75 -0
- package/squads/squad-courses/knowledge-base/assessment-design-guide.md +68 -0
- package/squads/squad-courses/knowledge-base/course-launch-strategy.md +251 -0
- package/squads/squad-courses/knowledge-base/course-pricing-models.md +95 -0
- package/squads/squad-courses/knowledge-base/domain-advocacia-curriculum.md +385 -0
- package/squads/squad-courses/knowledge-base/domain-contabilidade-curriculum.md +266 -0
- package/squads/squad-courses/knowledge-base/engagement-retention-patterns.md +93 -0
- package/squads/squad-courses/knowledge-base/instructional-design-frameworks.md +149 -2
- package/squads/squad-courses/knowledge-base/platform-comparison.md +68 -0
- package/squads/squad-courses/knowledge-base/video-production-guide.md +70 -0
- package/squads/squad-cybersecurity/knowledge-base/authentication-security.md +393 -0
- package/squads/squad-cybersecurity/knowledge-base/cloud-security-reference.md +363 -0
- package/squads/squad-cybersecurity/knowledge-base/compliance-frameworks.md +273 -0
- package/squads/squad-cybersecurity/knowledge-base/database-security.md +438 -0
- package/squads/squad-cybersecurity/knowledge-base/incident-response-playbook.md +420 -0
- package/squads/squad-cybersecurity/knowledge-base/network-security-reference.md +477 -0
- package/squads/squad-cybersecurity/knowledge-base/owasp-top-10-reference.md +362 -0
- package/squads/squad-cybersecurity/knowledge-base/penetration-testing-methodology.md +350 -0
- package/squads/squad-cybersecurity/knowledge-base/supply-chain-security.md +311 -0
- package/squads/squad-cybersecurity/knowledge-base/vulnerability-management.md +349 -0
- package/squads/squad-cybersecurity/knowledge-base/zero-trust-architecture.md +225 -0
- package/squads/squad-design/knowledge-base/brazilian-design-context.md +223 -0
- package/squads/squad-design/knowledge-base/component-api-patterns.md +208 -4
- package/squads/squad-design/knowledge-base/design-system-master-reference.md +1302 -0
- package/squads/squad-design/knowledge-base/design-systems-frameworks.md +433 -25
- package/squads/squad-design/knowledge-base/design-to-code-pipeline.md +375 -0
- package/squads/squad-design/knowledge-base/design-token-architecture.md +259 -4
- package/squads/squad-design/knowledge-base/designops-maturity.md +312 -0
- package/squads/squad-design/knowledge-base/famous-design-systems-study.md +291 -0
- package/squads/squad-design/knowledge-base/responsive-modern-css.md +96 -4
- package/squads/squad-design/knowledge-base/wcag-aria-reference.md +117 -5
- package/squads/squad-design/knowledge-base/web-performance-reference.md +127 -4
- package/squads/squad-finance/knowledge-base/brazilian-taxation.md +263 -0
- package/squads/squad-finance/knowledge-base/capital-budgeting.md +229 -0
- package/squads/squad-finance/knowledge-base/cash-flow-management.md +220 -0
- package/squads/squad-finance/knowledge-base/contabilidade-master-reference.md +998 -0
- package/squads/squad-finance/knowledge-base/corporate-finance-frameworks.md +272 -0
- package/squads/squad-finance/knowledge-base/finance-master-reference.md +946 -0
- package/squads/squad-finance/knowledge-base/financial-reporting-analysis.md +316 -0
- package/squads/squad-finance/knowledge-base/fintech-brazilian-context.md +242 -0
- package/squads/squad-finance/knowledge-base/fpa-planning-frameworks.md +286 -0
- package/squads/squad-finance/knowledge-base/ma-and-transactions.md +285 -0
- package/squads/squad-finance/knowledge-base/risk-management.md +233 -0
- package/squads/squad-finance/knowledge-base/startups-venture-capital.md +337 -0
- package/squads/squad-finance/knowledge-base/valuation-methods.md +254 -0
- package/squads/squad-growth/knowledge-base/ai-growth-playbook.md +216 -0
- package/squads/squad-growth/knowledge-base/attribution-models.md +78 -0
- package/squads/squad-growth/knowledge-base/brazilian-growth-context.md +208 -0
- package/squads/squad-growth/knowledge-base/community-led-growth.md +175 -0
- package/squads/squad-growth/knowledge-base/content-marketing-flywheel.md +190 -0
- package/squads/squad-growth/knowledge-base/cro-experimentation-framework.md +93 -2
- package/squads/squad-growth/knowledge-base/email-lifecycle-framework.md +192 -0
- package/squads/squad-growth/knowledge-base/growth-frameworks-catalog.md +82 -0
- package/squads/squad-growth/knowledge-base/growth-frameworks.md +99 -6
- package/squads/squad-growth/knowledge-base/growth-master-reference.md +1168 -0
- package/squads/squad-growth/knowledge-base/plg-metrics-framework.md +183 -0
- package/squads/squad-growth/knowledge-base/retention-lifecycle-marketing.md +193 -0
- package/squads/squad-growth/knowledge-base/routing-catalog.md +53 -11
- package/squads/squad-growth/knowledge-base/seo-technical-reference.md +69 -0
- package/squads/squad-growth/knowledge-base/unit-economics-ltv-cac.md +253 -0
- package/squads/squad-growth/knowledge-base/viral-referral-mechanics.md +159 -0
- package/squads/squad-paidmedia/knowledge-base/audiences-segmentation-deep.md +285 -0
- package/squads/squad-paidmedia/knowledge-base/brazil-market-context.md +284 -0
- package/squads/squad-paidmedia/knowledge-base/creative-strategy-deep.md +294 -0
- package/squads/squad-paidmedia/knowledge-base/google-ads-account-architecture.md +87 -0
- package/squads/squad-paidmedia/knowledge-base/meta-ads-campaign-architecture.md +76 -0
- package/squads/squad-paidmedia/knowledge-base/paid-media-metrics-reference.md +117 -0
- package/squads/squad-paidmedia/knowledge-base/paid-traffic-master-reference.md +1308 -0
- package/squads/squad-paidmedia/knowledge-base/programmatic-attribution-deep.md +311 -0
- package/squads/squad-paidmedia/knowledge-base/routing-catalog.md +95 -18
- package/squads/squad-paidmedia/knowledge-base/social-algorithms-playbook.md +361 -0
- package/squads/squad-paidmedia/knowledge-base/tiktok-linkedin-ads-playbook.md +213 -0
- package/squads/squad-paidmedia/knowledge-base/traffic-masters-frameworks.md +71 -0
- package/squads/squad-product/knowledge-base/brazilian-product-context.md +284 -0
- package/squads/squad-product/knowledge-base/customer-success-integration.md +242 -0
- package/squads/squad-product/knowledge-base/discovery-methodology-playbook.md +141 -0
- package/squads/squad-product/knowledge-base/experimentation-framework.md +196 -0
- package/squads/squad-product/knowledge-base/pm-frameworks-reference.md +125 -9
- package/squads/squad-product/knowledge-base/product-analytics-formulas.md +72 -0
- package/squads/squad-product/knowledge-base/product-led-growth-reference.md +155 -13
- package/squads/squad-product/knowledge-base/product-market-fit-framework.md +222 -0
- package/squads/squad-product/knowledge-base/routing-catalog.md +32 -0
- package/squads/squad-research/knowledge-base/agentic-second-brain-reference.md +591 -0
- package/squads/squad-research/knowledge-base/ai-augmented-research.md +212 -0
- package/squads/squad-research/knowledge-base/brazilian-market-research-sources.md +197 -0
- package/squads/squad-research/knowledge-base/community-platforms-reference.md +786 -0
- package/squads/squad-research/knowledge-base/community-research-methods.md +194 -0
- package/squads/squad-research/knowledge-base/hybrid-retrieval-patterns.md +144 -0
- package/squads/squad-research/knowledge-base/knowledge-graph-construction.md +122 -0
- package/squads/squad-research/knowledge-base/mixed-methods-research-design.md +168 -0
- package/squads/squad-research/knowledge-base/multi-agent-research-methodology.md +144 -0
- package/squads/squad-research/knowledge-base/network-effects-analysis.md +192 -0
- package/squads/squad-research/knowledge-base/qualitative-research-deep-methods.md +202 -0
- package/squads/squad-research/knowledge-base/quantitative-research-methods.md +208 -0
- package/squads/squad-research/knowledge-base/research-frameworks-encyclopedia.md +40 -0
- package/squads/squad-research/knowledge-base/research-synthesis-frameworks.md +223 -0
- package/squads/squad-storytelling/knowledge-base/blake-snyder-beat-sheet.md +151 -0
- package/squads/squad-storytelling/knowledge-base/brand-mythology-framework.md +236 -0
- package/squads/squad-storytelling/knowledge-base/brazilian-storytelling-context.md +237 -0
- package/squads/squad-storytelling/knowledge-base/business-storytelling-frameworks.md +209 -0
- package/squads/squad-storytelling/knowledge-base/data-storytelling.md +232 -0
- package/squads/squad-storytelling/knowledge-base/heros-journey-deep.md +174 -0
- package/squads/squad-storytelling/knowledge-base/improv-storytelling.md +226 -0
- package/squads/squad-storytelling/knowledge-base/persuasion-narrative-techniques.md +269 -0
- package/squads/squad-storytelling/knowledge-base/pitch-presentation-frameworks.md +222 -0
- package/squads/squad-storytelling/knowledge-base/social-movement-narratives.md +191 -0
- package/squads/squad-storytelling/knowledge-base/story-circle-dan-harmon.md +171 -0
- package/squads/squad-storytelling/knowledge-base/video-storytelling.md +252 -0
- package/.sinapse-ai/core/health-check/checks/services/gemini-cli.js +0 -239
- package/.sinapse-ai/core/orchestration/gemini-model-selector.js +0 -161
- package/.sinapse-ai/hooks/gemini/after-tool.js +0 -77
- package/.sinapse-ai/hooks/gemini/before-agent.js +0 -79
- package/.sinapse-ai/hooks/gemini/before-tool.js +0 -114
- package/.sinapse-ai/hooks/gemini/rewind-handler.js +0 -68
- package/.sinapse-ai/hooks/gemini/session-end.js +0 -90
- package/.sinapse-ai/hooks/gemini/session-start.js +0 -90
- package/.sinapse-ai/infrastructure/integrations/ai-providers/gemini-provider.js +0 -365
- package/.sinapse-ai/infrastructure/integrations/gemini-extensions/cloudrun-adapter.js +0 -128
- package/.sinapse-ai/infrastructure/integrations/gemini-extensions/index.js +0 -41
- package/.sinapse-ai/infrastructure/integrations/gemini-extensions/policy-sync.js +0 -73
- package/.sinapse-ai/infrastructure/integrations/gemini-extensions/security-adapter.js +0 -159
- package/.sinapse-ai/infrastructure/integrations/gemini-extensions/supabase-adapter.js +0 -88
- package/.sinapse-ai/infrastructure/integrations/gemini-extensions/workspace-adapter.js +0 -99
- package/.sinapse-ai/infrastructure/scripts/ide-sync/gemini-commands.js +0 -205
- package/.sinapse-ai/product/templates/gemini/settings.json +0 -79
- package/.sinapse-ai/product/templates/sinapse-ai-config.yaml +0 -106
- package/docs/changelog.md +0 -184
- package/docs/community.md +0 -227
- package/docs/en/sinapse-agent-flows/README.md +0 -190
- package/docs/en/sinapse-agent-flows/analyst-system.md +0 -26
- package/docs/en/sinapse-agent-flows/architect-system.md +0 -26
- package/docs/en/sinapse-agent-flows/data-engineer-system.md +0 -26
- package/docs/en/sinapse-agent-flows/dev-system.md +0 -26
- package/docs/en/sinapse-agent-flows/devops-system.md +0 -26
- package/docs/en/sinapse-agent-flows/pm-system.md +0 -26
- package/docs/en/sinapse-agent-flows/qa-system.md +0 -26
- package/docs/en/sinapse-agent-flows/sinapse-orqx-system.md +0 -26
- package/docs/en/sinapse-agent-flows/sm-system.md +0 -26
- package/docs/en/sinapse-agent-flows/squad-creator-system.md +0 -26
- package/docs/en/sinapse-agent-flows/ux-design-expert-system.md +0 -26
- package/docs/en/sinapse-workflows/README.md +0 -247
- package/docs/en/sinapse-workflows/auto-worktree-workflow.md +0 -62
- package/docs/en/sinapse-workflows/brownfield-discovery-workflow.md +0 -50
- package/docs/en/sinapse-workflows/brownfield-fullstack-workflow.md +0 -50
- package/docs/en/sinapse-workflows/brownfield-service-workflow.md +0 -51
- package/docs/en/sinapse-workflows/brownfield-ui-workflow.md +0 -51
- package/docs/en/sinapse-workflows/design-system-build-quality-workflow.md +0 -53
- package/docs/en/sinapse-workflows/greenfield-fullstack-workflow.md +0 -45
- package/docs/en/sinapse-workflows/greenfield-service-workflow.md +0 -45
- package/docs/en/sinapse-workflows/greenfield-ui-workflow.md +0 -45
- package/docs/en/sinapse-workflows/qa-loop-workflow.md +0 -50
- package/docs/en/sinapse-workflows/spec-pipeline-workflow.md +0 -48
- package/docs/en/sinapse-workflows/story-development-cycle-workflow.md +0 -50
- package/docs/how-to-contribute-with-pull-requests.md +0 -158
- package/docs/prd-cli-graph-dashboard.md +0 -274
- package/docs/troubleshooting.md +0 -881
- package/packages/gemini-sinapse-extension/README.md +0 -53
- package/packages/gemini-sinapse-extension/commands/lib/agent-launcher.js +0 -138
- package/packages/gemini-sinapse-extension/commands/sinapse-agent.js +0 -7
- package/packages/gemini-sinapse-extension/commands/sinapse-agents.js +0 -49
- package/packages/gemini-sinapse-extension/commands/sinapse-analyst.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-architect.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-data-engineer.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-dev.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-devops.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-menu.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-orqx.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-pm.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-po.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-qa.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-sm.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-squad-creator.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-status.js +0 -66
- package/packages/gemini-sinapse-extension/commands/sinapse-ux-design-expert.js +0 -6
- package/packages/gemini-sinapse-extension/commands/sinapse-validate.js +0 -33
- package/packages/gemini-sinapse-extension/extension.json +0 -147
- package/packages/gemini-sinapse-extension/gemini-extension.json +0 -147
- package/packages/gemini-sinapse-extension/hooks/hooks.json +0 -70
- /package/docs/{architecture-overview.md → framework/architecture-overview.md} +0 -0
- /package/docs/{codex-delegation-parity.md → framework/codex-parity/codex-delegation-parity.md} +0 -0
- /package/docs/{codex-total-parity-orchestration-plan.md → framework/codex-parity/codex-total-parity-orchestration-plan.md} +0 -0
- /package/docs/{codex-workflow-task-parity.md → framework/codex-parity/codex-workflow-task-parity.md} +0 -0
- /package/docs/{collaboration-autonomy-plan.md → framework/collaboration-autonomy-plan.md} +0 -0
- /package/docs/{feature-process.md → framework/feature-process.md} +0 -0
- /package/docs/{guiding-principles.md → framework/guiding-principles.md} +0 -0
- /package/docs/{orqx-plan.md → framework/orqx-plan.md} +0 -0
- /package/docs/{roadmap.md → framework/roadmap.md} +0 -0
- /package/docs/{getting-started.md → guides/getting-started.md} +0 -0
- /package/docs/{git-workflow-guide.md → guides/git-workflow-guide.md} +0 -0
- /package/docs/{squad-commands-reference.md → guides/squad-commands-reference.md} +0 -0
- /package/{CHROME-BRAIN-INSTALL.md → docs/installation/chrome-brain.md} +0 -0
- /package/docs/{npx-install.md → installation/npx-install.md} +0 -0
- /package/docs/{uninstallation.md → installation/uninstallation.md} +0 -0
- /package/docs/{security.md → security/overview.md} +0 -0
- /package/docs/{security-best-practices.md → security/security-best-practices.md} +0 -0
|
@@ -0,0 +1,1097 @@
|
|
|
1
|
+
# Content Strategy Master Reference
|
|
2
|
+
|
|
3
|
+
> **Source:** MS-008 Research (Content Strategy & Content Engineering)
|
|
4
|
+
> **Date:** 2026-04-07 | **Sources:** 38+ consulted
|
|
5
|
+
> **Scope:** Content strategy, architecture, editorial ops, copywriting, SEO, video, audio, email, AI production, measurement, repurposing, Brazilian context
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Table of Contents
|
|
10
|
+
|
|
11
|
+
1. [Panorama & Evolution](#1-panorama--evolution)
|
|
12
|
+
2. [Content Strategy Frameworks](#2-content-strategy-frameworks)
|
|
13
|
+
3. [Content Architecture & Taxonomy](#3-content-architecture--taxonomy)
|
|
14
|
+
4. [Editorial Operations](#4-editorial-operations)
|
|
15
|
+
5. [Copywriting & Persuasion](#5-copywriting--persuasion)
|
|
16
|
+
6. [SEO Content](#6-seo-content)
|
|
17
|
+
7. [Video Content](#7-video-content)
|
|
18
|
+
8. [Audio Content](#8-audio-content)
|
|
19
|
+
9. [Social Media Content](#9-social-media-content)
|
|
20
|
+
10. [Email & Newsletter](#10-email--newsletter)
|
|
21
|
+
11. [AI Content Production](#11-ai-content-production)
|
|
22
|
+
12. [Content Measurement](#12-content-measurement)
|
|
23
|
+
13. [Content Repurposing & Distribution](#13-content-repurposing--distribution)
|
|
24
|
+
14. [Content Governance & Quality](#14-content-governance--quality)
|
|
25
|
+
15. [Content Tech Stack](#15-content-tech-stack)
|
|
26
|
+
16. [Brazilian Context](#16-brazilian-context)
|
|
27
|
+
17. [Key People & References](#17-key-people--references)
|
|
28
|
+
18. [Actionable Checklists](#18-actionable-checklists)
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## 1. Panorama & Evolution
|
|
33
|
+
|
|
34
|
+
### 1.1 From Advertising to Content Marketing
|
|
35
|
+
|
|
36
|
+
Content as business strategy predates the internet. John Deere launched **The Furrow** magazine in 1895 -- still in circulation 130+ years later. The 20th century was dominated by interruption advertising (TV, radio, print). The internet shifted power to consumers who could choose what to consume, when, and from whom.
|
|
37
|
+
|
|
38
|
+
**Seth Godin** articulated this in "Permission Marketing" (1999): the future belongs to brands that earn attention by offering genuine value.
|
|
39
|
+
|
|
40
|
+
### 1.2 Content Marketing as Discipline
|
|
41
|
+
|
|
42
|
+
**Joe Pulizzi** (Content Marketing Institute, 2007) defined content marketing as: "a strategic approach focused on creating and distributing valuable, relevant, and consistent content to attract and retain a clearly defined audience."
|
|
43
|
+
|
|
44
|
+
| Pillar | Traditional Advertising | Content Marketing |
|
|
45
|
+
|--------|------------------------|-------------------|
|
|
46
|
+
| **Value** | For the brand (awareness) | For the audience (education, entertainment) |
|
|
47
|
+
| **Relevance** | Product-relevant | Life-relevant |
|
|
48
|
+
| **Consistency** | Campaigns with start/end | Continuous publishing |
|
|
49
|
+
| **Audience** | Broad demographic | Specific persona |
|
|
50
|
+
| **Action** | Immediate purchase | Gradual trust journey |
|
|
51
|
+
|
|
52
|
+
**CMI 16th Annual B2B Report (2025-2026):**
|
|
53
|
+
- 91% of B2B marketers use content marketing
|
|
54
|
+
- 58% rate their strategy as only "moderately effective"
|
|
55
|
+
- 61% are increasing investment; top 3 priorities: AI tools (45%), events (33%), owned media (32%)
|
|
56
|
+
|
|
57
|
+
### 1.3 Content as Business Asset
|
|
58
|
+
|
|
59
|
+
**Robert Rose** (CMI chief strategist): content is not a marketing cost -- it is an asset that appreciates over time. Content is **compositional** -- each piece increases the total value.
|
|
60
|
+
|
|
61
|
+
**Content-Led Growth examples:**
|
|
62
|
+
- HubSpot blog: 7M+ organic visits/month
|
|
63
|
+
- Ahrefs: publishes SEO studies cited industry-wide
|
|
64
|
+
- Notion: grew 1M to 30M users primarily through community templates
|
|
65
|
+
|
|
66
|
+
**Content Inc. Model (Pulizzi, 2015/2021):**
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
1. Sweet Spot -- Intersection of expertise + audience passion
|
|
70
|
+
2. Content Tilt -- Unique differentiation in content market
|
|
71
|
+
3. Building the Base -- Primary platform + consistency
|
|
72
|
+
4. Harvesting Audience -- Capture (email, subscribers)
|
|
73
|
+
5. Diversification -- Expand to other channels
|
|
74
|
+
6. Monetization -- Product, service, sponsorship, community
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### 1.4 Current State (2025-2026)
|
|
78
|
+
|
|
79
|
+
Three simultaneous forces define the landscape:
|
|
80
|
+
|
|
81
|
+
1. **Massive saturation** -- 7M+ blog posts published daily. Mediocre content simply does not work anymore.
|
|
82
|
+
2. **Generative AI** -- 30-40% of web content has AI assistance (2025). Cost of production dropped, but so did average quality. Differentiated content with original perspective is more valuable than ever.
|
|
83
|
+
3. **Platform shifts** -- Google AI Overviews reduced organic clicks up to 40% for certain queries. TikTok became search engine for Gen Z. Paid newsletters (Substack) redistributed power to individual creators. Podcasts consolidated as deep authority format.
|
|
84
|
+
|
|
85
|
+
**New paradigm:** Content must be excellent, differentiated, and intelligently distributed.
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## 2. Content Strategy Frameworks
|
|
90
|
+
|
|
91
|
+
### 2.1 Kristina Halvorson -- Content Strategy Quad
|
|
92
|
+
|
|
93
|
+
The foundational model dividing content strategy into four interdependent areas:
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
CONTENT
|
|
97
|
+
/ \
|
|
98
|
+
Substance Structure
|
|
99
|
+
(what to say) (how to organize)
|
|
100
|
+
| |
|
|
101
|
+
COMPONENTS COMPONENTS
|
|
102
|
+
| |
|
|
103
|
+
Workflow Governance
|
|
104
|
+
(how to do) (how to maintain)
|
|
105
|
+
\ /
|
|
106
|
+
PEOPLE
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
- **Substance:** Key messages, tone of voice, depth, sources, personas
|
|
110
|
+
- **Structure:** Information architecture, content models, metadata, taxonomies, channel strategy
|
|
111
|
+
- **Workflow:** Creation/review/approval processes, tools, editorial calendar, roles, metrics
|
|
112
|
+
- **Governance:** Style guides, content policies, auditing, compliance, training
|
|
113
|
+
|
|
114
|
+
### 2.2 Content Pillars
|
|
115
|
+
|
|
116
|
+
Central themes around which all content strategy organizes. 3-5 pillars recommended, each representing 20-30% of total content.
|
|
117
|
+
|
|
118
|
+
Each pillar must have:
|
|
119
|
+
1. **Business relevance** -- connects to product/service
|
|
120
|
+
2. **Audience interest** -- real demand exists
|
|
121
|
+
3. **Brand authority** -- genuine expertise
|
|
122
|
+
4. **Content potential** -- generates enough derivatives
|
|
123
|
+
|
|
124
|
+
### 2.3 Content-Market Fit
|
|
125
|
+
|
|
126
|
+
The point where content finds genuine market demand (analogous to Product-Market Fit).
|
|
127
|
+
|
|
128
|
+
| Signal | Metric |
|
|
129
|
+
|--------|--------|
|
|
130
|
+
| Growing organic search | Organic traffic MoM > 10% |
|
|
131
|
+
| Above-average engagement | Read time > 3min, scroll depth > 60% |
|
|
132
|
+
| Spontaneous sharing | Shares/pageview > 1% |
|
|
133
|
+
| Referenced as authority | Editorial backlinks, citations |
|
|
134
|
+
| Returning audience | Returning visitors > 30% |
|
|
135
|
+
| Conversion via content | Content-attributed leads > 20% |
|
|
136
|
+
|
|
137
|
+
### 2.4 Editorial Mission Statement
|
|
138
|
+
|
|
139
|
+
Formula:
|
|
140
|
+
```
|
|
141
|
+
"Our content helps [TARGET AUDIENCE] to [MAIN BENEFIT]
|
|
142
|
+
through [CONTENT TYPE] about [THEMES/PILLARS]."
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
Functions as a decision filter: any idea that does not fit the mission is discarded.
|
|
146
|
+
|
|
147
|
+
### 2.5 Hero / Hub / Help (3H Model)
|
|
148
|
+
|
|
149
|
+
| Tier | % of Content | % Investment | Primary Impact |
|
|
150
|
+
|------|-------------|-------------|----------------|
|
|
151
|
+
| **Hero** (1-2x/year) | 5-10% | 20-30% | Awareness |
|
|
152
|
+
| **Hub** (weekly) | 20-30% | 30-40% | Engagement |
|
|
153
|
+
| **Help** (daily/ongoing) | 60-70% | 30-40% | Traffic + Conversion |
|
|
154
|
+
|
|
155
|
+
- **Hero:** Large-scale productions, campaigns, documentaries, events
|
|
156
|
+
- **Hub:** Serialized content creating consumption habits (weekly series, podcasts)
|
|
157
|
+
- **Help:** Evergreen content answering specific questions (tutorials, how-tos, FAQs)
|
|
158
|
+
|
|
159
|
+
### 2.6 StoryBrand SB7 Framework (Donald Miller)
|
|
160
|
+
|
|
161
|
+
Positions the brand as **Guide**, not Hero. The customer is the hero.
|
|
162
|
+
|
|
163
|
+
```
|
|
164
|
+
1. CHARACTER (Hero) -- The customer (NOT the brand)
|
|
165
|
+
2. PROBLEM -- External (practical) + Internal (frustration) + Philosophical (why it's wrong)
|
|
166
|
+
3. GUIDE -- The brand (empathy + authority)
|
|
167
|
+
4. PLAN -- Simple 3-step plan
|
|
168
|
+
5. CALL TO ACTION -- Direct + transitional CTA
|
|
169
|
+
6. SUCCESS -- Positive outcome (transformed life)
|
|
170
|
+
7. FAILURE -- Negative outcome (what happens if they don't act)
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
### 2.7 They Ask, You Answer (Marcus Sheridan)
|
|
174
|
+
|
|
175
|
+
The **Big 5** content types customers research before buying:
|
|
176
|
+
|
|
177
|
+
| Type | Why It Works |
|
|
178
|
+
|------|-------------|
|
|
179
|
+
| **Price & Cost** | 80% of sites don't talk about price. Whoever does, wins |
|
|
180
|
+
| **Problems** | Honesty builds trust |
|
|
181
|
+
| **Comparisons** | Customers compare anyway -- be the source |
|
|
182
|
+
| **Reviews** | You can be fair and still position yourself |
|
|
183
|
+
| **Best Of** | Demonstrates expertise without selling directly |
|
|
184
|
+
|
|
185
|
+
Impact: Sheridan's blog generated $17M+ in tracked sales for River Pools. One article on pool costs generated $3M+.
|
|
186
|
+
|
|
187
|
+
### 2.8 Content Marketing Funnel
|
|
188
|
+
|
|
189
|
+
```
|
|
190
|
+
TOFU (Awareness): Blog posts, infographics, short videos, social posts
|
|
191
|
+
MOFU (Consideration): Ebooks, webinars, case studies, templates, comparisons
|
|
192
|
+
BOFU (Decision): Demos, ROI calculators, detailed testimonials, proposals
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Ideal distribution: 50% TOFU, 30% MOFU, 20% BOFU. Most common trap: producing only TOFU content.
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## 3. Content Architecture & Taxonomy
|
|
200
|
+
|
|
201
|
+
### 3.1 Information Architecture for Content
|
|
202
|
+
|
|
203
|
+
Four systems (Morville & Rosenfeld):
|
|
204
|
+
1. **Organization** -- How content is grouped (topic, chronology, type, audience)
|
|
205
|
+
2. **Labeling** -- How content is named (titles, categories, tags)
|
|
206
|
+
3. **Navigation** -- How users move between content (menus, breadcrumbs, internal links)
|
|
207
|
+
4. **Search** -- How content is found (search, filters, faceted navigation)
|
|
208
|
+
|
|
209
|
+
### 3.2 Content Models
|
|
210
|
+
|
|
211
|
+
Structural definition of each content type (not visual template):
|
|
212
|
+
|
|
213
|
+
```yaml
|
|
214
|
+
blog_post:
|
|
215
|
+
fields:
|
|
216
|
+
- title: string (max 60 chars)
|
|
217
|
+
- slug: string (auto-generated)
|
|
218
|
+
- excerpt: string (max 160 chars)
|
|
219
|
+
- body: rich_text
|
|
220
|
+
- featured_image: media
|
|
221
|
+
- author: reference(author)
|
|
222
|
+
- category: reference(category)
|
|
223
|
+
- tags: reference(tag)[]
|
|
224
|
+
- pillar: reference(content_pillar)
|
|
225
|
+
- seo_title: string (max 60)
|
|
226
|
+
- seo_description: string (max 160)
|
|
227
|
+
- status: enum(draft, review, published, archived)
|
|
228
|
+
- funnel_stage: enum(tofu, mofu, bofu)
|
|
229
|
+
- content_tier: enum(hero, hub, help)
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### 3.3 Metadata & Taxonomies
|
|
233
|
+
|
|
234
|
+
Combine **controlled taxonomy** (fixed hierarchy) with **free tags** (granular classification).
|
|
235
|
+
|
|
236
|
+
| Metadata | Type | Purpose |
|
|
237
|
+
|----------|------|---------|
|
|
238
|
+
| Title | Descriptive | Identification + SEO |
|
|
239
|
+
| Author | Reference | Credibility, E-E-A-T |
|
|
240
|
+
| Publication date | Temporal | Freshness |
|
|
241
|
+
| Category | Taxonomy | Organization |
|
|
242
|
+
| Tags | Folksonomy | Discovery |
|
|
243
|
+
| Funnel stage | Classification | Journey alignment |
|
|
244
|
+
| Target persona | Reference | Personalization |
|
|
245
|
+
| Format | Enum | Filtering (video, text, audio) |
|
|
246
|
+
| Content score | Computed | Prioritization |
|
|
247
|
+
|
|
248
|
+
### 3.4 Headless CMS & Content-as-Data
|
|
249
|
+
|
|
250
|
+
| CMS | Model | Highlight |
|
|
251
|
+
|-----|-------|-----------|
|
|
252
|
+
| **Contentful** | Cloud | Enterprise leader, 300K+ clients |
|
|
253
|
+
| **Sanity** | Cloud/Self-hosted | GROQ query language, real-time |
|
|
254
|
+
| **Strapi** | Open-source | Node.js, auto-generated API |
|
|
255
|
+
| **Payload** | Open-source | TypeScript-native, Next.js |
|
|
256
|
+
| **Hygraph** | Cloud | GraphQL-native |
|
|
257
|
+
|
|
258
|
+
### 3.5 Content Type Catalog
|
|
259
|
+
|
|
260
|
+
| Type | Length | Cadence | Funnel | Primary Resource |
|
|
261
|
+
|------|--------|---------|--------|-----------------|
|
|
262
|
+
| Blog Post (Help) | 1,500-2,500 words | 3-5/week | TOFU | Writer + SEO |
|
|
263
|
+
| Blog Post (Hub) | 3,000-5,000 words | 1/week | MOFU | Sr. Writer + Designer |
|
|
264
|
+
| Case Study | 1,500-2,000 words | 1-2/month | BOFU | Writer + Client |
|
|
265
|
+
| Whitepaper | 5,000-10,000 words | 1/quarter | MOFU | Expert + Designer |
|
|
266
|
+
| Video Tutorial | 5-15 min | 2/week | Help | Videomaker |
|
|
267
|
+
| Podcast Episode | 30-60 min | 1/week | Hub | Host + Guest |
|
|
268
|
+
| Social Post | < 280 chars or 1 image | Daily | TOFU | Social Manager |
|
|
269
|
+
| Email Newsletter | 500-1,000 words | 1/week | Hub | Editor |
|
|
270
|
+
| Webinar | 45-60 min | 1/month | MOFU | Expert + Moderator |
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## 4. Editorial Operations
|
|
275
|
+
|
|
276
|
+
### 4.1 Editorial Calendar Components
|
|
277
|
+
|
|
278
|
+
```
|
|
279
|
+
Per item:
|
|
280
|
+
- Title / Theme
|
|
281
|
+
- Content type
|
|
282
|
+
- Content pillar
|
|
283
|
+
- Funnel stage
|
|
284
|
+
- Target keyword (SEO)
|
|
285
|
+
- Target persona
|
|
286
|
+
- Author / Reviewer
|
|
287
|
+
- Draft date / Review date / Publish date
|
|
288
|
+
- Distribution channels
|
|
289
|
+
- CTA / Conversion objective
|
|
290
|
+
- Status (idea > briefing > production > review > approved > scheduled > published)
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
### 4.2 7-Phase Editorial Workflow
|
|
294
|
+
|
|
295
|
+
| Phase | Activities | Output |
|
|
296
|
+
|-------|-----------|--------|
|
|
297
|
+
| **1. Ideation** | Brainstorm from pillars, keyword research, competitor gaps, social listening, sales input | Prioritized idea bank |
|
|
298
|
+
| **2. Briefing** | Content brief with objective, audience, keyword, outline, references, CTA, deadline | Approved brief |
|
|
299
|
+
| **3. Creation** | Research, drafting, on-page optimization, visual assets | Complete draft |
|
|
300
|
+
| **4. Review** | Editorial, SEO, fact-check, brand, legal (if needed) | Approved content |
|
|
301
|
+
| **5. Publication** | CMS upload, metadata, link verification, tracking setup | Published content |
|
|
302
|
+
| **6. Distribution** | Social sharing, email, outreach, syndication, employee advocacy, paid boost | Distributed content |
|
|
303
|
+
| **7. Measurement** | Metrics monitoring, benchmark comparison, optimization opportunities | Report + insights |
|
|
304
|
+
|
|
305
|
+
### 4.3 Editorial Team Roles
|
|
306
|
+
|
|
307
|
+
| Role | Responsibility | Key Skills |
|
|
308
|
+
|------|---------------|------------|
|
|
309
|
+
| **Head of Content** | Strategy, OKRs, budget, team | Editorial vision, management, analytics |
|
|
310
|
+
| **Editor-in-Chief** | Quality, tone of voice, final approval | Exceptional writing, attention to detail |
|
|
311
|
+
| **Content Strategist** | Planning, pillars, personas, calendar | Research, SEO, analytics |
|
|
312
|
+
| **SEO Specialist** | Keyword research, optimization, performance | Technical SEO, tools, analytics |
|
|
313
|
+
| **Writer** | Regular production | Clear writing, versatility, speed |
|
|
314
|
+
| **Designer** | Visual assets, infographics, thumbnails | Graphic design, brand |
|
|
315
|
+
| **Content Ops Manager** | Processes, tools, calendar, workflow | Project management, efficiency |
|
|
316
|
+
|
|
317
|
+
### 4.4 Content Brief Template
|
|
318
|
+
|
|
319
|
+
```markdown
|
|
320
|
+
## Content Brief
|
|
321
|
+
|
|
322
|
+
### Metadata
|
|
323
|
+
- Provisional title: ___
|
|
324
|
+
- Type: Blog Post / Video / Podcast / ...
|
|
325
|
+
- Pillar: ___ | Persona: ___ | Funnel: TOFU / MOFU / BOFU
|
|
326
|
+
- Draft deadline: ___ | Publish deadline: ___
|
|
327
|
+
|
|
328
|
+
### SEO
|
|
329
|
+
- Primary keyword: ___ (volume: ___, difficulty: ___)
|
|
330
|
+
- Secondary keywords: ___, ___, ___
|
|
331
|
+
- Search intent: Informational / Navigational / Transactional
|
|
332
|
+
- Competitor URLs to surpass: ___
|
|
333
|
+
|
|
334
|
+
### Objective
|
|
335
|
+
- KNOW: What should the reader learn?
|
|
336
|
+
- FEEL: What should the reader feel?
|
|
337
|
+
- DO: What action should they take? (CTA)
|
|
338
|
+
|
|
339
|
+
### Outline
|
|
340
|
+
1. Introduction (hook + context)
|
|
341
|
+
2-4. Main sections
|
|
342
|
+
5. Conclusion + CTA
|
|
343
|
+
|
|
344
|
+
### References & Constraints
|
|
345
|
+
- Sources: ___
|
|
346
|
+
- Length: ___ words
|
|
347
|
+
- Tone: educational / conversational / technical
|
|
348
|
+
- Must include: ___ | Must avoid: ___
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
### 4.5 Style Guide Components
|
|
352
|
+
|
|
353
|
+
1. **Tone of voice** -- Brand personality, spectrums (formal-casual, serious-playful), examples by situation
|
|
354
|
+
2. **Writing rules** -- Active voice, sentence length (<25 words), paragraph length (<5 lines), jargon policy
|
|
355
|
+
3. **Formatting** -- Heading case, lists, bold/italic, link anchor text, image alt text
|
|
356
|
+
4. **Terminology** -- Brand glossary, prohibited terms, preferred spellings
|
|
357
|
+
|
|
358
|
+
---
|
|
359
|
+
|
|
360
|
+
## 5. Copywriting & Persuasion
|
|
361
|
+
|
|
362
|
+
### 5.1 Eugene Schwartz's 5 Awareness Levels
|
|
363
|
+
|
|
364
|
+
| Level | Awareness | Copy Approach |
|
|
365
|
+
|-------|----------|---------------|
|
|
366
|
+
| 1 | **Unaware** -- Doesn't know there's a problem | Lead with story/provocation |
|
|
367
|
+
| 2 | **Problem Aware** -- Knows the problem, not the solution | Agitate pain, present hope |
|
|
368
|
+
| 3 | **Solution Aware** -- Knows solutions exist, not yours | Differentiate your solution |
|
|
369
|
+
| 4 | **Product Aware** -- Knows your product, hasn't bought | Social proof, offers, urgency |
|
|
370
|
+
| 5 | **Most Aware** -- Already bought or almost | Direct discount, strong CTA |
|
|
371
|
+
|
|
372
|
+
### 5.2 Copywriting Frameworks
|
|
373
|
+
|
|
374
|
+
| Framework | Structure | Best For |
|
|
375
|
+
|-----------|----------|----------|
|
|
376
|
+
| **AIDA** | Attention > Interest > Desire > Action | Ads, landing pages, emails |
|
|
377
|
+
| **PAS** | Problem > Agitate > Solve | Direct sale copy |
|
|
378
|
+
| **BAB** | Before > After > Bridge | Transformation stories |
|
|
379
|
+
| **4Ps** | Promise > Picture > Proof > Push | Long-form sales letters |
|
|
380
|
+
|
|
381
|
+
### 5.3 Headline Formulas
|
|
382
|
+
|
|
383
|
+
| Formula | Example |
|
|
384
|
+
|---------|---------|
|
|
385
|
+
| Number + Adjective + Keyword + Promise | "7 Simple SEO Strategies That Triple Your Traffic" |
|
|
386
|
+
| How + Desired Result | "How to Write Headlines That Convert 3x More" |
|
|
387
|
+
| Question the reader already asks | "Why Are Your Emails Going to Spam?" |
|
|
388
|
+
| Negative + Common Mistake | "5 Content Marketing Mistakes Killing Your ROI" |
|
|
389
|
+
| Result + Timeframe | "Double Your Organic Traffic in 90 Days" |
|
|
390
|
+
| The Definitive Guide to X | "The Definitive Guide to Content Strategy for 2026" |
|
|
391
|
+
|
|
392
|
+
**Headline rules:**
|
|
393
|
+
- Clarity > Creativity (understand in 3 seconds)
|
|
394
|
+
- Specific numbers beat generic ("7" > "several")
|
|
395
|
+
- Odd numbers outperform even in lists
|
|
396
|
+
- 6-8 word headlines have 21% higher CTR (Outbrain)
|
|
397
|
+
- Brackets in title increase CTR by 38% (HubSpot)
|
|
398
|
+
|
|
399
|
+
### 5.4 Storytelling Frameworks
|
|
400
|
+
|
|
401
|
+
**Hero's Journey (Campbell/Vogler):** 12-stage narrative structure. Application in content: case studies are not "client X used our product" -- they are "client X faced [problem], tried [solutions that failed], found [our product], and now [transformative result]."
|
|
402
|
+
|
|
403
|
+
**Pixar Structure:**
|
|
404
|
+
```
|
|
405
|
+
Once upon a time ___. Every day ___. Until one day ___.
|
|
406
|
+
Because of that ___. Because of that ___.
|
|
407
|
+
Until finally ___.
|
|
408
|
+
```
|
|
409
|
+
|
|
410
|
+
### 5.5 Cialdini's 7 Persuasion Principles
|
|
411
|
+
|
|
412
|
+
| Principle | Content Application |
|
|
413
|
+
|-----------|-------------------|
|
|
414
|
+
| **Reciprocity** | Offer free value before asking (lead magnets, tools) |
|
|
415
|
+
| **Commitment** | Start with small steps (micro-conversions, quizzes) |
|
|
416
|
+
| **Social Proof** | Customer numbers, logos, testimonials, reviews |
|
|
417
|
+
| **Authority** | Research data, certifications, press mentions |
|
|
418
|
+
| **Liking** | Human tone, personal stories, vulnerability |
|
|
419
|
+
| **Scarcity** | Limited spots, deadlines, limited editions |
|
|
420
|
+
| **Unity** | "Us" vs "them", group belonging |
|
|
421
|
+
|
|
422
|
+
### 5.6 Readability Rules
|
|
423
|
+
|
|
424
|
+
- Sentences < 25 words
|
|
425
|
+
- Paragraphs < 5 lines
|
|
426
|
+
- Simple words (prefer "use" over "utilize")
|
|
427
|
+
- Active voice
|
|
428
|
+
- One idea per sentence
|
|
429
|
+
- Subheadings every 300-400 words
|
|
430
|
+
- Bullet points for lists
|
|
431
|
+
- Bold for key concepts
|
|
432
|
+
|
|
433
|
+
**Power Words by emotion:**
|
|
434
|
+
|
|
435
|
+
| Emotion | Words |
|
|
436
|
+
|---------|-------|
|
|
437
|
+
| Urgency | Now, today, last, immediate, deadline |
|
|
438
|
+
| Exclusivity | Secret, insider, VIP, restricted, invite |
|
|
439
|
+
| Curiosity | Revealed, surprising, little-known, secret |
|
|
440
|
+
| Safety | Guaranteed, proven, tested, certified |
|
|
441
|
+
| Novelty | New, launch, revolutionary, first |
|
|
442
|
+
| Ease | Simple, fast, easy, step-by-step, automatic |
|
|
443
|
+
|
|
444
|
+
---
|
|
445
|
+
|
|
446
|
+
## 6. SEO Content
|
|
447
|
+
|
|
448
|
+
### 6.1 Keyword Research & Intent Mapping
|
|
449
|
+
|
|
450
|
+
| Intent | What User Wants | Ideal Content |
|
|
451
|
+
|--------|----------------|---------------|
|
|
452
|
+
| **Informational** | Learn something | Blog post, guide, explainer video |
|
|
453
|
+
| **Navigational** | Find a specific site | Not a target for SEO content |
|
|
454
|
+
| **Commercial** | Research before buying | Comparison, review, listicle |
|
|
455
|
+
| **Transactional** | Take an action | Landing page, pricing page |
|
|
456
|
+
|
|
457
|
+
**Keyword research process:**
|
|
458
|
+
1. Seed keywords (from content pillars)
|
|
459
|
+
2. Expansion (Ahrefs, SEMrush, Google Keyword Planner)
|
|
460
|
+
3. Intent classification
|
|
461
|
+
4. Prioritization (volume x difficulty x business relevance)
|
|
462
|
+
5. Clustering (related topics)
|
|
463
|
+
6. Mapping to content types
|
|
464
|
+
7. Gap analysis (keywords competitors rank for, you don't)
|
|
465
|
+
|
|
466
|
+
### 6.2 Pillar/Cluster Model
|
|
467
|
+
|
|
468
|
+
```
|
|
469
|
+
PILLAR PAGE (3,000-10,000 words) -- "Complete Guide to Content Marketing"
|
|
470
|
+
|-- CLUSTER 1: "What Is Content Marketing" <-- internal link <--> Pillar
|
|
471
|
+
|-- CLUSTER 2: "Content Strategy vs Content Marketing" <-- link <--> Pillar
|
|
472
|
+
|-- CLUSTER 3: "How to Create an Editorial Calendar" <-- link <--> Pillar
|
|
473
|
+
|-- CLUSTER 4: "Content Marketing Metrics" <-- link <--> Pillar
|
|
474
|
+
...
|
|
475
|
+
```
|
|
476
|
+
|
|
477
|
+
**Rules:** Pillar covers topic broadly; clusters deepen subtopics. All clusters link to pillar AND vice-versa. HubSpot reported 3x faster organic traffic growth after implementing pillar/cluster.
|
|
478
|
+
|
|
479
|
+
### 6.3 E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness)
|
|
480
|
+
|
|
481
|
+
| Factor | How to Demonstrate |
|
|
482
|
+
|--------|-------------------|
|
|
483
|
+
| **Experience** | Write from first-hand experience, proprietary data, real screenshots |
|
|
484
|
+
| **Expertise** | Author bio, credentials, publications, portfolio |
|
|
485
|
+
| **Authoritativeness** | Backlinks from respected sites, citations, media mentions |
|
|
486
|
+
| **Trustworthiness** | HTTPS, privacy policy, contact info, fact-checking |
|
|
487
|
+
|
|
488
|
+
### 6.4 Content Decay & Refresh Strategy
|
|
489
|
+
|
|
490
|
+
**Identification:** Google Search Console (compare CTR/position last 3 months vs previous 3 months). GA4: pages with >20% YoY organic traffic drop.
|
|
491
|
+
|
|
492
|
+
**Refresh classification:**
|
|
493
|
+
- **URGENT:** Factual errors, outdated data
|
|
494
|
+
- **HIGH:** >30% traffic drop, lost featured snippet
|
|
495
|
+
- **MEDIUM:** 15-30% drop, competitors published better content
|
|
496
|
+
- **LOW:** OK content that could be improved
|
|
497
|
+
|
|
498
|
+
**Rule: 20% of editorial effort should go to refreshing existing content.** Updating a ranked post is almost always more efficient than creating new from scratch.
|
|
499
|
+
|
|
500
|
+
### 6.5 Featured Snippets Optimization
|
|
501
|
+
|
|
502
|
+
| Type | How to Optimize |
|
|
503
|
+
|------|----------------|
|
|
504
|
+
| **Paragraph** | Question as heading + direct answer (40-60 words) in following paragraph |
|
|
505
|
+
| **List** | Heading + clear list items (H2/H3 + bullets) |
|
|
506
|
+
| **Table** | HTML table with clear headers, comparative data |
|
|
507
|
+
| **Video** | YouTube with timestamps, detailed description |
|
|
508
|
+
|
|
509
|
+
### 6.6 Programmatic Content
|
|
510
|
+
|
|
511
|
+
Content generated at scale using templates + data. Works when there's a large structured dataset with search demand per variation. Fails when content is thin or lacks human quality supervision. Google penalizes mass-generated content without added value.
|
|
512
|
+
|
|
513
|
+
---
|
|
514
|
+
|
|
515
|
+
## 7. Video Content
|
|
516
|
+
|
|
517
|
+
### 7.1 YouTube Strategy Phases
|
|
518
|
+
|
|
519
|
+
| Phase | Focus | Objective |
|
|
520
|
+
|-------|-------|-----------|
|
|
521
|
+
| **Foundation** (0-1K subs) | Specific niche, 2-3 videos/week, search content (how-tos) | Find working format |
|
|
522
|
+
| **Growth** (1K-10K) | Maintain cadence, expand to browse/suggested, series | Sustainable growth |
|
|
523
|
+
| **Scale** (10K-100K+) | Mix search + browse + subscriber, collaborations, Shorts | Niche authority |
|
|
524
|
+
|
|
525
|
+
YouTube: 2.5-2.6B MAU (2025), ~2.85B projected 2026. Second largest search engine.
|
|
526
|
+
|
|
527
|
+
### 7.2 Video SEO
|
|
528
|
+
|
|
529
|
+
| Factor | Optimization |
|
|
530
|
+
|--------|-------------|
|
|
531
|
+
| **Title** | Keyword at start, < 60 chars, curiosity hooks |
|
|
532
|
+
| **Description** | 200+ words, keyword in first 100 chars, timestamps |
|
|
533
|
+
| **Thumbnail** | Custom, high contrast, expressive face, short text |
|
|
534
|
+
| **Chapters** | Timestamps in 0:00 format (generates Google key moments) |
|
|
535
|
+
| **Closed Captions** | Upload SRT (not just auto-generated) |
|
|
536
|
+
|
|
537
|
+
### 7.3 Short-Form Video Hooks
|
|
538
|
+
|
|
539
|
+
65% of viewers decide in the first 3 seconds whether to keep watching.
|
|
540
|
+
|
|
541
|
+
| Hook Type | Example |
|
|
542
|
+
|-----------|---------|
|
|
543
|
+
| Controversial statement | "Content marketing is dead. Here's what works." |
|
|
544
|
+
| Question | "Do you know why 90% of blogs don't generate leads?" |
|
|
545
|
+
| Number/Stat | "This technique tripled our traffic in 30 days" |
|
|
546
|
+
| Before/After | "My newsletter had 200 subscribers. Today it has 50,000." |
|
|
547
|
+
| Tutorial promise | "In 30 seconds you'll learn to write 3x better headlines" |
|
|
548
|
+
| Pattern interrupt | Unexpected action, quick cut, different sound |
|
|
549
|
+
|
|
550
|
+
**Production essentials:** Vertical (9:16), on-screen captions (85% watch without sound), quick cuts (2-3 seconds), text overlay, trending music.
|
|
551
|
+
|
|
552
|
+
### 7.4 Video Production Workflow
|
|
553
|
+
|
|
554
|
+
```
|
|
555
|
+
Pre-Production: Briefing/Script, Shot list, Setup (lighting, audio, camera), Thumbnail planning
|
|
556
|
+
Production: Record hook first (maximum energy), Record body in blocks, B-roll separately
|
|
557
|
+
Post-Production: Rough cut > Fine cut > Color grading > Audio mixing > Motion graphics > Thumbnail > Export + Upload
|
|
558
|
+
```
|
|
559
|
+
|
|
560
|
+
---
|
|
561
|
+
|
|
562
|
+
## 8. Audio Content
|
|
563
|
+
|
|
564
|
+
### 8.1 Podcast Strategy
|
|
565
|
+
|
|
566
|
+
**Market (2025-2026):** ~584M global listeners (2025), projected 619M (2026). Global market: USD 30.7B (2024), projected USD 131B by 2030. Brazil is the 2nd largest podcast market (after US), with ~44% listening weekly and 11 hours/week average.
|
|
567
|
+
|
|
568
|
+
```
|
|
569
|
+
1. POSITIONING: Specific niche, format (interview/solo/panel), weekly cadence, 30-60min
|
|
570
|
+
2. PRODUCTION: Mic (Blue Yeti/Rode), Riverside.fm (remote), Descript (editing)
|
|
571
|
+
3. DISTRIBUTION: RSS > all directories, Spotify + Apple + YouTube Music, social clips
|
|
572
|
+
4. GROWTH: Guests with own audience, guest appearances, show notes SEO, community
|
|
573
|
+
```
|
|
574
|
+
|
|
575
|
+
### 8.2 Audio > Content Repurposing
|
|
576
|
+
|
|
577
|
+
```
|
|
578
|
+
1 Podcast Episode (60 min)
|
|
579
|
+
|-- Transcription: 8,000-12,000 words
|
|
580
|
+
| |-- 2-3 blog posts (1,500-3,000 words each)
|
|
581
|
+
| |-- 1 newsletter (summary + key insights)
|
|
582
|
+
| |-- 1 Twitter/LinkedIn thread (10-15 posts)
|
|
583
|
+
|-- 10-15 audiograms (30-60s clips with waveform)
|
|
584
|
+
| |-- 5 Reels/TikTok/Shorts
|
|
585
|
+
|-- 5-10 quote cards
|
|
586
|
+
|-- 1 infographic (visual episode summary)
|
|
587
|
+
|-- SEO-optimized show notes
|
|
588
|
+
```
|
|
589
|
+
|
|
590
|
+
---
|
|
591
|
+
|
|
592
|
+
## 9. Social Media Content
|
|
593
|
+
|
|
594
|
+
### 9.1 Native Content by Platform
|
|
595
|
+
|
|
596
|
+
| Platform | Native Format | Tone | Ideal Cadence | Discovery |
|
|
597
|
+
|----------|--------------|------|---------------|-----------|
|
|
598
|
+
| **Instagram** | Reels (60s), Carousels, Stories | Visual, inspirational | 1-2 Reels/day + Stories | Explore, Reels Feed |
|
|
599
|
+
| **TikTok** | Short video (15-180s) | Authentic, trend-driven | 1-3/day | For You Page |
|
|
600
|
+
| **LinkedIn** | Long text, document carousels, video | Professional, educational | 3-5/week | Algorithmic feed |
|
|
601
|
+
| **X/Twitter** | Short text, threads, images | Opinion, humor, real-time | 3-10/day | Timeline, trending |
|
|
602
|
+
| **YouTube** | Long-form, Shorts | Educational, entertainment | 1-2/week | Search, Suggested, Browse |
|
|
603
|
+
| **Pinterest** | Vertical pins | Inspirational, tutorial | 5-15/day | Visual search, feed |
|
|
604
|
+
|
|
605
|
+
Cross-posted content without adaptation performs 60-80% worse than native content.
|
|
606
|
+
|
|
607
|
+
### 9.2 Community Management
|
|
608
|
+
|
|
609
|
+
1. **Reactive engagement** -- Respond to comments, DMs, mentions (SLA: <2h messages, <24h comments)
|
|
610
|
+
2. **Proactive engagement** -- Comment on followers' posts, participate in relevant conversations
|
|
611
|
+
3. **Moderation** -- Manage spam, trolls, crises
|
|
612
|
+
4. **Feedback loop** -- Capture audience insights and feed product/content team
|
|
613
|
+
5. **Community building** -- Create owned spaces (Discord, Telegram, Slack)
|
|
614
|
+
|
|
615
|
+
### 9.3 UGC Strategy
|
|
616
|
+
|
|
617
|
+
92% of consumers trust UGC more than traditional advertising (Nielsen).
|
|
618
|
+
|
|
619
|
+
| Strategy | Description |
|
|
620
|
+
|----------|-------------|
|
|
621
|
+
| Hashtag challenge | Create hashtag and incentivize usage |
|
|
622
|
+
| Incentivized reviews | Post-purchase email with review link |
|
|
623
|
+
| Repost | Republish customer content (with credit) |
|
|
624
|
+
| Co-creation | Involve community in creation |
|
|
625
|
+
| Ambassadors | Formal brand advocate program |
|
|
626
|
+
|
|
627
|
+
### 9.4 Social Listening
|
|
628
|
+
|
|
629
|
+
| Tool | Model | Highlight |
|
|
630
|
+
|------|-------|-----------|
|
|
631
|
+
| **Brandwatch** | Enterprise | AI-powered, largest coverage |
|
|
632
|
+
| **Sprout Social** | Mid-market | Integrated with social management |
|
|
633
|
+
| **Buzzsumo** | Content-focused | Best for viral content analysis |
|
|
634
|
+
| **Stilingue** | Brazil-focused | PT-BR market focus |
|
|
635
|
+
|
|
636
|
+
---
|
|
637
|
+
|
|
638
|
+
## 10. Email & Newsletter
|
|
639
|
+
|
|
640
|
+
### 10.1 Newsletter Renaissance (2020+)
|
|
641
|
+
|
|
642
|
+
| Model | Description | Monetization |
|
|
643
|
+
|-------|-------------|-------------|
|
|
644
|
+
| **Curation** | Curated links/news | Sponsorship |
|
|
645
|
+
| **Opinion/Essay** | Original author text | Paid subscription |
|
|
646
|
+
| **Tutorial** | Teaches something each edition | Products + sponsors |
|
|
647
|
+
| **Industry** | Sector news and analysis | Paid subscription |
|
|
648
|
+
| **Hybrid** | Mix of curation + original | Sponsorship |
|
|
649
|
+
|
|
650
|
+
**Platforms (2025-2026):**
|
|
651
|
+
|
|
652
|
+
| Platform | Highlight |
|
|
653
|
+
|----------|-----------|
|
|
654
|
+
| **Substack** | 50M+ active subscriptions (5M paid), network effects |
|
|
655
|
+
| **beehiiv** | Growth tools (referral, recommendations) |
|
|
656
|
+
| **Kit** (ex-ConvertKit, rebranded Oct 2024) | Creator-focused, automations, App Store |
|
|
657
|
+
| **Mailchimp** | Veteran, extensive, small business |
|
|
658
|
+
| **Ghost** | Open-source, memberships |
|
|
659
|
+
|
|
660
|
+
### 10.2 Email Copywriting
|
|
661
|
+
|
|
662
|
+
**Subject line techniques:**
|
|
663
|
+
|
|
664
|
+
| Technique | Example |
|
|
665
|
+
|-----------|---------|
|
|
666
|
+
| Curiosity gap | "I discovered something about content marketing that changes everything" |
|
|
667
|
+
| Specificity | "3 content brief templates I use every week" |
|
|
668
|
+
| Real urgency | "Workshop spots close Friday" |
|
|
669
|
+
| Personalization | "[Name], your content strategy has a gap" |
|
|
670
|
+
| Direct value | "Free template: 2026 editorial calendar" |
|
|
671
|
+
|
|
672
|
+
**Effective email structure:** Subject (<50 chars) > Preview text > Opening hook > Body (1 main idea, short paragraphs) > CTA (1 main, clear) > P.S. (optional)
|
|
673
|
+
|
|
674
|
+
### 10.3 Segmentation & Automation
|
|
675
|
+
|
|
676
|
+
Segmented email has 14.31% higher open rate and 100.95% higher CTR than non-segmented (Mailchimp).
|
|
677
|
+
|
|
678
|
+
**Essential automations:**
|
|
679
|
+
|
|
680
|
+
| Sequence | Trigger | Objective |
|
|
681
|
+
|----------|---------|-----------|
|
|
682
|
+
| Welcome Series | New subscriber | Introduce brand, deliver value, segment |
|
|
683
|
+
| Lead Nurture | Material download | Educate, build trust, move to sale |
|
|
684
|
+
| Re-engagement | 60 days without opening | Reactivate or clean list |
|
|
685
|
+
| Abandoned Cart | Cart abandoned | Recover sale (30-50% recovery) |
|
|
686
|
+
|
|
687
|
+
### 10.4 Deliverability Factors
|
|
688
|
+
|
|
689
|
+
| Factor | Action |
|
|
690
|
+
|--------|--------|
|
|
691
|
+
| Authentication | Configure SPF, DKIM, DMARC |
|
|
692
|
+
| Sender reputation | Send consistently, bounce rate < 2% |
|
|
693
|
+
| Engagement | Opened and clicked emails improve reputation |
|
|
694
|
+
| List hygiene | Remove invalid addresses, unsubscribes, inactive |
|
|
695
|
+
| Complaint rate | Keep < 0.1% (easy unsubscribe) |
|
|
696
|
+
|
|
697
|
+
---
|
|
698
|
+
|
|
699
|
+
## 11. AI Content Production
|
|
700
|
+
|
|
701
|
+
### 11.1 LLM Capabilities for Content (2025-2026)
|
|
702
|
+
|
|
703
|
+
| Capability | Quality | Human Review Needed? |
|
|
704
|
+
|-----------|---------|---------------------|
|
|
705
|
+
| Brainstorming ideas | Excellent | Light (curation) |
|
|
706
|
+
| Research & summarization | Very good | Moderate (fact-check) |
|
|
707
|
+
| Outlines & structure | Excellent | Light |
|
|
708
|
+
| Draft writing | Good to very good | Substantial (tone, facts, originality) |
|
|
709
|
+
| Headlines & subject lines | Very good | Light (A/B test) |
|
|
710
|
+
| SEO optimization | Very good | Light |
|
|
711
|
+
| Editing & rewriting | Excellent | Light |
|
|
712
|
+
|
|
713
|
+
### 11.2 AI Content Workflow
|
|
714
|
+
|
|
715
|
+
```
|
|
716
|
+
1. RESEARCH: AI summarizes sources > Human validates + adds experience
|
|
717
|
+
2. OUTLINE: AI generates > Human reorganizes + adds unique angles
|
|
718
|
+
3. DRAFT: AI generates section by section > Human rewrites with own voice
|
|
719
|
+
4. EDIT: Human leads editorial review > AI assists with grammar/readability
|
|
720
|
+
5. OPTIMIZE: AI optimizes SEO + generates headline variations > Human validates
|
|
721
|
+
6. REPURPOSE: AI generates social/email/video script versions > Human adapts tone
|
|
722
|
+
```
|
|
723
|
+
|
|
724
|
+
### 11.3 Human-in-the-Loop (Where Humans Are Irreplaceable)
|
|
725
|
+
|
|
726
|
+
| Element | Why AI Fails |
|
|
727
|
+
|---------|-------------|
|
|
728
|
+
| First-hand experience | AI hasn't lived it, tested it, failed at it |
|
|
729
|
+
| Controversial/original opinion | AI tends toward consensus |
|
|
730
|
+
| Local cultural context | AI generalizes; Brazilian nuances escape |
|
|
731
|
+
| Genuine emotion | AI simulates emotion; readers notice |
|
|
732
|
+
| Editorial judgment | What NOT to include is as important as what to include |
|
|
733
|
+
| Fact-checking | AI hallucinates -- every fact needs verification |
|
|
734
|
+
|
|
735
|
+
### 11.4 CRAFT Prompt Framework
|
|
736
|
+
|
|
737
|
+
```
|
|
738
|
+
C - Context: Who you are, who you're writing for, which channel
|
|
739
|
+
R - Role: What role AI should assume (editor, writer, strategist)
|
|
740
|
+
A - Action: What exactly needs to be done
|
|
741
|
+
F - Format: Desired format (blog post, list, table, script)
|
|
742
|
+
T - Tone: Desired tone (with reference examples)
|
|
743
|
+
```
|
|
744
|
+
|
|
745
|
+
---
|
|
746
|
+
|
|
747
|
+
## 12. Content Measurement
|
|
748
|
+
|
|
749
|
+
### 12.1 KPIs by Objective
|
|
750
|
+
|
|
751
|
+
| Objective | Primary KPIs | Secondary KPIs |
|
|
752
|
+
|-----------|-------------|----------------|
|
|
753
|
+
| **Awareness** | Organic traffic, Impressions, Reach | New visitors, Share of voice |
|
|
754
|
+
| **Engagement** | Time on page, Scroll depth, Comments | Pages/session, Return rate |
|
|
755
|
+
| **Lead Gen** | Conversions, MQLs, Downloads | Form fill rate, Email signups |
|
|
756
|
+
| **Revenue** | Content-attributed revenue, Deals influenced | Pipeline value, Win rate |
|
|
757
|
+
| **Retention** | Content-impacted churn, Content NPS | Help content usage |
|
|
758
|
+
|
|
759
|
+
### 12.2 Content Scoring Model
|
|
760
|
+
|
|
761
|
+
```
|
|
762
|
+
Score = (Traffic x 0.2) + (Engagement x 0.2) + (Conversion x 0.3) + (Revenue x 0.3)
|
|
763
|
+
|
|
764
|
+
80-100: Flagship content (protect, update, amplify)
|
|
765
|
+
60-79: Strong performer (optimize, distribute more)
|
|
766
|
+
40-59: Average (refresh or repurpose)
|
|
767
|
+
20-39: Underperformer (diagnose, refresh or retire)
|
|
768
|
+
0-19: Dead weight (evaluate removal or consolidation)
|
|
769
|
+
```
|
|
770
|
+
|
|
771
|
+
### 12.3 Content ROI
|
|
772
|
+
|
|
773
|
+
```
|
|
774
|
+
ROI = ((Content-attributed revenue - Total content cost) / Total content cost) x 100
|
|
775
|
+
|
|
776
|
+
Total cost: team salaries, tools, freelancers, paid distribution, production
|
|
777
|
+
Revenue: directly attributed sales, influenced pipeline, retention, savings on other channels
|
|
778
|
+
```
|
|
779
|
+
|
|
780
|
+
**Attribution models:** First-touch (favors TOFU), Last-touch (favors BOFU), Multi-touch (fairest, most complex).
|
|
781
|
+
|
|
782
|
+
### 12.4 Behavioral Analytics
|
|
783
|
+
|
|
784
|
+
**Heat map insights (Hotjar, Microsoft Clarity):**
|
|
785
|
+
- Scroll depth: If 70% don't pass 30%, content is too long or opening doesn't engage
|
|
786
|
+
- Click maps: Are CTAs working? Do internal links get clicks?
|
|
787
|
+
- Rage clicks: Frustrated clicks on non-clickable elements
|
|
788
|
+
- Session recordings: Watch real users reading your content
|
|
789
|
+
|
|
790
|
+
---
|
|
791
|
+
|
|
792
|
+
## 13. Content Repurposing & Distribution
|
|
793
|
+
|
|
794
|
+
### 13.1 Gary Vee 1-to-Many Model
|
|
795
|
+
|
|
796
|
+
```
|
|
797
|
+
1 PILLAR CONTENT (60-min keynote, podcast, long video)
|
|
798
|
+
|
|
|
799
|
+
|-- MEDIUM-FORM (5-10 pieces)
|
|
800
|
+
| Blog posts, LinkedIn articles, YouTube chapters, newsletters
|
|
801
|
+
|
|
|
802
|
+
|-- SHORT-FORM (15-30 pieces)
|
|
803
|
+
| Reels/TikTok/Shorts, tweet threads, LinkedIn posts, carousels, audiograms
|
|
804
|
+
|
|
|
805
|
+
|-- MICRO-CONTENT (30-50 pieces)
|
|
806
|
+
Quote cards, Stories (polls, questions), community posts
|
|
807
|
+
```
|
|
808
|
+
|
|
809
|
+
**Output: 1 hour of content generates 30+ days of material for all platforms.**
|
|
810
|
+
|
|
811
|
+
### 13.2 Atomization Levels
|
|
812
|
+
|
|
813
|
+
| Level | From | To | Adaptation |
|
|
814
|
+
|-------|------|-----|-----------|
|
|
815
|
+
| 1 - Clip | 60min video | 60s clip | Select best moment, add captions |
|
|
816
|
+
| 2 - Reformat | 3,000-word blog | 10-slide carousel | Condense to key points, visual design |
|
|
817
|
+
| 3 - Transform | Audio podcast | Written thread | Transcribe, rewrite for text |
|
|
818
|
+
| 4 - Synthesize | 5 blog posts | 1 ebook | Curate, reorganize, add intro/conclusion |
|
|
819
|
+
| 5 - Derive | Case study | Template | Extract replicable framework |
|
|
820
|
+
|
|
821
|
+
### 13.3 Distribution Channels
|
|
822
|
+
|
|
823
|
+
**Owned:** Website/blog, Email list, Podcast feed, YouTube channel
|
|
824
|
+
**Earned:** Press mentions, Organic backlinks, Social shares, Guest posts
|
|
825
|
+
**Paid:** Social ads, Native advertising, Sponsored content, Influencer partnerships
|
|
826
|
+
|
|
827
|
+
**The 20/80 Rule:** Invest 20% creating content and 80% distributing. Most teams do the inverse.
|
|
828
|
+
|
|
829
|
+
### 13.4 Content Amplification Checklist
|
|
830
|
+
|
|
831
|
+
```
|
|
832
|
+
Immediately after publication:
|
|
833
|
+
[ ] Share on all social media (native for each)
|
|
834
|
+
[ ] Send to email list
|
|
835
|
+
[ ] Post in relevant communities (Reddit, forums, groups)
|
|
836
|
+
[ ] Notify people/companies mentioned in the content
|
|
837
|
+
[ ] Share internally (employee advocacy)
|
|
838
|
+
|
|
839
|
+
First week:
|
|
840
|
+
[ ] Create social versions (carousel, thread, clips)
|
|
841
|
+
[ ] Pitch to curation newsletters
|
|
842
|
+
[ ] Outreach to sites that might link
|
|
843
|
+
[ ] Paid boost on best organic performers
|
|
844
|
+
|
|
845
|
+
Ongoing:
|
|
846
|
+
[ ] Link from new content (internal linking)
|
|
847
|
+
[ ] Update old content to link to this
|
|
848
|
+
[ ] Include in email nurturing sequences
|
|
849
|
+
[ ] Recirculate on relevant dates (seasonality)
|
|
850
|
+
```
|
|
851
|
+
|
|
852
|
+
---
|
|
853
|
+
|
|
854
|
+
## 14. Content Governance & Quality
|
|
855
|
+
|
|
856
|
+
### 14.1 Content Audit Process
|
|
857
|
+
|
|
858
|
+
```
|
|
859
|
+
1. INVENTORY: List all URLs/pieces (Screaming Frog, GA4, CMS export)
|
|
860
|
+
2. ANALYZE: Performance, SEO, quality, brand alignment, technical
|
|
861
|
+
3. CLASSIFY: Keep / Update / Consolidate / Remove / Create (gaps)
|
|
862
|
+
4. PRIORITIZE: Quick wins > Investments > Maintenance
|
|
863
|
+
5. EXECUTE + TRACK: Action plan with owners, deadlines, impact monitoring
|
|
864
|
+
```
|
|
865
|
+
|
|
866
|
+
### 14.2 Content QA Checklist
|
|
867
|
+
|
|
868
|
+
```
|
|
869
|
+
EDITORIAL:
|
|
870
|
+
[ ] Title follows proven formula and includes keyword
|
|
871
|
+
[ ] Introduction has hook in first 100 words
|
|
872
|
+
[ ] Headings in correct hierarchy (H2 > H3 > H4)
|
|
873
|
+
[ ] Paragraphs < 5 lines, no grammar/spelling errors
|
|
874
|
+
[ ] Tone consistent with brand voice
|
|
875
|
+
[ ] Clear and specific CTA
|
|
876
|
+
[ ] Sources cited / fact-checked
|
|
877
|
+
|
|
878
|
+
SEO:
|
|
879
|
+
[ ] Primary keyword in title, H1, first paragraph
|
|
880
|
+
[ ] Meta title < 60 chars, meta description < 160 chars
|
|
881
|
+
[ ] Short descriptive URL slug
|
|
882
|
+
[ ] Internal links (3-5 minimum)
|
|
883
|
+
[ ] External links to authoritative sources
|
|
884
|
+
[ ] Alt text on all images
|
|
885
|
+
[ ] Schema markup applied (if applicable)
|
|
886
|
+
|
|
887
|
+
VISUAL:
|
|
888
|
+
[ ] High-quality featured image
|
|
889
|
+
[ ] Optimized images (< 200KB, WebP format)
|
|
890
|
+
[ ] Visual breaks every 300-500 words
|
|
891
|
+
[ ] Mobile preview verified
|
|
892
|
+
|
|
893
|
+
TECHNICAL:
|
|
894
|
+
[ ] All links working (no 404s)
|
|
895
|
+
[ ] Tracking configured (UTMs, GA4 events)
|
|
896
|
+
[ ] Open Graph tags correct
|
|
897
|
+
[ ] Canonical URL defined
|
|
898
|
+
```
|
|
899
|
+
|
|
900
|
+
### 14.3 Accessibility (WCAG)
|
|
901
|
+
|
|
902
|
+
- Alt text on all images
|
|
903
|
+
- Closed captions on all videos
|
|
904
|
+
- Podcast episode transcriptions
|
|
905
|
+
- Color contrast minimum 4.5:1
|
|
906
|
+
- Descriptive link text (not "click here")
|
|
907
|
+
- Hierarchical headings (H1 > H2 > H3)
|
|
908
|
+
- Minimum 16px body text
|
|
909
|
+
|
|
910
|
+
### 14.4 Legal Considerations
|
|
911
|
+
|
|
912
|
+
| Aspect | Rule |
|
|
913
|
+
|--------|------|
|
|
914
|
+
| **Copyright** | Don't use third-party images/text without license |
|
|
915
|
+
| **Disclosure** | Sponsored content must be clearly identified (#publi) |
|
|
916
|
+
| **Claims** | Avoid unsubstantiated claims. Add disclaimers |
|
|
917
|
+
| **LGPD** | Data capture needs explicit consent |
|
|
918
|
+
| **Image rights** | Photos of people need authorization (model release) |
|
|
919
|
+
|
|
920
|
+
---
|
|
921
|
+
|
|
922
|
+
## 15. Content Tech Stack
|
|
923
|
+
|
|
924
|
+
### 15.1 Recommended Stack by Team Size
|
|
925
|
+
|
|
926
|
+
**Solo Creator / Freelancer ($0-50/month):**
|
|
927
|
+
```
|
|
928
|
+
CMS: Ghost or WordPress | Writing: Google Docs + Grammarly | Design: Canva
|
|
929
|
+
SEO: Ubersuggest (free) + Search Console | Email: beehiiv or Kit (free tier)
|
|
930
|
+
Social: Buffer (free) | Analytics: GA4 | AI: Claude or ChatGPT
|
|
931
|
+
```
|
|
932
|
+
|
|
933
|
+
**Small Team (2-5 people, $200-500/month):**
|
|
934
|
+
```
|
|
935
|
+
CMS: WordPress or Webflow | Ops: Notion | SEO: Ahrefs Lite or SEMrush
|
|
936
|
+
Email: Kit or beehiiv Growth | Social: Buffer Pro or Later
|
|
937
|
+
Design: Canva Pro + Figma | Video: Descript | Analytics: GA4 + Hotjar
|
|
938
|
+
```
|
|
939
|
+
|
|
940
|
+
**Medium/Large Team (5-20+, $2,000-10,000/month):**
|
|
941
|
+
```
|
|
942
|
+
CMS: Contentful or Sanity (headless) | Ops: Asana/Monday + Notion
|
|
943
|
+
SEO: Ahrefs Standard + Clearscope | Email: ActiveCampaign or HubSpot
|
|
944
|
+
Social: Sprout Social | Design: Figma + Adobe CC | Video: Premiere + Descript
|
|
945
|
+
Analytics: GA4 + Amplitude + Hotjar | DAM: Bynder or Cloudinary
|
|
946
|
+
```
|
|
947
|
+
|
|
948
|
+
---
|
|
949
|
+
|
|
950
|
+
## 16. Brazilian Context
|
|
951
|
+
|
|
952
|
+
### 16.1 Market Overview
|
|
953
|
+
|
|
954
|
+
Brazil is the largest digital content market in Latin America: 183M internet users (86.2% penetration), 144M social media identities (67.8%), 3rd largest video consumption market. Brazilians spend 3h49min/day on social media -- the highest in the world.
|
|
955
|
+
|
|
956
|
+
| Aspect | Brazilian Specificity |
|
|
957
|
+
|--------|---------------------|
|
|
958
|
+
| **Language** | Brazilian Portuguese has unique nuances (voce vs tu, regionalisms, slang) |
|
|
959
|
+
| **Platforms** | WhatsApp as content channel (e-commerce, service, informal newsletters) |
|
|
960
|
+
| **Infoproducts** | Massive online course market (Hotmart, Kiwify, Eduzz) |
|
|
961
|
+
| **Seasonality** | Black Friday is biggest of year. Carnaval, Dia das Maes, Natal |
|
|
962
|
+
| **Regulation** | CONAR for advertising, #publi mandatory, LGPD for data |
|
|
963
|
+
| **Payment** | PIX facilitated microtransactions (tips, cheap subscriptions) |
|
|
964
|
+
|
|
965
|
+
### 16.2 PT-BR Content Nuances
|
|
966
|
+
|
|
967
|
+
- **Registers:** Formal (corporate docs), Semiformal (B2B blogs, LinkedIn), Informal (social media), Colloquial (TikTok, memes)
|
|
968
|
+
- **Common AI errors:** Using Portugal Portuguese ("utilizador" instead of "usuario"), overly formal tone for informal channels, literal English translations, wrong number/date formats (R$ not $, DD/MM/YYYY, comma for decimals)
|
|
969
|
+
|
|
970
|
+
### 16.3 Brazilian Content Platforms
|
|
971
|
+
|
|
972
|
+
| Platform | Highlight |
|
|
973
|
+
|----------|-----------|
|
|
974
|
+
| **Hotmart** | Largest LatAm infoproduct platform. 26M users, 370K+ products. ~9.9% + R$1.00/sale |
|
|
975
|
+
| **Kiwify** | Fast-growing competitor. 8.99% + R$2.49/sale. Public marketplace since 2026 |
|
|
976
|
+
| **Eduzz** | Optimized checkout, advanced analytics. Strong in health, fitness, finance |
|
|
977
|
+
|
|
978
|
+
### 16.4 Regulation
|
|
979
|
+
|
|
980
|
+
- **CONAR:** Self-regulation of Brazilian advertising. Processes complaints about misleading/abusive ads
|
|
981
|
+
- **#publi disclosure:** Sponsored content MUST be clearly identified (#publi, #publicidade, "Patrocinado por")
|
|
982
|
+
- **LGPD:** Law 13.709/2018, in effect since 2020. Explicit consent for data capture. Fines up to 2% of revenue, capped at R$50M
|
|
983
|
+
|
|
984
|
+
### 16.5 Brazilian Cultural Calendar
|
|
985
|
+
|
|
986
|
+
| Month | Key Dates | Content Opportunities |
|
|
987
|
+
|-------|-----------|----------------------|
|
|
988
|
+
| Jan | Back to school, annual planning | "Best tools for 2026", planning content |
|
|
989
|
+
| Feb | Carnaval | Light content, cultural, strategic pause |
|
|
990
|
+
| Mar | Women's Day (8th) | Diversity, empowerment |
|
|
991
|
+
| May | Mother's Day (2nd Sunday) | Emotional campaigns, gifts |
|
|
992
|
+
| Jun | Valentine's Day (12th), Festa Junina | Romantic, cultural |
|
|
993
|
+
| Aug | Father's Day (2nd Sunday) | Similar to Mother's Day |
|
|
994
|
+
| Nov | **Black Friday**, Consciencia Negra (20th) | BIGGEST commercial opportunity |
|
|
995
|
+
| Dec | Christmas, New Year | Retrospectives, predictions |
|
|
996
|
+
|
|
997
|
+
---
|
|
998
|
+
|
|
999
|
+
## 17. Key People & References
|
|
1000
|
+
|
|
1001
|
+
### 17.1 Essential Authors
|
|
1002
|
+
|
|
1003
|
+
| Person | Contribution | Key Work |
|
|
1004
|
+
|--------|-------------|----------|
|
|
1005
|
+
| **David Ogilvy** | Father of modern advertising | "Ogilvy on Advertising" (1983) |
|
|
1006
|
+
| **Eugene Schwartz** | Greatest DR copywriter. Awareness levels | "Breakthrough Advertising" (1966) |
|
|
1007
|
+
| **Seth Godin** | Permission marketing, Purple Cow | "Permission Marketing" (1999) |
|
|
1008
|
+
| **Joe Pulizzi** | Founded CMI, coined "content marketing" | "Epic Content Marketing" (2013) |
|
|
1009
|
+
| **Kristina Halvorson** | Mother of content strategy | "Content Strategy for the Web" (2009) |
|
|
1010
|
+
| **Ann Handley** | Chief Content Officer, MarketingProfs | "Everybody Writes" (2014) |
|
|
1011
|
+
| **Donald Miller** | StoryBrand framework | "Building a StoryBrand" (2017) |
|
|
1012
|
+
| **Marcus Sheridan** | They Ask, You Answer methodology | "They Ask, You Answer" (2017) |
|
|
1013
|
+
| **Gary Vaynerchuk** | Content repurposing model | "Jab, Jab, Jab, Right Hook" (2013) |
|
|
1014
|
+
| **Robert Cialdini** | Psychology of persuasion | "Influence" (1984) |
|
|
1015
|
+
| **Joseph Campbell** | Hero's Journey -- basis of all storytelling | "The Hero with a Thousand Faces" (1949) |
|
|
1016
|
+
| **Tiago Forte** | Building a Second Brain | "Building a Second Brain" (2022) |
|
|
1017
|
+
| **Ryan Holiday** | Perennial content | "Perennial Seller" (2017) |
|
|
1018
|
+
|
|
1019
|
+
### 17.2 Essential Books
|
|
1020
|
+
|
|
1021
|
+
| Book | Author | Year | Core Topic |
|
|
1022
|
+
|------|--------|------|-----------|
|
|
1023
|
+
| "Content Strategy for the Web" | Halvorson | 2009 | Founded the discipline |
|
|
1024
|
+
| "Everybody Writes" | Handley | 2014 | Writing for marketing |
|
|
1025
|
+
| "Epic Content Marketing" | Pulizzi | 2013 | Content marketing manifesto |
|
|
1026
|
+
| "Building a StoryBrand" | Miller | 2017 | SB7 framework |
|
|
1027
|
+
| "They Ask, You Answer" | Sheridan | 2017 | Content-driven sales |
|
|
1028
|
+
| "Breakthrough Advertising" | Schwartz | 1966 | Awareness levels |
|
|
1029
|
+
| "Influence" | Cialdini | 1984 | Persuasion principles |
|
|
1030
|
+
| "Made to Stick" | Heath brothers | 2007 | Memorable messages |
|
|
1031
|
+
| "On Writing Well" | Zinsser | 1976 | Clear nonfiction writing |
|
|
1032
|
+
| "Perennial Seller" | Holiday | 2017 | Lasting content |
|
|
1033
|
+
|
|
1034
|
+
---
|
|
1035
|
+
|
|
1036
|
+
## 18. Actionable Checklists
|
|
1037
|
+
|
|
1038
|
+
### Content Strategy Setup Checklist
|
|
1039
|
+
|
|
1040
|
+
```
|
|
1041
|
+
[ ] Define 3-5 content pillars (business relevance + audience interest + brand authority)
|
|
1042
|
+
[ ] Write Editorial Mission Statement
|
|
1043
|
+
[ ] Map content to funnel stages (TOFU/MOFU/BOFU)
|
|
1044
|
+
[ ] Choose Hero/Hub/Help distribution
|
|
1045
|
+
[ ] Define target personas with detail
|
|
1046
|
+
[ ] Create content models for each type
|
|
1047
|
+
[ ] Set up taxonomy (categories + tags)
|
|
1048
|
+
[ ] Choose tech stack appropriate to team size
|
|
1049
|
+
[ ] Build editorial calendar
|
|
1050
|
+
[ ] Define style guide and tone of voice
|
|
1051
|
+
[ ] Establish workflow (7 phases)
|
|
1052
|
+
[ ] Set KPIs per objective
|
|
1053
|
+
[ ] Schedule quarterly content audits
|
|
1054
|
+
```
|
|
1055
|
+
|
|
1056
|
+
### Weekly Editorial Operations Checklist
|
|
1057
|
+
|
|
1058
|
+
```
|
|
1059
|
+
[ ] Review upcoming calendar items (briefs ready?)
|
|
1060
|
+
[ ] Check content in review pipeline
|
|
1061
|
+
[ ] Publish scheduled content
|
|
1062
|
+
[ ] Distribute via all channels (native per platform)
|
|
1063
|
+
[ ] Monitor metrics on recent publications
|
|
1064
|
+
[ ] Respond to comments and engagement
|
|
1065
|
+
[ ] Update content scoring for top performers
|
|
1066
|
+
[ ] Feed ideation backlog with new ideas from social listening
|
|
1067
|
+
```
|
|
1068
|
+
|
|
1069
|
+
### Content-Market Fit Assessment
|
|
1070
|
+
|
|
1071
|
+
```
|
|
1072
|
+
[ ] Organic traffic growing MoM > 10%?
|
|
1073
|
+
[ ] Average read time > 3 minutes?
|
|
1074
|
+
[ ] Scroll depth > 60%?
|
|
1075
|
+
[ ] Shares/pageview > 1%?
|
|
1076
|
+
[ ] Returning visitors > 30%?
|
|
1077
|
+
[ ] Content-attributed leads > 20% of total?
|
|
1078
|
+
[ ] Getting editorial backlinks organically?
|
|
1079
|
+
```
|
|
1080
|
+
|
|
1081
|
+
### AI Content Production Checklist
|
|
1082
|
+
|
|
1083
|
+
```
|
|
1084
|
+
[ ] Research validated by human (not just AI output)
|
|
1085
|
+
[ ] Outline includes unique angles not in competitor content
|
|
1086
|
+
[ ] Draft rewritten with authentic voice and first-hand experience
|
|
1087
|
+
[ ] All facts verified against primary sources
|
|
1088
|
+
[ ] Cultural context adapted for Brazilian audience (if applicable)
|
|
1089
|
+
[ ] SEO optimization applied (keywords, headings, meta)
|
|
1090
|
+
[ ] Final review for brand voice consistency
|
|
1091
|
+
[ ] Multiple format versions created for distribution
|
|
1092
|
+
```
|
|
1093
|
+
|
|
1094
|
+
---
|
|
1095
|
+
|
|
1096
|
+
> **Source research:** MS-008 Content Master System | 38 sources | April 2026
|
|
1097
|
+
> **Compiled for:** squad-content knowledge-base | SINAPSE AI
|