@staff0rd/assist 0.516.1 → 0.517.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 -1
- package/dist/commands/sessions/web/bundle.js +1 -1
- package/dist/index.js +260 -190
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -106,7 +106,7 @@ Every command supports `--help` for full detail on its flags and behaviour.
|
|
|
106
106
|
- `assist watch report [--from <sha>]` - Print the built version from `package.json`, the last 10 commits as a markdown SHA/When/Subject table newest-first, and the restarts the new commits make necessary. With `--from`, commits reachable from `HEAD` but not `<sha>` are marked `← new` and the restart advice comes from the files they changed. Exit codes: `0` printed, `1` git could not resolve the range
|
|
107
107
|
- `assist prs` - List pull requests for the current repository
|
|
108
108
|
- `assist prs raise --title <t> --what <w> --why <y> [--how <h>] [--resolves <key>] [--force]` - Raise a PR, assembling the body from What/Why/How. In a web session the draft is previewed for approve/reject (with inline comments and pasted screenshots, hosted via the [`gh-image`](https://github.com/drogers0/gh-image) gh extension) before the PR is created. The preview pane carries two independent chain checkboxes, both default on: **Review** chains a `review --no-prompt --submit <n> --address-comments` session once the PR is raised (review → post findings → Address Comments), and **Post** announces the PR in Slack at the tail of that chain — or directly via `/prs-slack <n> --no-confirm` when Review is off. With both on, approving runs raise → Review + Post → Address Comments → Slack announce end to end
|
|
109
|
-
- `assist prs edit [--title <t>] [--what <w>] [--why <y>] [--how <h>] [--resolves <key>]` - Update only the supplied sections of the current PR's body
|
|
109
|
+
- `assist prs edit [--title <t>] [--what <w>] [--why <y>] [--how <h>] [--resolves <key>]` - Update only the supplied sections of the current PR's body. In a web session the resulting title and body are previewed for approve/reject first (with inline comments and pasted screenshots, as for `raise`); on approval the edit is applied with any screenshots appended, on rejection the reviewer's comments are printed and nothing is changed. Outside a session the edit applies directly
|
|
110
110
|
- `assist prs list-comments` - List all comments on the current branch's pull request
|
|
111
111
|
- `assist prs fixed <comment-id> <sha>` - Reply with commit link and resolve thread
|
|
112
112
|
- `assist prs wontfix <comment-id> <reason>` - Reply with reason and resolve thread
|
|
@@ -183,6 +183,9 @@ Backlog item ids are written and displayed in an `a`-prefixed form (e.g. item 55
|
|
|
183
183
|
- `assist run add` - Add a new run configuration to assist.yml and create a Claude command file
|
|
184
184
|
- `assist run link <path> --prefix <prefix>` - Link run configurations from another project's assist.yml
|
|
185
185
|
- `assist run remove <name>` - Remove a run configuration and delete its Claude command file
|
|
186
|
+
|
|
187
|
+
A run entry's relative `cwd` (and a `link` path) resolves against the **repo root** - the directory holding `assist.yml` or `.claude/`, or the enclosing git repository when the repo has no project config at all (entries coming only from a `repos:` override in `~/.assist.yml`). The base does not shift with which config file the entry came from. A resolved `cwd` that does not exist fails with `run config "<name>": cwd <path> does not exist` rather than a `spawn <command> ENOENT`, and the daemon logs that reason when a `run:` session errors.
|
|
188
|
+
|
|
186
189
|
- `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 and always needs an explicit permission prompt (the CLI hook never auto-approves it). An unset key still reports `Key "<key>" is not set`
|
|
187
190
|
- `assist config list` - List all config values, with secret values shown as `<hidden>` (no reveal option)
|
|
188
191
|
- `assist config set <key> <value>` - Set a config value. `--global` writes to `~/.assist.yml`; `-g --repo [name]` writes a per-repo override there. The confirmation line and any validation error mask secret values
|