@staff0rd/assist 0.318.9 → 0.320.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 +2 -0
- package/claude/settings.json +4 -0
- package/dist/index.js +689 -504
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -187,6 +187,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
187
187
|
- `assist cli-hook deny` - List all deny rules
|
|
188
188
|
- `assist cli-hook deny add <pattern> <message>` - Add a deny rule for a command pattern
|
|
189
189
|
- `assist cli-hook deny remove <pattern>` - Remove a deny rule by pattern
|
|
190
|
+
- `assist edit-hook` - PreToolUse hook that blocks `Edit`/`Write`/`MultiEdit` calls from adding, changing, or removing a `// assist-maintainability-override` marker
|
|
190
191
|
- `assist update` - Update assist to the latest version and sync commands
|
|
191
192
|
- `assist vscode init` - Add VS Code configuration files
|
|
192
193
|
- `assist deploy init` - Initialize Netlify project and configure deployment
|
|
@@ -266,6 +267,7 @@ The first backlog command in a repository that still has a local `.assist/backlo
|
|
|
266
267
|
- `assist daemon status` - Show sessions daemon status, live sessions, and any stray daemon processes or stolen socket
|
|
267
268
|
- `assist daemon stop` - Stop the sessions daemon; running claude sessions resume on next start
|
|
268
269
|
- `assist daemon restart` - Restart the sessions daemon, resuming previously running claude sessions
|
|
270
|
+
- `assist daemon drain` - Remove all sessions from the local daemon for a clean slate (does not affect the Windows daemon)
|
|
269
271
|
|
|
270
272
|
Web sessions are owned by a long-lived daemon process, not the web server: the server is a thin client that relays WebSocket traffic to the daemon over a local IPC socket (unix domain socket at `~/.assist/daemon/daemon.sock`; named pipe `\\.\pipe\assist-sessions-daemon` on Windows). Restarting the web server leaves sessions running with scrollback intact. The daemon logs to `~/.assist/daemon/daemon.log` (timestamped lines tagged with the daemon's pid, including why it spawned and which sessions it restored) and auto-exits once no sessions remain and no client has been connected for 60 seconds (it is respawned on demand by the web server). Daemon spawning is arbitrated by an `O_EXCL` lockfile so racing clients start at most one daemon; sessions are only restored after the daemon owns the IPC socket, and a daemon that loses ownership of `daemon.pid` shuts down its sessions and exits rather than running orphaned.
|
|
271
273
|
|
package/claude/settings.json
CHANGED