@staff0rd/assist 0.312.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 +3 -1
- package/claude/settings.json +1 -0
- package/dist/index.js +1044 -883
- 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
|