my-ai-agent 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/README.md CHANGED
@@ -1,78 +1,78 @@
1
- # My AI Agent
2
-
3
- A CLI-based app for non-interactive (direct) inference from popular AI CLI tools such as Claude Code, Gemini CLI, Codex, OpenCode, etc. Simply run `agent "your prompt here"` and the app will figure out the best AI CLI agent tool automatically to return answers to your queries.
4
-
5
- ## Features
6
-
7
- - **AI Tool Management**: Add, edit, delete, view, list, and search tools
8
- - **Benchmarking**: Test all tools to find the fastest one with performance tracking
9
- - **Unified Interface**: Run any tool with a simple command
10
- - **Smart Selection**: Automatically use the best-performing tool with intelligent fallback
11
- - **Configuration Management**: Export/import tool configurations
12
- - **Tool State Control**: Enable/disable tools for maintenance
13
- - **Markdown Rendering**: Format AI responses with proper terminal display
14
- - **Interactive & Non-Interactive**: Supports both modes for automation
15
-
16
- ## Commands
17
-
18
- | Command | Description | Usage |
19
- |---------|-------------|-------|
20
- | `add` | Add a new AI tool | `agent add` (interactive) or `agent add --name tool --command "cmd" --description "desc"` |
21
- | `edit` | Edit an existing tool | `agent edit <tool-name>` or `agent edit --tool-name <name> --command "new cmd"` |
22
- | `delete` | Remove tools with confirmation | `agent delete <tool-name>` or `agent delete <tool-name> --yes` |
23
- | `view` | Show detailed tool information | `agent view <tool-name>` |
24
- | `list` | Display all tools with status | `agent list` |
25
- | `find` | Search tools by name/description | `agent find <query>` |
26
- | `check` | Benchmark all tools | `agent check` or `agent check --debug --include-disabled` |
27
- | `run` | Execute a specific tool | `agent run <tool-name> "prompt"` or `agent run <tool-name> "prompt" --debug` |
28
- | `export` | Export configuration to JSON | `agent export` or `agent export /path/to/config.json` |
29
- | `import` | Import configuration from JSON | `agent import /path/to/config.json` |
30
- | `enable` | Enable a disabled tool | `agent enable <tool-name>` |
31
- | `disable` | Disable a tool | `agent disable <tool-name>` |
32
- | `onboard` | Display comprehensive guide | `agent onboard` |
33
- | `[query]` | Run query with best tool | `agent "your prompt"` or `agent "prompt" --no-autocheck` |
34
-
35
- ## Installation
36
-
37
- ```bash
38
- npm install -g my-ai-agent
39
- ```
1
+ # My AI Agent
2
+
3
+ A CLI-based app for non-interactive (direct) inference from popular AI CLI tools such as Claude Code, Gemini CLI, Codex, OpenCode, etc. Simply run `agent "your prompt here"` and the app will figure out the best AI CLI agent tool automatically to return answers to your queries.
4
+
5
+ ## Features
6
+
7
+ - **AI Tool Management**: Add, edit, delete, view, list, and search tools
8
+ - **Benchmarking**: Test all tools to find the fastest one with performance tracking
9
+ - **Unified Interface**: Run any tool with a simple command
10
+ - **Smart Selection**: Automatically use the best-performing tool with intelligent fallback
11
+ - **Configuration Management**: Export/import tool configurations
12
+ - **Tool State Control**: Enable/disable tools for maintenance
13
+ - **Markdown Rendering**: Format AI responses with proper terminal display
14
+ - **Interactive & Non-Interactive**: Supports both modes for automation
15
+
16
+ ## Commands
17
+
18
+ | Command | Description | Usage |
19
+ |---------|-------------|-------|
20
+ | `add` | Add a new AI tool | `agent add` (interactive) or `agent add --name tool --command "cmd" --description "desc"` |
21
+ | `edit` | Edit an existing tool | `agent edit <tool-name>` or `agent edit --tool-name <name> --command "new cmd"` |
22
+ | `delete` | Remove tools with confirmation | `agent delete <tool-name>` or `agent delete <tool-name> --yes` |
23
+ | `view` | Show detailed tool information | `agent view <tool-name>` |
24
+ | `list` | Display all tools with status | `agent list` |
25
+ | `find` | Search tools by name/description | `agent find <query>` |
26
+ | `check` | Benchmark all tools | `agent check` or `agent check --debug --include-disabled` |
27
+ | `run` | Execute a specific tool | `agent run <tool-name> "prompt"` or `agent run <tool-name> "prompt" --debug` |
28
+ | `export` | Export configuration to JSON | `agent export` or `agent export /path/to/config.json` |
29
+ | `import` | Import configuration from JSON | `agent import /path/to/config.json` |
30
+ | `enable` | Enable a disabled tool | `agent enable <tool-name>` |
31
+ | `disable` | Disable a tool | `agent disable <tool-name>` |
32
+ | `onboard` | Display comprehensive guide | `agent onboard` |
33
+ | `[query]` | Run query with best tool | `agent "your prompt"` or `agent "prompt" --no-autocheck` |
34
+
35
+ ## Installation
36
+
37
+ ```bash
38
+ npm install -g my-ai-agent
39
+ ```
40
40
 
