mdan-method 2.7.1 → 2.7.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "mdan-method",
4
- "version": "2.7.1",
4
+ "version": "2.7.2",
5
5
  "description": "MDAN - AI-driven Development Platform with Specialized Agents",
6
6
  "keywords": [
7
7
  "agile",
@@ -343,6 +343,7 @@ class ManifestGenerator {
343
343
  title: titleMatch ? titleMatch[1] : '',
344
344
  icon: iconMatch ? iconMatch[1] : '',
345
345
  capabilities: capabilitiesMatch ? this.cleanForCSV(capabilitiesMatch[1]) : '',
346
+ description: capabilitiesMatch ? this.cleanForCSV(capabilitiesMatch[1]) : (roleMatch ? this.cleanForCSV(roleMatch[1]) : ''),
346
347
  role: roleMatch ? this.cleanForCSV(roleMatch[1]) : '',
347
348
  identity: identityMatch ? this.cleanForCSV(identityMatch[1]) : '',
348
349
  communicationStyle: styleMatch ? this.cleanForCSV(styleMatch[1]) : '',
@@ -78,7 +78,7 @@ platforms:
78
78
 
79
79
  cursor:
80
80
  name: "Cursor"
81
- preferred: true
81
+ preferred: false
82
82
  category: ide
83
83
  description: "AI-first code editor"
84
84
  installer:
@@ -87,7 +87,7 @@ platforms:
87
87
 
88
88
  gemini:
89
89
  name: "Gemini CLI"
90
- preferred: false
90
+ preferred: true
91
91
  category: cli
92
92
  description: "Google's CLI for Gemini"
93
93
  installer:
@@ -128,7 +128,7 @@ platforms:
128
128
 
129
129
  opencode:
130
130
  name: "OpenCode"
131
- preferred: false
131
+ preferred: true
132
132
  category: ide
133
133
  description: "OpenCode terminal coding assistant"
134
134
  installer:
@@ -145,7 +145,7 @@ platforms:
145
145
 
146
146
  qwen:
147
147
  name: "QwenCoder"
148
- preferred: false
148
+ preferred: true
149
149
  category: ide
150
150
  description: "Qwen AI coding assistant"
151
151
  installer:
@@ -547,14 +547,7 @@ class UI {
547
547
  };
548
548
  }
549
549
  } else if (!options.yes) {
550
- const wantsCustomContent = await prompts.confirm({
551
- message: 'Add custom modules, agents, or workflows from your computer?',
552
- default: false,
553
- });
554
-
555
- if (wantsCustomContent) {
556
- customContentConfig = await this.promptCustomContentSource();
557
- }
550
+ // Skip custom modules prompt - not needed for standard installations
558
551
  }
559
552
 
560
553
  // Add custom content modules if any were selected
@@ -655,7 +648,7 @@ class UI {
655
648
  const isConfigured = configuredIdes.includes(ide.value);
656
649
  const isPreferred = preferredIdes.some((p) => p.value === ide.value);
657
650
  let label = ide.name;
658
- if (isPreferred) label += ' ⭐';
651
+ // No star markers for preferred tools
659
652
  if (isConfigured) label += ' ✅';
660
653
  return { label, value: ide.value };
661
654
  });
@@ -700,7 +693,7 @@ class UI {
700
693
  const allToolOptions = allTools.map((ide) => {
701
694
  const isPreferred = preferredIdes.some((p) => p.value === ide.value);
702
695
  let label = ide.name;
703
- if (isPreferred) label += ' ⭐';
696
+ // No star markers for preferred tools
704
697
  return {
705
698
  label,
706
699
  value: ide.value,
@@ -1926,7 +1919,7 @@ class UI {
1926
1919
  const toolLines = selectedIdes.map((ideValue) => {
1927
1920
  const tool = allTools.find((t) => t.value === ideValue);
1928
1921
  const name = tool?.name || ideValue;
1929
- const marker = preferredValues.has(ideValue) ? ' \u2B50' : '';
1922
+ const marker = '';
1930
1923
  return ` \u2022 ${name}${marker}`;
1931
1924
  });
1932
1925
  await prompts.log.message('Selected tools:\n' + toolLines.join('\n'));