aided-dev 1.0.3 → 1.0.4
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/dist/bmad/loader.d.ts +1 -0
- package/dist/bmad/loader.js +30 -0
- package/dist/cli.js +15 -0
- package/package.json +1 -1
package/dist/bmad/loader.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export declare class BMADLoader {
|
|
|
59
59
|
getPath(): string | undefined;
|
|
60
60
|
getFormatType(): 'npm' | 'local' | 'unknown';
|
|
61
61
|
listAgents(): Promise<string[]>;
|
|
62
|
+
listProjectAgents(): Promise<string[]>;
|
|
62
63
|
loadAgent(name: string): Promise<AgentConfig | undefined>;
|
|
63
64
|
loadAgents(names: string[]): Promise<Map<string, AgentConfig>>;
|
|
64
65
|
getLoadedAgents(): Map<string, AgentConfig>;
|
package/dist/bmad/loader.js
CHANGED
|
@@ -149,6 +149,11 @@ export class BMADLoader {
|
|
|
149
149
|
this.agentsPaths = [localAgentsPath];
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
|
+
const projectAgentsDir = path.join(process.cwd(), 'agents');
|
|
153
|
+
if (fs.existsSync(projectAgentsDir)) {
|
|
154
|
+
this.agentsPaths.push(projectAgentsDir);
|
|
155
|
+
}
|
|
156
|
+
this.agentsPaths.push(process.cwd());
|
|
152
157
|
}
|
|
153
158
|
isAvailable() {
|
|
154
159
|
return !!this.bmadPath && this.agentsPaths.length > 0;
|
|
@@ -176,6 +181,31 @@ export class BMADLoader {
|
|
|
176
181
|
}
|
|
177
182
|
return [...new Set(agents)];
|
|
178
183
|
}
|
|
184
|
+
async listProjectAgents() {
|
|
185
|
+
const agents = [];
|
|
186
|
+
const cwd = process.cwd();
|
|
187
|
+
const agentsDir = path.join(cwd, 'agents');
|
|
188
|
+
if (fs.existsSync(agentsDir)) {
|
|
189
|
+
const files = await fs.readdir(agentsDir);
|
|
190
|
+
for (const file of files) {
|
|
191
|
+
if (file.endsWith('.md') && !file.startsWith('_')) {
|
|
192
|
+
agents.push(file.replace('.md', ''));
|
|
193
|
+
}
|
|
194
|
+
else if (file.endsWith('.agent.yaml')) {
|
|
195
|
+
agents.push(file.replace('.agent.yaml', ''));
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
if (fs.existsSync(cwd)) {
|
|
200
|
+
const files = await fs.readdir(cwd);
|
|
201
|
+
for (const file of files) {
|
|
202
|
+
if (file.endsWith('.agent.yaml')) {
|
|
203
|
+
agents.push(file.replace('.agent.yaml', ''));
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
return [...new Set(agents)];
|
|
208
|
+
}
|
|
179
209
|
async loadAgent(name) {
|
|
180
210
|
if (this.agentCache.has(name)) {
|
|
181
211
|
return this.agentCache.get(name);
|
package/dist/cli.js
CHANGED
|
@@ -161,6 +161,21 @@ program
|
|
|
161
161
|
if (allAgents.length > agentNames.length) {
|
|
162
162
|
console.log(chalk.dim(`Other available agents: ${allAgents.filter(a => !agentNames.includes(a)).join(', ')}`));
|
|
163
163
|
}
|
|
164
|
+
const projectAgents = await loader.listProjectAgents();
|
|
165
|
+
if (projectAgents.length > 0) {
|
|
166
|
+
console.log('');
|
|
167
|
+
console.log(chalk.bold('Custom Project Agents'));
|
|
168
|
+
console.log(chalk.dim(`Location: ${process.cwd()}`));
|
|
169
|
+
console.log('');
|
|
170
|
+
for (const agentName of projectAgents) {
|
|
171
|
+
const agent = await loader.loadAgent(agentName);
|
|
172
|
+
if (agent) {
|
|
173
|
+
console.log(`${agent.icon} ${chalk.green(agent.name)} - ${agent.title}`);
|
|
174
|
+
console.log(chalk.dim(` Role: ${agent.persona.role}`));
|
|
175
|
+
console.log('');
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
164
179
|
});
|
|
165
180
|
program
|
|
166
181
|
.command('create-agent')
|