aided-dev 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/dist/cli.js +15 -15
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -7,7 +7,7 @@ import { discoverProjectDocuments, detectStack, formatStack, } from './discovery
7
7
  import { AgentCreator, quickCreateAgent } from './agent-creator/index.js';
8
8
  const program = new Command();
9
9
  program
10
- .name('aidev')
10
+ .name('aided')
11
11
  .description('AI Development Team Orchestrator - BMAD-METHOD integration')
12
12
  .version('1.0.0');
13
13
  program
@@ -58,7 +58,7 @@ program
58
58
  });
59
59
  program
60
60
  .command('config')
61
- .description('Configure aidev settings')
61
+ .description('Configure aided settings')
62
62
  .option('--api-key <key>', 'Set Anthropic API key')
63
63
  .option('--show', 'Show current configuration')
64
64
  .option('--clear', 'Clear all configuration')
@@ -82,7 +82,7 @@ program
82
82
  return;
83
83
  }
84
84
  console.log('');
85
- p.intro(chalk.bgCyan.black(' aidev Configuration '));
85
+ p.intro(chalk.bgCyan.black(' aided Configuration '));
86
86
  const apiKey = await p.text({
87
87
  message: 'Anthropic API key:',
88
88
  placeholder: hasApiKey() ? '(already configured)' : 'sk-ant-...',
@@ -218,27 +218,27 @@ program
218
218
  .description('Show usage examples')
219
219
  .action(() => {
220
220
  console.log('');
221
- console.log(chalk.bold('aidev - AI Development Team Orchestrator'));
221
+ console.log(chalk.bold('aided - AI Development Team Orchestrator'));
222
222
  console.log('');
223
223
  console.log(chalk.cyan('Quick Start:'));
224
- console.log(' aidev config --api-key sk-ant-xxx Set your API key');
225
- console.log(' aidev "Add user authentication" Run a task');
224
+ console.log(' aided config --api-key sk-ant-xxx Set your API key');
225
+ console.log(' aided "Add user authentication" Run a task');
226
226
  console.log('');
227
227
  console.log(chalk.cyan('Common Tasks:'));
228
228
  console.log(chalk.dim(' # New feature'));
229
- console.log(' aidev "Add password reset with email verification"');
229
+ console.log(' aided "Add password reset with email verification"');
230
230
  console.log('');
231
231
  console.log(chalk.dim(' # Bug fix'));
232
- console.log(' aidev "Fix: login fails after password change"');
232
+ console.log(' aided "Fix: login fails after password change"');
233
233
  console.log('');
234
234
  console.log(chalk.dim(' # Refactoring'));
235
- console.log(' aidev "Refactor auth module to use dependency injection"');
235
+ console.log(' aided "Refactor auth module to use dependency injection"');
236
236
  console.log('');
237
237
  console.log(chalk.dim(' # Testing'));
238
- console.log(' aidev "Add unit tests for the user service"');
238
+ console.log(' aided "Add unit tests for the user service"');
239
239
  console.log('');
240
240
  console.log(chalk.dim(' # Documentation'));
241
- console.log(' aidev "Document all REST API endpoints"');
241
+ console.log(' aided "Document all REST API endpoints"');
242
242
  console.log('');
243
243
  console.log(chalk.cyan('Options:'));
244
244
  console.log(' -v, --verbose Show detailed agent output');
@@ -246,10 +246,10 @@ program
246
246
  console.log(' -m, --model <model> Use different Claude model');
247
247
  console.log('');
248
248
  console.log(chalk.cyan('Other Commands:'));
249
- console.log(' aidev analyze Analyze project context');
250
- console.log(' aidev agents List available AI agents');
251
- console.log(' aidev create-agent Create a custom agent');
252
- console.log(' aidev config --show View configuration');
249
+ console.log(' aided analyze Analyze project context');
250
+ console.log(' aided agents List available AI agents');
251
+ console.log(' aided create-agent Create a custom agent');
252
+ console.log(' aided config --show View configuration');
253
253
  console.log('');
254
254
  console.log(chalk.dim('Full documentation: https://github.com/shikharsworks/aided#readme'));
255
255
  console.log('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aided-dev",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI Development Team Orchestrator - BMAD-METHOD integration for automated code generation",
5
5
  "keywords": [
6
6
  "ai",
@@ -26,7 +26,7 @@
26
26
  "main": "dist/index.js",
27
27
  "types": "dist/index.d.ts",
28
28
  "bin": {
29
- "aidev": "bin/aidev.js"
29
+ "aided": "bin/aidev.js"
30
30
  },
31
31
  "files": [
32
32
  "dist",