41
41
  Or use locally:
42
42
 
43
43
  ```bash
44
44
  npm install
45
45
  npm link
46
- ```
47
-
48
- ## Add CLI Tools
49
-
50
- Add one or more of these or your own custom tools with `add` command:
51
-
52
- ### OpenAI Codex
53
-
54
- - Name: `codex`
55
- - Command: `codex --yolo --model gpt-5.2 exec`
56
- - Description: `OpenAI Codex`
57
-
58
- ### Claude Code
59
-
60
- - Name: `claude`
61
- - Command: `claude --dangerously-skip-permissions --no-chrome --model claude-sonnet-4-5 --output-format text -p`
62
- - Description: `Claude Code`
63
-
64
- ### OpenCode
65
-
66
- - Name: `opencode`
67
- - Command: `opencode --model opencode/grok-code --format default run`
68
- - Description: `OpenCode`
69
-
70
- ### Gemini CLI
71
-
72
- - Name: `gemini`
73
- - Command: `gemini -e none --model gemini-2.5-flash --yolo --output-format text`
74
- - Description: `Gemini CLI`
75
-
46
+ ```
47
+
48
+ ## Add CLI Tools
49
+
50
+ Add one or more of these or your own custom tools with `add` command:
51
+
52
+ ### OpenAI Codex
53
+
54
+ - Name: `codex`
55
+ - Command: `codex --yolo --model gpt-5.2 exec`
56
+ - Description: `OpenAI Codex`
57
+
58
+ ### Claude Code
59
+
60
+ - Name: `claude`
61
+ - Command: `claude --dangerously-skip-permissions --no-chrome --model claude-sonnet-4-5 --output-format text -p`
62
+ - Description: `Claude Code`
63
+
64
+ ### OpenCode
65
+
66
+ - Name: `opencode`
67
+ - Command: `opencode --model opencode/grok-code --format default run`
68
+ - Description: `OpenCode`
69
+
70
+ ### Gemini CLI
71
+
72
+ - Name: `gemini`
73
+ - Command: `gemini -e none --model gemini-2.5-flash --yolo --output-format text`
74
+ - Description: `Gemini CLI`
75
+
76
76
  Tip: Replace `gemini` with `qwen` if you want that too.
77
77
 
78
78
  ## Usage
@@ -108,55 +108,55 @@ Fuzzy search across tool names and descriptions:
108
108
  agent find openai
109
109
  ```
110
110
 
