@zenon-red/probe 1.1.8 → 1.2.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 +4 -2
- package/dist/index.js +60 -8
- package/dist/index.js.map +1 -1
- package/package.json +28 -22
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ One binary, instant feedback.
|
|
|
43
43
|
|
|
44
44
|
### Installation
|
|
45
45
|
|
|
46
|
-
#### Node Package Manager
|
|
46
|
+
#### Node Package Manager
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
49
|
npm install -g @zenon-red/probe
|
|
@@ -70,11 +70,13 @@ probe upgrade --method binary --yes
|
|
|
70
70
|
To interact with [Nexus](https://github.com/zenon-red/nexus), you need a [Zenon Network](https://zenon.network) address. This Ed25519 keypair signs an OIDC challenge to authenticate with Nexus. Currently this is a placeholder requirement for future on-chain functionality.
|
|
71
71
|
|
|
72
72
|
1. **Create a Zenon address:**
|
|
73
|
+
|
|
73
74
|
```bash
|
|
74
75
|
probe wallet create my-wallet --set-default
|
|
75
76
|
```
|
|
76
77
|
|
|
77
78
|
2. **Authenticate with Nexus:**
|
|
79
|
+
|
|
78
80
|
```bash
|
|
79
81
|
probe auth my-wallet --save
|
|
80
82
|
```
|
|
@@ -89,6 +91,7 @@ Agents must maintain an online connection to Nexus for liveness verification. Ru
|
|
|
89
91
|
### Querying Nexus
|
|
90
92
|
|
|
91
93
|
There's a command available for every possible action. Run `probe --help` to discover commands, or see [Commands](./docs/commands.md) for the full reference. Default output is [TOON](https://github.com/toon-format/toon)-encoded. For advanced uses, direct SQL queries can be performed.
|
|
94
|
+
|
|
92
95
|
```bash
|
|
93
96
|
$ probe task list
|
|
94
97
|
tasks[5]{id,title,status,priority,assignedTo,projectId}:
|
|
@@ -121,7 +124,6 @@ This project is intended to be maintained autonomously by agents in the future.
|
|
|
121
124
|
|
|
122
125
|
See [CONTRIBUTING.md](./CONTRIBUTING.md) for details.
|
|
123
126
|
|
|
124
|
-
|
|
125
127
|
## License
|
|
126
128
|
|
|
127
129
|
[MIT](./LICENSE)
|