specsmd 0.0.0-dev.51 → 0.0.0-dev.52

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 CHANGED
@@ -14,7 +14,7 @@ const THEME_COLORS = {
14
14
  const FLOWS = {
15
15
  fire: {
16
16
  name: 'FIRE',
17
- description: 'Rapid execution - Solo devs or small teams, brownfield, 0-2 adaptive checkpoints',
17
+ description: 'Rapid execution - Solo devs or small teams, brownfield/monorepo, 0-2 adaptive checkpoints',
18
18
  path: 'fire'
19
19
  },
20
20
  aidlc: {
@@ -29,7 +29,13 @@ const FLOWS = {
29
29
  }
30
30
  };
31
31
 
32
+ const LINKS = {
33
+ website: 'https://specs.md',
34
+ flows: 'https://specs.md/flows'
35
+ };
36
+
32
37
  module.exports = {
33
38
  THEME_COLORS,
34
- FLOWS
39
+ FLOWS,
40
+ LINKS
35
41
  };
package/lib/installer.js CHANGED
@@ -4,7 +4,7 @@ const prompts = require('prompts');
4
4
  const yaml = require('js-yaml');
5
5
  const CLIUtils = require('./cli-utils');
6
6
  const InstallerFactory = require('./InstallerFactory');
7
- const { FLOWS } = require('./constants');
7
+ const { FLOWS, LINKS } = require('./constants');
8
8
  const analytics = require('./analytics');
9
9
 
10
10
  // Use theme from CLIUtils for consistent styling
@@ -125,6 +125,7 @@ async function install() {
125
125
  // Step 3: Select Flow
126
126
  console.log('');
127
127
  CLIUtils.displayStep(3, 4, 'Select SDLC flow');
128
+ console.log(theme.dim(` Learn more about flows: ${LINKS.flows}\n`));
128
129
  const flowChoices = Object.entries(FLOWS).map(([key, flow]) => ({
129
130
  title: `${flow.name} - ${flow.description}${flow.message || ''}`,
130
131
  value: key,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specsmd",
3
- "version": "0.0.0-dev.51",
3
+ "version": "0.0.0-dev.52",
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": {