@staff0rd/assist 0.169.0 → 0.170.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
@@ -178,7 +178,7 @@ After installation, the `assist` command will be available globally. You can als
178
178
  - `assist voice devices` - List available audio input devices
179
179
  - `assist voice logs [-n <count>]` - Show recent voice daemon log entries
180
180
  - `assist next` - Alias for `backlog next -w`
181
- - `assist draft` - Launch Claude in `/draft` mode, chain into next on `/next` signal
181
+ - `assist draft` (alias: `feat`) - Launch Claude in `/draft` mode, chain into next on `/next` signal
182
182
  - `assist bug` - Launch Claude in `/bug` mode, chain into next on `/next` signal
183
183
  - `assist signal next` - Write a next signal to chain into `assist next`
184
184
 
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.169.0",
9
+ version: "0.170.0",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
@@ -11244,7 +11244,7 @@ registerSeq(program);
11244
11244
  registerTranscript(program);
11245
11245
  registerVoice(program);
11246
11246
  program.command("next").description("Alias for backlog next -w").action(() => next({ allowEdits: true }));
11247
- program.command("draft").description("Launch Claude in /draft mode, chain into next on /next signal").action(() => launchMode("draft"));
11247
+ program.command("draft").alias("feat").description("Launch Claude in /draft mode, chain into next on /next signal").action(() => launchMode("draft"));
11248
11248
  program.command("bug").description("Launch Claude in /bug mode, chain into next on /next signal").action(() => launchMode("bug"));
11249
11249
  var signalCommand = program.command("signal").description("Write an assist signal file");
11250
11250
  signalCommand.command("next").description("Write a next signal to chain into assist next").action(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.169.0",
3
+ "version": "0.170.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {