@projitive/mcp 2.1.4 → 2.1.5
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/output/package.json
CHANGED
|
@@ -64,10 +64,12 @@ export function getDefaultToolTemplateMarkdown(toolName) {
|
|
|
64
64
|
'- [ ] ui-style.md reviewed (designs/core/ui-style.md)',
|
|
65
65
|
'',
|
|
66
66
|
'## Commit Reminder',
|
|
67
|
-
'-
|
|
68
|
-
'-
|
|
69
|
-
'-
|
|
70
|
-
'-
|
|
67
|
+
'- When recording changes, include a concise, descriptive commit message and link any related task or roadmap IDs when relevant.',
|
|
68
|
+
'- Suggested formats (follow your project convention):',
|
|
69
|
+
'- - Conventional Commits: type(scope): short summary (e.g. feat(api): add user endpoint)',
|
|
70
|
+
'- - Simple imperative: Short imperative sentence (e.g. Add validation for X)',
|
|
71
|
+
'- Add references in the footer when appropriate, e.g. Refs: TASK-123, ROADMAP-456.',
|
|
72
|
+
'- If your project enforces a specific commit policy, follow that policy instead.',
|
|
71
73
|
].join('\n');
|
|
72
74
|
}
|
|
73
75
|
if (toolName === 'roadmapUpdate') {
|
|
@@ -79,10 +81,12 @@ export function getDefaultToolTemplateMarkdown(toolName) {
|
|
|
79
81
|
'- NEVER edit tasks.md/roadmap.md directly; they are generated views.',
|
|
80
82
|
'',
|
|
81
83
|
'## Commit Reminder',
|
|
82
|
-
'-
|
|
83
|
-
'-
|
|
84
|
-
'-
|
|
85
|
-
'-
|
|
84
|
+
'- When recording changes, include a concise, descriptive commit message and link any related task or roadmap IDs when relevant.',
|
|
85
|
+
'- Suggested formats (follow your project convention):',
|
|
86
|
+
'- - Conventional Commits: type(scope): short summary (e.g. feat(api): add user endpoint)',
|
|
87
|
+
'- - Simple imperative: Short imperative sentence (e.g. Add validation for X)',
|
|
88
|
+
'- Add references in the footer when appropriate, e.g. Refs: TASK-123, ROADMAP-456.',
|
|
89
|
+
'- If your project enforces a specific commit policy, follow that policy instead.',
|
|
86
90
|
].join('\n');
|
|
87
91
|
}
|
|
88
92
|
return base;
|