Remove Mimir and Idunn references from installer/CLI
- ui.js: Remove Idunn from available agents list - ide-configs.js: Remove Mimir and Idunn, update Saga/Freya phase descriptions - _base-ide.js: Remove Idunn fallback metadata - cline.js: Remove idunn.md from cleanup agent list Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
fdf58851b4
commit
e10322932d
|
|
@ -153,8 +153,7 @@ class BaseIdeSetup {
|
||||||
return {
|
return {
|
||||||
name: this.formatTitle(agentName),
|
name: this.formatTitle(agentName),
|
||||||
description: agentName.includes('saga') ? 'Strategic Analyst' :
|
description: agentName.includes('saga') ? 'Strategic Analyst' :
|
||||||
agentName.includes('freya') ? 'UX Designer' :
|
agentName.includes('freya') ? 'Designer' : '',
|
||||||
agentName.includes('idunn') ? 'Product Manager' : '',
|
|
||||||
icon: '📋',
|
icon: '📋',
|
||||||
slug: agentName.split('-')[0],
|
slug: agentName.split('-')[0],
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ ${contentWithoutFrontmatter}`;
|
||||||
|
|
||||||
if (await this.exists(wdsPath)) {
|
if (await this.exists(wdsPath)) {
|
||||||
// Only remove WDS agent files, not entire .cline directory
|
// Only remove WDS agent files, not entire .cline directory
|
||||||
const agents = ['saga.md', 'freya.md', 'idunn.md'];
|
const agents = ['saga.md', 'freya.md'];
|
||||||
for (const agentFile of agents) {
|
for (const agentFile of agents) {
|
||||||
const filePath = path.join(wdsPath, agentFile);
|
const filePath = path.join(wdsPath, agentFile);
|
||||||
if (await this.exists(filePath)) {
|
if (await this.exists(filePath)) {
|
||||||
|
|
|
||||||
|
|
@ -51,10 +51,8 @@ WDS files are installed in the \`${wdsFolder}/\` directory.
|
||||||
|
|
||||||
To activate a WDS agent, load and follow the instructions in the agent file:
|
To activate a WDS agent, load and follow the instructions in the agent file:
|
||||||
|
|
||||||
- **Mimir** (Orchestrator & Guide): Read \`${wdsFolder}/agents/mimir-orchestrator.md\` - Start here if you're new to WDS
|
- **Saga** (Analyst): Read \`${wdsFolder}/agents/saga-analyst.md\` - Product Brief, Trigger Mapping & UX Scenarios (Phases 0-3)
|
||||||
- **Saga** (Analyst): Read \`${wdsFolder}/agents/saga-analyst.md\` - Product Brief & Trigger Mapping (Phases 1-2)
|
- **Freya** (Designer): Read \`${wdsFolder}/agents/freya-ux.md\` - UX Design, Asset Generation & Design System (Phases 4, 6-7)
|
||||||
- **Idunn** (Product Manager): Read \`${wdsFolder}/agents/idunn-pm.md\` - Platform Requirements & Design Deliveries (Phases 3, 6)
|
|
||||||
- **Freya** (UX Designer): Read \`${wdsFolder}/agents/freya-ux.md\` - UX Design, Design System & Testing (Phases 4-5, 7-8)
|
|
||||||
|
|
||||||
## How to Activate
|
## How to Activate
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -161,7 +161,7 @@ class UI {
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log(chalk.dim(' ─────────────────────────────────────────────────'));
|
console.log(chalk.dim(' ─────────────────────────────────────────────────'));
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log(chalk.dim(` Available agents: Saga (Analyst), Freya (Designer), Idunn (PM)`));
|
console.log(chalk.dim(` Available agents: Saga (Analyst), Freya (Designer)`));
|
||||||
console.log(chalk.dim(` Need development? Install BMM: npx bmad-builder install`));
|
console.log(chalk.dim(` Need development? Install BMM: npx bmad-builder install`));
|
||||||
console.log(chalk.dim(' Docs: https://github.com/whiteport-collective/whiteport-design-studio'));
|
console.log(chalk.dim(' Docs: https://github.com/whiteport-collective/whiteport-design-studio'));
|
||||||
console.log('');
|
console.log('');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue