@staff0rd/assist 0.310.5 → 0.312.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 CHANGED
@@ -80,6 +80,7 @@ After installation, the `assist` command will be available globally. You can als
80
80
  ## CLI Commands
81
81
 
82
82
  - `assist activity [--since <date>]` - Chart GitHub commit activity per day (defaults to last 30 days)
83
+ - `assist backup [--out <dir>]` - Write a dump of the entire backlog database to `<dir>/backup-<timestamp>.dump` (default dir `~/.assist/backups`, overridable via the `backup.dir` config key or `--out`) and record the dump's path and byte size in the backups table; on failure no row is recorded and the command exits with an error
83
84
  - `assist init` - Initialize project with VS Code and verify configurations
84
85
  - `assist new vite` - Initialize a new Vite React TypeScript project
85
86
  - `assist new cli` - Initialize a new tsup CLI project
@@ -157,6 +158,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
157
158
  - `prs.slack` - The Slack channel (e.g. `#example`) that `/prs-slack` posts pull requests to via the Slack MCP connector
158
159
  - `assist verify` - Run all verify:* commands in parallel (from run configs in assist.yml and scripts in package.json)
159
160
  - `assist verify all` - Run all checks, ignoring diff-based filters
161
+ - `assist verify --measure` - After the run, print a summary table of each command's status and duration (slowest first) plus a wall-clock total
160
162
  - `assist verify init` - Add verify scripts to a project (writes to `assist.yml` by default; pass `--package-json` to write to `package.json` scripts instead)
161
163
  - `assist verify hardcoded-colors` - Check for hardcoded hex colors in src/ (supports `hardcodedColors.ignore` globs in config)
162
164
  - `assist verify comment-policy` - Flag comments added on changed lines (staged + unstaged) unless they carry a justification marker; supports `commentPolicy.markers` and `commentPolicy.ignore` globs in config