@mytechtoday/augment-extensions 0.2.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +614 -39
- package/augment-extensions/coding-standards/bash/README.md +196 -0
- package/augment-extensions/coding-standards/bash/module.json +163 -0
- package/augment-extensions/coding-standards/bash/rules/naming-conventions.md +336 -0
- package/augment-extensions/coding-standards/bash/rules/universal-standards.md +289 -0
- package/augment-extensions/coding-standards/css/README.md +40 -0
- package/augment-extensions/coding-standards/css/examples/css-examples.css +550 -0
- package/augment-extensions/coding-standards/css/module.json +44 -0
- package/augment-extensions/coding-standards/css/rules/css-modern-features.md +448 -0
- package/augment-extensions/coding-standards/css/rules/css-standards.md +492 -0
- package/augment-extensions/coding-standards/html/README.md +40 -0
- package/augment-extensions/coding-standards/html/examples/html-examples.html +267 -0
- package/augment-extensions/coding-standards/html/examples/responsive-layout.html +505 -0
- package/augment-extensions/coding-standards/html/module.json +44 -0
- package/augment-extensions/coding-standards/html/rules/html-standards.md +349 -0
- package/augment-extensions/coding-standards/html-css-js/README.md +194 -0
- package/augment-extensions/coding-standards/html-css-js/examples/async-examples.js +487 -0
- package/augment-extensions/coding-standards/html-css-js/examples/css-examples.css +550 -0
- package/augment-extensions/coding-standards/html-css-js/examples/dom-examples.js +667 -0
- package/augment-extensions/coding-standards/html-css-js/examples/html-examples.html +267 -0
- package/augment-extensions/coding-standards/html-css-js/examples/javascript-examples.js +612 -0
- package/augment-extensions/coding-standards/html-css-js/examples/responsive-layout.html +505 -0
- package/augment-extensions/coding-standards/html-css-js/module.json +48 -0
- package/augment-extensions/coding-standards/html-css-js/rules/async-patterns.md +515 -0
- package/augment-extensions/coding-standards/html-css-js/rules/css-modern-features.md +448 -0
- package/augment-extensions/coding-standards/html-css-js/rules/css-standards.md +492 -0
- package/augment-extensions/coding-standards/html-css-js/rules/dom-manipulation.md +439 -0
- package/augment-extensions/coding-standards/html-css-js/rules/html-standards.md +349 -0
- package/augment-extensions/coding-standards/html-css-js/rules/javascript-standards.md +486 -0
- package/augment-extensions/coding-standards/html-css-js/rules/performance.md +463 -0
- package/augment-extensions/coding-standards/html-css-js/rules/tooling.md +543 -0
- package/augment-extensions/coding-standards/js/README.md +46 -0
- package/augment-extensions/coding-standards/js/examples/async-examples.js +487 -0
- package/augment-extensions/coding-standards/js/examples/dom-examples.js +667 -0
- package/augment-extensions/coding-standards/js/examples/javascript-examples.js +612 -0
- package/augment-extensions/coding-standards/js/module.json +49 -0
- package/augment-extensions/coding-standards/js/rules/async-patterns.md +515 -0
- package/augment-extensions/coding-standards/js/rules/dom-manipulation.md +439 -0
- package/augment-extensions/coding-standards/js/rules/javascript-standards.md +486 -0
- package/augment-extensions/coding-standards/js/rules/performance.md +463 -0
- package/augment-extensions/coding-standards/js/rules/tooling.md +543 -0
- package/augment-extensions/coding-standards/php/README.md +248 -0
- package/augment-extensions/coding-standards/php/examples/api-endpoint-example.php +204 -0
- package/augment-extensions/coding-standards/php/examples/cli-command-example.php +206 -0
- package/augment-extensions/coding-standards/php/examples/legacy-refactoring-example.php +234 -0
- package/augment-extensions/coding-standards/php/examples/web-application-example.php +211 -0
- package/augment-extensions/coding-standards/php/examples/woocommerce-extension-example.php +215 -0
- package/augment-extensions/coding-standards/php/examples/wordpress-plugin-example.php +189 -0
- package/augment-extensions/coding-standards/php/module.json +166 -0
- package/augment-extensions/coding-standards/php/rules/api-development.md +480 -0
- package/augment-extensions/coding-standards/php/rules/category-configuration.md +332 -0
- package/augment-extensions/coding-standards/php/rules/cli-tools.md +472 -0
- package/augment-extensions/coding-standards/php/rules/cms-integration.md +561 -0
- package/augment-extensions/coding-standards/php/rules/code-quality.md +402 -0
- package/augment-extensions/coding-standards/php/rules/documentation.md +425 -0
- package/augment-extensions/coding-standards/php/rules/ecommerce.md +627 -0
- package/augment-extensions/coding-standards/php/rules/error-handling.md +336 -0
- package/augment-extensions/coding-standards/php/rules/legacy-migration.md +677 -0
- package/augment-extensions/coding-standards/php/rules/naming-conventions.md +279 -0
- package/augment-extensions/coding-standards/php/rules/performance.md +392 -0
- package/augment-extensions/coding-standards/php/rules/psr-standards.md +186 -0
- package/augment-extensions/coding-standards/php/rules/security.md +358 -0
- package/augment-extensions/coding-standards/php/rules/testing.md +403 -0
- package/augment-extensions/coding-standards/php/rules/type-declarations.md +331 -0
- package/augment-extensions/coding-standards/php/rules/web-applications.md +426 -0
- package/augment-extensions/coding-standards/powershell/README.md +154 -0
- package/augment-extensions/coding-standards/powershell/examples/admin-example.ps1 +272 -0
- package/augment-extensions/coding-standards/powershell/examples/automation-example.ps1 +173 -0
- package/augment-extensions/coding-standards/powershell/examples/cloud-example.ps1 +243 -0
- package/augment-extensions/coding-standards/powershell/examples/cross-platform-example.ps1 +297 -0
- package/augment-extensions/coding-standards/powershell/examples/dsc-example.ps1 +224 -0
- package/augment-extensions/coding-standards/powershell/examples/legacy-migration-example.ps1 +340 -0
- package/augment-extensions/coding-standards/powershell/examples/module-example.psm1 +255 -0
- package/augment-extensions/coding-standards/powershell/module.json +165 -0
- package/augment-extensions/coding-standards/powershell/rules/administrative-tools.md +439 -0
- package/augment-extensions/coding-standards/powershell/rules/automation-scripts.md +240 -0
- package/augment-extensions/coding-standards/powershell/rules/cloud-orchestration.md +384 -0
- package/augment-extensions/coding-standards/powershell/rules/configuration-schema.md +383 -0
- package/augment-extensions/coding-standards/powershell/rules/cross-platform-scripts.md +482 -0
- package/augment-extensions/coding-standards/powershell/rules/dsc-configurations.md +296 -0
- package/augment-extensions/coding-standards/powershell/rules/error-handling.md +314 -0
- package/augment-extensions/coding-standards/powershell/rules/legacy-migrations.md +466 -0
- package/augment-extensions/coding-standards/powershell/rules/modules-functions.md +244 -0
- package/augment-extensions/coding-standards/powershell/rules/naming-conventions.md +266 -0
- package/augment-extensions/coding-standards/powershell/rules/performance-optimization.md +209 -0
- package/augment-extensions/coding-standards/powershell/rules/security-practices.md +314 -0
- package/augment-extensions/coding-standards/powershell/rules/testing-guidelines.md +268 -0
- package/augment-extensions/coding-standards/powershell/rules/universal-standards.md +197 -0
- package/augment-extensions/coding-standards/python/README.md +12 -8
- package/augment-extensions/coding-standards/python/examples/best-practices.py +373 -0
- package/augment-extensions/coding-standards/python/module.json +8 -4
- package/augment-extensions/coding-standards/python/rules/async-patterns.md +884 -0
- package/augment-extensions/coding-standards/python/rules/documentation.md +831 -0
- package/augment-extensions/coding-standards/python/rules/error-handling.md +855 -68
- package/augment-extensions/coding-standards/python/rules/testing.md +409 -0
- package/augment-extensions/coding-standards/python/rules/tooling.md +446 -0
- package/augment-extensions/coding-standards/python/rules/type-hints.md +115 -50
- package/augment-extensions/collections/html-css-js/README.md +82 -0
- package/augment-extensions/collections/html-css-js/collection.json +41 -0
- package/augment-extensions/domain-rules/database/README.md +161 -0
- package/augment-extensions/domain-rules/database/examples/flat-database-example.md +793 -0
- package/augment-extensions/domain-rules/database/examples/hybrid-database-example.md +1132 -0
- package/augment-extensions/domain-rules/database/examples/nosql-document-example.md +868 -0
- package/augment-extensions/domain-rules/database/examples/nosql-graph-example.md +805 -0
- package/augment-extensions/domain-rules/database/examples/relational-schema-example.md +621 -0
- package/augment-extensions/domain-rules/database/examples/vector-database-example.md +965 -0
- package/augment-extensions/domain-rules/database/module.json +28 -0
- package/augment-extensions/domain-rules/database/rules/flat-databases.md +624 -0
- package/augment-extensions/domain-rules/database/rules/nosql-databases.md +588 -0
- package/augment-extensions/domain-rules/database/rules/nosql-document-stores.md +856 -0
- package/augment-extensions/domain-rules/database/rules/nosql-graph-databases.md +778 -0
- package/augment-extensions/domain-rules/database/rules/nosql-key-value-stores.md +963 -0
- package/augment-extensions/domain-rules/database/rules/performance-optimization.md +1076 -0
- package/augment-extensions/domain-rules/database/rules/relational-databases.md +697 -0
- package/augment-extensions/domain-rules/database/rules/relational-indexing.md +671 -0
- package/augment-extensions/domain-rules/database/rules/relational-query-optimization.md +607 -0
- package/augment-extensions/domain-rules/database/rules/relational-schema-design.md +907 -0
- package/augment-extensions/domain-rules/database/rules/relational-transactions.md +783 -0
- package/augment-extensions/domain-rules/database/rules/security-standards.md +980 -0
- package/augment-extensions/domain-rules/database/rules/universal-best-practices.md +485 -0
- package/augment-extensions/domain-rules/database/rules/vector-databases.md +521 -0
- package/augment-extensions/domain-rules/database/rules/vector-embeddings.md +858 -0
- package/augment-extensions/domain-rules/database/rules/vector-indexing.md +934 -0
- package/augment-extensions/domain-rules/design/color/themes/catppuccin-latte/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/catppuccin-latte/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/catppuccin-mocha/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/catppuccin-mocha/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/dracula/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/dracula/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/gruvbox-dark/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/gruvbox-dark/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/gruvbox-light/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/gruvbox-light/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/high-contrast/README.md +27 -0
- package/augment-extensions/domain-rules/design/color/themes/high-contrast/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/monokai/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/monokai/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/nord/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/nord/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/one-dark/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/one-dark/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/one-light/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/one-light/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/solarized-dark/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/solarized-dark/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/solarized-light/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/solarized-light/module.json +26 -0
- package/augment-extensions/domain-rules/design/color/themes/tokyo-night/README.md +23 -0
- package/augment-extensions/domain-rules/design/color/themes/tokyo-night/module.json +26 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/README.md +136 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/SCHEMA-VALIDATION-REPORT.md +216 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/brand-kit-example.yaml +292 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/campaign-brief-example.yaml +389 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/content-calendar-example.yaml +643 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/email-newsletter-example.md +376 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/landing-page-example.md +934 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/ppc-ad-copy-example.md +301 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/seo-blog-post-example.md +347 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/examples/social-media-campaign-example.md +606 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/module.json +50 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/affiliate-influencer-marketing.md +593 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/asset-management.md +418 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/brand-consistency.md +210 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/content-marketing.md +337 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/conversion-optimization.md +455 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/direct-sales.md +499 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/email-marketing.md +439 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/legal-compliance.md +227 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/ppc-advertising.md +569 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/seo-optimization.md +470 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/social-media-marketing.md +414 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/rules/universal-marketing.md +177 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/schemas/asset-inventory.schema.json +247 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/schemas/brand-kit.schema.json +326 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/schemas/campaign-brief.schema.json +342 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/schemas/color-palette.schema.json +223 -0
- package/augment-extensions/domain-rules/marketing-standards/seo-sales-marketing/schemas/content-template.schema.json +383 -0
- package/augment-extensions/domain-rules/mcp/README.md +150 -0
- package/augment-extensions/domain-rules/mcp/examples/compressed-example.md +522 -0
- package/augment-extensions/domain-rules/mcp/examples/graph-augmented-example.md +520 -0
- package/augment-extensions/domain-rules/mcp/examples/hybrid-example.md +570 -0
- package/augment-extensions/domain-rules/mcp/examples/state-based-example.md +427 -0
- package/augment-extensions/domain-rules/mcp/examples/token-based-example.md +435 -0
- package/augment-extensions/domain-rules/mcp/examples/vector-based-example.md +502 -0
- package/augment-extensions/domain-rules/mcp/module.json +49 -0
- package/augment-extensions/domain-rules/mcp/rules/compressed-mcp.md +595 -0
- package/augment-extensions/domain-rules/mcp/rules/configuration.md +345 -0
- package/augment-extensions/domain-rules/mcp/rules/graph-augmented-mcp.md +687 -0
- package/augment-extensions/domain-rules/mcp/rules/hybrid-mcp.md +636 -0
- package/augment-extensions/domain-rules/mcp/rules/state-based-mcp.md +484 -0
- package/augment-extensions/domain-rules/mcp/rules/testing-validation.md +360 -0
- package/augment-extensions/domain-rules/mcp/rules/token-based-mcp.md +393 -0
- package/augment-extensions/domain-rules/mcp/rules/universal-rules.md +194 -0
- package/augment-extensions/domain-rules/mcp/rules/vector-based-mcp.md +625 -0
- package/augment-extensions/workflows/beads/module.json +4 -3
- package/augment-extensions/workflows/beads-integration/IMPLEMENTATION-STATUS.md +145 -0
- package/augment-extensions/workflows/beads-integration/README.md +143 -0
- package/augment-extensions/workflows/beads-integration/config/defaults.json +32 -0
- package/augment-extensions/workflows/beads-integration/config/schema.json +140 -0
- package/augment-extensions/workflows/beads-integration/examples/basic-task-generation.md +293 -0
- package/augment-extensions/workflows/beads-integration/module.json +75 -0
- package/augment-extensions/workflows/beads-integration/rules/core-rules.md +219 -0
- package/augment-extensions/workflows/beads-integration/rules/effectiveness-standards.md +256 -0
- package/augment-extensions/workflows/beads-integration/rules/task-generation.md +607 -0
- package/augment-extensions/workflows/database/README.md +195 -0
- package/augment-extensions/workflows/database/ai-prompt-testing.md +295 -0
- package/augment-extensions/workflows/database/examples/migration-example.md +498 -0
- package/augment-extensions/workflows/database/examples/optimization-example.md +496 -0
- package/augment-extensions/workflows/database/examples/schema-design-example.md +444 -0
- package/augment-extensions/workflows/database/module.json +42 -0
- package/augment-extensions/workflows/database/rules/data-migration.md +249 -0
- package/augment-extensions/workflows/database/rules/documentation-standards.md +339 -0
- package/augment-extensions/workflows/database/rules/migration-workflow.md +352 -0
- package/augment-extensions/workflows/database/rules/optimization-workflow.md +435 -0
- package/augment-extensions/workflows/database/rules/schema-design-workflow.md +535 -0
- package/augment-extensions/workflows/database/rules/testing-patterns.md +305 -0
- package/augment-extensions/workflows/database/rules/workflow.md +458 -0
- package/augment-extensions/workflows/openspec/module.json +4 -3
- package/augment-extensions/writing-standards/screenplay/README.md +300 -0
- package/augment-extensions/writing-standards/screenplay/_templates/README.md +121 -0
- package/augment-extensions/writing-standards/screenplay/_templates/genre-template.md +153 -0
- package/augment-extensions/writing-standards/screenplay/_templates/style-template.md +243 -0
- package/augment-extensions/writing-standards/screenplay/_templates/theme-template.md +213 -0
- package/augment-extensions/writing-standards/screenplay/examples/aaa-hollywood-scene.fountain +164 -0
- package/augment-extensions/writing-standards/screenplay/examples/beat-sheet-example.yaml +95 -0
- package/augment-extensions/writing-standards/screenplay/examples/character-profile-example.yaml +116 -0
- package/augment-extensions/writing-standards/screenplay/examples/commercial-30sec.fountain +151 -0
- package/augment-extensions/writing-standards/screenplay/examples/independent-monologue.fountain +67 -0
- package/augment-extensions/writing-standards/screenplay/examples/news-segment.fountain +142 -0
- package/augment-extensions/writing-standards/screenplay/examples/plot-outline-example.yaml +184 -0
- package/augment-extensions/writing-standards/screenplay/examples/tv-episode-teaser.fountain +204 -0
- package/augment-extensions/writing-standards/screenplay/genres/README.md +181 -0
- package/augment-extensions/writing-standards/screenplay/genres/examples/.gitkeep +2 -0
- package/augment-extensions/writing-standards/screenplay/genres/module.json +70 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/.gitkeep +2 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/action.md +399 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/adventure.md +407 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/animation.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/biographical.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/comedy.md +401 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/documentary.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/drama.md +409 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/fantasy.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/historical.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/horror.md +268 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/musical.md +294 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/mystery.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/noir.md +294 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/romance.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/sci-fi.md +289 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/superhero.md +293 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/thriller.md +294 -0
- package/augment-extensions/writing-standards/screenplay/genres/rules/western.md +293 -0
- package/augment-extensions/writing-standards/screenplay/module.json +124 -0
- package/augment-extensions/writing-standards/screenplay/rules/aaa-hollywood-films.md +339 -0
- package/augment-extensions/writing-standards/screenplay/rules/ai-integration-testing.md +329 -0
- package/augment-extensions/writing-standards/screenplay/rules/character-development.md +169 -0
- package/augment-extensions/writing-standards/screenplay/rules/commercials.md +437 -0
- package/augment-extensions/writing-standards/screenplay/rules/dialogue-writing.md +263 -0
- package/augment-extensions/writing-standards/screenplay/rules/diversity-inclusion.md +261 -0
- package/augment-extensions/writing-standards/screenplay/rules/examples-guide.md +315 -0
- package/augment-extensions/writing-standards/screenplay/rules/formatting-validation.md +413 -0
- package/augment-extensions/writing-standards/screenplay/rules/fountain-format.md +372 -0
- package/augment-extensions/writing-standards/screenplay/rules/independent-films.md +374 -0
- package/augment-extensions/writing-standards/screenplay/rules/live-tv-productions.md +443 -0
- package/augment-extensions/writing-standards/screenplay/rules/narrative-structures.md +207 -0
- package/augment-extensions/writing-standards/screenplay/rules/news-broadcasts.md +444 -0
- package/augment-extensions/writing-standards/screenplay/rules/pacing-timing.md +331 -0
- package/augment-extensions/writing-standards/screenplay/rules/quality-review-checklist.md +334 -0
- package/augment-extensions/writing-standards/screenplay/rules/quick-reference.md +299 -0
- package/augment-extensions/writing-standards/screenplay/rules/screen-continuity.md +263 -0
- package/augment-extensions/writing-standards/screenplay/rules/streaming-content.md +412 -0
- package/augment-extensions/writing-standards/screenplay/rules/trope-management.md +370 -0
- package/augment-extensions/writing-standards/screenplay/rules/tv-series.md +374 -0
- package/augment-extensions/writing-standards/screenplay/rules/universal-formatting.md +339 -0
- package/augment-extensions/writing-standards/screenplay/rules/vscode-integration.md +277 -0
- package/augment-extensions/writing-standards/screenplay/rules/web-content.md +393 -0
- package/augment-extensions/writing-standards/screenplay/schemas/beat-sheet.json +332 -0
- package/augment-extensions/writing-standards/screenplay/schemas/character-profile.json +247 -0
- package/augment-extensions/writing-standards/screenplay/schemas/feature-selection.json +200 -0
- package/augment-extensions/writing-standards/screenplay/schemas/plot-outline.json +233 -0
- package/augment-extensions/writing-standards/screenplay/schemas/screenplay-config.json +245 -0
- package/augment-extensions/writing-standards/screenplay/schemas/trope-inventory.json +221 -0
- package/augment-extensions/writing-standards/screenplay/styles/README.md +159 -0
- package/augment-extensions/writing-standards/screenplay/styles/examples/.gitkeep +2 -0
- package/augment-extensions/writing-standards/screenplay/styles/examples/style-applications.md +1449 -0
- package/augment-extensions/writing-standards/screenplay/styles/module.json +64 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/.gitkeep +2 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/dialogue-centric.md +520 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/ensemble.md +499 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/epic.md +497 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/experimental.md +492 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/flashback.md +509 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/linear.md +490 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/minimalist.md +499 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/non-linear.md +501 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/poetic.md +499 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/realistic.md +498 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/satirical.md +499 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/surreal.md +508 -0
- package/augment-extensions/writing-standards/screenplay/styles/rules/voice-over.md +500 -0
- package/augment-extensions/writing-standards/screenplay/themes/README.md +158 -0
- package/augment-extensions/writing-standards/screenplay/themes/examples/.gitkeep +2 -0
- package/augment-extensions/writing-standards/screenplay/themes/examples/common-mistakes-and-fixes.md +643 -0
- package/augment-extensions/writing-standards/screenplay/themes/examples/complete-scene-example.md +311 -0
- package/augment-extensions/writing-standards/screenplay/themes/examples/individual-theme-examples.md +562 -0
- package/augment-extensions/writing-standards/screenplay/themes/examples/multi-theme-weaving.md +538 -0
- package/augment-extensions/writing-standards/screenplay/themes/examples/theme-application-guide.md +432 -0
- package/augment-extensions/writing-standards/screenplay/themes/examples/theme-integration-across-acts.md +637 -0
- package/augment-extensions/writing-standards/screenplay/themes/module.json +66 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/.gitkeep +2 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/ambition.md +458 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/betrayal.md +490 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/environment.md +458 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/fate.md +459 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/friendship.md +491 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/growth.md +491 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/identity.md +490 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/isolation.md +464 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/justice.md +461 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/love.md +489 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/power.md +494 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/redemption.md +483 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/revenge.md +489 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/survival.md +496 -0
- package/augment-extensions/writing-standards/screenplay/themes/rules/technology.md +463 -0
- package/cli/MODULES.md +302 -0
- package/cli/dist/cli.js +168 -10
- package/cli/dist/cli.js.map +1 -1
- package/cli/dist/commands/catalog.d.ts +13 -0
- package/cli/dist/commands/catalog.d.ts.map +1 -0
- package/cli/dist/commands/catalog.js +104 -0
- package/cli/dist/commands/catalog.js.map +1 -0
- package/cli/dist/commands/gui.d.ts +6 -0
- package/cli/dist/commands/gui.d.ts.map +1 -0
- package/cli/dist/commands/gui.js +211 -0
- package/cli/dist/commands/gui.js.map +1 -0
- package/cli/dist/commands/init.d.ts.map +1 -1
- package/cli/dist/commands/init.js +12 -0
- package/cli/dist/commands/init.js.map +1 -1
- package/cli/dist/commands/install-rules.d.ts +14 -0
- package/cli/dist/commands/install-rules.d.ts.map +1 -0
- package/cli/dist/commands/install-rules.js +127 -0
- package/cli/dist/commands/install-rules.js.map +1 -0
- package/cli/dist/commands/link.d.ts.map +1 -1
- package/cli/dist/commands/link.js +9 -11
- package/cli/dist/commands/link.js.map +1 -1
- package/cli/dist/commands/list.d.ts.map +1 -1
- package/cli/dist/commands/list.js +11 -28
- package/cli/dist/commands/list.js.map +1 -1
- package/cli/dist/commands/mcp.d.ts +48 -0
- package/cli/dist/commands/mcp.d.ts.map +1 -0
- package/cli/dist/commands/mcp.js +229 -0
- package/cli/dist/commands/mcp.js.map +1 -0
- package/cli/dist/commands/self-remove.d.ts +7 -0
- package/cli/dist/commands/self-remove.d.ts.map +1 -0
- package/cli/dist/commands/self-remove.js +179 -0
- package/cli/dist/commands/self-remove.js.map +1 -0
- package/cli/dist/commands/show.d.ts +19 -0
- package/cli/dist/commands/show.d.ts.map +1 -1
- package/cli/dist/commands/show.js +478 -63
- package/cli/dist/commands/show.js.map +1 -1
- package/cli/dist/commands/skill.d.ts +67 -0
- package/cli/dist/commands/skill.d.ts.map +1 -0
- package/cli/dist/commands/skill.js +513 -0
- package/cli/dist/commands/skill.js.map +1 -0
- package/cli/dist/commands/unlink.d.ts +6 -0
- package/cli/dist/commands/unlink.d.ts.map +1 -0
- package/cli/dist/commands/unlink.js +115 -0
- package/cli/dist/commands/unlink.js.map +1 -0
- package/cli/dist/commands/validate.d.ts +6 -0
- package/cli/dist/commands/validate.d.ts.map +1 -0
- package/cli/dist/commands/validate.js +159 -0
- package/cli/dist/commands/validate.js.map +1 -0
- package/cli/dist/types/gui.d.ts +62 -0
- package/cli/dist/types/gui.d.ts.map +1 -0
- package/cli/dist/types/gui.js +30 -0
- package/cli/dist/types/gui.js.map +1 -0
- package/cli/dist/utils/catalog-sync.d.ts +22 -0
- package/cli/dist/utils/catalog-sync.d.ts.map +1 -0
- package/cli/dist/utils/catalog-sync.js +157 -0
- package/cli/dist/utils/catalog-sync.js.map +1 -0
- package/cli/dist/utils/character-count.d.ts +56 -0
- package/cli/dist/utils/character-count.d.ts.map +1 -0
- package/cli/dist/utils/character-count.js +190 -0
- package/cli/dist/utils/character-count.js.map +1 -0
- package/cli/dist/utils/documentation-validator.d.ts +18 -0
- package/cli/dist/utils/documentation-validator.d.ts.map +1 -0
- package/cli/dist/utils/documentation-validator.js +233 -0
- package/cli/dist/utils/documentation-validator.js.map +1 -0
- package/cli/dist/utils/gui-helpers.d.ts +23 -0
- package/cli/dist/utils/gui-helpers.d.ts.map +1 -0
- package/cli/dist/utils/gui-helpers.js +159 -0
- package/cli/dist/utils/gui-helpers.js.map +1 -0
- package/cli/dist/utils/install-rules.d.ts +32 -0
- package/cli/dist/utils/install-rules.d.ts.map +1 -0
- package/cli/dist/utils/install-rules.js +375 -0
- package/cli/dist/utils/install-rules.js.map +1 -0
- package/cli/dist/utils/mcp-integration.d.ts +70 -0
- package/cli/dist/utils/mcp-integration.d.ts.map +1 -0
- package/cli/dist/utils/mcp-integration.js +292 -0
- package/cli/dist/utils/mcp-integration.js.map +1 -0
- package/cli/dist/utils/module-system.d.ts +232 -0
- package/cli/dist/utils/module-system.d.ts.map +1 -0
- package/cli/dist/utils/module-system.js +900 -0
- package/cli/dist/utils/module-system.js.map +1 -0
- package/cli/dist/utils/modules-catalog.d.ts +33 -0
- package/cli/dist/utils/modules-catalog.d.ts.map +1 -0
- package/cli/dist/utils/modules-catalog.js +163 -0
- package/cli/dist/utils/modules-catalog.js.map +1 -0
- package/cli/dist/utils/rule-install-hooks.d.ts +19 -0
- package/cli/dist/utils/rule-install-hooks.d.ts.map +1 -0
- package/cli/dist/utils/rule-install-hooks.js +224 -0
- package/cli/dist/utils/rule-install-hooks.js.map +1 -0
- package/cli/dist/utils/skill-system.d.ts +95 -0
- package/cli/dist/utils/skill-system.d.ts.map +1 -0
- package/cli/dist/utils/skill-system.js +313 -0
- package/cli/dist/utils/skill-system.js.map +1 -0
- package/modules.md +559 -105
- package/package.json +17 -6
|
@@ -0,0 +1,643 @@
|
|
|
1
|
+
# Content Calendar Example: Q1 2026 Marketing Campaign
|
|
2
|
+
# AI Analytics Platform Launch - 90-Day Content Schedule
|
|
3
|
+
|
|
4
|
+
metadata:
|
|
5
|
+
campaignName: "AI Analytics Platform Launch"
|
|
6
|
+
campaignId: "ai-analytics-q1-2026"
|
|
7
|
+
quarter: "Q1 2026"
|
|
8
|
+
startDate: "2026-03-01"
|
|
9
|
+
endDate: "2026-05-31"
|
|
10
|
+
owner: "Marketing Team"
|
|
11
|
+
lastUpdated: "2026-01-31"
|
|
12
|
+
|
|
13
|
+
# Content Themes by Week
|
|
14
|
+
themes:
|
|
15
|
+
week1:
|
|
16
|
+
theme: "Launch Week - Product Announcement"
|
|
17
|
+
focus: "Awareness and excitement"
|
|
18
|
+
hashtags: ["#ProductLaunch", "#AIAnalytics", "#DataDriven"]
|
|
19
|
+
|
|
20
|
+
week2:
|
|
21
|
+
theme: "Social Proof Week - Customer Success"
|
|
22
|
+
focus: "Trust and credibility"
|
|
23
|
+
hashtags: ["#CustomerSuccess", "#CaseStudy", "#Results"]
|
|
24
|
+
|
|
25
|
+
week3:
|
|
26
|
+
theme: "Education Week - How-To Content"
|
|
27
|
+
focus: "Value and expertise"
|
|
28
|
+
hashtags: ["#DataTips", "#Analytics", "#BestPractices"]
|
|
29
|
+
|
|
30
|
+
week4:
|
|
31
|
+
theme: "Feature Spotlight Week"
|
|
32
|
+
focus: "Product capabilities"
|
|
33
|
+
hashtags: ["#ProductFeatures", "#Innovation", "#AI"]
|
|
34
|
+
|
|
35
|
+
# Weekly Content Schedule
|
|
36
|
+
schedule:
|
|
37
|
+
# Week 1: Launch Week (March 1-7, 2026)
|
|
38
|
+
- date: "2026-03-01"
|
|
39
|
+
dayOfWeek: "Monday"
|
|
40
|
+
week: 1
|
|
41
|
+
content:
|
|
42
|
+
- platform: "LinkedIn"
|
|
43
|
+
type: "Article"
|
|
44
|
+
title: "The Future of Data Analytics: AI-Powered Insights"
|
|
45
|
+
author: "CEO - John Smith"
|
|
46
|
+
status: "Draft"
|
|
47
|
+
deadline: "2026-02-25"
|
|
48
|
+
assignedTo: "Content Team"
|
|
49
|
+
wordCount: 1200
|
|
50
|
+
keywords: ["AI analytics", "data-driven decisions", "business intelligence"]
|
|
51
|
+
cta: "Read more on our blog"
|
|
52
|
+
notes: "Thought leadership piece to set stage for launch"
|
|
53
|
+
|
|
54
|
+
- platform: "Twitter"
|
|
55
|
+
type: "Teaser Post"
|
|
56
|
+
content: "Something big is coming tomorrow 👀 Hint: AI + Data + Simplicity"
|
|
57
|
+
scheduledTime: "14:00 EST"
|
|
58
|
+
status: "Approved"
|
|
59
|
+
assignedTo: "Social Media Manager"
|
|
60
|
+
media: "teaser-video-15s.mp4"
|
|
61
|
+
hashtags: ["#AI", "#ComingSoon"]
|
|
62
|
+
|
|
63
|
+
- date: "2026-03-02"
|
|
64
|
+
dayOfWeek: "Tuesday"
|
|
65
|
+
week: 1
|
|
66
|
+
content:
|
|
67
|
+
- platform: "All Platforms"
|
|
68
|
+
type: "Launch Announcement"
|
|
69
|
+
title: "Introducing TechFlow AI Analytics Platform"
|
|
70
|
+
scheduledTime: "10:00 EST"
|
|
71
|
+
status: "Approved"
|
|
72
|
+
assignedTo: "Marketing Team"
|
|
73
|
+
budget: "$1,200"
|
|
74
|
+
paidPromotion: true
|
|
75
|
+
targeting:
|
|
76
|
+
audience: "Data analysts, BI professionals, C-suite"
|
|
77
|
+
industries: ["SaaS", "E-commerce", "Finance"]
|
|
78
|
+
jobTitles: ["Data Analyst", "Business Intelligence Manager", "VP Analytics"]
|
|
79
|
+
deliverables:
|
|
80
|
+
- "LinkedIn post + carousel (5 slides)"
|
|
81
|
+
- "Twitter thread (5 tweets)"
|
|
82
|
+
- "Instagram carousel (10 slides)"
|
|
83
|
+
- "Facebook post + video"
|
|
84
|
+
media:
|
|
85
|
+
- "product-dashboard-screenshot.png"
|
|
86
|
+
- "launch-video-60s.mp4"
|
|
87
|
+
- "feature-highlights-carousel.pdf"
|
|
88
|
+
|
|
89
|
+
- platform: "Blog"
|
|
90
|
+
type: "Blog Post"
|
|
91
|
+
title: "How AI Analytics Transforms Data Chaos Into Insights"
|
|
92
|
+
author: "Content Marketing Manager"
|
|
93
|
+
wordCount: 1500
|
|
94
|
+
status: "In Progress"
|
|
95
|
+
deadline: "2026-03-01"
|
|
96
|
+
keywords: ["AI analytics", "data integration", "automated insights"]
|
|
97
|
+
seoTarget: "AI analytics platform"
|
|
98
|
+
cta: "Start free trial"
|
|
99
|
+
|
|
100
|
+
- date: "2026-03-03"
|
|
101
|
+
dayOfWeek: "Wednesday"
|
|
102
|
+
week: 1
|
|
103
|
+
content:
|
|
104
|
+
- platform: "LinkedIn"
|
|
105
|
+
type: "Educational Post"
|
|
106
|
+
title: "5 Signs Your Business Needs AI-Powered Analytics"
|
|
107
|
+
scheduledTime: "09:00 EST"
|
|
108
|
+
status: "Scheduled"
|
|
109
|
+
assignedTo: "Content Team"
|
|
110
|
+
media: "infographic-5-signs.png"
|
|
111
|
+
hashtags: ["#DataTips", "#Analytics", "#BestPractices"]
|
|
112
|
+
|
|
113
|
+
- platform: "Email"
|
|
114
|
+
type: "Newsletter"
|
|
115
|
+
subject: "🚀 Introducing TechFlow AI Analytics - Transform Your Data"
|
|
116
|
+
segment: "Existing customers + prospects"
|
|
117
|
+
listSize: 50000
|
|
118
|
+
status: "Draft"
|
|
119
|
+
deadline: "2026-03-02"
|
|
120
|
+
assignedTo: "Email Marketing Specialist"
|
|
121
|
+
abTest:
|
|
122
|
+
variant_a: "Subject: Transform Data Chaos Into Insights"
|
|
123
|
+
variant_b: "Subject: AI Analytics That Actually Makes Sense"
|
|
124
|
+
metric: "Open rate"
|
|
125
|
+
|
|
126
|
+
- date: "2026-03-04"
|
|
127
|
+
dayOfWeek: "Thursday"
|
|
128
|
+
week: 1
|
|
129
|
+
content:
|
|
130
|
+
- platform: "LinkedIn"
|
|
131
|
+
type: "Thought Leadership"
|
|
132
|
+
title: "Why Traditional BI Tools Are Failing Modern Businesses"
|
|
133
|
+
author: "VP of Product"
|
|
134
|
+
scheduledTime: "11:00 EST"
|
|
135
|
+
status: "Approved"
|
|
136
|
+
wordCount: 800
|
|
137
|
+
hashtags: ["#BusinessIntelligence", "#DataStrategy"]
|
|
138
|
+
|
|
139
|
+
- platform: "Twitter"
|
|
140
|
+
type: "Thread"
|
|
141
|
+
title: "5 Data Analytics Mistakes That Cost You Money (Thread)"
|
|
142
|
+
scheduledTime: "13:00 EST"
|
|
143
|
+
status: "Scheduled"
|
|
144
|
+
tweetCount: 5
|
|
145
|
+
assignedTo: "Social Media Manager"
|
|
146
|
+
|
|
147
|
+
- date: "2026-03-05"
|
|
148
|
+
dayOfWeek: "Friday"
|
|
149
|
+
week: 1
|
|
150
|
+
content:
|
|
151
|
+
- platform: "Instagram"
|
|
152
|
+
type: "Reel"
|
|
153
|
+
title: "Product Demo: Natural Language Queries in Action"
|
|
154
|
+
duration: "60s"
|
|
155
|
+
scheduledTime: "17:00 EST"
|
|
156
|
+
status: "In Production"
|
|
157
|
+
deadline: "2026-03-04"
|
|
158
|
+
assignedTo: "Video Production Team"
|
|
159
|
+
hashtags: ["#ProductDemo", "#AIAnalytics", "#TechInnovation"]
|
|
160
|
+
|
|
161
|
+
- platform: "YouTube"
|
|
162
|
+
type: "Video"
|
|
163
|
+
title: "TechFlow AI Analytics Platform - Full Product Tour"
|
|
164
|
+
duration: "5:00"
|
|
165
|
+
status: "Filming"
|
|
166
|
+
deadline: "2026-03-03"
|
|
167
|
+
assignedTo: "Video Team"
|
|
168
|
+
seoKeywords: ["AI analytics platform tour", "data analytics software demo"]
|
|
169
|
+
|
|
170
|
+
# Week 2: Social Proof Week (March 8-14, 2026)
|
|
171
|
+
- date: "2026-03-09"
|
|
172
|
+
dayOfWeek: "Monday"
|
|
173
|
+
week: 2
|
|
174
|
+
content:
|
|
175
|
+
- platform: "LinkedIn"
|
|
176
|
+
type: "Case Study Carousel"
|
|
177
|
+
title: "How SwiftShop Increased Revenue 35% with AI Analytics"
|
|
178
|
+
scheduledTime: "10:00 EST"
|
|
179
|
+
status: "Draft"
|
|
180
|
+
deadline: "2026-03-06"
|
|
181
|
+
assignedTo: "Content Team"
|
|
182
|
+
slides: 5
|
|
183
|
+
media: "case-study-swiftshop-carousel.pdf"
|
|
184
|
+
paidPromotion: true
|
|
185
|
+
budget: "$300"
|
|
186
|
+
|
|
187
|
+
- platform: "Blog"
|
|
188
|
+
type: "Case Study"
|
|
189
|
+
title: "Customer Success Story: SwiftShop's Data Transformation"
|
|
190
|
+
wordCount: 2000
|
|
191
|
+
status: "In Progress"
|
|
192
|
+
deadline: "2026-03-08"
|
|
193
|
+
author: "Customer Success Manager"
|
|
194
|
+
includes:
|
|
195
|
+
- "Customer interview quotes"
|
|
196
|
+
- "Before/after metrics"
|
|
197
|
+
- "Implementation timeline"
|
|
198
|
+
- "ROI calculation"
|
|
199
|
+
|
|
200
|
+
- date: "2026-03-10"
|
|
201
|
+
dayOfWeek: "Tuesday"
|
|
202
|
+
week: 2
|
|
203
|
+
content:
|
|
204
|
+
- platform: "Twitter"
|
|
205
|
+
type: "Customer Testimonial"
|
|
206
|
+
content: "Quote from Sarah Chen, VP Analytics at SwiftShop"
|
|
207
|
+
scheduledTime: "11:00 EST"
|
|
208
|
+
status: "Approved"
|
|
209
|
+
media: "testimonial-quote-card.png"
|
|
210
|
+
|
|
211
|
+
- platform: "Facebook"
|
|
212
|
+
type: "Video Testimonial"
|
|
213
|
+
title: "Customer Interview: Sarah Chen, SwiftShop"
|
|
214
|
+
duration: "90s"
|
|
215
|
+
scheduledTime: "11:00 EST"
|
|
216
|
+
status: "Editing"
|
|
217
|
+
deadline: "2026-03-09"
|
|
218
|
+
paidPromotion: true
|
|
219
|
+
budget: "$400"
|
|
220
|
+
|
|
221
|
+
- date: "2026-03-11"
|
|
222
|
+
dayOfWeek: "Wednesday"
|
|
223
|
+
week: 2
|
|
224
|
+
content:
|
|
225
|
+
- platform: "LinkedIn"
|
|
226
|
+
type: "Industry Insights"
|
|
227
|
+
title: "2026 Data Analytics Trends Report"
|
|
228
|
+
scheduledTime: "09:00 EST"
|
|
229
|
+
status: "Scheduled"
|
|
230
|
+
assignedTo: "Content Team"
|
|
231
|
+
media: "trends-report-infographic.png"
|
|
232
|
+
hashtags: ["#DataTrends", "#Analytics2026", "#Industry"]
|
|
233
|
+
|
|
234
|
+
- platform: "Email"
|
|
235
|
+
type: "Free Resource"
|
|
236
|
+
subject: "📊 Free Download: Complete Guide to Data-Driven Decisions"
|
|
237
|
+
segment: "Prospects + trial users"
|
|
238
|
+
listSize: 25000
|
|
239
|
+
status: "Scheduled"
|
|
240
|
+
deadline: "2026-03-10"
|
|
241
|
+
assignedTo: "Email Marketing Specialist"
|
|
242
|
+
cta: "Download free guide"
|
|
243
|
+
|
|
244
|
+
- date: "2026-03-12"
|
|
245
|
+
dayOfWeek: "Thursday"
|
|
246
|
+
week: 2
|
|
247
|
+
content:
|
|
248
|
+
- platform: "Twitter"
|
|
249
|
+
type: "Poll"
|
|
250
|
+
content: "What's your biggest data analytics challenge?"
|
|
251
|
+
scheduledTime: "14:00 EST"
|
|
252
|
+
status: "Approved"
|
|
253
|
+
pollOptions:
|
|
254
|
+
- "Data integration"
|
|
255
|
+
- "Visualization"
|
|
256
|
+
- "Finding insights"
|
|
257
|
+
- "Team adoption"
|
|
258
|
+
duration: "24 hours"
|
|
259
|
+
|
|
260
|
+
- platform: "Blog"
|
|
261
|
+
type: "How-To Guide"
|
|
262
|
+
title: "10 Dashboard Templates You Can Use Today"
|
|
263
|
+
wordCount: 1800
|
|
264
|
+
status: "Draft"
|
|
265
|
+
deadline: "2026-03-11"
|
|
266
|
+
author: "Content Marketing Manager"
|
|
267
|
+
includes:
|
|
268
|
+
- "Downloadable templates"
|
|
269
|
+
- "Step-by-step setup"
|
|
270
|
+
- "Best practices"
|
|
271
|
+
|
|
272
|
+
- date: "2026-03-13"
|
|
273
|
+
dayOfWeek: "Friday"
|
|
274
|
+
week: 2
|
|
275
|
+
content:
|
|
276
|
+
- platform: "Instagram"
|
|
277
|
+
type: "Behind-the-Scenes Reel"
|
|
278
|
+
title: "How Our AI Actually Works (60s Explainer)"
|
|
279
|
+
duration: "60s"
|
|
280
|
+
scheduledTime: "17:00 EST"
|
|
281
|
+
status: "Approved"
|
|
282
|
+
assignedTo: "Video Production Team"
|
|
283
|
+
hashtags: ["#BehindTheScenes", "#TechExplained", "#AI"]
|
|
284
|
+
|
|
285
|
+
# Week 3: Education Week (March 15-21, 2026)
|
|
286
|
+
- date: "2026-03-16"
|
|
287
|
+
dayOfWeek: "Monday"
|
|
288
|
+
week: 3
|
|
289
|
+
content:
|
|
290
|
+
- platform: "LinkedIn"
|
|
291
|
+
type: "Educational Article"
|
|
292
|
+
title: "Data Integration 101: A Complete Guide"
|
|
293
|
+
author: "Technical Content Writer"
|
|
294
|
+
wordCount: 1500
|
|
295
|
+
status: "In Progress"
|
|
296
|
+
deadline: "2026-03-13"
|
|
297
|
+
keywords: ["data integration", "ETL", "data pipeline"]
|
|
298
|
+
|
|
299
|
+
- platform: "YouTube"
|
|
300
|
+
type: "Tutorial Video"
|
|
301
|
+
title: "Getting Started with TechFlow - Beginner's Guide"
|
|
302
|
+
duration: "10:00"
|
|
303
|
+
status: "Scripting"
|
|
304
|
+
deadline: "2026-03-14"
|
|
305
|
+
assignedTo: "Video Team"
|
|
306
|
+
|
|
307
|
+
- date: "2026-03-17"
|
|
308
|
+
dayOfWeek: "Tuesday"
|
|
309
|
+
week: 3
|
|
310
|
+
content:
|
|
311
|
+
- platform: "Twitter"
|
|
312
|
+
type: "Thread"
|
|
313
|
+
title: "7 Data Visualization Best Practices (Thread)"
|
|
314
|
+
scheduledTime: "12:00 EST"
|
|
315
|
+
status: "Draft"
|
|
316
|
+
tweetCount: 7
|
|
317
|
+
assignedTo: "Social Media Manager"
|
|
318
|
+
media: "visualization-examples.png"
|
|
319
|
+
|
|
320
|
+
- platform: "Webinar"
|
|
321
|
+
type: "Live Event"
|
|
322
|
+
title: "Masterclass: AI-Powered Analytics for Beginners"
|
|
323
|
+
scheduledTime: "14:00 EST"
|
|
324
|
+
duration: "60 minutes"
|
|
325
|
+
status: "Promoted"
|
|
326
|
+
registrationGoal: 500
|
|
327
|
+
platform: "Zoom"
|
|
328
|
+
assignedTo: "Product Marketing Manager"
|
|
329
|
+
|
|
330
|
+
- date: "2026-03-18"
|
|
331
|
+
dayOfWeek: "Wednesday"
|
|
332
|
+
week: 3
|
|
333
|
+
content:
|
|
334
|
+
- platform: "Blog"
|
|
335
|
+
type: "Comparison Guide"
|
|
336
|
+
title: "TechFlow vs Traditional BI Tools: Complete Comparison"
|
|
337
|
+
wordCount: 2500
|
|
338
|
+
status: "Draft"
|
|
339
|
+
deadline: "2026-03-17"
|
|
340
|
+
author: "Product Marketing Manager"
|
|
341
|
+
includes:
|
|
342
|
+
- "Feature comparison table"
|
|
343
|
+
- "Pricing comparison"
|
|
344
|
+
- "Use case scenarios"
|
|
345
|
+
|
|
346
|
+
- platform: "LinkedIn"
|
|
347
|
+
type: "Infographic"
|
|
348
|
+
title: "The ROI of AI Analytics (Infographic)"
|
|
349
|
+
scheduledTime: "10:00 EST"
|
|
350
|
+
status: "Design"
|
|
351
|
+
deadline: "2026-03-17"
|
|
352
|
+
assignedTo: "Design Team"
|
|
353
|
+
|
|
354
|
+
- date: "2026-03-19"
|
|
355
|
+
dayOfWeek: "Thursday"
|
|
356
|
+
week: 3
|
|
357
|
+
content:
|
|
358
|
+
- platform: "Email"
|
|
359
|
+
type: "Educational Series (Part 1)"
|
|
360
|
+
subject: "📚 Data Analytics Crash Course - Day 1"
|
|
361
|
+
segment: "Trial users + engaged prospects"
|
|
362
|
+
listSize: 15000
|
|
363
|
+
status: "Scheduled"
|
|
364
|
+
series: "5-day email course"
|
|
365
|
+
assignedTo: "Email Marketing Specialist"
|
|
366
|
+
|
|
367
|
+
- platform: "Twitter"
|
|
368
|
+
type: "Quick Tip"
|
|
369
|
+
content: "💡 Pro tip: Use natural language queries to save 10+ hours per week"
|
|
370
|
+
scheduledTime: "15:00 EST"
|
|
371
|
+
status: "Approved"
|
|
372
|
+
media: "tip-screenshot.png"
|
|
373
|
+
|
|
374
|
+
- date: "2026-03-20"
|
|
375
|
+
dayOfWeek: "Friday"
|
|
376
|
+
week: 3
|
|
377
|
+
content:
|
|
378
|
+
- platform: "Instagram"
|
|
379
|
+
type: "Carousel"
|
|
380
|
+
title: "5 Analytics Mistakes to Avoid"
|
|
381
|
+
slides: 6
|
|
382
|
+
scheduledTime: "16:00 EST"
|
|
383
|
+
status: "Design"
|
|
384
|
+
deadline: "2026-03-19"
|
|
385
|
+
assignedTo: "Design Team"
|
|
386
|
+
hashtags: ["#DataTips", "#Analytics", "#BestPractices"]
|
|
387
|
+
|
|
388
|
+
# Week 4: Feature Spotlight Week (March 22-28, 2026)
|
|
389
|
+
- date: "2026-03-23"
|
|
390
|
+
dayOfWeek: "Monday"
|
|
391
|
+
week: 4
|
|
392
|
+
content:
|
|
393
|
+
- platform: "LinkedIn"
|
|
394
|
+
type: "Feature Spotlight"
|
|
395
|
+
title: "Feature Spotlight: Natural Language Queries"
|
|
396
|
+
scheduledTime: "10:00 EST"
|
|
397
|
+
status: "Draft"
|
|
398
|
+
deadline: "2026-03-20"
|
|
399
|
+
assignedTo: "Product Marketing Manager"
|
|
400
|
+
media: "feature-demo-video-30s.mp4"
|
|
401
|
+
|
|
402
|
+
- platform: "Blog"
|
|
403
|
+
type: "Feature Deep Dive"
|
|
404
|
+
title: "How Natural Language Queries Work (Technical Deep Dive)"
|
|
405
|
+
wordCount: 2000
|
|
406
|
+
status: "In Progress"
|
|
407
|
+
deadline: "2026-03-22"
|
|
408
|
+
author: "Technical Writer"
|
|
409
|
+
|
|
410
|
+
- date: "2026-03-24"
|
|
411
|
+
dayOfWeek: "Tuesday"
|
|
412
|
+
week: 4
|
|
413
|
+
content:
|
|
414
|
+
- platform: "Twitter"
|
|
415
|
+
type: "Feature Demo"
|
|
416
|
+
content: "Watch how easy it is to create a dashboard (15s demo)"
|
|
417
|
+
scheduledTime: "13:00 EST"
|
|
418
|
+
status: "Approved"
|
|
419
|
+
media: "dashboard-demo-15s.mp4"
|
|
420
|
+
|
|
421
|
+
- platform: "YouTube"
|
|
422
|
+
type: "Feature Tutorial"
|
|
423
|
+
title: "Predictive Analytics Tutorial - Forecast Revenue in 5 Minutes"
|
|
424
|
+
duration: "8:00"
|
|
425
|
+
status: "Filming"
|
|
426
|
+
deadline: "2026-03-23"
|
|
427
|
+
assignedTo: "Video Team"
|
|
428
|
+
|
|
429
|
+
- date: "2026-03-25"
|
|
430
|
+
dayOfWeek: "Wednesday"
|
|
431
|
+
week: 4
|
|
432
|
+
content:
|
|
433
|
+
- platform: "LinkedIn"
|
|
434
|
+
type: "Product Update"
|
|
435
|
+
title: "New Feature: Smart Alerts & Notifications"
|
|
436
|
+
scheduledTime: "09:00 EST"
|
|
437
|
+
status: "Scheduled"
|
|
438
|
+
assignedTo: "Product Marketing Manager"
|
|
439
|
+
media: "alerts-feature-screenshot.png"
|
|
440
|
+
|
|
441
|
+
- platform: "Email"
|
|
442
|
+
type: "Product Announcement"
|
|
443
|
+
subject: "🚨 New Feature Alert: Smart Notifications"
|
|
444
|
+
segment: "Existing customers"
|
|
445
|
+
listSize: 5000
|
|
446
|
+
status: "Draft"
|
|
447
|
+
deadline: "2026-03-24"
|
|
448
|
+
|
|
449
|
+
- date: "2026-03-26"
|
|
450
|
+
dayOfWeek: "Thursday"
|
|
451
|
+
week: 4
|
|
452
|
+
content:
|
|
453
|
+
- platform: "Facebook"
|
|
454
|
+
type: "Live Demo"
|
|
455
|
+
title: "Facebook Live: Product Demo & Q&A"
|
|
456
|
+
scheduledTime: "15:00 EST"
|
|
457
|
+
duration: "45 minutes"
|
|
458
|
+
status: "Promoted"
|
|
459
|
+
assignedTo: "Product Team"
|
|
460
|
+
paidPromotion: true
|
|
461
|
+
budget: "$200"
|
|
462
|
+
|
|
463
|
+
- platform: "Twitter"
|
|
464
|
+
type: "Live Tweet Thread"
|
|
465
|
+
content: "Live tweeting our Facebook demo - join us!"
|
|
466
|
+
scheduledTime: "15:00 EST"
|
|
467
|
+
status: "Scheduled"
|
|
468
|
+
|
|
469
|
+
- date: "2026-03-27"
|
|
470
|
+
dayOfWeek: "Friday"
|
|
471
|
+
week: 4
|
|
472
|
+
content:
|
|
473
|
+
- platform: "Instagram"
|
|
474
|
+
type: "Stories Series"
|
|
475
|
+
title: "Feature Friday: Top 5 Features You Should Know"
|
|
476
|
+
slides: 10
|
|
477
|
+
scheduledTime: "18:00 EST"
|
|
478
|
+
status: "Design"
|
|
479
|
+
deadline: "2026-03-26"
|
|
480
|
+
assignedTo: "Design Team"
|
|
481
|
+
|
|
482
|
+
# Milestones and Key Dates
|
|
483
|
+
milestones:
|
|
484
|
+
- date: "2026-03-02"
|
|
485
|
+
milestone: "Official Product Launch"
|
|
486
|
+
deliverables:
|
|
487
|
+
- "Press release distribution"
|
|
488
|
+
- "All platform announcements"
|
|
489
|
+
- "Launch video published"
|
|
490
|
+
|
|
491
|
+
- date: "2026-03-17"
|
|
492
|
+
milestone: "First Webinar"
|
|
493
|
+
deliverables:
|
|
494
|
+
- "Webinar registration page live"
|
|
495
|
+
- "Email promotion sent"
|
|
496
|
+
- "Social media promotion"
|
|
497
|
+
|
|
498
|
+
- date: "2026-03-26"
|
|
499
|
+
milestone: "Facebook Live Demo"
|
|
500
|
+
deliverables:
|
|
501
|
+
- "Demo script finalized"
|
|
502
|
+
- "Q&A preparation"
|
|
503
|
+
- "Promotion across all channels"
|
|
504
|
+
|
|
505
|
+
- date: "2026-03-31"
|
|
506
|
+
milestone: "End of Month Review"
|
|
507
|
+
deliverables:
|
|
508
|
+
- "Performance report"
|
|
509
|
+
- "Content audit"
|
|
510
|
+
- "Q2 planning session"
|
|
511
|
+
|
|
512
|
+
# Review and Approval Workflow
|
|
513
|
+
workflow:
|
|
514
|
+
draft:
|
|
515
|
+
assignedTo: "Content Creator"
|
|
516
|
+
deadline: "3 days before publish"
|
|
517
|
+
nextStep: "Review"
|
|
518
|
+
|
|
519
|
+
review:
|
|
520
|
+
assignedTo: "Content Manager"
|
|
521
|
+
sla: "24 hours"
|
|
522
|
+
nextStep: "Approval"
|
|
523
|
+
|
|
524
|
+
approval:
|
|
525
|
+
assignedTo: "Marketing Director"
|
|
526
|
+
sla: "12 hours"
|
|
527
|
+
nextStep: "Scheduled"
|
|
528
|
+
|
|
529
|
+
scheduled:
|
|
530
|
+
assignedTo: "Social Media Manager"
|
|
531
|
+
tool: "Hootsuite"
|
|
532
|
+
nextStep: "Published"
|
|
533
|
+
|
|
534
|
+
published:
|
|
535
|
+
tracking: "Google Analytics + Platform Analytics"
|
|
536
|
+
reportingFrequency: "Weekly"
|
|
537
|
+
|
|
538
|
+
# Performance Tracking
|
|
539
|
+
tracking:
|
|
540
|
+
kpis:
|
|
541
|
+
- metric: "Total Reach"
|
|
542
|
+
target: 500000
|
|
543
|
+
platform: "All"
|
|
544
|
+
|
|
545
|
+
- metric: "Engagement Rate"
|
|
546
|
+
target: "3%"
|
|
547
|
+
platform: "All"
|
|
548
|
+
|
|
549
|
+
- metric: "Website Traffic"
|
|
550
|
+
target: 15000
|
|
551
|
+
source: "Social + Email"
|
|
552
|
+
|
|
553
|
+
- metric: "MQLs Generated"
|
|
554
|
+
target: 750
|
|
555
|
+
source: "All channels"
|
|
556
|
+
|
|
557
|
+
- metric: "Trial Signups"
|
|
558
|
+
target: 150
|
|
559
|
+
source: "All channels"
|
|
560
|
+
|
|
561
|
+
reportingSchedule:
|
|
562
|
+
daily:
|
|
563
|
+
- "Social media engagement"
|
|
564
|
+
- "Website traffic"
|
|
565
|
+
|
|
566
|
+
weekly:
|
|
567
|
+
- "Content performance review"
|
|
568
|
+
- "Campaign metrics dashboard"
|
|
569
|
+
- "Team sync meeting"
|
|
570
|
+
|
|
571
|
+
monthly:
|
|
572
|
+
- "Comprehensive performance report"
|
|
573
|
+
- "ROI analysis"
|
|
574
|
+
- "Strategy adjustment meeting"
|
|
575
|
+
|
|
576
|
+
# Budget Allocation
|
|
577
|
+
budget:
|
|
578
|
+
total: "$15,000"
|
|
579
|
+
breakdown:
|
|
580
|
+
paidSocial: "$5,000"
|
|
581
|
+
contentCreation: "$7,000"
|
|
582
|
+
tools: "$2,000"
|
|
583
|
+
misc: "$1,000"
|
|
584
|
+
|
|
585
|
+
byPlatform:
|
|
586
|
+
linkedin: "$2,000"
|
|
587
|
+
twitter: "$1,500"
|
|
588
|
+
instagram: "$1,000"
|
|
589
|
+
facebook: "$500"
|
|
590
|
+
|
|
591
|
+
byContentType:
|
|
592
|
+
video: "$4,000"
|
|
593
|
+
graphics: "$2,000"
|
|
594
|
+
copywriting: "$1,000"
|
|
595
|
+
|
|
596
|
+
# Team Assignments
|
|
597
|
+
team:
|
|
598
|
+
- role: "Content Marketing Manager"
|
|
599
|
+
responsibilities:
|
|
600
|
+
- "Blog posts"
|
|
601
|
+
- "Long-form content"
|
|
602
|
+
- "Content strategy"
|
|
603
|
+
capacity: "20 hours/week"
|
|
604
|
+
|
|
605
|
+
- role: "Social Media Manager"
|
|
606
|
+
responsibilities:
|
|
607
|
+
- "Social posts"
|
|
608
|
+
- "Community management"
|
|
609
|
+
- "Scheduling"
|
|
610
|
+
capacity: "30 hours/week"
|
|
611
|
+
|
|
612
|
+
- role: "Video Production Team"
|
|
613
|
+
responsibilities:
|
|
614
|
+
- "Video content"
|
|
615
|
+
- "Reels and shorts"
|
|
616
|
+
- "Editing"
|
|
617
|
+
capacity: "40 hours/week"
|
|
618
|
+
|
|
619
|
+
- role: "Design Team"
|
|
620
|
+
responsibilities:
|
|
621
|
+
- "Graphics"
|
|
622
|
+
- "Infographics"
|
|
623
|
+
- "Carousels"
|
|
624
|
+
capacity: "25 hours/week"
|
|
625
|
+
|
|
626
|
+
- role: "Email Marketing Specialist"
|
|
627
|
+
responsibilities:
|
|
628
|
+
- "Email campaigns"
|
|
629
|
+
- "Newsletter"
|
|
630
|
+
- "Automation"
|
|
631
|
+
capacity: "15 hours/week"
|
|
632
|
+
|
|
633
|
+
# Notes and Best Practices
|
|
634
|
+
notes:
|
|
635
|
+
- "All content must be approved 24 hours before publishing"
|
|
636
|
+
- "Use UTM parameters for all links (utm_source, utm_medium, utm_campaign)"
|
|
637
|
+
- "Include accessibility alt text for all images"
|
|
638
|
+
- "Follow brand guidelines for all visual content"
|
|
639
|
+
- "Respond to comments within 2 hours during business hours"
|
|
640
|
+
- "A/B test email subject lines (minimum 1,000 recipients per variant)"
|
|
641
|
+
- "Repurpose top-performing content across platforms"
|
|
642
|
+
- "Archive all content in shared drive for future reference"
|
|
643
|
+
|