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 +161 -155
- package/dist/index.js +18 -24
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
```bash
|
|
196
|
-
agent
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
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
|
-
//
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
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
|
-
|
|
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(
|
|
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":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED