proagents 1.0.1 → 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/README.md CHANGED
@@ -48,7 +48,7 @@ proagents feature start "Add user authentication"
48
48
 
49
49
  **Using AI assistant (Claude, ChatGPT, etc.):**
50
50
  ```
51
- /feature-start "Add user authentication"
51
+ pa:feature "Add user authentication"
52
52
  ```
53
53
 
54
54
  ### 3. Follow the guided workflow
@@ -91,21 +91,21 @@ proagents commands # Show all commands
91
91
 
92
92
  ---
93
93
 
94
- ## Slash Commands
94
+ ## Commands
95
95
 
96
- Type `/` in your AI assistant to see available commands:
96
+ Type `pa:` in your AI assistant to use ProAgents commands:
97
97
 
98
98
  | Command | Description |
99
99
  |---------|-------------|
100
- | `/init` | Initialize ProAgents in your project |
101
- | `/feature-start` | Start a new feature |
102
- | `/fix` | Quick bug fix mode |
103
- | `/doc` | Generate documentation |
104
- | `/qa` | Quality assurance checks |
105
- | `/test` | Run test workflows |
106
- | `/deploy` | Deployment preparation |
107
- | `/status` | Check current status |
108
- | `/help` | Show all commands |
100
+ | `pa:init` | Initialize ProAgents in your project |
101
+ | `pa:feature` | Start a new feature |
102
+ | `pa:fix` | Quick bug fix mode |
103
+ | `pa:doc` | Generate documentation |
104
+ | `pa:qa` | Quality assurance checks |
105
+ | `pa:test` | Run test workflows |
106
+ | `pa:deploy` | Deployment preparation |
107
+ | `pa:status` | Check current status |
108
+ | `pa:help` | Show all commands |
109
109
 
110
110
  ---
111
111
 
@@ -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
- /feature-start "${name}"
80
+ pa:feature "${name}"
81
81
 
82
82
  Or paste this to your AI:
83
83
 
@@ -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
- /feature-start "Fix: ${description}"
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
- /fix "${description}"
42
+ pa:fix "${description}"
43
43
 
44
44
  Or paste this to your AI:
45
45
 
@@ -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
- // Slash Commands
43
- console.log(chalk.bold.white('Slash Commands (for AI Assistants)'));
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('/init') + ' Initialize ProAgents');
46
- console.log(chalk.cyan('/feature-start "name"') + ' Start a feature');
47
- console.log(chalk.cyan('/fix "description"') + ' Quick bug fix');
48
- console.log(chalk.cyan('/status') + ' Check status');
49
- console.log(chalk.cyan('/doc') + ' Generate documentation');
50
- console.log(chalk.cyan('/qa') + ' Quality assurance');
51
- console.log(chalk.cyan('/test') + ' Run tests');
52
- console.log(chalk.cyan('/deploy') + ' Deployment workflow');
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proagents",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "AI-agnostic development workflow framework that automates the full software development lifecycle",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",