111
- ### Edit a Tool
112
-
113
- Interactive mode:
114
- ```bash
115
- agent edit <tool-name>
116
- ```
117
-
118
- Non-interactive mode:
119
- ```bash
120
- agent edit <tool-name> --name "newname" --command "new command" --description "new desc"
121
- agent edit --tool-name <tool-name> --description "updated description"
122
- ```
123
-
124
- ### Delete a Tool
125
-
126
- Interactive mode (with confirmation):
127
- ```bash
128
- agent delete <tool-name>
129
- ```
130
-
131
- Non-interactive mode:
132
- ```bash
133
- agent delete <tool-name> --yes
134
- agent delete --tool-name <tool-name> --yes
135
- ```
136
-
137
- ### Enable/Disable Tools
138
-
139
- ```bash
140
- agent enable <tool-name>
141
- agent disable <tool-name>
142
- ```
143
-
144
- ### Check All Tools
145
-
146
- Benchmark all tools and determine the best one:
147
- ```bash
148
- agent check
149
- ```
150
-
151
- With debug output to see each command being executed:
152
- ```bash
153
- agent check --debug
154
- ```
155
-
156
- Include disabled tools in benchmarking:
157
- ```bash
158
- agent check --include-disabled
159
- ```
111
+ ### Edit a Tool
112
+
113
+ Interactive mode:
114
+ ```bash
115
+ agent edit <tool-name>
116
+ ```
117
+
118
+ Non-interactive mode:
119
+ ```bash
120
+ agent edit <tool-name> --name "newname" --command "new command" --description "new desc"
121
+ agent edit --tool-name <tool-name> --description "updated description"
122
+ ```
123
+
124
+ ### Delete a Tool
125
+
126
+ Interactive mode (with confirmation):
127
+ ```bash
128
+ agent delete <tool-name>
129
+ ```
130
+
131
+ Non-interactive mode:
132
+ ```bash
133
+ agent delete <tool-name> --yes
134
+ agent delete --tool-name <tool-name> --yes
135
+ ```
136
+
137
+ ### Enable/Disable Tools
138
+
139
+ ```bash
140
+ agent enable <tool-name>
141
+ agent disable <tool-name>
142
+ ```
143
+
144
+ ### Check All Tools
145
+
146
+ Benchmark all tools and determine the best one:
147
+ ```bash
148
+ agent check
149
+ ```
150
+
151
+ With debug output to see each command being executed:
152
+ ```bash
153
+ agent check --debug
154
+ ```
155
+
156
+ Include disabled tools in benchmarking:
157
+ ```bash
158
+ agent check --include-disabled
159
+ ```
160
160
 
161
161
  ### Run a Specific Tool
162
162
 
@@ -171,43 +171,49 @@ agent run <tool-name> "your prompt here" --debug
171
171
  # Then streams the tool output in real-time
