@staff0rd/assist 0.493.0 → 0.494.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 +4 -2
- package/allowed.cli-reads +1 -0
- package/dist/allowed.cli-reads +1 -0
- package/dist/commands/sessions/web/bundle.js +331 -331
- package/dist/index.js +402 -270
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -182,11 +182,13 @@ Backlog item ids are written and displayed in an `a`-prefixed form (e.g. item 55
|
|
|
182
182
|
- `assist run add` - Add a new run configuration to assist.yml and create a Claude command file
|
|
183
183
|
- `assist run link <path> --prefix <prefix>` - Link run configurations from another project's assist.yml
|
|
184
184
|
- `assist run remove <name>` - Remove a run configuration and delete its Claude command file
|
|
185
|
-
- `assist config get <key>` - Get a config value
|
|
186
|
-
- `assist config list` - List all config values
|
|
185
|
+
- `assist config get <key>` - Get a config value. Secret values (`database.url`, `roam.*` tokens, `sql.connections[].password`, `seq.connections[].apiToken`) print as `<hidden>`; `--reveal` prints the raw value undecorated for command substitution. An unset key still reports `Key "<key>" is not set`
|
|
186
|
+
- `assist config list` - List all config values, with secret values shown as `<hidden>` (no reveal option)
|
|
187
187
|
- `assist config set <key> <value>` - Set a config value. `--global` writes to `~/.assist.yml`; `-g --repo [name]` writes a per-repo override there
|
|
188
188
|
- `assist config unset <key>` - Remove a config value so the key falls back to the global value or schema default (`-g` targets `~/.assist.yml`; `-g --repo [name]` removes it from a per-repo override there)
|
|
189
189
|
|
|
190
|
+
The Config tab of the sessions web dashboard never receives secret values: `GET /api/config` replaces each one with a set-or-unset marker, so a configured secret renders as `set (hidden)` and an unset one as `not set`, both keeping their project/global/default chip. Secret fields edit write-only - type a value to replace it, leave the field blank to keep whatever is stored.
|
|
191
|
+
|
|
190
192
|
### Verify and lint
|
|
191
193
|
|
|
192
194
|
- `assist verify` - Run all verify:\* commands in parallel (from assist.yml run configs and package.json scripts)
|
package/allowed.cli-reads
CHANGED