usertold 0.0.0 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +16 -2
  2. package/package.json +1 -1
  3. package/usertold +1143 -572
package/README.md CHANGED
@@ -64,11 +64,21 @@ usertold task push acme/my-product tsk_123
64
64
  ## Agent mode
65
65
 
66
66
  ```bash
67
+ # Discover full command surface (flags, subcommands) in one call
68
+ usertold introspect
69
+
67
70
  usertold init --org acme --name "My Product" --json --yes
68
- usertold project signal-health acme/my-product --json
71
+ usertold project status acme/my-product --json
69
72
  usertold signal bulk-link acme/my-product tsk_123 --signals sig_1,sig_2,sig_3 --json
70
73
  ```
71
74
 
75
+ Errors are JSON on stderr when `--json` is active:
76
+ ```json
77
+ {"error":{"code":"ARGS_ERROR","message":"Unknown flag(s): --bad-flag","exitCode":2}}
78
+ ```
79
+
80
+ Exit codes: `0` success · `1` error · `2` bad args · `3` auth · `4` not found
81
+
72
82
  ## Core command groups
73
83
 
74
84
  - `auth`
@@ -78,10 +88,14 @@ usertold signal bulk-link acme/my-product tsk_123 --signals sig_1,sig_2,sig_3 --
78
88
  - `signal`
79
89
  - `task`
80
90
  - `screener`
91
+ - `billing`
81
92
  - `overview`
82
93
  - `config`
83
94
  - `setup`
84
- - `billing`
95
+ - `init`
96
+ - `api`
97
+ - `admin`
98
+ - `introspect`
85
99
 
86
100
  Run `usertold <group> --help` for details.
87
101
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "usertold",
3
- "version": "0.0.0",
3
+ "version": "0.2.0",
4
4
  "description": "UserTold.ai CLI",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",