172
172
  ```
173
173
 
174
- ### Run Best Tool
175
-
176
- Use the best tool automatically:
177
- ```bash
178
- agent "tell me a joke"
179
- ```
180
-
181
- Skip automatic fallback if best tool fails:
182
- ```bash
183
- agent "tell me a joke" --no-autocheck
184
- ```
185
-
186
- ### Configuration Management
187
-
188
- Export configuration to a file:
189
- ```bash
190
- agent export
191
- agent export /path/to/config.json
192
- ```
193
-
194
- Import configuration from a file:
195
- ```bash
196
- agent import /path/to/config.json
197
- ```
198
-
199
- ### Onboarding Guide
200
-
201
- Display comprehensive onboarding information, useful for AI agents:
202
- ```bash
203
- agent onboard
204
- ```
205
-
206
- ## Configuration
207
-
208
- Configuration is stored in a platform-specific location:
209
- - **Windows**: `%APPDATA%\my-ai-agent\config.json`
210
- - **macOS/Linux**: `~/.config/my-ai-agent/config.json`
174
+ ### Run Best Tool
175
+
176
+ Use the best tool automatically:
177
+ ```bash
178
+ agent "tell me a joke"
179
+ ```
180
+
181
+ or without quotes:
182
+
183
+ ```bash
184
+ agent tell me a joke
185
+ ```
186
+
187
+ Skip automatic fallback if best tool fails:
188
+ ```bash
189
+ agent "tell me a joke" --no-autocheck
190
+ ```
191
+
192
+ ### Configuration Management
193
+
194
+ Export configuration to a file:
195
+ ```bash
196
+ agent export
197
+ agent export /path/to/config.json
198
+ ```
199
+
200
+ Import configuration from a file:
201
+ ```bash
202
+ agent import /path/to/config.json
203
+ ```
204
+
205
+ ### Onboarding Guide
206
+
207
+ Display comprehensive onboarding information, useful for AI agents:
208
+ ```bash
209
+ agent onboard
210
+ ```
211
+
212
+ ## Configuration
213
+
214
+ Configuration is stored in a platform-specific location:
215
+ - **Windows**: `%APPDATA%\my-ai-agent\config.json`
216
+ - **macOS/Linux**: `~/.config/my-ai-agent/config.json`
211
217
 
212
218
  ## Development
213
219
 
package/dist/index.js CHANGED
@@ -1,11 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  "use strict";
3
- var __importDefault = (this && this.__importDefault) || function (mod) {
4
- return (mod && mod.__esModule) ? mod : { "default": mod };
5
- };
6
3
  Object.defineProperty(exports, "__esModule", { value: true });
7
4
  const commander_1 = require("commander");
8
- const chalk_1 = __importDefault(require("chalk"));
9
5
  const add_1 = require("./commands/add");
10
6
  const edit_1 = require("./commands/edit");
11
7
  const delete_1 = require("./commands/delete");
@@ -110,33 +106,31 @@ if (args.includes('--version') || args.includes('-V')) {
110
106
  console.log(version);
111
107
  process.exit(0);
112
108
  }
109
+ if (args.includes('--help') || args.includes('-h')) {
110
+ program.outputHelp();
111
+ process.exit(0);
112
+ }
113
113
  if (args.length > 0 && commands.includes(args[0])) {
114
114
  // Known command
115
115
  program.parse(process.argv);
116
116
  }
117
117
  else {
118
- // Check for default command flags
119
- const noAutocheckIndex = args.indexOf('--no-autocheck');
120
- const autocheck = noAutocheckIndex === -1;
121
- if (!autocheck) {
122
- args.splice(noAutocheckIndex, 1);
123
- }
124
- if (args.length === 1 && args[0].includes(' ')) {
125
- // Single argument with spaces (likely quoted prompt)
126
- (0, default_1.defaultCommand)(args[0], { autocheck }).catch(error => {
127
- console.error(error);
128
- process.exit(1);
129
- });
118
+ // Default command
119
+ let autocheck = true;
120
+ let promptArgs = [...args];
121
+ const noAutocheckIndex = promptArgs.indexOf('--no-autocheck');
122
+ if (noAutocheckIndex !== -1) {
123
+ autocheck = false;
124
+ promptArgs.splice(noAutocheckIndex, 1);
130
125
  }
131
- else if (args.length > 0) {
132
- // Unknown command or unquoted single word
133
- console.log(chalk_1.default.red(`Unknown command: ${args.join(' ')}`));
126
+ if (promptArgs.length === 0) {
134
127
  program.outputHelp();
135
- process.exit(1);
136
- }
137
- else {
138
- // No args
139
- program.parse(process.argv);
128
+ process.exit(0);
140
129
  }
130
+ const prompt = promptArgs.join(' ');
131
+ (0, default_1.defaultCommand)(prompt, { autocheck }).catch(error => {
132
+ console.error(error);
133
+ process.exit(1);
134
+ });
141
135
  }
142
136
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "my-ai-agent",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A CLI-based app for non-interactive inference from popular AI CLI tools such as Claude Code, Gemini CLI, Codex, OpenCode, etc.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {