@staff0rd/assist 0.311.0 → 0.313.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/claude/settings.json +1 -0
- package/dist/index.js +1094 -929
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,7 +80,9 @@ 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
|
+
- `assist backup [-o, --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
|
|
84
|
+
- `assist backup schedule --every <duration>` - Install or update a marked crontab block that runs `assist backup` on a recurring cadence (e.g. `5m` → `*/5 * * * *`, `6h` → `0 */6 * * *`), appending output to `<backup.dir>/cron.log`; re-running with a new duration replaces the block without duplicating it. Durations cron cannot represent evenly (sub-minute, or non-divisor intervals like `90m`) are rejected
|
|
85
|
+
- `assist backup schedule status` - Print the active backup cadence and cron expression, or report that none is set
|
|
84
86
|
- `assist init` - Initialize project with VS Code and verify configurations
|
|
85
87
|
- `assist new vite` - Initialize a new Vite React TypeScript project
|
|
86
88
|
- `assist new cli` - Initialize a new tsup CLI project
|
|
@@ -158,6 +160,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
158
160
|
- `prs.slack` - The Slack channel (e.g. `#example`) that `/prs-slack` posts pull requests to via the Slack MCP connector
|
|
159
161
|
- `assist verify` - Run all verify:* commands in parallel (from run configs in assist.yml and scripts in package.json)
|
|
160
162
|
- `assist verify all` - Run all checks, ignoring diff-based filters
|
|
163
|
+
- `assist verify --measure` - After the run, print a summary table of each command's status and duration (slowest first) plus a wall-clock total
|
|
161
164
|
- `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)
|
|
162
165
|
- `assist verify hardcoded-colors` - Check for hardcoded hex colors in src/ (supports `hardcodedColors.ignore` globs in config)
|
|
163
166
|
- `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
|