specsmd 0.1.17 → 0.1.19
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 +12 -13
- package/package.json +1 -1
package/lib/installer.js
CHANGED
|
@@ -173,19 +173,18 @@ async function install() {
|
|
|
173
173
|
];
|
|
174
174
|
CLIUtils.displayNextSteps(nextSteps);
|
|
175
175
|
|
|
176
|
-
// Display IDE extension info
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
});
|
|
176
|
+
// Display IDE extension info with brand colors
|
|
177
|
+
console.log('\n' + theme.primary('─'.repeat(72)));
|
|
178
|
+
console.log(CLIUtils.logoGradient(' ★ IDE Extension'));
|
|
179
|
+
console.log(theme.primary('─'.repeat(72)));
|
|
180
|
+
console.log('');
|
|
181
|
+
console.log(' ' + CLIUtils.logoGradient('Enhance your experience with the specsmd IDE extension!'));
|
|
182
|
+
console.log('');
|
|
183
|
+
console.log(` ${theme.primary('Learn more:')} ${LINKS.ideExtension}`);
|
|
184
|
+
console.log(` ${theme.primary('VS Code:')} ${LINKS.vscodeMarketplace}`);
|
|
185
|
+
console.log(` ${theme.primary('Cursor/Antigravity/Windsurf:')} ${LINKS.openVsx}`);
|
|
186
|
+
console.log('');
|
|
187
|
+
console.log(theme.primary('─'.repeat(72)) + '\n');
|
|
189
188
|
console.log('');
|
|
190
189
|
} catch (error) {
|
|
191
190
|
// Track installation failure
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
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": {
|