specsmd 0.1.17 → 0.1.18
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/lib/installer.js +7 -7
- package/package.json +1 -1
package/lib/installer.js
CHANGED
|
@@ -173,17 +173,17 @@ async function install() {
|
|
|
173
173
|
];
|
|
174
174
|
CLIUtils.displayNextSteps(nextSteps);
|
|
175
175
|
|
|
176
|
-
// Display IDE extension info
|
|
176
|
+
// Display IDE extension info with brand colors
|
|
177
177
|
const extensionInfo = [
|
|
178
|
-
'Enhance your experience with the specsmd IDE extension!',
|
|
178
|
+
CLIUtils.logoGradient('Enhance your experience with the specsmd IDE extension!'),
|
|
179
179
|
'',
|
|
180
|
-
`${theme.
|
|
181
|
-
`${theme.
|
|
182
|
-
`${theme.
|
|
180
|
+
`${theme.primary('Learn more:')} ${LINKS.ideExtension}`,
|
|
181
|
+
`${theme.primary('VS Code:')} ${LINKS.vscodeMarketplace}`,
|
|
182
|
+
`${theme.primary('Cursor/Antigravity/Windsurf:')} ${LINKS.openVsx}`
|
|
183
183
|
].join('\n');
|
|
184
184
|
CLIUtils.displayBox(extensionInfo, {
|
|
185
|
-
title: 'IDE Extension',
|
|
186
|
-
borderColor: '
|
|
185
|
+
title: CLIUtils.logoGradient(' ★ IDE Extension ★ '),
|
|
186
|
+
borderColor: 'primary',
|
|
187
187
|
padding: 1
|
|
188
188
|
});
|
|
189
189
|
console.log('');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "Multi-agent orchestration system for AI-native software development. Delivers AI-DLC, Agile, and custom SDLC flows as markdown-based agent systems.",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|