@aiagenta2z/agtm 1.0.8 → 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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,6 +29,12 @@ code_success_skills 5 0.9 L3(100%)
29
29
  npm install -g @aiagenta2z/agtm
30
30
  ```
31
31
 
32
+ Setup hint and skills benchmark
33
+ ```shell
34
+ agtm setup --levels ## Needed before `agtm rate`, to sync the benchmarks json to local folder
35
+ agtm setup --hint ## Needed before `agtm run`
36
+ ```
37
+
32
38
  Agtm CLI Options
33
39
 
34
40
  | CLI | Command and Options | Document |
@@ -171,8 +177,16 @@ The `run` command executes agent workflows with interactive hints and fuzzy CLI
171
177
 
172
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.
173
179
 
180
+
181
+
174
182
  ### Usage
175
183
 
184
+ Remember to setup hint before running the agent-cli
185
+
186
+ ```shell
187
+ agtm setup --hint
188
+ ```
189
+
176
190
  ```
177
191
  agtm run <provider_unique_id> <agent_cli>
178
192
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiagenta2z/agtm",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "agtm: CLI Tool for AI Agent Management, Skills, Agent Registry, Benchmarks and Hints in AI Agent Marketplace\n",
5
5
  "main": "dist/agtm-cli.js",
6
6
  "type": "module",