@aiagenta2z/agtm 1.0.7 → 1.0.9
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 +172 -196
- package/data/config/hints/base_hints.json +118 -0
- package/data/config/hints/contrib/your_cli_hints.json +0 -0
- package/data/config/levels/marketing_sales_apple_levels.json +83 -0
- package/data/config/levels/software_engineer_google_levels.json +42 -0
- package/data/config/levels/software_engineer_meta_levels.json +42 -0
- package/dist/agtm-cli.js +1110 -8
- package/dist/test/skills.spec.js +93 -0
- package/docs/registry/README.md +239 -0
- package/docs/run/README.md +48 -0
- package/docs/skills/README.md +300 -0
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -1,297 +1,273 @@
|
|
|
1
1
|
|
|
2
|
-
### agtm:
|
|
2
|
+
### agtm: CLI Tool for AI Agent Management, Skills, Agent Registry, Benchmarks and Hints in AI Agent Marketplace
|
|
3
3
|
|
|
4
4
|
[GitHub](https://github.com/aiagenta2z/agtm)|[AI Agent Marketplace CLI Doc](https://www.deepnlp.org/doc/ai_agent_marketplace)|[DeepNLP AI Agent Marketplace](https://www.deepnlp.org/store/ai-agent) | [OneKey Agent Router](https://www.deepnlp.org/agent/onekey-mcp-router) | [Agent MCP OneKey Router Ranking](https://www.deepnlp.org/agent/rankings) | [NodeJS agtm](https://www.npmjs.com/package/@aiagenta2z/agtm)
|
|
5
5
|
|
|
6
|
+
`agtm` (AI Agent Management CLI) unifies skill management, agent registration, marketplace search, and provider CLI execution. Install skills from GitHub, log and rate skill runs, upload agent metadata to registries, query the public marketplace, and run agent toolchains with fuzzy hints.
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
or a github repo URL in a few seconds.
|
|
8
|
+
Features
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
*`agtm skills`*: Manage Skills, Add Skills, List Skills, Log Skills Performance, Skills performance Evaluator, compare to realworld benchmarks
|
|
11
|
+
*`agtm upload`*: AI Agent Registry, register local agent meta information of json or yaml format(agent.json/agent.yaml) or sync your github source meta including README.md
|
|
12
|
+
*`agtm search`*: Search the open source AI Agent Marketplace, including github community, huggingface community, product hunt community, deepnlp ai agent marketplace index, etc
|
|
13
|
+
*`agtm run`*: Run agent clis, don't need to remember, with the powerful hints and completion ability, just type a few characters and "--hint" will help you complete the command line.
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
Agtm CLI Options
|
|
16
|
-
|
|
17
|
-
### `search`
|
|
18
|
-
`agtm search` helps to search AI Agent MCP and skills marketplace by id or query keywords.
|
|
15
|
+
Furthermore, `agtm` provides memory to track skill outputs and enables performance rating against industry job level benchmarks. This allows you to score each skill execution and assign a professional tier to your AI Agent's capabilities—for example, evaluating its performance as equivalent to that of an L3 or L5 software engineer, marketing prefessional, etc.
|
|
19
16
|
|
|
20
|
-
Example Usage
|
|
21
17
|
```shell
|
|
22
|
-
|
|
23
|
-
|
|
18
|
+
skill_id run_times score level
|
|
19
|
+
------------------- --------- ----- -----
|
|
20
|
+
code_success_skills 5 0.9 L3(100%)
|
|
24
21
|
```
|
|
25
22
|
|
|
26
|
-
|
|
27
|
-
`agtm update` helps to update your local agent.json or agent.yaml meta information to DeepNLP AI Agent Marketplace Index.
|
|
28
|
-
Example Usage
|
|
29
|
-
```shell
|
|
30
|
-
agtm upload --github https://github.com/AI-Hub-Admin/My-First-AI-Coding-Agent
|
|
31
|
-
agtm upload --config ./agent.json
|
|
32
|
-
agtm upload --config ./agent.yaml
|
|
33
|
-
```
|
|
23
|
+
## Quickstart
|
|
34
24
|
|
|
35
|
-
###
|
|
36
|
-
`agtm add` Install Skills from Github
|
|
25
|
+
### Installation
|
|
37
26
|
|
|
38
|
-
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
agtm add aiagenta2z/onekey-agent-router --skill google-maps -g ## install to global cache folder
|
|
42
|
-
agtm add https://github.com/aiagenta2z/onekey-agent-router --skill google-maps ## install one skill
|
|
27
|
+
**Node**
|
|
28
|
+
``` NodeJS
|
|
29
|
+
npm install -g @aiagenta2z/agtm
|
|
43
30
|
```
|
|
44
31
|
|
|
45
|
-
|
|
32
|
+
Setup hint and skills benchmark
|
|
46
33
|
```shell
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
Installed skill 'google-maps' to claude-code at /path/to/project/.claude/skills/google-maps
|
|
34
|
+
agtm setup --levels ## Needed before `agtm rate`, to sync the benchmarks json to local folder
|
|
35
|
+
agtm setup --hint ## Needed before `agtm run`
|
|
50
36
|
```
|
|
51
37
|
|
|
38
|
+
Agtm CLI Options
|
|
52
39
|
|
|
53
|
-
|
|
40
|
+
| CLI | Command and Options | Document |
|
|
41
|
+
|-------------|-------------------------------------------|--------------------------------|
|
|
42
|
+
| agtm skills | add, list, log, rate | [Doc](../docs/skills/README.md) |
|
|
43
|
+
| agtm search | --q query | [Doc](../docs/registry/README.md) |
|
|
44
|
+
| agtm upload | --github --config to local agent meta | [Doc](../docs/registry/README.md) |
|
|
45
|
+
| agtm run | --hint agent-cli hint and auto completion | [Doc](../docs/run/README.md) |
|
|
54
46
|
|
|
55
|
-
|
|
47
|
+
## `skills`
|
|
56
48
|
|
|
57
|
-
|
|
58
|
-
``` NodeJS
|
|
59
|
-
npm install -g @aiagenta2z/agtm
|
|
60
|
-
```
|
|
49
|
+
### skills add
|
|
61
50
|
|
|
62
|
-
|
|
51
|
+
Download and add skills to your agent directory.
|
|
63
52
|
|
|
64
|
-
|
|
65
|
-
|
|
53
|
+
#### Usage
|
|
54
|
+
```
|
|
55
|
+
agtm skills add <unique_id>
|
|
56
|
+
agtm skills add <github_url>
|
|
57
|
+
agtm skills add <github_url> -a <agent_id>
|
|
58
|
+
agtm skills add <owner_id/repo_id> -s <skill_id>
|
|
59
|
+
```
|
|
66
60
|
|
|
67
|
-
|
|
61
|
+
#### Example
|
|
68
62
|
```
|
|
69
|
-
|
|
63
|
+
agtm skills add anthropics/skills -a claude-code ## install skills only to claude-codex
|
|
64
|
+
agtm skills add msitarzewski/agency-agents
|
|
65
|
+
agtm skills add aiagenta2z/onekey-gateway
|
|
66
|
+
agtm skills add msitarzewski/agency-agents -s academic-anthropologist -a codex
|
|
67
|
+
agtm skills add anthropics/skills -s skill-creator -a claude-code --global
|
|
70
68
|
```
|
|
71
69
|
|
|
72
|
-
|
|
70
|
+
### skills list
|
|
73
71
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
72
|
+
#### Usage
|
|
73
|
+
```
|
|
74
|
+
agtm skills list
|
|
75
|
+
agtm skills list --agent <agent_id> --global
|
|
76
|
+
```
|
|
77
|
+
Lists installed skills with `agent`, `skill_id`, `description`, install `path`, average `score`, and aggregated `level` (if ratings exist).
|
|
77
78
|
|
|
78
|
-
**Setup Access Key**
|
|
79
79
|
|
|
80
|
-
First you need to setup an access_key in the environment to authenticate.
|
|
81
|
-
Register your AI Agent Marketplace [Access Key here](https://deepnlp.org/workspace/keys)
|
|
82
80
|
|
|
81
|
+
#### Example
|
|
83
82
|
```
|
|
84
|
-
|
|
83
|
+
agtm skills list
|
|
84
|
+
agtm skills list --agent codex
|
|
85
|
+
agtm skills list --agent claude-code --global
|
|
85
86
|
```
|
|
86
87
|
|
|
87
|
-
You can also use the test key for validation, which is associated with a test-only account on deepnlp.org and aiagenta2z.com.
|
|
88
88
|
|
|
89
|
+
### skills log
|
|
90
|
+
|
|
91
|
+
#### Usage
|
|
89
92
|
```
|
|
90
|
-
|
|
93
|
+
agtm skills log <skill_id> --data '<json_payload>'
|
|
91
94
|
```
|
|
95
|
+
- Persists a run record at `.agtm/skills/log/<uuid>.json` (or the `--logDir` you supply).
|
|
96
|
+
- `<json_payload>` must contain at least `input` and `output`; optional fields (meta, rating, level) are accepted.
|
|
92
97
|
|
|
93
|
-
|
|
98
|
+
#### Example
|
|
99
|
+
```
|
|
100
|
+
agtm skills log <skill_id> --data '{"input":"write a website for store","output":"success"}'
|
|
101
|
+
agtm skills log code_success_skills --data '{"input":"generate sql","output":"ok","meta":{"agent":"claude-code"}}'
|
|
102
|
+
```
|
|
94
103
|
|
|
95
|
-
|
|
104
|
+
### skills rate
|
|
96
105
|
|
|
97
|
-
|
|
106
|
+
#### Setup
|
|
98
107
|
|
|
108
|
+
To use the rate command, have to setup the benchmark levels configuration. save to `./agtm/levels/*.json` files
|
|
99
109
|
```shell
|
|
100
|
-
agtm
|
|
110
|
+
agtm setup --levels
|
|
101
111
|
```
|
|
102
112
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
```shell
|
|
106
|
-
agtm add aiagenta2z/onekey-agent-router --skill google-maps -a codex
|
|
113
|
+
#### Usage
|
|
107
114
|
```
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
```shell
|
|
112
|
-
agtm add aiagenta2z/onekey-agent-router --skill google-maps -a openclaw
|
|
115
|
+
agtm skills rate prepare --skill_id <skill_id> --prompt "<eval_prompt>" --benchmark <path/benchmark.json>
|
|
116
|
+
agtm skills rate apply --skill_id <skill_id> --result '<result_json>'
|
|
117
|
+
agtm skills rate show --skill_id <skill_id>
|
|
113
118
|
```
|
|
119
|
+
- `prepare` exports logs plus the top benchmark slices (e.g., Google SWE L3–L7) for an external evaluator.
|
|
120
|
+
- `apply` writes evaluator outputs (`rating`, `level`) back to each log.
|
|
121
|
+
- `show` summarizes run counts, average score, and level distribution.
|
|
114
122
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
```shell
|
|
118
|
-
agtm add aiagenta2z/onekey-agent-router --skill google-maps -g
|
|
123
|
+
#### Example
|
|
119
124
|
```
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
**Registry AI Agent from your GitHub**
|
|
125
|
-
|
|
126
|
-
The default registry provider endpoint includes: [DeepNLP AI Agent Registry Endpoint](https://www.deepnlp.org/api/ai_agent_marketplace/registry) |
|
|
127
|
-
[aiagenta2z.com Registry Endpoint](https://www.aiagenta2z.com/api/ai_agent_marketplace/registry)|[aiagenta2z.org Registry Endpoint](https://www.aiagenta2z.org/api/ai_agent_marketplace/registry), etc.
|
|
128
|
-
|
|
129
|
-
You can also set your customized registry endpoint via `--endpoint` parameter
|
|
130
|
-
|
|
131
|
-
|
|
125
|
+
agtm skills rate prepare --skill_id code_success_skills --prompt "Evaluate the results" --benchmark path/customized_agent_benchmark.json
|
|
126
|
+
agtm skills rate apply --skill_id code_success_skills --result '{"results":[{"log_id":"3679a3fe-4d97-4eb1-83bc-f83d711be195","rating":0.90,"level":"L4"}]}'
|
|
127
|
+
agtm skills rate show --skill_id code_success_skills
|
|
132
128
|
```
|
|
133
|
-
|
|
129
|
+
Sample output:
|
|
134
130
|
```
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
131
|
+
skill_id run_times score level
|
|
132
|
+
------------------- --------- ----- -----
|
|
133
|
+
code_success_skills 3 0.88 L4(100%)
|
|
140
134
|
```
|
|
141
|
-
|
|
142
|
-
## Register from local config of AI Agent meta
|
|
143
|
-
agtm upload --config ./agent.json
|
|
144
|
-
agtm upload --config ./agent.yaml
|
|
135
|
+
Benchmarks live in `data/config/levels/*.json` and follow this structure:
|
|
145
136
|
```
|
|
137
|
+
{
|
|
138
|
+
"software-engineering": {
|
|
139
|
+
"Google": [
|
|
140
|
+
{ "level": "L3", "title": "Software Engineer II", "description": "Entry-level engineer. Delivers well-scoped tasks with guidance.", "signals": ["task execution","learning velocity","code quality basics"] },
|
|
141
|
+
{ "level": "L4", "title": "Software Engineer III", "description": "Independent contributor. Owns small features end-to-end.", "signals": ["ownership","code quality","debugging ability"] }
|
|
142
|
+
]
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
```
|
|
146
|
+
The evaluator compares each `<input,output>` log to the benchmark definitions and assigns a rating. You can customize levels such as `poor`, `fair`, `good`, `excellent` in your benchmark file.
|
|
146
147
|
|
|
147
|
-
|
|
148
|
-
See the explanation of the schema, please visit the [documentation](https://www.deepnlp.org/doc/ai_agent_marketplace).
|
|
148
|
+
Partial List of Skills and Job Level Description
|
|
149
149
|
|
|
150
|
+
| Job Category | Company | Levels Description (e.g. Google L3, Meta E4) |
|
|
151
|
+
|-------------------|---------|-------------------------------------------------------------------------------------------|
|
|
152
|
+
| Marketing | Apple | [marketing_sales_apple_levels.json](data/config/levels/marketing_sales_apple_levels.json) |
|
|
153
|
+
| Software Engineer | Google | [software_engineer_google_levels.json](data/config/levels/software_engineer_google_levels.json) |
|
|
154
|
+
| Software Engineer | Meta | [software_engineer_meta_levels.json](data/config/levels/software_engineer_meta_levels.json) |
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
write your `customized_agent_benchmark.json` following the formats
|
|
150
158
|
|
|
151
|
-
Demo agent.json file
|
|
152
159
|
```
|
|
153
160
|
{
|
|
154
|
-
|
|
155
|
-
"
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
"thumbnail_picture": "https://avatars.githubusercontent.com/u/242328252?s=200&v=4",
|
|
162
|
-
"upload_image_files": "",
|
|
163
|
-
"api": "https://www.my_first_agent.com/agent",
|
|
164
|
-
"price_type": "PER_CALL",
|
|
165
|
-
"price_per_call_credit": 0.0,
|
|
166
|
-
"price_fixed_credit" : 0.0,
|
|
167
|
-
"price_subscription": "Basic: your basic plan introduction, Advanced: Your Advanced Plan introduction, etc."
|
|
161
|
+
"domain": {
|
|
162
|
+
"my_benchmark": [
|
|
163
|
+
{ "level": "poor", "description": "the skill failed or the output is meaningless"},
|
|
164
|
+
{ "level": "fair", "description": "the skills produces fair results, complete the task"},
|
|
165
|
+
{ "level": "good", "description": "the skills output a report, an image is good in real life standards.."},
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
168
|
}
|
|
169
169
|
```
|
|
170
|
-
Demo agent.yaml file
|
|
171
|
-
```
|
|
172
170
|
|
|
173
|
-
name: "My First AI Coding Agent"
|
|
174
|
-
content: "This AI Agent can do complicated programming work for humans"
|
|
175
|
-
website: "https://www.my_first_agent.com"
|
|
176
|
-
field: "AI AGENT"
|
|
177
|
-
subfield: "Coding Agent"
|
|
178
|
-
content_tag_list: "coding,python"
|
|
179
|
-
github: "https://github.com/AI-Hub-Admin/My-First-AI-Coding-Agent"
|
|
180
|
-
thumbnail_picture: "https://avatars.githubusercontent.com/u/242328252?s=200&v=4"
|
|
181
|
-
upload_image_files: ""
|
|
182
|
-
api: "https://www.my_first_agent.com/agent"
|
|
183
|
-
price_type: "API Call"
|
|
184
|
-
price_per_call_credit: 0.0
|
|
185
|
-
price_fixed_credit: 0.0
|
|
186
|
-
price_subscription: "Basic: your basic plan introduction, Advanced: Your Advanced Plan introduction, etc."
|
|
187
171
|
|
|
188
|
-
|
|
172
|
+
## `Run`
|
|
189
173
|
|
|
190
|
-
|
|
174
|
+
Execution of Agent Cli with hints and auto completion.
|
|
191
175
|
|
|
192
|
-
|
|
176
|
+
The `run` command executes agent workflows with interactive hints and fuzzy CLI completion. Typing a few characters surfaces suggested commands so you can finish the full invocation quickly (for example, typing `play` will suggest the Playwright runner).
|
|
193
177
|
|
|
194
|
-
|
|
195
|
-
Then the package will POST the the data schema to your endpoint.
|
|
178
|
+
Let's say you want to run an agent command of Playwright to go to a URL and fetch a webpage. You don't need to remember the full command—type `play`, pick the provider, then pick the CLI action.
|
|
196
179
|
|
|
197
180
|
|
|
198
|
-
Note: the keys in agent.json and schema.json should match. Package will select keys from the agent.json/agent.yaml files.
|
|
199
181
|
|
|
182
|
+
### Usage
|
|
200
183
|
|
|
201
|
-
|
|
184
|
+
Remember to setup hint before running the agent-cli
|
|
202
185
|
|
|
203
|
-
|
|
186
|
+
```shell
|
|
187
|
+
agtm setup --hint
|
|
188
|
+
```
|
|
204
189
|
|
|
205
|
-
#### default schema.json definition
|
|
206
190
|
```
|
|
207
|
-
|
|
208
|
-
"required": [
|
|
209
|
-
"name",
|
|
210
|
-
"content"
|
|
211
|
-
],
|
|
212
|
-
"optional": [
|
|
213
|
-
"website",
|
|
214
|
-
"field",
|
|
215
|
-
"subfield",
|
|
216
|
-
"content_tag_list",
|
|
217
|
-
"github",
|
|
218
|
-
"price_type",
|
|
219
|
-
"api",
|
|
220
|
-
"thumbnail_picture",
|
|
221
|
-
"upload_image_files",
|
|
222
|
-
"sdk",
|
|
223
|
-
"package"
|
|
224
|
-
]
|
|
225
|
-
}
|
|
191
|
+
agtm run <provider_unique_id> <agent_cli>
|
|
226
192
|
```
|
|
227
193
|
|
|
194
|
+
### Example
|
|
228
195
|
|
|
229
|
-
|
|
196
|
+
```shell
|
|
197
|
+
rockingdingo@rockingdingodeMacBook-Pro skills_cli % agtm run play
|
|
198
|
+
DEBUG: Entering Human Mode | idArg play | commandArgs | options [object Object] | hasHints true | hints [object Object]
|
|
230
199
|
|
|
200
|
+
Skill ID suggestions:
|
|
201
|
+
1. microsoft/playwright-cli
|
|
202
|
+
2. googleworkspace/cli
|
|
203
|
+
Skill ID suggestions: 1
|
|
204
|
+
Command hints:
|
|
205
|
+
1. playwright-cli goto <url> # navigate to a url
|
|
206
|
+
2. playwright-cli open [url] # open browser, optionally navigate to url
|
|
231
207
|
|
|
232
|
-
|
|
233
|
-
|
|
208
|
+
Select command (number or input custom): 1
|
|
209
|
+
Final command [playwright-cli goto <url>]: playwright-cli goto https://www.github.com
|
|
210
|
+
agtm run microsoft/playwright-cli playwright-cli goto https://www.github.com
|
|
234
211
|
```
|
|
235
|
-
export AI_AGENT_MARKETPLACE_ACCESS_KEY="TEST_KEY_AI_AGENT_REGISTRY"
|
|
236
212
|
|
|
237
|
-
|
|
213
|
+
Support CLI List, Please welcome to contrib
|
|
238
214
|
|
|
239
|
-
|
|
240
|
-
|
|
215
|
+
| unique_id | agent cli |
|
|
216
|
+
| --- | --- |
|
|
217
|
+
| microsoft/playwright-cli | playwright-cli open [url], playwright-cli goto <url>
|
|
218
|
+
| googleworkspace/cli | gws drive files list --params
|
|
219
|
+
| aiagenta2z/onekey-gateway | onekey agent <unique_id> <api_id> <data_json|@file>, onekey mcp <server_name> [--name config_name], onekey llm --provider <provider> --model <model> --messages <json|@file> [--temperature <num>] [--response-format <format>] [--options <json|@file>], onekey llm --payload <json|@file>
|
|
220
|
+
| openai/codex-cli | codex, codex exec "[instruction]"
|
|
221
|
+
| anthropic/claude-code | claude "[prompt]", claude --dangerously-skip-permissions
|
|
222
|
+
| paul-gauthier/aider | aider --model [model_name], /test [command]
|
|
223
|
+
| openinterpreter/open-interpreter | interpreter, interpreter --os
|
|
224
|
+
| google-gemini/gemini-cli | gemini, gemini -p "[prompt] @[file/dir]", gemini --yolo, /memory add "[fact]", /mcp list, /restore
|
|
241
225
|
|
|
242
226
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
Attempting to register agent from config file: ./agent.json
|
|
247
|
-
✅ Loaded custom schema from: ./schema.json
|
|
248
|
-
Using customized schema {"required": ["name", "content"], "optional": ["website", "field", "subfield", "content_tag_list", "github", "price_type", "api", "thumbnail_picture", "upload_image_files", "sdk", "package"]}
|
|
249
|
-
WARN: Calling AddServiceAPI input param optional keys filled fields ['website', 'field', 'subfield', 'content_tag_list', 'github', 'price_type', 'api', 'thumbnail_picture', 'upload_image_files']|missing_fields []
|
|
250
|
-
Submitting agent information to the marketplace...
|
|
227
|
+
## AI Agent Registry
|
|
228
|
+
### `search`
|
|
229
|
+
`agtm search` helps to search AI Agent MCP and skills marketplace by id or query keywords.
|
|
251
230
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
231
|
+
Example Usage
|
|
232
|
+
```shell
|
|
233
|
+
agtm search --q 'coding agent'
|
|
234
|
+
agtm search --id 'google-maps/google-maps'
|
|
256
235
|
```
|
|
257
236
|
|
|
237
|
+
### `upload`
|
|
238
|
+
`agtm update` helps to update your local agent.json or agent.yaml meta information to DeepNLP AI Agent Marketplace Index.
|
|
239
|
+
Example Usage
|
|
240
|
+
```shell
|
|
241
|
+
agtm upload --github https://github.com/AI-Hub-Admin/My-First-AI-Coding-Agent
|
|
242
|
+
agtm upload --config ./agent.json
|
|
243
|
+
agtm upload --config ./agent.yaml
|
|
244
|
+
```
|
|
258
245
|
|
|
259
|
-
|
|
246
|
+
`schema.json` should have two keys defined the required fields and optional fields you want to submit from the agent.json file.
|
|
260
247
|
|
|
248
|
+
Remember to keep the `access_key` in safe place, the post request will post the `access_key` as well as schema to the endpoint.
|
|
261
249
|
|
|
262
|
-
|
|
263
|
-
agtm upload --config ./agent.json --endpoint https://www.example.com --schema ./schema.json
|
|
250
|
+
Please visit the command line github package [agtm](https://github.com/aiagenta2z/agtm) and [DOC](https://www.deepnlp.org/doc/ai_agent_marketplace) detailed usage.
|
|
264
251
|
|
|
265
|
-
```
|
|
266
252
|
|
|
267
|
-
|
|
253
|
+
Use the test account and access
|
|
268
254
|
|
|
269
255
|
```
|
|
270
|
-
|
|
271
|
-
```
|
|
272
|
-
|
|
256
|
+
export AI_AGENT_MARKETPLACE_ACCESS_KEY="TEST_KEY_AI_AGENT_REGISTRY"
|
|
273
257
|
|
|
274
|
-
|
|
258
|
+
agtm upload --config ./agent.json --endpoint https://www.deepnlp.org/api/ai_agent_marketplace/registry --schema ./schema.json
|
|
275
259
|
|
|
260
|
+
agtm upload --config ./agent.json --endpoint https://www.aiagenta2z.com/api/ai_agent_marketplace/registry --schema ./schema.json
|
|
276
261
|
```
|
|
277
262
|
|
|
278
|
-
|
|
263
|
+
### Contributing
|
|
279
264
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
agtm search --id 'AI-Hub-Admin/My-First-AI-Coding-Agent'
|
|
283
|
-
```
|
|
265
|
+
#### Agent CLI List
|
|
266
|
+
You are welcome to contrib your cli list to the agent cli hints json file to folder [hints](data/config/hints) or table README.md
|
|
284
267
|
|
|
285
|
-
|
|
268
|
+
#### Skill Run Benchmark
|
|
286
269
|
|
|
287
|
-
|
|
288
|
-
[{'content_name': 'Cursor AI', 'publisher_id': 'pub-cursor', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-cursor/cursor-ai', 'website': 'https://docs.cursor.com/agent', 'github': '', 'review_cnt': '3', 'rating': '3.3', 'description': 'Cursor AI Coding Editor provides Agent mode, which is the default mode in Cursor, equipped with all tools to efficiently handle a wide range of coding tasks. Agent is the default mode in Cursor that is best for most tasks. It has all tools enabled to allow it to perform all operations necessary to complete the task at hand. Make sure to read chat overview to learn more about how modes work in Curs', 'subfield': 'Coding Agent', 'field': 'AI AGENT', 'id': 'cursor/cursor-ai', 'content_tag_list': 'Coding Agent,AI AGENT', 'thumbnail_picture': 'https://static.aiagenta2z.com/scripts/img/ai_service_content/a7dd95e7eb419437ef4a91f4b0e853cb.jpg'}, {'content_name': 'trae ai', 'publisher_id': 'pub-trae-ai', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-trae-ai/trae-ai', 'website': 'https://www.trae.ai/', 'github': '', 'review_cnt': '2', 'rating': '4.0', 'description': 'Trae AI IDE is a cutting-edge AI-integrated development environment designed to enhance developer productivity by leveraging advanced AI models like Claude3.5 and GPT-4o. It offers a seamless coding experience with features such as intelligent code generation, real-time feedback, and multi-modal input support, making it a powerful tool for developers. Introduction Trae AI IDE, developed by ByteDan', 'subfield': 'Coding Agent', 'field': 'AI AGENT', 'id': 'trae-ai/trae-ai', 'content_tag_list': 'CODING AGENT,AI AGENT', 'thumbnail_picture': 'https://static.aiagenta2z.com/scripts/img/ai_service_content/cc43d2dc25488b50b883781e0ae8c988.png'}, {'content_name': 'codex', 'publisher_id': 'pub-openai', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-openai/codex', 'website': 'https://github.com/openai/codex', 'github': 'https://github.com/openai/codex', 'review_cnt': '1', 'rating': '5.0', 'description': 'npm i -g @openai/codexor brew install --cask codex\n\nCodex CLI is a coding agent from OpenAI that runs locally on your computer.\n\nIf you want Codex in your code editor (VS Code, Cursor, Windsurf), install in your IDE\nIf you are looking for the cloud-based agent from OpenAI, Codex Web, go to chatgpt.com/codex\n\n\n \n \n\n---\n\n## Quickstart\n\n### Installing and running Codex CLI\n\nInstall globally with yo', 'subfield': 'CODING AGENT', 'field': 'AI AGENT', 'id': 'openai/codex', 'content_tag_list': 'GitHub 48.6k', 'thumbnail_picture': 'https://avatars.githubusercontent.com/u/14957082?v=4'}, {'content_name': 'fine dev', 'publisher_id': 'pub-fine-dev', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/ai-agent/pub-fine-dev/fine-dev', 'website': 'https://www.fine.dev', 'github': '', 'review_cnt': '1', 'rating': '4.0', 'description': 'Full-Stack AI Developer Agent for Startups Accelerate your startup’s release schedule and ship daily improvements. Fine is the AI Coding Agent built to act like another team member, getting work done. Try free or watch it work.', 'subfield': 'AI AGENT', 'field': 'AI AGENT', 'id': 'fine-dev/fine-dev', 'content_tag_list': ',AI AGENT', 'thumbnail_picture': 'https://www.fine.dev/_next/static/media/logo.76f79362.svg'}, {'content_name': 'claude code', 'publisher_id': 'pub-claude-code', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-claude-code/claude-code', 'website': 'https://www.anthropic.com/claude-code', 'github': '', 'review_cnt': '1', 'rating': '5.0', 'description': 'Claude Code by Anthropic is an AI-powered coding assistant designed to enhance developer productivity by providing intelligent code generation, debugging, and optimization capabilities. It integrates seamlessly with various developer tools, making it easy to use within existing workflows. Introduction Claude Code is a powerful AI coding assistant developed by Anthropic, aimed at helping developers', 'subfield': 'Coding Agent', 'field': 'AI AGENT', 'id': 'claude-code/claude-code', 'content_tag_list': 'CODING AGENT,AI AGENT', 'thumbnail_picture': 'https://static.aiagenta2z.com/scripts/img/ai_service_content/7d6c735321396b42b5c2e46499e17a6e.png'}, {'content_name': 'qwen code', 'publisher_id': 'pub-qwen-code', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-qwen-code/qwen-code', 'website': '', 'github': '', 'review_cnt': '1', 'rating': '4.0', 'description': 'Qwen Coding Agent offers an advanced framework for developing applications utilizing large language models (LLMs), enhancing capabilities such as instruction following, tool usage, planning, and memory. Introduction Qwen Coding Agent provides a robust platform for building LLM applications, leveraging the advanced features of Qwen models (version 2.0 and above). It facilitates the development of i', 'subfield': 'Coding Agent', 'field': 'AI AGENT', 'id': 'qwen-code/qwen-code', 'content_tag_list': ',AI AGENT', 'thumbnail_picture': 'https://camo.githubusercontent.com/db544c14e8419ecf289564a79841e005c518fc29cd418ac4a31215e9377eaa22/68747470733a2f2f7169616e77656e2d7265732e6f73732d636e2d6265696a696e672e616c6979756e63732e636f6d2f5177656e322e352f5177656e322e352d436f6465722f7177656e322e352d636f6465722d6c6f676f'}, {'content_name': 'Qoder', 'publisher_id': 'pub-qoder', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-qoder/qoder', 'website': 'https://qoder.com/download', 'github': '', 'review_cnt': '1', 'rating': '5.0', 'description': '\r\n## Qoder\r\n\r\nQoder is an agentic coding platform designed for real software development. It seamlessly integrates enhanced context engineering with intelligent agents to gain a comprehensive understanding of your codebase and systematically tackles software development tasks.\r\nIt goes beyond simple code completion-Qoder helps you think deeper, code smarter, and build better by automating intricat', 'subfield': 'Coding Agent', 'field': 'AI AGENT', 'id': 'qoder/qoder', 'content_tag_list': 'coding,agent', 'thumbnail_picture': 'https://static.aiagenta2z.com/scripts/img/ai_service_content/6d7c68c43f520b76251fe2ac7c0061a8.jpg'}, {'content_name': 'CodeBuddy IDE Tencent', 'publisher_id': 'pub-tencent', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-tencent/codebuddy-ide-tencent', 'website': 'https://copilot.tencent.com/ide', 'github': '', 'review_cnt': '1', 'rating': '4.0', 'description': '\r\nCodeBuddy IDE Tencent AI 一站式工作台:从此用自然语言实现产品、设计、研发全流程\r\n\r\n\r\n\r\n## AI 智能代码补全\r\n所想即所码\r\nAI驱动的实时代码预测与智能补全,让编程如行云流水\r\n\r\n\r\n## AI 设计生成\r\n草图秒变原型\r\n手绘概念瞬间转化为高保真交互原型,创意无需等待\r\n\r\n## 设计稿转代码\r\n一稿生万码\r\nFigma设计 稿一键转换为生产级代码,还原度高达99.9%\r\n\r\n\r\n## AI 全栈开发\r\n你的AI编程搭档\r\n智能开发代理,自主完成多文件代码生成与重构\r\n\r\n\r\n## 内置后端服务\r\n后端开 发零门槛\r\n内置腾讯云 CloudBase 和 Supabase服务,数据库与用户认证一键搞定\r\n\r\n## 一键部署分享\r\n开发、部署、分享,一键搞定\r\n内置 Cloud Studio,EdgeOne Pages,从开发环境到在线演示,只需一秒钟', 'subfield': 'Coding Agent', 'field': 'AI AGENT', 'id': 'tencent/codebuddy-ide-tencent', 'content_tag_list': 'ide,coding agent', 'thumbnail_picture': 'https://static.aiagenta2z.com/scripts/img/ai_service_content/3ef7d0e02ecbf36eb9dbd25590c7c87e.jpg'}, {'content_name': 'zencoder ai', 'publisher_id': 'pub-zencoder-ai', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/coding-agent/pub-zencoder-ai/zencoder-ai', 'website': 'https://zencoder.ai', 'github': '', 'review_cnt': '0', 'rating': '0.0', 'description': "Zencoder AI provides a range of AI agents designed to streamline and enhance various business processes through intelligent automation and advanced AI capabilities. Introduction Zencoder AI's AI agents are built to act as digital assistants, automating complex tasks and improving operational efficiency across multiple industries. These agents leverage cutting-edge AI technologies to handle tasks s", 'subfield': 'Coding Agent', 'field': 'AI AGENT', 'id': 'zencoder-ai/zencoder-ai', 'content_tag_list': ',AI AGENT', 'thumbnail_picture': 'https://zencoder.ai/favicon.ico'}, {'content_name': 'gpt-engineer', 'publisher_id': 'pub-antonosika', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/ai-agent/pub-antonosika/gpt-engineer', 'website': 'https://github.com/AntonOsika/gpt-engineer', 'github': 'https://github.com/AntonOsika/gpt-engineer', 'review_cnt': '0', 'rating': '0.0', 'description': '# gpt-engineer\n\n](https://github.com/gpt-engineer-org/gpt-engineer)\n](https://discord.gg/8tcDQ89Ej2)\n](https://github.com/gpt-engineer-org/gpt-engineer/blob/main/LICENSE)\n](https://github.com/gpt-engineer-org/gpt-engineer/issues)\n\n](https://twitter.com/antonosika)\n\nThe OG code genereation experimentation platform!\n\nIf you are looking for the evolution that is an opinionated, managed service – chec', 'subfield': 'AI AGENT', 'field': 'AI AGENT', 'id': 'antonosika/gpt-engineer', 'content_tag_list': 'GitHub 55.0k,ai,autonomous-agent,code-generation,codebase-generation,codegen,coding-assistant,gpt-4,gpt-engineer,openai,python', 'thumbnail_picture': 'https://avatars.githubusercontent.com/u/4467025?v=4'}]
|
|
289
|
-
```
|
|
270
|
+
You are welcome to contrib your own customized benchmarks of skills and unique levels system in folder [levels](data/config/levels).
|
|
290
271
|
|
|
291
|
-
Search Result of Retrieving registered project id 'AI-Hub-Admin/My-First-AI-Coding-Agent'
|
|
292
272
|
|
|
293
|
-
```
|
|
294
|
-
Retrieving specific agent with unique ID: AI-Hub-Admin/My-First-AI-Coding-Agent
|
|
295
273
|
|
|
296
|
-
{'total_hits': 1, 'id': 'AI-Hub-Admin/My-First-AI-Coding-Agent', 'items': [{'content_name': 'My-First-AI-Coding-Agent', 'publisher_id': 'pub-ai-hub-admin', 'detail_url': 'https://www.deepnlp.org/store/ai-agent/ai-agent/pub-ai-hub-admin/my-first-ai-coding-agent', 'website': 'https://github.com/AI-Hub-Admin/My-First-AI-Coding-Agent', 'github': 'https://github.com/AI-Hub-Admin/My-First-AI-Coding-Agent', 'review_cnt': '0', 'rating': '0.0', 'description': '# My-First-AI-Coding-Agent\nAI Agent Registry Demo project\n\n', 'subfield': 'AI AGENT', 'field': 'AI AGENT', 'id': 'ai-hub-admin/my-first-ai-coding-agent', 'content_tag_list': 'GitHub 0', 'thumbnail_picture': 'https://avatars.githubusercontent.com/u/184629057?v=4'}]}
|
|
297
|
-
```
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"microsoft/playwright-cli": {
|
|
3
|
+
"hints": [
|
|
4
|
+
{
|
|
5
|
+
"cli": "playwright-cli open [url]",
|
|
6
|
+
"hint": "open browser, optionally navigate to url"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"cli": "playwright-cli goto <url> ",
|
|
10
|
+
"hint": "navigate to a url"
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
"googleworkspace/cli": {
|
|
15
|
+
"hints": [
|
|
16
|
+
{
|
|
17
|
+
"cli": "gws drive files list --params",
|
|
18
|
+
"hint": "List the 10 most recent files"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"aiagenta2z/onekey-gateway": {
|
|
23
|
+
"hints": [
|
|
24
|
+
{
|
|
25
|
+
"cli": "onekey agent <unique_id> <api_id> <data_json|@file>",
|
|
26
|
+
"hint": "Invoke a specific agent by ID with structured JSON data or a file input"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"cli": "onekey mcp <server_name> [--name config_name]",
|
|
30
|
+
"hint": "Connect to a Model Context Protocol server to extend agent capabilities"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"cli": "onekey llm --provider <provider> --model <model> --messages <json|@file> [--temperature <num>] [--response-format <format>] [--options <json|@file>]",
|
|
34
|
+
"hint": "Execute a direct LLM call with granular control over provider, model, and sampling parameters"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"cli": "onekey llm --payload <json|@file>",
|
|
38
|
+
"hint": "Run a raw LLM request using a pre-formatted JSON payload or configuration file"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"openai/codex-cli": {
|
|
43
|
+
"hints": [
|
|
44
|
+
{
|
|
45
|
+
"cli": "codex",
|
|
46
|
+
"hint": "Start an interactive terminal UI (TUI) coding session"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"cli": "codex exec \"[instruction]\"",
|
|
50
|
+
"hint": "Run Codex non-interactively and stream results to stdout"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"anthropic/claude-code": {
|
|
55
|
+
"hints": [
|
|
56
|
+
{
|
|
57
|
+
"cli": "claude \"[prompt]\"",
|
|
58
|
+
"hint": "Start an interactive session with an initial task"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"cli": "claude --dangerously-skip-permissions",
|
|
62
|
+
"hint": "Run without interrupting for tool execution permissions"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"paul-gauthier/aider": {
|
|
67
|
+
"hints": [
|
|
68
|
+
{
|
|
69
|
+
"cli": "aider --model [model_name]",
|
|
70
|
+
"hint": "Start aider with a specific LLM context"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"cli": "/test [command]",
|
|
74
|
+
"hint": "Run a test; aider will automatically attempt to fix code if it fails"
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"openinterpreter/open-interpreter": {
|
|
79
|
+
"hints": [
|
|
80
|
+
{
|
|
81
|
+
"cli": "interpreter",
|
|
82
|
+
"hint": "Launch the natural language interface to control your local computer"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"cli": "interpreter --os",
|
|
86
|
+
"hint": "Enable visual/OS-level control for mouse and keyboard automation"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
"google-gemini/gemini-cli": {
|
|
91
|
+
"hints": [
|
|
92
|
+
{
|
|
93
|
+
"cli": "gemini",
|
|
94
|
+
"hint": "Start an interactive agentic session in the current directory"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"cli": "gemini -p \"[prompt] @[file/dir]\"",
|
|
98
|
+
"hint": "Run a prompt with specific file or directory context injected"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"cli": "gemini --yolo",
|
|
102
|
+
"hint": "Enable 'YOLO mode' to auto-approve all tool and shell executions"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"cli": "/memory add \"[fact]\"",
|
|
106
|
+
"hint": "Save a persistent fact to the project's GEMINI.md hierarchical memory"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"cli": "/mcp list",
|
|
110
|
+
"hint": "List all active Model Context Protocol servers and available tools"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"cli": "/restore",
|
|
114
|
+
"hint": "List or restore project state checkpoints created before file edits"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
}
|
|
File without changes
|