@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,425 @@
|
|
|
1
|
+
# Documentation Standards
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Proper documentation improves code maintainability and helps developers understand code intent. This document defines PHPDoc standards and documentation best practices.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## PHPDoc Blocks
|
|
10
|
+
|
|
11
|
+
### Function and Method Documentation
|
|
12
|
+
|
|
13
|
+
**Rules:**
|
|
14
|
+
- All public methods MUST have PHPDoc blocks
|
|
15
|
+
- Include description, parameters, return type, and exceptions
|
|
16
|
+
- Use proper PHPDoc tags
|
|
17
|
+
|
|
18
|
+
**Required Tags:**
|
|
19
|
+
- `@param` - Document all parameters with types and descriptions
|
|
20
|
+
- `@return` - Document return type and description
|
|
21
|
+
- `@throws` - Document all thrown exceptions
|
|
22
|
+
|
|
23
|
+
**Examples:**
|
|
24
|
+
```php
|
|
25
|
+
// ✅ Good - Complete documentation
|
|
26
|
+
/**
|
|
27
|
+
* Retrieves a user by their unique identifier.
|
|
28
|
+
*
|
|
29
|
+
* @param int $id The user's unique identifier
|
|
30
|
+
* @return User|null The user object if found, null otherwise
|
|
31
|
+
* @throws DatabaseException If database connection fails
|
|
32
|
+
* @throws InvalidArgumentException If ID is negative
|
|
33
|
+
*/
|
|
34
|
+
public function getUserById(int $id): ?User
|
|
35
|
+
{
|
|
36
|
+
if ($id < 0) {
|
|
37
|
+
throw new InvalidArgumentException('User ID must be positive');
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return $this->repository->find($id);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// ✅ Good - With examples for complex functions
|
|
44
|
+
/**
|
|
45
|
+
* Calculates the total price including tax and discounts.
|
|
46
|
+
*
|
|
47
|
+
* Example:
|
|
48
|
+
* ```php
|
|
49
|
+
* $calculator = new PriceCalculator();
|
|
50
|
+
* $total = $calculator->calculate(100.00, 0.2, 10.00);
|
|
51
|
+
* // Returns: 110.00 (100 + 20% tax - 10 discount)
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* @param float $basePrice The base price before tax and discounts
|
|
55
|
+
* @param float $taxRate The tax rate as a decimal (e.g., 0.2 for 20%)
|
|
56
|
+
* @param float $discount The discount amount to subtract
|
|
57
|
+
* @return float The final calculated price
|
|
58
|
+
*/
|
|
59
|
+
public function calculate(float $basePrice, float $taxRate, float $discount): float
|
|
60
|
+
{
|
|
61
|
+
return ($basePrice * (1 + $taxRate)) - $discount;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// ❌ Bad - Missing documentation
|
|
65
|
+
public function getUserById(int $id): ?User
|
|
66
|
+
{
|
|
67
|
+
return $this->repository->find($id);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// ❌ Bad - Incomplete documentation
|
|
71
|
+
/**
|
|
72
|
+
* Gets user
|
|
73
|
+
*/
|
|
74
|
+
public function getUserById(int $id): ?User
|
|
75
|
+
{
|
|
76
|
+
return $this->repository->find($id);
|
|
77
|
+
}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Class Documentation
|
|
81
|
+
|
|
82
|
+
**Rules:**
|
|
83
|
+
- All classes MUST have PHPDoc blocks
|
|
84
|
+
- Describe the class purpose and responsibility
|
|
85
|
+
- Include package/namespace information when relevant
|
|
86
|
+
|
|
87
|
+
**Optional Tags:**
|
|
88
|
+
- `@package` - Indicate namespace/package
|
|
89
|
+
- `@author` - Author information (optional)
|
|
90
|
+
- `@property` - Document magic properties
|
|
91
|
+
- `@method` - Document magic methods
|
|
92
|
+
|
|
93
|
+
**Examples:**
|
|
94
|
+
```php
|
|
95
|
+
// ✅ Good - Class documentation
|
|
96
|
+
/**
|
|
97
|
+
* Manages user authentication and authorization.
|
|
98
|
+
*
|
|
99
|
+
* This service handles user login, logout, password verification,
|
|
100
|
+
* and permission checking. It integrates with the session manager
|
|
101
|
+
* and user repository.
|
|
102
|
+
*
|
|
103
|
+
* @package App\Services\Auth
|
|
104
|
+
*/
|
|
105
|
+
class AuthenticationService
|
|
106
|
+
{
|
|
107
|
+
// ...
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// ✅ Good - With magic properties
|
|
111
|
+
/**
|
|
112
|
+
* Represents a user in the system.
|
|
113
|
+
*
|
|
114
|
+
* @property-read int $id The user's unique identifier
|
|
115
|
+
* @property string $name The user's full name
|
|
116
|
+
* @property string $email The user's email address
|
|
117
|
+
*/
|
|
118
|
+
class User
|
|
119
|
+
{
|
|
120
|
+
// ...
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// ✅ Good - With magic methods
|
|
124
|
+
/**
|
|
125
|
+
* Base repository with dynamic query methods.
|
|
126
|
+
*
|
|
127
|
+
* @method User|null findByEmail(string $email)
|
|
128
|
+
* @method User[] findByStatus(string $status)
|
|
129
|
+
*/
|
|
130
|
+
class UserRepository
|
|
131
|
+
{
|
|
132
|
+
public function __call(string $method, array $args)
|
|
133
|
+
{
|
|
134
|
+
// Magic method implementation
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Property Documentation
|
|
140
|
+
|
|
141
|
+
**Rules:**
|
|
142
|
+
- Document complex or non-obvious properties
|
|
143
|
+
- Use `@var` tag for type information
|
|
144
|
+
- Include description when type alone isn't clear
|
|
145
|
+
|
|
146
|
+
**Examples:**
|
|
147
|
+
```php
|
|
148
|
+
// ✅ Good - Property documentation
|
|
149
|
+
class OrderProcessor
|
|
150
|
+
{
|
|
151
|
+
/**
|
|
152
|
+
* Maximum number of retry attempts for failed orders.
|
|
153
|
+
*
|
|
154
|
+
* @var int
|
|
155
|
+
*/
|
|
156
|
+
private const MAX_RETRIES = 3;
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* The payment gateway instance for processing payments.
|
|
160
|
+
*
|
|
161
|
+
* @var PaymentGatewayInterface
|
|
162
|
+
*/
|
|
163
|
+
private PaymentGatewayInterface $gateway;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Cache of processed order IDs to prevent duplicate processing.
|
|
167
|
+
*
|
|
168
|
+
* @var array<int, bool>
|
|
169
|
+
*/
|
|
170
|
+
private array $processedOrders = [];
|
|
171
|
+
}
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## Type Annotations
|
|
177
|
+
|
|
178
|
+
### Array Type Annotations
|
|
179
|
+
|
|
180
|
+
**Rules:**
|
|
181
|
+
- Use array shape notation for structured arrays
|
|
182
|
+
- Use generic array notation for simple arrays
|
|
183
|
+
- Be specific about array contents
|
|
184
|
+
|
|
185
|
+
**Examples:**
|
|
186
|
+
```php
|
|
187
|
+
// ✅ Good - Array shape notation
|
|
188
|
+
/**
|
|
189
|
+
* @param array{id: int, name: string, email: string} $userData
|
|
190
|
+
* @return array{success: bool, message: string}
|
|
191
|
+
*/
|
|
192
|
+
public function processUser(array $userData): array
|
|
193
|
+
{
|
|
194
|
+
// ...
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
// ✅ Good - Generic array notation
|
|
198
|
+
/**
|
|
199
|
+
* @param array<int, string> $items Array of strings indexed by integers
|
|
200
|
+
* @return array<string, mixed> Associative array with string keys
|
|
201
|
+
*/
|
|
202
|
+
public function processItems(array $items): array
|
|
203
|
+
{
|
|
204
|
+
// ...
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// ✅ Good - Array of objects
|
|
208
|
+
/**
|
|
209
|
+
* @param User[] $users Array of User objects
|
|
210
|
+
* @return int[] Array of user IDs
|
|
211
|
+
*/
|
|
212
|
+
public function extractUserIds(array $users): array
|
|
213
|
+
{
|
|
214
|
+
return array_map(fn($user) => $user->id, $users);
|
|
215
|
+
}
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
### Nullable and Union Types
|
|
219
|
+
|
|
220
|
+
**Rules:**
|
|
221
|
+
- Document nullable types clearly
|
|
222
|
+
- Use union type notation for multiple possible types
|
|
223
|
+
|
|
224
|
+
**Examples:**
|
|
225
|
+
```php
|
|
226
|
+
// ✅ Good - Nullable type
|
|
227
|
+
/**
|
|
228
|
+
* @param int|null $userId The user ID, or null for guest users
|
|
229
|
+
* @return User|null The user object, or null if not found
|
|
230
|
+
*/
|
|
231
|
+
public function findUser(?int $userId): ?User
|
|
232
|
+
{
|
|
233
|
+
// ...
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
// ✅ Good - Union types
|
|
237
|
+
/**
|
|
238
|
+
* @param int|string $identifier User ID or email address
|
|
239
|
+
* @return User|false The user object, or false if not found
|
|
240
|
+
*/
|
|
241
|
+
public function findByIdentifier(int|string $identifier): User|false
|
|
242
|
+
{
|
|
243
|
+
// ...
|
|
244
|
+
}
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
## Inline Comments
|
|
250
|
+
|
|
251
|
+
### When to Use Inline Comments
|
|
252
|
+
|
|
253
|
+
**Rules:**
|
|
254
|
+
- Explain WHY, not WHAT
|
|
255
|
+
- Comment complex algorithms or business logic
|
|
256
|
+
- Avoid obvious comments
|
|
257
|
+
- Keep comments up-to-date with code
|
|
258
|
+
|
|
259
|
+
**Examples:**
|
|
260
|
+
```php
|
|
261
|
+
// ✅ Good - Explains WHY
|
|
262
|
+
// We need to clear the cache here because the user's permissions
|
|
263
|
+
// may have changed, affecting their access to cached resources
|
|
264
|
+
Cache::flush();
|
|
265
|
+
|
|
266
|
+
// ✅ Good - Explains complex logic
|
|
267
|
+
// Calculate discount using tiered pricing:
|
|
268
|
+
// 0-10 items: no discount
|
|
269
|
+
// 11-50 items: 10% discount
|
|
270
|
+
// 51+ items: 20% discount
|
|
271
|
+
$discount = match (true) {
|
|
272
|
+
$quantity <= 10 => 0,
|
|
273
|
+
$quantity <= 50 => 0.10,
|
|
274
|
+
default => 0.20,
|
|
275
|
+
};
|
|
276
|
+
|
|
277
|
+
// ❌ Bad - Obvious comment
|
|
278
|
+
// Increment counter
|
|
279
|
+
$counter++;
|
|
280
|
+
|
|
281
|
+
// ❌ Bad - Outdated comment
|
|
282
|
+
// Set status to pending
|
|
283
|
+
$order->status = 'completed'; // Comment doesn't match code!
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
### TODO Comments
|
|
287
|
+
|
|
288
|
+
**Rules:**
|
|
289
|
+
- Use TODO comments for future improvements
|
|
290
|
+
- Include ticket/issue number when available
|
|
291
|
+
- Include date and author
|
|
292
|
+
|
|
293
|
+
**Examples:**
|
|
294
|
+
```php
|
|
295
|
+
// ✅ Good - TODO with context
|
|
296
|
+
// TODO(john, 2024-01-15): Refactor to use new payment gateway API
|
|
297
|
+
// See ticket #1234
|
|
298
|
+
public function processPayment(Order $order): bool
|
|
299
|
+
{
|
|
300
|
+
// Legacy implementation
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
// ❌ Bad - Vague TODO
|
|
304
|
+
// TODO: fix this
|
|
305
|
+
public function processPayment(Order $order): bool
|
|
306
|
+
{
|
|
307
|
+
// ...
|
|
308
|
+
}
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
---
|
|
312
|
+
|
|
313
|
+
## README and Documentation Files
|
|
314
|
+
|
|
315
|
+
### README.md Structure
|
|
316
|
+
|
|
317
|
+
**Sections:**
|
|
318
|
+
1. Project title and description
|
|
319
|
+
2. Installation instructions
|
|
320
|
+
3. Configuration
|
|
321
|
+
4. Usage examples
|
|
322
|
+
5. API documentation (if applicable)
|
|
323
|
+
6. Contributing guidelines
|
|
324
|
+
7. License
|
|
325
|
+
|
|
326
|
+
**Example:**
|
|
327
|
+
```markdown
|
|
328
|
+
# User Management Service
|
|
329
|
+
|
|
330
|
+
A comprehensive user management service for handling authentication,
|
|
331
|
+
authorization, and user profile management.
|
|
332
|
+
|
|
333
|
+
## Installation
|
|
334
|
+
|
|
335
|
+
```bash
|
|
336
|
+
composer require myapp/user-service
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
## Configuration
|
|
340
|
+
|
|
341
|
+
```php
|
|
342
|
+
// config/user-service.php
|
|
343
|
+
return [
|
|
344
|
+
'session_timeout' => 3600,
|
|
345
|
+
'password_min_length' => 8,
|
|
346
|
+
];
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
## Usage
|
|
350
|
+
|
|
351
|
+
```php
|
|
352
|
+
use App\Services\UserService;
|
|
353
|
+
|
|
354
|
+
$service = new UserService();
|
|
355
|
+
$user = $service->createUser([
|
|
356
|
+
'name' => 'John Doe',
|
|
357
|
+
'email' => 'john@example.com',
|
|
358
|
+
]);
|
|
359
|
+
```
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## API Documentation
|
|
365
|
+
|
|
366
|
+
### Generate API Documentation
|
|
367
|
+
|
|
368
|
+
**Tools:**
|
|
369
|
+
- phpDocumentor
|
|
370
|
+
- ApiGen
|
|
371
|
+
- Sami
|
|
372
|
+
|
|
373
|
+
**Example:**
|
|
374
|
+
```bash
|
|
375
|
+
# Generate API documentation
|
|
376
|
+
phpdoc -d src/ -t docs/api/
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
---
|
|
380
|
+
|
|
381
|
+
## Best Practices
|
|
382
|
+
|
|
383
|
+
### Keep Documentation Current
|
|
384
|
+
|
|
385
|
+
**Rules:**
|
|
386
|
+
- Update documentation when code changes
|
|
387
|
+
- Review documentation during code reviews
|
|
388
|
+
- Remove outdated comments
|
|
389
|
+
|
|
390
|
+
### Be Concise
|
|
391
|
+
|
|
392
|
+
**Rules:**
|
|
393
|
+
- Use clear, concise language
|
|
394
|
+
- Avoid redundant information
|
|
395
|
+
- Focus on important details
|
|
396
|
+
|
|
397
|
+
### Use Examples
|
|
398
|
+
|
|
399
|
+
**Rules:**
|
|
400
|
+
- Provide code examples for complex functionality
|
|
401
|
+
- Show common use cases
|
|
402
|
+
- Include expected output when relevant
|
|
403
|
+
|
|
404
|
+
**Examples:**
|
|
405
|
+
```php
|
|
406
|
+
/**
|
|
407
|
+
* Formats a date according to the specified format.
|
|
408
|
+
*
|
|
409
|
+
* Example:
|
|
410
|
+
* ```php
|
|
411
|
+
* $formatter = new DateFormatter();
|
|
412
|
+
* echo $formatter->format(new DateTime(), 'Y-m-d');
|
|
413
|
+
* // Output: 2024-01-15
|
|
414
|
+
* ```
|
|
415
|
+
*
|
|
416
|
+
* @param DateTime $date The date to format
|
|
417
|
+
* @param string $format The desired format (PHP date format)
|
|
418
|
+
* @return string The formatted date string
|
|
419
|
+
*/
|
|
420
|
+
public function format(DateTime $date, string $format): string
|
|
421
|
+
{
|
|
422
|
+
return $date->format($format);
|
|
423
|
+
}
|
|
424
|
+
```
|
|
425
|
+
|