You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"text": "Generate commit messages following the Conventional Commits specification with MANDATORY scope for monorepo. Use this structure:\n\n<type>(<scope>): <description>\n\nRules:\n1. **SCOPE IS MANDATORY** - Must be one of: frontend, backend, satellite, shared, all, ci, deps\n2. **Type must be one of**: feat, fix, docs, style, refactor, perf, test, build, ci, chore\n3. **Description**: Imperative mood, no period at end, max 72 characters\n4. **Examples**:\n - feat(frontend): add dark mode toggle\n - fix(backend): resolve database connection issue\n - feat(satellite): implement MCP server process management\n - chore(deps): update dependencies\n - docs(all): update README installation guide\n - refactor(shared): extract common utilities\n\nAlways include the scope to ensure proper changelog filtering per service. Use 'all' scope only for changes affecting multiple services or project-wide changes."
4
+
"text": "Generate commit messages following the Conventional Commits specification with MANDATORY scope for monorepo. Use this structure:\n\n<type>(<scope>): <description>\n\nRules:\n1. **SCOPE IS MANDATORY** - Determine scope from file path:\n - Files in services/frontend/ → scope: frontend\n - Files in services/backend/ → scope: backend\n - Files in services/satellite/ → scope: satellite\n - Files in services/shared/ → scope: shared\n - Files in .github/ → scope: ci\n - package.json, package-lock.json → scope: deps\n - Multiple services or root files → scope: all\n\n2. **Type must be one of**: feat, fix, docs, style, refactor, perf, test, build, ci, chore\n\n3. **Description**: Imperative mood, no period at end, max 72 characters\n\n4. **Examples**:\n - services/frontend/src/App.vue → feat(frontend): add dark mode toggle\n - services/backend/src/routes/auth.ts → fix(backend): resolve database connection issue\n - services/satellite/src/services/backend-client.ts → refactor(satellite): enhance headers for Cloudflare compatibility\n - services/shared/utils/logger.ts → refactor(shared): extract common utilities\n - package.json → chore(deps): update dependencies\n - README.md → docs(all): update installation guide\n\nAlways include the scope to ensure proper changelog filtering per service."
0 commit comments