@staff0rd/assist 0.56.0 → 0.56.2

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
@@ -62,7 +62,6 @@ After installation, the `assist` command will be available globally.
62
62
  - `assist config set <key> <value>` - Set a config value (e.g. commit.push true)
63
63
  - `assist config get <key>` - Get a config value
64
64
  - `assist config list` - List all config values
65
- - `assist update` - Update claude-code to the latest version
66
65
  - `assist verify` - Run all verify:* scripts from package.json in parallel
67
66
  - `assist verify init` - Add verify scripts to a project
68
67
  - `assist verify hardcoded-colors` - Check for hardcoded hex colors in src/
@@ -17,6 +17,7 @@
17
17
  "Bash(assist notify:*)",
18
18
  "Bash(assist commit:*)",
19
19
  "Bash(assist devlog:*)",
20
+ "Bash(assist complexity:*)",
20
21
  "Bash(assist refactor:*)",
21
22
  "Bash(assist prs list-comments:*)",
22
23
  "Bash(assist verify:*)",
@@ -24,6 +25,7 @@
24
25
  "Bash(assist backlog start:*)",
25
26
  "Bash(assist backlog done:*)",
26
27
  "Bash(assist transcript summarise:*)",
28
+ "Bash(assist complexity:*)",
27
29
  "Bash(assist transcript format:*)",
28
30
  "Bash(git add:*)",
29
31
  "Bash(git show:*)",
package/dist/index.js CHANGED
@@ -1,13 +1,12 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/index.ts
4
- import { execSync as execSync23 } from "child_process";
5
4
  import { Command } from "commander";
6
5
 
7
6
  // package.json
8
7
  var package_default = {
9
8
  name: "@staff0rd/assist",
10
- version: "0.56.0",
9
+ version: "0.56.2",
11
10
  type: "module",
12
11
  main: "dist/index.js",
13
12
  bin: {
@@ -5064,10 +5063,6 @@ program.name("assist").description("CLI application").version(package_default.ve
5064
5063
  program.command("sync").description("Copy command files to ~/.claude/commands").action(sync);
5065
5064
  program.command("init").description("Initialize VS Code and verify configurations").action(init4);
5066
5065
  program.command("commit <message>").description("Create a git commit with validation").action(commit);
5067
- program.command("update").description("Update claude-code to the latest version").action(() => {
5068
- console.log("Updating claude-code...");
5069
- execSync23("npm install -g @anthropic-ai/claude-code", { stdio: "inherit" });
5070
- });
5071
5066
  var configCommand = program.command("config").description("View and modify assist.yml configuration");
5072
5067
  configCommand.command("set <key> <value>").description("Set a config value (e.g. commit.push true)").action(configSet);
5073
5068
  configCommand.command("get <key>").description("Get a config value").action(configGet);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.56.0",
3
+ "version": "0.56.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {