@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,277 @@
|
|
|
1
|
+
# VS Code Integration for Screenplay Writing
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
This guide covers integrating screenplay writing tools with Visual Studio Code for professional screenplay development.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Better Fountain Extension
|
|
10
|
+
|
|
11
|
+
### Installation
|
|
12
|
+
|
|
13
|
+
1. Open VS Code
|
|
14
|
+
2. Go to Extensions (Ctrl+Shift+X / Cmd+Shift+X)
|
|
15
|
+
3. Search for "Better Fountain"
|
|
16
|
+
4. Install the extension by Piers Deseilligny
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
**Syntax Highlighting**
|
|
21
|
+
- Automatic syntax highlighting for .fountain files
|
|
22
|
+
- Color-coded scene headings, character names, dialogue, action
|
|
23
|
+
- Parentheticals and transitions clearly marked
|
|
24
|
+
|
|
25
|
+
**Live Preview**
|
|
26
|
+
- Real-time PDF preview of screenplay
|
|
27
|
+
- Side-by-side editing and preview
|
|
28
|
+
- Automatic page count and timing
|
|
29
|
+
|
|
30
|
+
**Auto-Completion**
|
|
31
|
+
- Character name auto-completion
|
|
32
|
+
- Scene heading suggestions
|
|
33
|
+
- Transition shortcuts
|
|
34
|
+
|
|
35
|
+
**Export Options**
|
|
36
|
+
- Export to PDF (industry-standard formatting)
|
|
37
|
+
- Export to HTML
|
|
38
|
+
- Export to Final Draft (.fdx)
|
|
39
|
+
|
|
40
|
+
### Configuration
|
|
41
|
+
|
|
42
|
+
Add to your `.vscode/settings.json`:
|
|
43
|
+
|
|
44
|
+
```json
|
|
45
|
+
{
|
|
46
|
+
"fountain.general.previewTheme": "paper",
|
|
47
|
+
"fountain.general.previewTexture": true,
|
|
48
|
+
"fountain.pdf.emboldenSceneHeaders": true,
|
|
49
|
+
"fountain.pdf.showPageNumbers": true,
|
|
50
|
+
"fountain.pdf.splitDialog": true,
|
|
51
|
+
"fountain.pdf.printTitlePage": true,
|
|
52
|
+
"fountain.pdf.printProfile": "a4",
|
|
53
|
+
"fountain.general.parentheticalNewLine": false,
|
|
54
|
+
"fountain.general.numberSections": false,
|
|
55
|
+
"fountain.general.showPageNumbers": true
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Fountain Format Basics
|
|
62
|
+
|
|
63
|
+
### Scene Headings
|
|
64
|
+
|
|
65
|
+
```fountain
|
|
66
|
+
INT. COFFEE SHOP - DAY
|
|
67
|
+
|
|
68
|
+
EXT. CITY STREET - NIGHT
|
|
69
|
+
|
|
70
|
+
INT./EXT. CAR - MOVING - DAY
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
**Rules:**
|
|
74
|
+
- Must start with INT, EXT, or INT./EXT.
|
|
75
|
+
- Followed by location
|
|
76
|
+
- End with time of day
|
|
77
|
+
- Blank line before and after
|
|
78
|
+
|
|
79
|
+
### Character Names
|
|
80
|
+
|
|
81
|
+
```fountain
|
|
82
|
+
SARAH
|
|
83
|
+
This is dialogue.
|
|
84
|
+
|
|
85
|
+
MARCUS (O.S.)
|
|
86
|
+
This is off-screen dialogue.
|
|
87
|
+
|
|
88
|
+
NARRATOR (V.O.)
|
|
89
|
+
This is voice-over.
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**Rules:**
|
|
93
|
+
- All caps
|
|
94
|
+
- Centered automatically
|
|
95
|
+
- Extensions in parentheses: (O.S.), (V.O.), (CONT'D)
|
|
96
|
+
|
|
97
|
+
### Dialogue
|
|
98
|
+
|
|
99
|
+
```fountain
|
|
100
|
+
SARAH
|
|
101
|
+
I can't believe this is happening.
|
|
102
|
+
|
|
103
|
+
MARCUS
|
|
104
|
+
(concerned)
|
|
105
|
+
Are you okay?
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
**Rules:**
|
|
109
|
+
- Character name on its own line
|
|
110
|
+
- Dialogue below character name
|
|
111
|
+
- Parentheticals for direction/emotion
|
|
112
|
+
|
|
113
|
+
### Action/Description
|
|
114
|
+
|
|
115
|
+
```fountain
|
|
116
|
+
Sarah walks to the window, staring out at the rain.
|
|
117
|
+
|
|
118
|
+
The phone RINGS. She doesn't answer.
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
**Rules:**
|
|
122
|
+
- Regular text (not all caps unless emphasizing)
|
|
123
|
+
- Sound effects in ALL CAPS
|
|
124
|
+
- Keep paragraphs short (3-4 lines max)
|
|
125
|
+
|
|
126
|
+
### Transitions
|
|
127
|
+
|
|
128
|
+
```fountain
|
|
129
|
+
CUT TO:
|
|
130
|
+
|
|
131
|
+
FADE OUT.
|
|
132
|
+
|
|
133
|
+
DISSOLVE TO:
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
**Rules:**
|
|
137
|
+
- Right-aligned (automatic in Fountain)
|
|
138
|
+
- End with colon or period
|
|
139
|
+
- Use sparingly
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## Keyboard Shortcuts
|
|
144
|
+
|
|
145
|
+
### Better Fountain Shortcuts
|
|
146
|
+
|
|
147
|
+
- **Ctrl+Shift+P** (Cmd+Shift+P): Command palette
|
|
148
|
+
- "Fountain: Show Preview" - Open live preview
|
|
149
|
+
- "Fountain: Export PDF" - Export to PDF
|
|
150
|
+
- "Fountain: Statistics" - Show word count, page count, etc.
|
|
151
|
+
|
|
152
|
+
### Custom Snippets
|
|
153
|
+
|
|
154
|
+
Add to your user snippets (File > Preferences > User Snippets > fountain.json):
|
|
155
|
+
|
|
156
|
+
```json
|
|
157
|
+
{
|
|
158
|
+
"Scene Heading INT": {
|
|
159
|
+
"prefix": "int",
|
|
160
|
+
"body": [
|
|
161
|
+
"INT. ${1:LOCATION} - ${2:DAY}",
|
|
162
|
+
"",
|
|
163
|
+
"$0"
|
|
164
|
+
]
|
|
165
|
+
},
|
|
166
|
+
"Scene Heading EXT": {
|
|
167
|
+
"prefix": "ext",
|
|
168
|
+
"body": [
|
|
169
|
+
"EXT. ${1:LOCATION} - ${2:DAY}",
|
|
170
|
+
"",
|
|
171
|
+
"$0"
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
"Character Dialogue": {
|
|
175
|
+
"prefix": "char",
|
|
176
|
+
"body": [
|
|
177
|
+
"${1:CHARACTER}",
|
|
178
|
+
"${2:Dialogue}",
|
|
179
|
+
"",
|
|
180
|
+
"$0"
|
|
181
|
+
]
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## Export Workflow
|
|
189
|
+
|
|
190
|
+
### PDF Export
|
|
191
|
+
|
|
192
|
+
1. Open .fountain file
|
|
193
|
+
2. Cmd/Ctrl+Shift+P
|
|
194
|
+
3. Type "Fountain: Export PDF"
|
|
195
|
+
4. Choose location and filename
|
|
196
|
+
5. PDF generated with industry-standard formatting
|
|
197
|
+
|
|
198
|
+
### Final Draft Export
|
|
199
|
+
|
|
200
|
+
1. Open .fountain file
|
|
201
|
+
2. Cmd/Ctrl+Shift+P
|
|
202
|
+
3. Type "Fountain: Export to Final Draft"
|
|
203
|
+
4. .fdx file created
|
|
204
|
+
5. Open in Final Draft for further editing
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## Project Structure
|
|
209
|
+
|
|
210
|
+
Recommended folder structure for screenplay projects:
|
|
211
|
+
|
|
212
|
+
```
|
|
213
|
+
my-screenplay/
|
|
214
|
+
├── screenplay.fountain # Main screenplay
|
|
215
|
+
├── characters/
|
|
216
|
+
│ ├── sarah-profile.yaml
|
|
217
|
+
│ ├── marcus-profile.yaml
|
|
218
|
+
│ └── elena-profile.yaml
|
|
219
|
+
├── planning/
|
|
220
|
+
│ ├── beat-sheet.yaml
|
|
221
|
+
│ ├── plot-outline.yaml
|
|
222
|
+
│ └── trope-inventory.yaml
|
|
223
|
+
├── exports/
|
|
224
|
+
│ ├── screenplay-draft-1.pdf
|
|
225
|
+
│ └── screenplay-draft-2.pdf
|
|
226
|
+
└── .vscode/
|
|
227
|
+
└── settings.json
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
## Tips for VS Code Screenplay Writing
|
|
233
|
+
|
|
234
|
+
**Use Multi-Cursor Editing**
|
|
235
|
+
- Alt+Click to add cursors
|
|
236
|
+
- Useful for formatting multiple character names
|
|
237
|
+
|
|
238
|
+
**Use Find and Replace**
|
|
239
|
+
- Ctrl+H (Cmd+H) for find/replace
|
|
240
|
+
- Useful for character name changes
|
|
241
|
+
|
|
242
|
+
**Use Outline View**
|
|
243
|
+
- View > Outline
|
|
244
|
+
- Shows scene structure
|
|
245
|
+
- Quick navigation between scenes
|
|
246
|
+
|
|
247
|
+
**Use Zen Mode**
|
|
248
|
+
- View > Appearance > Zen Mode
|
|
249
|
+
- Distraction-free writing
|
|
250
|
+
- Toggle with Ctrl+K Z (Cmd+K Z)
|
|
251
|
+
|
|
252
|
+
---
|
|
253
|
+
|
|
254
|
+
## Troubleshooting
|
|
255
|
+
|
|
256
|
+
**Preview not showing:**
|
|
257
|
+
- Ensure Better Fountain extension is installed
|
|
258
|
+
- Try reloading window (Ctrl+Shift+P > "Reload Window")
|
|
259
|
+
|
|
260
|
+
**Export not working:**
|
|
261
|
+
- Check file permissions
|
|
262
|
+
- Ensure output directory exists
|
|
263
|
+
- Try exporting to different location
|
|
264
|
+
|
|
265
|
+
**Formatting issues:**
|
|
266
|
+
- Check Fountain syntax
|
|
267
|
+
- Ensure blank lines between elements
|
|
268
|
+
- Verify scene headings start with INT/EXT
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
## Additional Resources
|
|
273
|
+
|
|
274
|
+
- Better Fountain Documentation: https://github.com/piersdeseilligny/betterfountain
|
|
275
|
+
- Fountain Syntax: https://fountain.io/syntax
|
|
276
|
+
- VS Code Documentation: https://code.visualstudio.com/docs
|
|
277
|
+
|
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
# Web Content
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Web content for platforms like YouTube, TikTok, Instagram, and other digital platforms requires immediate hooks, platform-specific optimization, and engagement-driven storytelling designed for short attention spans and algorithm-driven distribution.
|
|
6
|
+
|
|
7
|
+
## Platform-Specific Formats
|
|
8
|
+
|
|
9
|
+
### YouTube
|
|
10
|
+
**Short-Form** (1-5 minutes):
|
|
11
|
+
- Quick tutorials
|
|
12
|
+
- Comedy sketches
|
|
13
|
+
- Reaction videos
|
|
14
|
+
- Vlogs
|
|
15
|
+
|
|
16
|
+
**Mid-Form** (5-15 minutes):
|
|
17
|
+
- Detailed content
|
|
18
|
+
- Narrative stories
|
|
19
|
+
- Documentary-style
|
|
20
|
+
- Educational content
|
|
21
|
+
|
|
22
|
+
**Long-Form** (15+ minutes):
|
|
23
|
+
- In-depth analysis
|
|
24
|
+
- Extended narratives
|
|
25
|
+
- Interview format
|
|
26
|
+
- Series content
|
|
27
|
+
|
|
28
|
+
### TikTok/Instagram Reels/YouTube Shorts
|
|
29
|
+
**Ultra-Short** (15-60 seconds):
|
|
30
|
+
- Immediate hook (first 3 seconds)
|
|
31
|
+
- Single concept/joke
|
|
32
|
+
- Vertical format (9:16)
|
|
33
|
+
- Text overlays
|
|
34
|
+
- Trending audio
|
|
35
|
+
|
|
36
|
+
### Instagram/Facebook
|
|
37
|
+
**Stories** (15 seconds per slide):
|
|
38
|
+
- Episodic content
|
|
39
|
+
- Behind-the-scenes
|
|
40
|
+
- Quick updates
|
|
41
|
+
- Interactive elements
|
|
42
|
+
|
|
43
|
+
**Feed Videos** (1-3 minutes):
|
|
44
|
+
- Polished content
|
|
45
|
+
- Square or vertical format
|
|
46
|
+
- Captions required
|
|
47
|
+
- Thumbnail optimization
|
|
48
|
+
|
|
49
|
+
## Core Principles
|
|
50
|
+
|
|
51
|
+
### The 3-Second Rule
|
|
52
|
+
**Hook Immediately**:
|
|
53
|
+
- Visual impact in first frame
|
|
54
|
+
- Intriguing question
|
|
55
|
+
- Shocking statement
|
|
56
|
+
- Action in progress
|
|
57
|
+
- Emotional trigger
|
|
58
|
+
|
|
59
|
+
**Bad Opening**:
|
|
60
|
+
```
|
|
61
|
+
FADE IN:
|
|
62
|
+
|
|
63
|
+
INT. BEDROOM - DAY
|
|
64
|
+
|
|
65
|
+
Sarah wakes up, stretches, and gets out of bed.
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
**Good Opening**:
|
|
69
|
+
```
|
|
70
|
+
SMASH CUT TO:
|
|
71
|
+
|
|
72
|
+
Sarah's phone EXPLODES with notifications. Her face
|
|
73
|
+
goes pale as she reads the screen.
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Engagement Optimization
|
|
77
|
+
**Techniques**:
|
|
78
|
+
- Pattern interrupts (every 5-10 seconds)
|
|
79
|
+
- Visual variety
|
|
80
|
+
- Text overlays for key points
|
|
81
|
+
- Music/sound effects
|
|
82
|
+
- Emotional peaks and valleys
|
|
83
|
+
- Call-to-action
|
|
84
|
+
|
|
85
|
+
### Retention Strategies
|
|
86
|
+
**Keep Viewers Watching**:
|
|
87
|
+
- Tease payoff early
|
|
88
|
+
- Build curiosity loops
|
|
89
|
+
- Use cliffhangers
|
|
90
|
+
- Promise value
|
|
91
|
+
- Deliver quickly
|
|
92
|
+
- Avoid slow burns
|
|
93
|
+
|
|
94
|
+
## Structure for Short-Form
|
|
95
|
+
|
|
96
|
+
### 15-60 Second Format
|
|
97
|
+
**Structure**:
|
|
98
|
+
1. **Hook** (0-3 seconds): Grab attention
|
|
99
|
+
2. **Setup** (3-10 seconds): Establish premise
|
|
100
|
+
3. **Development** (10-45 seconds): Build/escalate
|
|
101
|
+
4. **Payoff** (45-60 seconds): Deliver resolution
|
|
102
|
+
5. **CTA** (final 3 seconds): Like/follow/comment
|
|
103
|
+
|
|
104
|
+
**Example**:
|
|
105
|
+
```
|
|
106
|
+
HOOK (0-3s):
|
|
107
|
+
"This simple trick will change your life."
|
|
108
|
+
|
|
109
|
+
SETUP (3-10s):
|
|
110
|
+
Show problem everyone relates to.
|
|
111
|
+
|
|
112
|
+
DEVELOPMENT (10-45s):
|
|
113
|
+
Demonstrate solution step-by-step.
|
|
114
|
+
|
|
115
|
+
PAYOFF (45-60s):
|
|
116
|
+
Show amazing result.
|
|
117
|
+
|
|
118
|
+
CTA (final 3s):
|
|
119
|
+
"Follow for more tips!"
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### 1-5 Minute Format
|
|
123
|
+
**Structure**:
|
|
124
|
+
1. **Hook** (0-10 seconds)
|
|
125
|
+
2. **Promise** (10-20 seconds): What viewer will get
|
|
126
|
+
3. **Content** (20 seconds - 4 minutes): Deliver value
|
|
127
|
+
4. **Recap** (final 30 seconds): Summarize key points
|
|
128
|
+
5. **CTA** (final 10 seconds): Subscribe/like/comment
|
|
129
|
+
|
|
130
|
+
## Viral Hooks
|
|
131
|
+
|
|
132
|
+
### Types of Hooks
|
|
133
|
+
**Question Hook**:
|
|
134
|
+
- "What would you do if..."
|
|
135
|
+
- "Have you ever wondered..."
|
|
136
|
+
- "Why does..."
|
|
137
|
+
|
|
138
|
+
**Shock Hook**:
|
|
139
|
+
- Unexpected visual
|
|
140
|
+
- Surprising statement
|
|
141
|
+
- Dramatic moment
|
|
142
|
+
- Controversial claim
|
|
143
|
+
|
|
144
|
+
**Relatability Hook**:
|
|
145
|
+
- "POV: You're..."
|
|
146
|
+
- "When you..."
|
|
147
|
+
- "That feeling when..."
|
|
148
|
+
|
|
149
|
+
**Curiosity Hook**:
|
|
150
|
+
- "You won't believe..."
|
|
151
|
+
- "The secret to..."
|
|
152
|
+
- "What happens next..."
|
|
153
|
+
|
|
154
|
+
**Value Hook**:
|
|
155
|
+
- "3 ways to..."
|
|
156
|
+
- "How to..."
|
|
157
|
+
- "The best..."
|
|
158
|
+
|
|
159
|
+
## Visual Storytelling
|
|
160
|
+
|
|
161
|
+
### Vertical Format (9:16)
|
|
162
|
+
**Composition**:
|
|
163
|
+
- Center important elements
|
|
164
|
+
- Use full vertical space
|
|
165
|
+
- Text in safe zones
|
|
166
|
+
- Face close-ups
|
|
167
|
+
- Dynamic framing
|
|
168
|
+
|
|
169
|
+
**Avoid**:
|
|
170
|
+
- Horizontal compositions
|
|
171
|
+
- Small text
|
|
172
|
+
- Wide shots
|
|
173
|
+
- Complex visuals
|
|
174
|
+
|
|
175
|
+
### Text Overlays
|
|
176
|
+
**Best Practices**:
|
|
177
|
+
- Large, readable fonts
|
|
178
|
+
- High contrast
|
|
179
|
+
- Animated text
|
|
180
|
+
- Key words emphasized
|
|
181
|
+
- Captions for accessibility
|
|
182
|
+
- Emoji for emphasis
|
|
183
|
+
|
|
184
|
+
**Placement**:
|
|
185
|
+
- Top third: Headlines
|
|
186
|
+
- Middle: Main content
|
|
187
|
+
- Bottom third: Captions/CTA
|
|
188
|
+
|
|
189
|
+
### Visual Pacing
|
|
190
|
+
**Techniques**:
|
|
191
|
+
- Quick cuts (every 2-3 seconds)
|
|
192
|
+
- Zoom transitions
|
|
193
|
+
- Jump cuts
|
|
194
|
+
- B-roll inserts
|
|
195
|
+
- Graphics and animations
|
|
196
|
+
- Color grading shifts
|
|
197
|
+
|
|
198
|
+
## Audio Considerations
|
|
199
|
+
|
|
200
|
+
### Music Selection
|
|
201
|
+
**Purpose**:
|
|
202
|
+
- Set tone and mood
|
|
203
|
+
- Increase energy
|
|
204
|
+
- Trending audio (TikTok/Reels)
|
|
205
|
+
- Copyright-free options
|
|
206
|
+
- Match pacing
|
|
207
|
+
|
|
208
|
+
### Sound Effects
|
|
209
|
+
**Usage**:
|
|
210
|
+
- Emphasize moments
|
|
211
|
+
- Create comedy
|
|
212
|
+
- Build tension
|
|
213
|
+
- Transition scenes
|
|
214
|
+
- Enhance impact
|
|
215
|
+
|
|
216
|
+
### Voiceover
|
|
217
|
+
**Delivery**:
|
|
218
|
+
- Energetic and engaging
|
|
219
|
+
- Clear enunciation
|
|
220
|
+
- Conversational tone
|
|
221
|
+
- Paced for retention
|
|
222
|
+
- Emotional variation
|
|
223
|
+
|
|
224
|
+
## Platform Algorithms
|
|
225
|
+
|
|
226
|
+
### YouTube Algorithm
|
|
227
|
+
**Optimization**:
|
|
228
|
+
- Click-through rate (thumbnail + title)
|
|
229
|
+
- Watch time (retention)
|
|
230
|
+
- Engagement (likes, comments, shares)
|
|
231
|
+
- Session time (keeps viewers on platform)
|
|
232
|
+
- Consistency (regular uploads)
|
|
233
|
+
|
|
234
|
+
### TikTok/Reels Algorithm
|
|
235
|
+
**Optimization**:
|
|
236
|
+
- Completion rate (watch to end)
|
|
237
|
+
- Re-watches
|
|
238
|
+
- Shares
|
|
239
|
+
- Comments
|
|
240
|
+
- Trending audio/hashtags
|
|
241
|
+
- Post timing
|
|
242
|
+
|
|
243
|
+
### Engagement Metrics
|
|
244
|
+
**Track**:
|
|
245
|
+
- View duration
|
|
246
|
+
- Drop-off points
|
|
247
|
+
- Engagement rate
|
|
248
|
+
- Share rate
|
|
249
|
+
- Click-through rate
|
|
250
|
+
- Conversion rate
|
|
251
|
+
|
|
252
|
+
## Content Categories
|
|
253
|
+
|
|
254
|
+
### Educational
|
|
255
|
+
**Structure**:
|
|
256
|
+
- Clear learning objective
|
|
257
|
+
- Step-by-step instruction
|
|
258
|
+
- Visual demonstrations
|
|
259
|
+
- Recap key points
|
|
260
|
+
- Actionable takeaways
|
|
261
|
+
|
|
262
|
+
### Entertainment
|
|
263
|
+
**Types**:
|
|
264
|
+
- Comedy sketches
|
|
265
|
+
- Challenges
|
|
266
|
+
- Reactions
|
|
267
|
+
- Parodies
|
|
268
|
+
- Storytelling
|
|
269
|
+
|
|
270
|
+
### Inspirational
|
|
271
|
+
**Elements**:
|
|
272
|
+
- Emotional journey
|
|
273
|
+
- Relatable struggle
|
|
274
|
+
- Transformation
|
|
275
|
+
- Uplifting message
|
|
276
|
+
- Call to action
|
|
277
|
+
|
|
278
|
+
### Behind-the-Scenes
|
|
279
|
+
**Content**:
|
|
280
|
+
- Process reveals
|
|
281
|
+
- Day-in-the-life
|
|
282
|
+
- Authentic moments
|
|
283
|
+
- Personality showcase
|
|
284
|
+
- Community building
|
|
285
|
+
|
|
286
|
+
## Call-to-Action (CTA)
|
|
287
|
+
|
|
288
|
+
### Types
|
|
289
|
+
**Engagement CTAs**:
|
|
290
|
+
- "Like if you agree"
|
|
291
|
+
- "Comment your thoughts"
|
|
292
|
+
- "Share with someone who needs this"
|
|
293
|
+
- "Which one are you?"
|
|
294
|
+
|
|
295
|
+
**Growth CTAs**:
|
|
296
|
+
- "Follow for more"
|
|
297
|
+
- "Subscribe for part 2"
|
|
298
|
+
- "Turn on notifications"
|
|
299
|
+
- "Check out my other videos"
|
|
300
|
+
|
|
301
|
+
**Conversion CTAs**:
|
|
302
|
+
- "Link in bio"
|
|
303
|
+
- "Visit my website"
|
|
304
|
+
- "Use code..."
|
|
305
|
+
- "Download now"
|
|
306
|
+
|
|
307
|
+
### Placement
|
|
308
|
+
- Verbal CTA at end
|
|
309
|
+
- Text overlay throughout
|
|
310
|
+
- Pin comment
|
|
311
|
+
- Description link
|
|
312
|
+
- End screen
|
|
313
|
+
|
|
314
|
+
## Series and Serialization
|
|
315
|
+
|
|
316
|
+
### Multi-Part Content
|
|
317
|
+
**Strategy**:
|
|
318
|
+
- Cliffhanger endings
|
|
319
|
+
- "Part 1 of 3" labeling
|
|
320
|
+
- Consistent posting schedule
|
|
321
|
+
- Cross-reference parts
|
|
322
|
+
- Playlist organization
|
|
323
|
+
|
|
324
|
+
### Recurring Formats
|
|
325
|
+
**Benefits**:
|
|
326
|
+
- Brand recognition
|
|
327
|
+
- Audience expectation
|
|
328
|
+
- Easier production
|
|
329
|
+
- Algorithm favor
|
|
330
|
+
- Community building
|
|
331
|
+
|
|
332
|
+
**Examples**:
|
|
333
|
+
- "Myth Busting Mondays"
|
|
334
|
+
- "Story Time Series"
|
|
335
|
+
- "Weekly Challenges"
|
|
336
|
+
- "Q&A Fridays"
|
|
337
|
+
|
|
338
|
+
## Best Practices
|
|
339
|
+
|
|
340
|
+
### DO
|
|
341
|
+
✅ Hook in first 3 seconds
|
|
342
|
+
✅ Optimize for platform format
|
|
343
|
+
✅ Use captions/text overlays
|
|
344
|
+
✅ Keep pacing fast
|
|
345
|
+
✅ Include clear CTA
|
|
346
|
+
✅ Test different hooks
|
|
347
|
+
✅ Analyze retention data
|
|
348
|
+
✅ Engage with comments
|
|
349
|
+
✅ Post consistently
|
|
350
|
+
✅ Follow platform trends
|
|
351
|
+
|
|
352
|
+
### DON'T
|
|
353
|
+
❌ Bury the lead
|
|
354
|
+
❌ Use slow intros
|
|
355
|
+
❌ Ignore platform specs
|
|
356
|
+
❌ Forget captions
|
|
357
|
+
❌ Make content too long
|
|
358
|
+
❌ Neglect thumbnails
|
|
359
|
+
❌ Ignore analytics
|
|
360
|
+
❌ Copy others exactly
|
|
361
|
+
❌ Sacrifice quality for speed
|
|
362
|
+
❌ Forget audience retention
|
|
363
|
+
|
|
364
|
+
## Scripting Format
|
|
365
|
+
|
|
366
|
+
### Short-Form Script
|
|
367
|
+
```
|
|
368
|
+
HOOK (0-3s):
|
|
369
|
+
[Visual: Close-up of shocked face]
|
|
370
|
+
[Text: "I can't believe this worked"]
|
|
371
|
+
[Audio: Trending sound]
|
|
372
|
+
|
|
373
|
+
SETUP (3-10s):
|
|
374
|
+
[Visual: Show problem]
|
|
375
|
+
[VO: "I tried this viral hack..."]
|
|
376
|
+
|
|
377
|
+
PAYOFF (10-30s):
|
|
378
|
+
[Visual: Demonstrate result]
|
|
379
|
+
[Text: "MIND BLOWN 🤯"]
|
|
380
|
+
|
|
381
|
+
CTA (final 3s):
|
|
382
|
+
[Text: "Follow for more hacks!"]
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
## Examples
|
|
386
|
+
|
|
387
|
+
**Successful Web Content Creators**:
|
|
388
|
+
- MrBeast (high-production YouTube)
|
|
389
|
+
- Khaby Lame (simple TikTok comedy)
|
|
390
|
+
- Zach King (magic vines/shorts)
|
|
391
|
+
- Emma Chamberlain (vlog style)
|
|
392
|
+
- Marques Brownlee (tech reviews)
|
|
393
|
+
|