proagents 1.0.2 → 1.0.3
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/commands/feature.js +1 -1
- package/lib/commands/fix.js +2 -2
- package/lib/commands/help.js +10 -10
- package/package.json +1 -1
package/lib/commands/feature.js
CHANGED
|
@@ -77,7 +77,7 @@ function startFeature(name, activeFeaturesDir) {
|
|
|
77
77
|
console.log('\n' + chalk.bold('Now use your AI assistant with this prompt:'));
|
|
78
78
|
console.log(chalk.cyan('─'.repeat(50)));
|
|
79
79
|
console.log(chalk.white(`
|
|
80
|
-
|
|
80
|
+
pa:feature "${name}"
|
|
81
81
|
|
|
82
82
|
Or paste this to your AI:
|
|
83
83
|
|
package/lib/commands/fix.js
CHANGED
|
@@ -24,7 +24,7 @@ export async function fixCommand(description, options = {}) {
|
|
|
24
24
|
console.log(chalk.white('Use this prompt with your AI:'));
|
|
25
25
|
console.log(chalk.cyan('─'.repeat(50)));
|
|
26
26
|
console.log(chalk.white(`
|
|
27
|
-
|
|
27
|
+
pa:feature "Fix: ${description}"
|
|
28
28
|
|
|
29
29
|
This bug fix has been upgraded to full workflow mode.
|
|
30
30
|
Please follow all phases in ./proagents/WORKFLOW.md
|
|
@@ -39,7 +39,7 @@ Please follow all phases in ./proagents/WORKFLOW.md
|
|
|
39
39
|
console.log(chalk.bold('Use this prompt with your AI assistant:'));
|
|
40
40
|
console.log(chalk.cyan('─'.repeat(50)));
|
|
41
41
|
console.log(chalk.white(`
|
|
42
|
-
|
|
42
|
+
pa:fix "${description}"
|
|
43
43
|
|
|
44
44
|
Or paste this to your AI:
|
|
45
45
|
|
package/lib/commands/help.js
CHANGED
|
@@ -39,17 +39,17 @@ export async function helpCommand() {
|
|
|
39
39
|
console.log(chalk.cyan('proagents --version') + ' Show version');
|
|
40
40
|
console.log('');
|
|
41
41
|
|
|
42
|
-
//
|
|
43
|
-
console.log(chalk.bold.white('
|
|
42
|
+
// Commands for AI Assistants
|
|
43
|
+
console.log(chalk.bold.white('Commands (for AI Assistants)'));
|
|
44
44
|
console.log(chalk.gray('─'.repeat(40)));
|
|
45
|
-
console.log(chalk.cyan('
|
|
46
|
-
console.log(chalk.cyan('
|
|
47
|
-
console.log(chalk.cyan('
|
|
48
|
-
console.log(chalk.cyan('
|
|
49
|
-
console.log(chalk.cyan('
|
|
50
|
-
console.log(chalk.cyan('
|
|
51
|
-
console.log(chalk.cyan('
|
|
52
|
-
console.log(chalk.cyan('
|
|
45
|
+
console.log(chalk.cyan('pa:init') + ' Initialize ProAgents');
|
|
46
|
+
console.log(chalk.cyan('pa:feature "name"') + ' Start a feature');
|
|
47
|
+
console.log(chalk.cyan('pa:fix "description"') + ' Quick bug fix');
|
|
48
|
+
console.log(chalk.cyan('pa:status') + ' Check status');
|
|
49
|
+
console.log(chalk.cyan('pa:doc') + ' Generate documentation');
|
|
50
|
+
console.log(chalk.cyan('pa:qa') + ' Quality assurance');
|
|
51
|
+
console.log(chalk.cyan('pa:test') + ' Run tests');
|
|
52
|
+
console.log(chalk.cyan('pa:deploy') + ' Deployment workflow');
|
|
53
53
|
console.log('');
|
|
54
54
|
|
|
55
55
|
// Examples
|