@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,505 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<meta name="description" content="Responsive layout example demonstrating mobile-first design, CSS Grid, Flexbox, and media queries">
|
|
7
|
+
<title>Responsive Layout Example</title>
|
|
8
|
+
<style>
|
|
9
|
+
/* ============================================
|
|
10
|
+
CSS CUSTOM PROPERTIES (VARIABLES)
|
|
11
|
+
============================================ */
|
|
12
|
+
:root {
|
|
13
|
+
--color-primary: #3498db;
|
|
14
|
+
--color-secondary: #2ecc71;
|
|
15
|
+
--color-text: #333;
|
|
16
|
+
--color-text-light: #666;
|
|
17
|
+
--color-bg: #fff;
|
|
18
|
+
--color-bg-alt: #f8f9fa;
|
|
19
|
+
--color-border: #dee2e6;
|
|
20
|
+
|
|
21
|
+
--spacing-xs: 0.5rem;
|
|
22
|
+
--spacing-sm: 1rem;
|
|
23
|
+
--spacing-md: 1.5rem;
|
|
24
|
+
--spacing-lg: 2rem;
|
|
25
|
+
--spacing-xl: 3rem;
|
|
26
|
+
|
|
27
|
+
--font-size-sm: 0.875rem;
|
|
28
|
+
--font-size-base: 1rem;
|
|
29
|
+
--font-size-lg: 1.25rem;
|
|
30
|
+
--font-size-xl: 1.5rem;
|
|
31
|
+
--font-size-2xl: 2rem;
|
|
32
|
+
|
|
33
|
+
--container-max-width: 1200px;
|
|
34
|
+
--border-radius: 0.5rem;
|
|
35
|
+
--transition-speed: 0.3s;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* ============================================
|
|
39
|
+
RESET AND BASE STYLES
|
|
40
|
+
============================================ */
|
|
41
|
+
* {
|
|
42
|
+
margin: 0;
|
|
43
|
+
padding: 0;
|
|
44
|
+
box-sizing: border-box;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
body {
|
|
48
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
49
|
+
font-size: var(--font-size-base);
|
|
50
|
+
line-height: 1.6;
|
|
51
|
+
color: var(--color-text);
|
|
52
|
+
background-color: var(--color-bg);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
img {
|
|
56
|
+
max-width: 100%;
|
|
57
|
+
height: auto;
|
|
58
|
+
display: block;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* ============================================
|
|
62
|
+
MOBILE-FIRST LAYOUT (BASE STYLES)
|
|
63
|
+
============================================ */
|
|
64
|
+
|
|
65
|
+
/* Header */
|
|
66
|
+
.header {
|
|
67
|
+
background-color: var(--color-primary);
|
|
68
|
+
color: white;
|
|
69
|
+
padding: var(--spacing-sm);
|
|
70
|
+
position: sticky;
|
|
71
|
+
top: 0;
|
|
72
|
+
z-index: 100;
|
|
73
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.header__container {
|
|
77
|
+
max-width: var(--container-max-width);
|
|
78
|
+
margin: 0 auto;
|
|
79
|
+
display: flex;
|
|
80
|
+
flex-direction: column;
|
|
81
|
+
gap: var(--spacing-sm);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.header__logo {
|
|
85
|
+
font-size: var(--font-size-xl);
|
|
86
|
+
font-weight: bold;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* Navigation - Mobile First (Hamburger menu would go here) */
|
|
90
|
+
.nav {
|
|
91
|
+
display: flex;
|
|
92
|
+
flex-direction: column;
|
|
93
|
+
gap: var(--spacing-xs);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.nav__link {
|
|
97
|
+
color: white;
|
|
98
|
+
text-decoration: none;
|
|
99
|
+
padding: var(--spacing-xs);
|
|
100
|
+
border-radius: var(--border-radius);
|
|
101
|
+
transition: background-color var(--transition-speed);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.nav__link:hover,
|
|
105
|
+
.nav__link:focus {
|
|
106
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* Main Container */
|
|
110
|
+
.container {
|
|
111
|
+
max-width: var(--container-max-width);
|
|
112
|
+
margin: 0 auto;
|
|
113
|
+
padding: var(--spacing-sm);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/* Hero Section */
|
|
117
|
+
.hero {
|
|
118
|
+
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
|
|
119
|
+
color: white;
|
|
120
|
+
padding: var(--spacing-xl) var(--spacing-sm);
|
|
121
|
+
text-align: center;
|
|
122
|
+
margin-bottom: var(--spacing-lg);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.hero__title {
|
|
126
|
+
font-size: var(--font-size-2xl);
|
|
127
|
+
margin-bottom: var(--spacing-sm);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.hero__subtitle {
|
|
131
|
+
font-size: var(--font-size-lg);
|
|
132
|
+
opacity: 0.9;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/* Grid Layout - Mobile First (Single Column) */
|
|
136
|
+
.grid {
|
|
137
|
+
display: grid;
|
|
138
|
+
gap: var(--spacing-md);
|
|
139
|
+
margin-bottom: var(--spacing-lg);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.card {
|
|
143
|
+
background-color: var(--color-bg);
|
|
144
|
+
border: 1px solid var(--color-border);
|
|
145
|
+
border-radius: var(--border-radius);
|
|
146
|
+
padding: var(--spacing-md);
|
|
147
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
148
|
+
transition: transform var(--transition-speed), box-shadow var(--transition-speed);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.card:hover {
|
|
152
|
+
transform: translateY(-2px);
|
|
153
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.card__title {
|
|
157
|
+
font-size: var(--font-size-lg);
|
|
158
|
+
margin-bottom: var(--spacing-sm);
|
|
159
|
+
color: var(--color-primary);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.card__content {
|
|
163
|
+
color: var(--color-text-light);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Sidebar and Main Content - Mobile First (Stacked) */
|
|
167
|
+
.layout {
|
|
168
|
+
display: flex;
|
|
169
|
+
flex-direction: column;
|
|
170
|
+
gap: var(--spacing-lg);
|
|
171
|
+
margin-bottom: var(--spacing-lg);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.main-content {
|
|
175
|
+
flex: 1;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.sidebar {
|
|
179
|
+
background-color: var(--color-bg-alt);
|
|
180
|
+
padding: var(--spacing-md);
|
|
181
|
+
border-radius: var(--border-radius);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.sidebar__title {
|
|
185
|
+
font-size: var(--font-size-lg);
|
|
186
|
+
margin-bottom: var(--spacing-sm);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.sidebar__list {
|
|
190
|
+
list-style: none;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.sidebar__item {
|
|
194
|
+
padding: var(--spacing-xs) 0;
|
|
195
|
+
border-bottom: 1px solid var(--color-border);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.sidebar__item:last-child {
|
|
199
|
+
border-bottom: none;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/* Footer */
|
|
203
|
+
.footer {
|
|
204
|
+
background-color: var(--color-text);
|
|
205
|
+
color: white;
|
|
206
|
+
padding: var(--spacing-lg) var(--spacing-sm);
|
|
207
|
+
margin-top: var(--spacing-xl);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.footer__container {
|
|
211
|
+
max-width: var(--container-max-width);
|
|
212
|
+
margin: 0 auto;
|
|
213
|
+
display: grid;
|
|
214
|
+
gap: var(--spacing-md);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.footer__section-title {
|
|
218
|
+
font-size: var(--font-size-lg);
|
|
219
|
+
margin-bottom: var(--spacing-sm);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.footer__link {
|
|
223
|
+
color: rgba(255, 255, 255, 0.8);
|
|
224
|
+
text-decoration: none;
|
|
225
|
+
display: block;
|
|
226
|
+
padding: var(--spacing-xs) 0;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.footer__link:hover {
|
|
230
|
+
color: white;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/* ============================================
|
|
234
|
+
TABLET STYLES (min-width: 768px)
|
|
235
|
+
============================================ */
|
|
236
|
+
@media (min-width: 768px) {
|
|
237
|
+
.header__container {
|
|
238
|
+
flex-direction: row;
|
|
239
|
+
justify-content: space-between;
|
|
240
|
+
align-items: center;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.nav {
|
|
244
|
+
flex-direction: row;
|
|
245
|
+
gap: var(--spacing-sm);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.container {
|
|
249
|
+
padding: var(--spacing-md);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.hero {
|
|
253
|
+
padding: var(--spacing-xl) var(--spacing-md);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/* 2-column grid for tablets */
|
|
257
|
+
.grid {
|
|
258
|
+
grid-template-columns: repeat(2, 1fr);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/* Sidebar layout for tablets */
|
|
262
|
+
.layout {
|
|
263
|
+
flex-direction: row;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.sidebar {
|
|
267
|
+
width: 250px;
|
|
268
|
+
flex-shrink: 0;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/* 2-column footer for tablets */
|
|
272
|
+
.footer__container {
|
|
273
|
+
grid-template-columns: repeat(2, 1fr);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/* ============================================
|
|
278
|
+
DESKTOP STYLES (min-width: 1024px)
|
|
279
|
+
============================================ */
|
|
280
|
+
@media (min-width: 1024px) {
|
|
281
|
+
.container {
|
|
282
|
+
padding: var(--spacing-lg);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.hero {
|
|
286
|
+
padding: calc(var(--spacing-xl) * 1.5) var(--spacing-lg);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.hero__title {
|
|
290
|
+
font-size: calc(var(--font-size-2xl) * 1.5);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/* 3-column grid for desktop */
|
|
294
|
+
.grid {
|
|
295
|
+
grid-template-columns: repeat(3, 1fr);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.sidebar {
|
|
299
|
+
width: 300px;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/* 4-column footer for desktop */
|
|
303
|
+
.footer__container {
|
|
304
|
+
grid-template-columns: repeat(4, 1fr);
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/* ============================================
|
|
309
|
+
LARGE DESKTOP STYLES (min-width: 1440px)
|
|
310
|
+
============================================ */
|
|
311
|
+
@media (min-width: 1440px) {
|
|
312
|
+
/* 4-column grid for large desktop */
|
|
313
|
+
.grid {
|
|
314
|
+
grid-template-columns: repeat(4, 1fr);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
/* ============================================
|
|
319
|
+
PRINT STYLES
|
|
320
|
+
============================================ */
|
|
321
|
+
@media print {
|
|
322
|
+
.header,
|
|
323
|
+
.nav,
|
|
324
|
+
.sidebar,
|
|
325
|
+
.footer {
|
|
326
|
+
display: none;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.container {
|
|
330
|
+
max-width: 100%;
|
|
331
|
+
padding: 0;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.card {
|
|
335
|
+
break-inside: avoid;
|
|
336
|
+
page-break-inside: avoid;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/* ============================================
|
|
341
|
+
ACCESSIBILITY & REDUCED MOTION
|
|
342
|
+
============================================ */
|
|
343
|
+
@media (prefers-reduced-motion: reduce) {
|
|
344
|
+
* {
|
|
345
|
+
animation-duration: 0.01ms !important;
|
|
346
|
+
animation-iteration-count: 1 !important;
|
|
347
|
+
transition-duration: 0.01ms !important;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/* High contrast mode support */
|
|
352
|
+
@media (prefers-contrast: high) {
|
|
353
|
+
.card {
|
|
354
|
+
border-width: 2px;
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/* Dark mode support */
|
|
359
|
+
@media (prefers-color-scheme: dark) {
|
|
360
|
+
:root {
|
|
361
|
+
--color-text: #e0e0e0;
|
|
362
|
+
--color-text-light: #b0b0b0;
|
|
363
|
+
--color-bg: #1a1a1a;
|
|
364
|
+
--color-bg-alt: #2a2a2a;
|
|
365
|
+
--color-border: #404040;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.hero {
|
|
369
|
+
background: linear-gradient(135deg, #2980b9, #27ae60);
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
</style>
|
|
373
|
+
</head>
|
|
374
|
+
<body>
|
|
375
|
+
<!-- Header with Navigation -->
|
|
376
|
+
<header class="header">
|
|
377
|
+
<div class="header__container">
|
|
378
|
+
<div class="header__logo">Responsive Site</div>
|
|
379
|
+
<nav class="nav" aria-label="Main navigation">
|
|
380
|
+
<a href="#home" class="nav__link">Home</a>
|
|
381
|
+
<a href="#about" class="nav__link">About</a>
|
|
382
|
+
<a href="#services" class="nav__link">Services</a>
|
|
383
|
+
<a href="#contact" class="nav__link">Contact</a>
|
|
384
|
+
</nav>
|
|
385
|
+
</div>
|
|
386
|
+
</header>
|
|
387
|
+
|
|
388
|
+
<!-- Hero Section -->
|
|
389
|
+
<section class="hero">
|
|
390
|
+
<h1 class="hero__title">Responsive Layout Example</h1>
|
|
391
|
+
<p class="hero__subtitle">Mobile-first design with CSS Grid, Flexbox, and media queries</p>
|
|
392
|
+
</section>
|
|
393
|
+
|
|
394
|
+
<!-- Main Container -->
|
|
395
|
+
<div class="container">
|
|
396
|
+
<!-- Grid Layout -->
|
|
397
|
+
<section class="grid" aria-label="Features">
|
|
398
|
+
<article class="card">
|
|
399
|
+
<h2 class="card__title">Mobile First</h2>
|
|
400
|
+
<p class="card__content">
|
|
401
|
+
Start with mobile styles as the base, then progressively enhance for larger screens using media queries.
|
|
402
|
+
</p>
|
|
403
|
+
</article>
|
|
404
|
+
|
|
405
|
+
<article class="card">
|
|
406
|
+
<h2 class="card__title">CSS Grid</h2>
|
|
407
|
+
<p class="card__content">
|
|
408
|
+
Powerful 2D layout system that adapts from 1 column on mobile to 4 columns on large desktops.
|
|
409
|
+
</p>
|
|
410
|
+
</article>
|
|
411
|
+
|
|
412
|
+
<article class="card">
|
|
413
|
+
<h2 class="card__title">Flexbox</h2>
|
|
414
|
+
<p class="card__content">
|
|
415
|
+
Perfect for 1D layouts like navigation bars and content alignment within components.
|
|
416
|
+
</p>
|
|
417
|
+
</article>
|
|
418
|
+
|
|
419
|
+
<article class="card">
|
|
420
|
+
<h2 class="card__title">Media Queries</h2>
|
|
421
|
+
<p class="card__content">
|
|
422
|
+
Breakpoints at 768px (tablet), 1024px (desktop), and 1440px (large desktop) for optimal viewing.
|
|
423
|
+
</p>
|
|
424
|
+
</article>
|
|
425
|
+
|
|
426
|
+
<article class="card">
|
|
427
|
+
<h2 class="card__title">CSS Variables</h2>
|
|
428
|
+
<p class="card__content">
|
|
429
|
+
Custom properties for consistent spacing, colors, and typography throughout the design.
|
|
430
|
+
</p>
|
|
431
|
+
</article>
|
|
432
|
+
|
|
433
|
+
<article class="card">
|
|
434
|
+
<h2 class="card__title">Accessibility</h2>
|
|
435
|
+
<p class="card__content">
|
|
436
|
+
Support for reduced motion, high contrast, and dark mode preferences using media queries.
|
|
437
|
+
</p>
|
|
438
|
+
</article>
|
|
439
|
+
</section>
|
|
440
|
+
|
|
441
|
+
<!-- Sidebar Layout -->
|
|
442
|
+
<div class="layout">
|
|
443
|
+
<main class="main-content">
|
|
444
|
+
<article>
|
|
445
|
+
<h2>Main Content Area</h2>
|
|
446
|
+
<p>
|
|
447
|
+
This layout demonstrates a responsive sidebar pattern. On mobile devices,
|
|
448
|
+
the sidebar appears below the main content. On tablets and larger screens,
|
|
449
|
+
it moves to the side using Flexbox.
|
|
450
|
+
</p>
|
|
451
|
+
<p>
|
|
452
|
+
The layout automatically adjusts based on screen size, ensuring optimal
|
|
453
|
+
readability and usability across all devices.
|
|
454
|
+
</p>
|
|
455
|
+
</article>
|
|
456
|
+
</main>
|
|
457
|
+
|
|
458
|
+
<aside class="sidebar">
|
|
459
|
+
<h3 class="sidebar__title">Quick Links</h3>
|
|
460
|
+
<ul class="sidebar__list">
|
|
461
|
+
<li class="sidebar__item">Documentation</li>
|
|
462
|
+
<li class="sidebar__item">Tutorials</li>
|
|
463
|
+
<li class="sidebar__item">Examples</li>
|
|
464
|
+
<li class="sidebar__item">Resources</li>
|
|
465
|
+
<li class="sidebar__item">Support</li>
|
|
466
|
+
</ul>
|
|
467
|
+
</aside>
|
|
468
|
+
</div>
|
|
469
|
+
</div>
|
|
470
|
+
|
|
471
|
+
<!-- Footer -->
|
|
472
|
+
<footer class="footer">
|
|
473
|
+
<div class="footer__container">
|
|
474
|
+
<div class="footer__section">
|
|
475
|
+
<h3 class="footer__section-title">Company</h3>
|
|
476
|
+
<a href="#about" class="footer__link">About Us</a>
|
|
477
|
+
<a href="#team" class="footer__link">Team</a>
|
|
478
|
+
<a href="#careers" class="footer__link">Careers</a>
|
|
479
|
+
</div>
|
|
480
|
+
|
|
481
|
+
<div class="footer__section">
|
|
482
|
+
<h3 class="footer__section-title">Products</h3>
|
|
483
|
+
<a href="#features" class="footer__link">Features</a>
|
|
484
|
+
<a href="#pricing" class="footer__link">Pricing</a>
|
|
485
|
+
<a href="#enterprise" class="footer__link">Enterprise</a>
|
|
486
|
+
</div>
|
|
487
|
+
|
|
488
|
+
<div class="footer__section">
|
|
489
|
+
<h3 class="footer__section-title">Resources</h3>
|
|
490
|
+
<a href="#docs" class="footer__link">Documentation</a>
|
|
491
|
+
<a href="#guides" class="footer__link">Guides</a>
|
|
492
|
+
<a href="#api" class="footer__link">API Reference</a>
|
|
493
|
+
</div>
|
|
494
|
+
|
|
495
|
+
<div class="footer__section">
|
|
496
|
+
<h3 class="footer__section-title">Support</h3>
|
|
497
|
+
<a href="#help" class="footer__link">Help Center</a>
|
|
498
|
+
<a href="#contact" class="footer__link">Contact</a>
|
|
499
|
+
<a href="#status" class="footer__link">Status</a>
|
|
500
|
+
</div>
|
|
501
|
+
</div>
|
|
502
|
+
</footer>
|
|
503
|
+
</body>
|
|
504
|
+
</html>
|
|
505
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "html-css-js-standards",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"displayName": "HTML/CSS/JavaScript Standards",
|
|
5
|
+
"description": "Comprehensive HTML/CSS/JavaScript coding standards for modern web development with semantic HTML, modern CSS features, and ES6+ JavaScript",
|
|
6
|
+
"type": "coding-standards",
|
|
7
|
+
"language": "html-css-js",
|
|
8
|
+
"tags": ["html", "css", "javascript", "web", "frontend", "accessibility", "performance"],
|
|
9
|
+
"deprecated": true,
|
|
10
|
+
"deprecationMessage": "This module has been split into three independent modules. Use 'collections/html-css-js' instead, or link individual modules: 'coding-standards/html', 'coding-standards/css', 'coding-standards/js'",
|
|
11
|
+
"replacedBy": "collections/html-css-js",
|
|
12
|
+
"dependencies": [],
|
|
13
|
+
"augment": {
|
|
14
|
+
"characterCount": 165097,
|
|
15
|
+
"priority": "high",
|
|
16
|
+
"category": "coding-standards"
|
|
17
|
+
},
|
|
18
|
+
"installation": {
|
|
19
|
+
"required": false,
|
|
20
|
+
"steps": [
|
|
21
|
+
"Link module using: augx link coding-standards/html-css-js",
|
|
22
|
+
"Or manually copy contents to project's .augment/ folder"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"contents": {
|
|
26
|
+
"rules": [
|
|
27
|
+
"html-standards.md",
|
|
28
|
+
"css-standards.md",
|
|
29
|
+
"css-modern-features.md",
|
|
30
|
+
"javascript-standards.md",
|
|
31
|
+
"dom-manipulation.md",
|
|
32
|
+
"async-patterns.md",
|
|
33
|
+
"performance.md",
|
|
34
|
+
"tooling.md"
|
|
35
|
+
],
|
|
36
|
+
"examples": [
|
|
37
|
+
"html-examples.html",
|
|
38
|
+
"css-examples.css",
|
|
39
|
+
"javascript-examples.js"
|
|
40
|
+
],
|
|
41
|
+
"optionalExamples": [
|
|
42
|
+
"responsive-layout.html",
|
|
43
|
+
"async-examples.js",
|
|
44
|
+
"dom-examples.js"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|