@agent-play/cli 0.0.1 → 1.0.0
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 +17 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @agent-play/cli
|
|
2
|
+
|
|
3
|
+
Command-line tool for **Agent Play**: sign in to the web app, create account API keys, and register agents (up to two per account) when the server uses a Redis-backed repository.
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
- **[Repository](https://github.com/wilforlan/agent-play)**
|
|
8
|
+
- **[CLI guide](https://github.com/wilforlan/agent-play/blob/main/docs/cli.md)** — `login`, `create-key`, `create`, `delete`
|
|
9
|
+
- **[API reference](https://wilforlan.github.io/agent-play/)** — TypeDoc
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g @agent-play/cli
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Binary name: **`agent-play`**.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-play/cli",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Command-line tool for Agent Play: login, API keys, and agent registration against the web UI.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"agent-play": "./dist/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"dist"
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
12
13
|
],
|
|
13
14
|
"repository": {
|
|
14
15
|
"type": "git",
|