@staff0rd/assist 0.281.1 → 0.281.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 +3 -2
- package/claude/commands/jira.md +1 -1
- package/dist/commands/sessions/web/bundle.js +1 -1
- package/dist/index.js +143 -138
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -140,7 +140,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
140
140
|
- `assist backlog export [file]` - Export the entire backlog database (all tables, all repos) to a file, or stdout if omitted
|
|
141
141
|
- `assist backlog import [file]` - Restore the entire backlog database from a dump (file or stdin), faithfully replacing all data; prompts for confirmation (use `-y, --yes` to skip; required when reading from stdin)
|
|
142
142
|
- `assist backlog move-repo <old-origin> [new-origin]` - Retag all items from one origin to another after a repo rename; the new origin defaults to the current repo's remote, both accept URL or `git@` forms, and a bare repo name works for the old origin when unambiguous. Prompts for confirmation (use `-y, --yes` to skip)
|
|
143
|
-
- `assist backlog web [-p, --port <number>]` - Open the backlog tab in the web dashboard (default port 3100)
|
|
143
|
+
- `assist backlog web [-p, --port <number>] [--no-open]` - Open the backlog tab in the web dashboard (default port 3100); `--no-open` skips opening a browser on startup
|
|
144
144
|
- `assist roam auth` - Authenticate with Roam via OAuth (opens browser, saves tokens to ~/.assist.yml)
|
|
145
145
|
- `assist roam show-claude-code-icon` - Forward Claude Code hook activity to Roam local API
|
|
146
146
|
- `assist run <name> [params...]` - Run a configured command from assist.yml (positional params are matched to `params` config; supports `pre` array of commands to run first). If `<name>` is purely numeric and matches no configured command, it is treated as an alias for `assist backlog run <name>` and forwards `--write`/`--no-write`/`-w`.
|
|
@@ -194,6 +194,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
194
194
|
- `assist jira auth` - Authenticate with Jira via API token (saves site/email to ~/.assist/jira.json)
|
|
195
195
|
- `assist jira ac <issue-key>` - Print acceptance criteria for a Jira issue
|
|
196
196
|
- `assist jira view <issue-key>` - Print the title and description of a Jira issue
|
|
197
|
+
- Note: Claude is wired to the MCP Atlassian server (`mcp__claude_ai_Atlassian__getJiraIssue`) for fetching Jira context, so the `/jira` slash command and Jira-key mentions go through MCP. These `assist jira` CLI commands remain for direct human use.
|
|
197
198
|
- `assist ravendb auth add` - Add a new RavenDB connection (prompts for name, URL, database, op:// secret reference)
|
|
198
199
|
- `assist ravendb auth list` - List configured RavenDB connections
|
|
199
200
|
- `assist ravendb auth remove <name>` - Remove a configured connection
|
|
@@ -242,7 +243,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
242
243
|
- `assist voice devices` - List available audio input devices
|
|
243
244
|
- `assist voice logs [-n <count>]` - Show recent voice daemon log entries
|
|
244
245
|
- `assist sessions` - Start the web dashboard (same as `sessions web`)
|
|
245
|
-
- `assist sessions web [-p, --port <number>]` - Start the web dashboard with Sessions and Backlog tabs, xterm.js terminals with clickable http(s) links (default port 3100); press Ctrl+R in the foreground terminal for an in-terminal restart menu (Restart daemon, Restart webserver, Restart both); Restart webserver re-execs the foreground process so the connected browser auto-reconnects
|
|
246
|
+
- `assist sessions web [-p, --port <number>] [--no-open]` - Start the web dashboard with Sessions and Backlog tabs, xterm.js terminals with clickable http(s) links (default port 3100); `--no-open` skips opening a browser on startup; press Ctrl+R in the foreground terminal for an in-terminal restart menu (Restart daemon, Restart webserver, Restart both); Restart webserver re-execs the foreground process (passing `--no-open` so no browser pops on restart) so the connected browser auto-reconnects
|
|
246
247
|
- `assist sessions summarise [-f, --force] [-n, --limit <count>]` - Generate one-line summaries for unsummarised Claude sessions (force re-generates all; limit caps how many to process)
|
|
247
248
|
- `assist daemon run` - Run the sessions daemon in the foreground (normally auto-spawned detached by `assist sessions`)
|
|
248
249
|
- `assist daemon status` - Show sessions daemon status, live sessions, and any stray daemon processes or stolen socket
|
package/claude/commands/jira.md
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
description: View a Jira work item
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Fetch the Jira work item `$ARGUMENTS` using the `mcp__claude_ai_Atlassian__getJiraIssue` tool from the MCP Atlassian server, then display the result to the user.
|