specsmd 0.1.15 → 0.1.17
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/constants.js +4 -1
- package/lib/installer.js +15 -0
- package/package.json +1 -1
package/lib/constants.js
CHANGED
|
@@ -31,7 +31,10 @@ const FLOWS = {
|
|
|
31
31
|
|
|
32
32
|
const LINKS = {
|
|
33
33
|
website: 'https://specs.md',
|
|
34
|
-
flows: 'https://specs.md/flows'
|
|
34
|
+
flows: 'https://specs.md/architecture/flows',
|
|
35
|
+
ideExtension: 'https://specs.md/getting-started/ide-extension',
|
|
36
|
+
vscodeMarketplace: 'https://marketplace.visualstudio.com/items?itemName=fabriqaai.specsmd',
|
|
37
|
+
openVsx: 'https://open-vsx.org/extension/fabriqaai/specsmd'
|
|
35
38
|
};
|
|
36
39
|
|
|
37
40
|
module.exports = {
|
package/lib/installer.js
CHANGED
|
@@ -172,6 +172,21 @@ async function install() {
|
|
|
172
172
|
`Open ${selectedToolNames.join(' or ')} and run /specsmd-master-agent`
|
|
173
173
|
];
|
|
174
174
|
CLIUtils.displayNextSteps(nextSteps);
|
|
175
|
+
|
|
176
|
+
// Display IDE extension info
|
|
177
|
+
const extensionInfo = [
|
|
178
|
+
'Enhance your experience with the specsmd IDE extension!',
|
|
179
|
+
'',
|
|
180
|
+
`${theme.info('Learn more:')} ${LINKS.ideExtension}`,
|
|
181
|
+
`${theme.info('VS Code:')} ${LINKS.vscodeMarketplace}`,
|
|
182
|
+
`${theme.info('Cursor/Antigravity/Windsurf:')} ${LINKS.openVsx}`
|
|
183
|
+
].join('\n');
|
|
184
|
+
CLIUtils.displayBox(extensionInfo, {
|
|
185
|
+
title: 'IDE Extension',
|
|
186
|
+
borderColor: 'info',
|
|
187
|
+
padding: 1
|
|
188
|
+
});
|
|
189
|
+
console.log('');
|
|
175
190
|
} catch (error) {
|
|
176
191
|
// Track installation failure
|
|
177
192
|
const errorCategory = categorizeError(error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
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": {
|