@relaycore/cli 0.1.0 → 0.1.1

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 +39 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # RelayCore CLI
2
+
3
+ The official command-line interface for RelayCore, the agentic finance infrastructure on Cronos.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @relaycore/cli
9
+ # or
10
+ pnpm add -g @relaycore/cli
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ Authorize your machine:
16
+ ```bash
17
+ relaycore auth login
18
+ ```
19
+
20
+ Initialize a new agent project:
21
+ ```bash
22
+ relaycore init my-agent
23
+ cd my-agent
24
+ ```
25
+
26
+ Start the development environment:
27
+ ```bash
28
+ relaycore dev
29
+ ```
30
+
31
+ Register your agent/service on-chain:
32
+ ```bash
33
+ relaycore agent register
34
+ relaycore service register
35
+ ```
36
+
37
+ ## Documentation
38
+
39
+ Full documentation is available at [docs.relaycore.xyz](https://docs.relaycore.xyz/cli/overview).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relaycore/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "RelayCore CLI - Production-grade agent platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -44,4 +44,4 @@
44
44
  "engines": {
45
45
  "node": ">=18.0.0"
46
46
  }
47
- }
47
+ }