@mytechtoday/augment-extensions 0.1.2 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/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/domain-rules/wordpress/README.md +163 -0
- package/augment-extensions/domain-rules/wordpress/module.json +32 -0
- package/augment-extensions/domain-rules/wordpress/rules/coding-standards.md +617 -0
- package/augment-extensions/domain-rules/wordpress/rules/directory-structure.md +270 -0
- package/augment-extensions/domain-rules/wordpress/rules/file-patterns.md +423 -0
- package/augment-extensions/domain-rules/wordpress/rules/gutenberg-blocks.md +493 -0
- package/augment-extensions/domain-rules/wordpress/rules/performance.md +568 -0
- package/augment-extensions/domain-rules/wordpress/rules/plugin-development.md +510 -0
- package/augment-extensions/domain-rules/wordpress/rules/project-detection.md +251 -0
- package/augment-extensions/domain-rules/wordpress/rules/rest-api.md +501 -0
- package/augment-extensions/domain-rules/wordpress/rules/security.md +564 -0
- package/augment-extensions/domain-rules/wordpress/rules/theme-development.md +388 -0
- package/augment-extensions/domain-rules/wordpress/rules/woocommerce.md +441 -0
- package/augment-extensions/domain-rules/wordpress-plugin/README.md +139 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/ajax-plugin.md +1599 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/custom-post-type-plugin.md +1727 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/gutenberg-block-plugin.md +428 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/gutenberg-block.md +422 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/mvc-plugin.md +1623 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/object-oriented-plugin.md +1343 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/rest-endpoint.md +734 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/settings-page-plugin.md +1350 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/simple-procedural-plugin.md +503 -0
- package/augment-extensions/domain-rules/wordpress-plugin/examples/singleton-plugin.md +971 -0
- package/augment-extensions/domain-rules/wordpress-plugin/module.json +53 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/activation-hooks.md +770 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/admin-interface.md +874 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/ajax-handlers.md +629 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/asset-management.md +559 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/context-providers.md +709 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/cron-jobs.md +736 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/database-management.md +1057 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/documentation-standards.md +463 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/frontend-functionality.md +478 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/gutenberg-blocks.md +818 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/internationalization.md +416 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/migration.md +667 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/performance-optimization.md +878 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/plugin-architecture.md +693 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/plugin-structure.md +352 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/rest-api.md +818 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/scaffolding-workflow.md +624 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/security-best-practices.md +866 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/testing-patterns.md +1165 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/testing.md +414 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/vscode-integration.md +751 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/woocommerce-integration.md +949 -0
- package/augment-extensions/domain-rules/wordpress-plugin/rules/wordpress-org-submission.md +458 -0
- package/augment-extensions/examples/gutenberg-block-plugin/README.md +101 -0
- package/augment-extensions/examples/gutenberg-block-plugin/examples/testimonial-block.md +428 -0
- package/augment-extensions/examples/gutenberg-block-plugin/module.json +40 -0
- package/augment-extensions/examples/rest-api-plugin/README.md +98 -0
- package/augment-extensions/examples/rest-api-plugin/examples/task-manager-api.md +1299 -0
- package/augment-extensions/examples/rest-api-plugin/module.json +40 -0
- package/augment-extensions/examples/woocommerce-extension/README.md +98 -0
- package/augment-extensions/examples/woocommerce-extension/examples/product-customizer.md +763 -0
- package/augment-extensions/examples/woocommerce-extension/module.json +40 -0
- package/augment-extensions/workflows/beads/module.json +4 -3
- 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/workflows/wordpress-plugin/README.md +232 -0
- package/augment-extensions/workflows/wordpress-plugin/ai-prompts.md +839 -0
- package/augment-extensions/workflows/wordpress-plugin/bead-decomposition-patterns.md +854 -0
- package/augment-extensions/workflows/wordpress-plugin/examples/complete-plugin-example.md +540 -0
- package/augment-extensions/workflows/wordpress-plugin/examples/custom-post-type-example.md +1083 -0
- package/augment-extensions/workflows/wordpress-plugin/examples/feature-addition-workflow.md +669 -0
- package/augment-extensions/workflows/wordpress-plugin/examples/plugin-creation-workflow.md +597 -0
- package/augment-extensions/workflows/wordpress-plugin/examples/secure-form-handler-example.md +925 -0
- package/augment-extensions/workflows/wordpress-plugin/examples/security-audit-workflow.md +752 -0
- package/augment-extensions/workflows/wordpress-plugin/examples/wordpress-org-submission-workflow.md +773 -0
- package/augment-extensions/workflows/wordpress-plugin/module.json +49 -0
- package/augment-extensions/workflows/wordpress-plugin/rules/best-practices.md +942 -0
- package/augment-extensions/workflows/wordpress-plugin/rules/development-workflow.md +702 -0
- package/augment-extensions/workflows/wordpress-plugin/rules/submission-workflow.md +728 -0
- package/augment-extensions/workflows/wordpress-plugin/rules/testing-workflow.md +775 -0
- package/augment-extensions/writing-standards/screenplay/README.md +171 -0
- package/augment-extensions/writing-standards/screenplay/examples/aaa-hollywood-scene.fountain +164 -0
- package/augment-extensions/writing-standards/screenplay/module.json +124 -0
- package/augment-extensions/writing-standards/screenplay/rules/universal-formatting.md +339 -0
- package/cli/MODULES.md +302 -0
- package/cli/dist/cli.js +142 -9
- 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.map +1 -1
- package/cli/dist/commands/show.js +42 -71
- 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/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/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 +153 -0
- package/cli/dist/utils/module-system.d.ts.map +1 -0
- package/cli/dist/utils/module-system.js +528 -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 +534 -70
- package/package.json +12 -3
|
@@ -0,0 +1,550 @@
|
|
|
1
|
+
/* ========================================
|
|
2
|
+
CSS CUSTOM PROPERTIES (VARIABLES)
|
|
3
|
+
======================================== */
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
/* Colors */
|
|
7
|
+
--primary-color: #007bff;
|
|
8
|
+
--secondary-color: #6c757d;
|
|
9
|
+
--success-color: #28a745;
|
|
10
|
+
--danger-color: #dc3545;
|
|
11
|
+
--warning-color: #ffc107;
|
|
12
|
+
--text-color: #212529;
|
|
13
|
+
--bg-color: #ffffff;
|
|
14
|
+
|
|
15
|
+
/* Spacing */
|
|
16
|
+
--spacing-xs: 4px;
|
|
17
|
+
--spacing-sm: 8px;
|
|
18
|
+
--spacing-md: 16px;
|
|
19
|
+
--spacing-lg: 24px;
|
|
20
|
+
--spacing-xl: 32px;
|
|
21
|
+
|
|
22
|
+
/* Typography */
|
|
23
|
+
--font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
24
|
+
--font-family-mono: "Courier New", monospace;
|
|
25
|
+
--font-size-base: 16px;
|
|
26
|
+
--font-size-sm: 14px;
|
|
27
|
+
--font-size-lg: 18px;
|
|
28
|
+
--font-size-xl: 24px;
|
|
29
|
+
--line-height-base: 1.5;
|
|
30
|
+
|
|
31
|
+
/* Borders */
|
|
32
|
+
--border-radius: 4px;
|
|
33
|
+
--border-width: 1px;
|
|
34
|
+
--border-color: #dee2e6;
|
|
35
|
+
|
|
36
|
+
/* Shadows */
|
|
37
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
38
|
+
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
39
|
+
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
|
|
40
|
+
|
|
41
|
+
/* Transitions */
|
|
42
|
+
--transition-fast: 150ms ease-in-out;
|
|
43
|
+
--transition-base: 300ms ease-in-out;
|
|
44
|
+
--transition-slow: 500ms ease-in-out;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* ========================================
|
|
48
|
+
BEM NAMING CONVENTION EXAMPLES
|
|
49
|
+
======================================== */
|
|
50
|
+
|
|
51
|
+
/* Block: Card component */
|
|
52
|
+
.card {
|
|
53
|
+
--card-padding: var(--spacing-md);
|
|
54
|
+
--card-bg: var(--bg-color);
|
|
55
|
+
|
|
56
|
+
background-color: var(--card-bg);
|
|
57
|
+
border: var(--border-width) solid var(--border-color);
|
|
58
|
+
border-radius: var(--border-radius);
|
|
59
|
+
padding: var(--card-padding);
|
|
60
|
+
box-shadow: var(--shadow-sm);
|
|
61
|
+
transition: box-shadow var(--transition-base);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* Element: Card header */
|
|
65
|
+
.card__header {
|
|
66
|
+
border-bottom: var(--border-width) solid var(--border-color);
|
|
67
|
+
padding-bottom: var(--spacing-sm);
|
|
68
|
+
margin-bottom: var(--spacing-md);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/* Element: Card title */
|
|
72
|
+
.card__title {
|
|
73
|
+
margin: 0;
|
|
74
|
+
font-size: var(--font-size-lg);
|
|
75
|
+
color: var(--text-color);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* Element: Card body */
|
|
79
|
+
.card__body {
|
|
80
|
+
color: var(--text-color);
|
|
81
|
+
line-height: var(--line-height-base);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Element: Card footer */
|
|
85
|
+
.card__footer {
|
|
86
|
+
border-top: var(--border-width) solid var(--border-color);
|
|
87
|
+
padding-top: var(--spacing-sm);
|
|
88
|
+
margin-top: var(--spacing-md);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Modifier: Featured card */
|
|
92
|
+
.card--featured {
|
|
93
|
+
border-color: var(--primary-color);
|
|
94
|
+
box-shadow: var(--shadow-md);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/* Modifier: Large card header */
|
|
98
|
+
.card__header--large {
|
|
99
|
+
padding-bottom: var(--spacing-md);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/* Modifier: Danger card */
|
|
103
|
+
.card--danger {
|
|
104
|
+
border-color: var(--danger-color);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* ========================================
|
|
108
|
+
BUTTON COMPONENT WITH VARIATIONS
|
|
109
|
+
======================================== */
|
|
110
|
+
|
|
111
|
+
.btn {
|
|
112
|
+
display: inline-block;
|
|
113
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
114
|
+
font-family: var(--font-family-base);
|
|
115
|
+
font-size: var(--font-size-base);
|
|
116
|
+
line-height: var(--line-height-base);
|
|
117
|
+
text-align: center;
|
|
118
|
+
text-decoration: none;
|
|
119
|
+
border: var(--border-width) solid transparent;
|
|
120
|
+
border-radius: var(--border-radius);
|
|
121
|
+
cursor: pointer;
|
|
122
|
+
transition: all var(--transition-fast);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.btn--primary {
|
|
126
|
+
background-color: var(--primary-color);
|
|
127
|
+
color: white;
|
|
128
|
+
border-color: var(--primary-color);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.btn--primary:hover {
|
|
132
|
+
background-color: #0056b3;
|
|
133
|
+
border-color: #0056b3;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.btn--secondary {
|
|
137
|
+
background-color: var(--secondary-color);
|
|
138
|
+
color: white;
|
|
139
|
+
border-color: var(--secondary-color);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.btn--outline {
|
|
143
|
+
background-color: transparent;
|
|
144
|
+
color: var(--primary-color);
|
|
145
|
+
border-color: var(--primary-color);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.btn--outline:hover {
|
|
149
|
+
background-color: var(--primary-color);
|
|
150
|
+
color: white;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.btn--large {
|
|
154
|
+
padding: var(--spacing-md) var(--spacing-lg);
|
|
155
|
+
font-size: var(--font-size-lg);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.btn--small {
|
|
159
|
+
padding: var(--spacing-xs) var(--spacing-sm);
|
|
160
|
+
font-size: var(--font-size-sm);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/* ========================================
|
|
164
|
+
CSS GRID LAYOUT
|
|
165
|
+
======================================== */
|
|
166
|
+
|
|
167
|
+
/* Grid container for page layout */
|
|
168
|
+
.page-layout {
|
|
169
|
+
display: grid;
|
|
170
|
+
grid-template-columns: 250px 1fr;
|
|
171
|
+
grid-template-rows: auto 1fr auto;
|
|
172
|
+
grid-template-areas:
|
|
173
|
+
"header header"
|
|
174
|
+
"sidebar main"
|
|
175
|
+
"footer footer";
|
|
176
|
+
min-height: 100vh;
|
|
177
|
+
gap: var(--spacing-md);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.page-layout__header {
|
|
181
|
+
grid-area: header;
|
|
182
|
+
background-color: var(--primary-color);
|
|
183
|
+
color: white;
|
|
184
|
+
padding: var(--spacing-md);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.page-layout__sidebar {
|
|
188
|
+
grid-area: sidebar;
|
|
189
|
+
background-color: #f8f9fa;
|
|
190
|
+
padding: var(--spacing-md);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.page-layout__main {
|
|
194
|
+
grid-area: main;
|
|
195
|
+
padding: var(--spacing-md);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.page-layout__footer {
|
|
199
|
+
grid-area: footer;
|
|
200
|
+
background-color: var(--secondary-color);
|
|
201
|
+
color: white;
|
|
202
|
+
padding: var(--spacing-md);
|
|
203
|
+
text-align: center;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/* Grid for card gallery */
|
|
207
|
+
.card-grid {
|
|
208
|
+
display: grid;
|
|
209
|
+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
210
|
+
gap: var(--spacing-lg);
|
|
211
|
+
padding: var(--spacing-md);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/* ========================================
|
|
215
|
+
FLEXBOX LAYOUTS
|
|
216
|
+
======================================== */
|
|
217
|
+
|
|
218
|
+
/* Horizontal navigation with Flexbox */
|
|
219
|
+
.nav {
|
|
220
|
+
display: flex;
|
|
221
|
+
align-items: center;
|
|
222
|
+
gap: var(--spacing-md);
|
|
223
|
+
padding: var(--spacing-sm) var(--spacing-md);
|
|
224
|
+
background-color: var(--bg-color);
|
|
225
|
+
border-bottom: var(--border-width) solid var(--border-color);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.nav__logo {
|
|
229
|
+
margin-right: auto;
|
|
230
|
+
font-size: var(--font-size-lg);
|
|
231
|
+
font-weight: bold;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.nav__menu {
|
|
235
|
+
display: flex;
|
|
236
|
+
gap: var(--spacing-md);
|
|
237
|
+
list-style: none;
|
|
238
|
+
margin: 0;
|
|
239
|
+
padding: 0;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.nav__item {
|
|
243
|
+
/* Individual nav items */
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.nav__link {
|
|
247
|
+
color: var(--text-color);
|
|
248
|
+
text-decoration: none;
|
|
249
|
+
padding: var(--spacing-xs) var(--spacing-sm);
|
|
250
|
+
transition: color var(--transition-fast);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.nav__link:hover {
|
|
254
|
+
color: var(--primary-color);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/* Flexbox for centering content */
|
|
258
|
+
.flex-center {
|
|
259
|
+
display: flex;
|
|
260
|
+
justify-content: center;
|
|
261
|
+
align-items: center;
|
|
262
|
+
min-height: 100vh;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/* Flexbox for space-between layout */
|
|
266
|
+
.flex-between {
|
|
267
|
+
display: flex;
|
|
268
|
+
justify-content: space-between;
|
|
269
|
+
align-items: center;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/* Flexbox column layout */
|
|
273
|
+
.flex-column {
|
|
274
|
+
display: flex;
|
|
275
|
+
flex-direction: column;
|
|
276
|
+
gap: var(--spacing-md);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/* ========================================
|
|
280
|
+
RESPONSIVE DESIGN WITH MEDIA QUERIES
|
|
281
|
+
======================================== */
|
|
282
|
+
|
|
283
|
+
/* Mobile-first approach: Base styles for mobile */
|
|
284
|
+
.container {
|
|
285
|
+
width: 100%;
|
|
286
|
+
padding: var(--spacing-md);
|
|
287
|
+
margin: 0 auto;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
/* Tablet and up */
|
|
291
|
+
@media (min-width: 768px) {
|
|
292
|
+
.container {
|
|
293
|
+
max-width: 720px;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.card-grid {
|
|
297
|
+
grid-template-columns: repeat(2, 1fr);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.nav__menu {
|
|
301
|
+
flex-direction: row;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
/* Desktop and up */
|
|
306
|
+
@media (min-width: 1024px) {
|
|
307
|
+
.container {
|
|
308
|
+
max-width: 960px;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.card-grid {
|
|
312
|
+
grid-template-columns: repeat(3, 1fr);
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/* Large desktop */
|
|
317
|
+
@media (min-width: 1280px) {
|
|
318
|
+
.container {
|
|
319
|
+
max-width: 1200px;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.card-grid {
|
|
323
|
+
grid-template-columns: repeat(4, 1fr);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/* Mobile-specific: Stack navigation vertically */
|
|
328
|
+
@media (max-width: 767px) {
|
|
329
|
+
.page-layout {
|
|
330
|
+
grid-template-columns: 1fr;
|
|
331
|
+
grid-template-areas:
|
|
332
|
+
"header"
|
|
333
|
+
"main"
|
|
334
|
+
"sidebar"
|
|
335
|
+
"footer";
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.nav {
|
|
339
|
+
flex-direction: column;
|
|
340
|
+
align-items: flex-start;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.nav__menu {
|
|
344
|
+
flex-direction: column;
|
|
345
|
+
width: 100%;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
/* ========================================
|
|
350
|
+
SELECTOR SPECIFICITY EXAMPLES
|
|
351
|
+
======================================== */
|
|
352
|
+
|
|
353
|
+
/* ✅ GOOD: Low specificity, easy to override */
|
|
354
|
+
.alert {
|
|
355
|
+
padding: var(--spacing-md);
|
|
356
|
+
border-radius: var(--border-radius);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.alert--success {
|
|
360
|
+
background-color: var(--success-color);
|
|
361
|
+
color: white;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.alert--danger {
|
|
365
|
+
background-color: var(--danger-color);
|
|
366
|
+
color: white;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
/* ❌ BAD: High specificity, hard to override */
|
|
370
|
+
/* div.alert.alert--success { } */
|
|
371
|
+
|
|
372
|
+
/* ✅ GOOD: Avoid deep nesting (max 3 levels) */
|
|
373
|
+
.article__content p {
|
|
374
|
+
margin-bottom: var(--spacing-md);
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
/* ❌ BAD: Too deeply nested */
|
|
378
|
+
/* .article .article__content .text-wrapper p { } */
|
|
379
|
+
|
|
380
|
+
/* ========================================
|
|
381
|
+
UTILITY CLASSES
|
|
382
|
+
======================================== */
|
|
383
|
+
|
|
384
|
+
/* Spacing utilities */
|
|
385
|
+
.mt-sm { margin-top: var(--spacing-sm); }
|
|
386
|
+
.mt-md { margin-top: var(--spacing-md); }
|
|
387
|
+
.mt-lg { margin-top: var(--spacing-lg); }
|
|
388
|
+
|
|
389
|
+
.mb-sm { margin-bottom: var(--spacing-sm); }
|
|
390
|
+
.mb-md { margin-bottom: var(--spacing-md); }
|
|
391
|
+
.mb-lg { margin-bottom: var(--spacing-lg); }
|
|
392
|
+
|
|
393
|
+
.p-sm { padding: var(--spacing-sm); }
|
|
394
|
+
.p-md { padding: var(--spacing-md); }
|
|
395
|
+
.p-lg { padding: var(--spacing-lg); }
|
|
396
|
+
|
|
397
|
+
/* Text utilities */
|
|
398
|
+
.text-center { text-align: center; }
|
|
399
|
+
.text-left { text-align: left; }
|
|
400
|
+
.text-right { text-align: right; }
|
|
401
|
+
|
|
402
|
+
.text-primary { color: var(--primary-color); }
|
|
403
|
+
.text-secondary { color: var(--secondary-color); }
|
|
404
|
+
.text-danger { color: var(--danger-color); }
|
|
405
|
+
|
|
406
|
+
.text-sm { font-size: var(--font-size-sm); }
|
|
407
|
+
.text-lg { font-size: var(--font-size-lg); }
|
|
408
|
+
.text-xl { font-size: var(--font-size-xl); }
|
|
409
|
+
|
|
410
|
+
/* Display utilities */
|
|
411
|
+
.d-none { display: none; }
|
|
412
|
+
.d-block { display: block; }
|
|
413
|
+
.d-inline { display: inline; }
|
|
414
|
+
.d-inline-block { display: inline-block; }
|
|
415
|
+
.d-flex { display: flex; }
|
|
416
|
+
.d-grid { display: grid; }
|
|
417
|
+
|
|
418
|
+
/* ========================================
|
|
419
|
+
FORM STYLING
|
|
420
|
+
======================================== */
|
|
421
|
+
|
|
422
|
+
.form-group {
|
|
423
|
+
display: flex;
|
|
424
|
+
flex-direction: column;
|
|
425
|
+
gap: var(--spacing-xs);
|
|
426
|
+
margin-bottom: var(--spacing-md);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.form-label {
|
|
430
|
+
font-weight: 600;
|
|
431
|
+
color: var(--text-color);
|
|
432
|
+
font-size: var(--font-size-sm);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.form-input,
|
|
436
|
+
.form-textarea,
|
|
437
|
+
.form-select {
|
|
438
|
+
padding: var(--spacing-sm);
|
|
439
|
+
border: var(--border-width) solid var(--border-color);
|
|
440
|
+
border-radius: var(--border-radius);
|
|
441
|
+
font-family: var(--font-family-base);
|
|
442
|
+
font-size: var(--font-size-base);
|
|
443
|
+
transition: border-color var(--transition-fast);
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.form-input:focus,
|
|
447
|
+
.form-textarea:focus,
|
|
448
|
+
.form-select:focus {
|
|
449
|
+
outline: none;
|
|
450
|
+
border-color: var(--primary-color);
|
|
451
|
+
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.form-input--error {
|
|
455
|
+
border-color: var(--danger-color);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.form-help-text {
|
|
459
|
+
font-size: var(--font-size-sm);
|
|
460
|
+
color: var(--secondary-color);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.form-error-text {
|
|
464
|
+
font-size: var(--font-size-sm);
|
|
465
|
+
color: var(--danger-color);
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
/* ========================================
|
|
469
|
+
ANIMATIONS AND TRANSITIONS
|
|
470
|
+
======================================== */
|
|
471
|
+
|
|
472
|
+
/* Fade in animation */
|
|
473
|
+
@keyframes fadeIn {
|
|
474
|
+
from {
|
|
475
|
+
opacity: 0;
|
|
476
|
+
}
|
|
477
|
+
to {
|
|
478
|
+
opacity: 1;
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.fade-in {
|
|
483
|
+
animation: fadeIn var(--transition-base);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
/* Slide in from left */
|
|
487
|
+
@keyframes slideInLeft {
|
|
488
|
+
from {
|
|
489
|
+
transform: translateX(-100%);
|
|
490
|
+
opacity: 0;
|
|
491
|
+
}
|
|
492
|
+
to {
|
|
493
|
+
transform: translateX(0);
|
|
494
|
+
opacity: 1;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.slide-in-left {
|
|
499
|
+
animation: slideInLeft var(--transition-base);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
/* Hover effects */
|
|
503
|
+
.hover-lift {
|
|
504
|
+
transition: transform var(--transition-fast);
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.hover-lift:hover {
|
|
508
|
+
transform: translateY(-4px);
|
|
509
|
+
box-shadow: var(--shadow-lg);
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
/* ========================================
|
|
513
|
+
ACCESSIBILITY HELPERS
|
|
514
|
+
======================================== */
|
|
515
|
+
|
|
516
|
+
/* Screen reader only content */
|
|
517
|
+
.sr-only {
|
|
518
|
+
position: absolute;
|
|
519
|
+
width: 1px;
|
|
520
|
+
height: 1px;
|
|
521
|
+
padding: 0;
|
|
522
|
+
margin: -1px;
|
|
523
|
+
overflow: hidden;
|
|
524
|
+
clip: rect(0, 0, 0, 0);
|
|
525
|
+
white-space: nowrap;
|
|
526
|
+
border: 0;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
/* Focus visible for keyboard navigation */
|
|
530
|
+
.focus-visible:focus {
|
|
531
|
+
outline: 2px solid var(--primary-color);
|
|
532
|
+
outline-offset: 2px;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
/* Skip to main content link */
|
|
536
|
+
.skip-link {
|
|
537
|
+
position: absolute;
|
|
538
|
+
top: -40px;
|
|
539
|
+
left: 0;
|
|
540
|
+
background: var(--primary-color);
|
|
541
|
+
color: white;
|
|
542
|
+
padding: var(--spacing-sm);
|
|
543
|
+
text-decoration: none;
|
|
544
|
+
z-index: 100;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.skip-link:focus {
|
|
548
|
+
top: 0;
|
|
549
|
+
}
|
|
550
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "css-standards",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"displayName": "CSS Standards",
|
|
5
|
+
"description": "Comprehensive CSS coding standards for modern web development with styling, layouts, responsiveness, and preprocessors (Sass, Less)",
|
|
6
|
+
"type": "coding-standards",
|
|
7
|
+
"language": "css",
|
|
8
|
+
"tags": ["css", "web", "frontend", "styling", "responsive", "sass", "less"],
|
|
9
|
+
"dependencies": [],
|
|
10
|
+
"augment": {
|
|
11
|
+
"characterCount": 30556,
|
|
12
|
+
"priority": "high",
|
|
13
|
+
"category": "coding-standards",
|
|
14
|
+
"appliesTo": {
|
|
15
|
+
"filePatterns": [
|
|
16
|
+
"**/*.css",
|
|
17
|
+
"**/*.scss",
|
|
18
|
+
"**/*.sass",
|
|
19
|
+
"**/*.less"
|
|
20
|
+
],
|
|
21
|
+
"projectTypes": [
|
|
22
|
+
"web",
|
|
23
|
+
"frontend"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"installation": {
|
|
28
|
+
"required": false,
|
|
29
|
+
"steps": [
|
|
30
|
+
"Link module using: augx link coding-standards/css",
|
|
31
|
+
"Or manually copy contents to project's .augment/ folder"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"contents": {
|
|
35
|
+
"rules": [
|
|
36
|
+
"css-standards.md",
|
|
37
|
+
"css-modern-features.md"
|
|
38
|
+
],
|
|
39
|
+
"examples": [
|
|
40
|
+
"css-examples.css"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|