@staff0rd/assist 0.86.1 → 0.87.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
@@ -27,7 +27,7 @@ npm run build
27
27
  npm install -g .
28
28
  ```
29
29
 
30
- After installation, the `assist` command will be available globally.
30
+ After installation, the `assist` command will be available globally. You can also use the shorter `ast` alias.
31
31
 
32
32
  ## Claude Commands
33
33
 
package/dist/index.js CHANGED
@@ -6,11 +6,12 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.86.1",
9
+ version: "0.87.0",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
13
- assist: "./dist/index.js"
13
+ assist: "./dist/index.js",
14
+ ast: "./dist/index.js"
14
15
  },
15
16
  files: [
16
17
  "dist",
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.86.1",
3
+ "version": "0.87.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
- "assist": "./dist/index.js"
7
+ "assist": "./dist/index.js",
8
+ "ast": "./dist/index.js"
8
9
  },
9
10
  "files": [
10
11
  "dist",