@staff0rd/assist 0.56.0 → 0.56.1
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 +0 -1
- package/claude/settings.json +1 -0
- package/dist/index.js +1 -6
- package/package.json +1 -1
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/
|
package/claude/settings.json
CHANGED
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.
|
|
9
|
+
version: "0.56.1",
|
|
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);
|