@defai.digital/automatosx 8.0.14 → 8.0.15
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/.claude/settings.local.json +2 -1
- package/README.md +20 -40
- package/package.json +8 -8
- package/pnpm-workspace.yaml +0 -2
package/README.md
CHANGED
|
@@ -79,16 +79,16 @@ ax find "getUserById"
|
|
|
79
79
|
ax cli # Launch interactive mode
|
|
80
80
|
ax speckit spec "Build authentication API"
|
|
81
81
|
|
|
82
|
-
# Or use via
|
|
83
|
-
|
|
82
|
+
# Or use via npm script:
|
|
83
|
+
npm run cli -- find "getUserById"
|
|
84
84
|
|
|
85
85
|
# Run tests (745+ tests)
|
|
86
|
-
|
|
86
|
+
npm test
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
### Using the `ax` Command
|
|
90
90
|
|
|
91
|
-
After `
|
|
91
|
+
After `npm install` and `npm run build`, the `ax` binary is automatically linked globally via the `postinstall` script. This means you can use:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
94
|
# These work anywhere on your system:
|
|
@@ -100,19 +100,18 @@ ax cli # Interactive ChatGPT-style mode
|
|
|
100
100
|
|
|
101
101
|
**To unlink** (if you want to remove the global `ax` command):
|
|
102
102
|
```bash
|
|
103
|
-
|
|
103
|
+
npm run unlink
|
|
104
104
|
# Or manually:
|
|
105
|
-
|
|
105
|
+
npm unlink -g @defai.digital/automatosx
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
-
|
|
108
|
+
## 📦 Installation
|
|
109
109
|
|
|
110
|
-
|
|
110
|
+
### For End Users (Recommended)
|
|
111
111
|
|
|
112
|
-
**
|
|
112
|
+
**Install globally with npm**:
|
|
113
113
|
|
|
114
114
|
```bash
|
|
115
|
-
# Install globally with npm (no pnpm needed)
|
|
116
115
|
npm install -g @defai.digital/automatosx
|
|
117
116
|
|
|
118
117
|
# Verify installation
|
|
@@ -123,7 +122,17 @@ ax find "getUserById"
|
|
|
123
122
|
ax cli # Launch interactive mode
|
|
124
123
|
```
|
|
125
124
|
|
|
126
|
-
|
|
125
|
+
### For Developers
|
|
126
|
+
|
|
127
|
+
**Clone and build from source**:
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
git clone https://github.com/defai-digital/automatosx.git
|
|
131
|
+
cd automatosx
|
|
132
|
+
npm install
|
|
133
|
+
npm run build
|
|
134
|
+
npm link
|
|
135
|
+
```
|
|
127
136
|
|
|
128
137
|
### ⚠️ Installation Warnings
|
|
129
138
|
|
|
@@ -141,35 +150,6 @@ WARN Issues with peer dependencies found
|
|
|
141
150
|
|
|
142
151
|
#### pnpm Build Scripts Warning (pnpm v10+ users)
|
|
143
152
|
|
|
144
|
-
If using pnpm v10+, you may see this security warning:
|
|
145
|
-
|
|
146
|
-
```
|
|
147
|
-
╭ Warning ───────────────────────────────────────────────────────────────╮
|
|
148
|
-
│ Ignored build scripts: tree-sitter, better-sqlite3, ... │
|
|
149
|
-
│ Run "pnpm config set enable-pre-post-scripts true" to enable scripts │
|
|
150
|
-
╰────────────────────────────────────────────────────────────────────────╯
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
**This is expected behavior.** pnpm v10+ blocks build scripts by default for security.
|
|
154
|
-
|
|
155
|
-
**Solutions:**
|
|
156
|
-
|
|
157
|
-
**Option 1: Use npm** (recommended for end users):
|
|
158
|
-
```bash
|
|
159
|
-
npm install -g @defai.digital/automatosx
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
**Option 2: Enable pnpm scripts** (for developers):
|
|
163
|
-
```bash
|
|
164
|
-
pnpm config set enable-pre-post-scripts true
|
|
165
|
-
# Then reinstall
|
|
166
|
-
pnpm install
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
Native modules (tree-sitter parsers) will build automatically after enabling scripts.
|
|
170
|
-
|
|
171
|
-
**To suppress all warnings**, copy `.npmrc.example` to `.npmrc`:
|
|
172
|
-
```bash
|
|
173
153
|
cp .npmrc.example .npmrc
|
|
174
154
|
```
|
|
175
155
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/automatosx",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Production-ready code intelligence platform with AI agents, workflow orchestration, interactive CLI, SpecKit generators, and autonomous retry system. 45 languages, 21 AI agents, 745+ tests.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"pnpm": {
|
|
75
75
|
"overrides": {
|
|
76
76
|
"node-gyp": "^10.3.1",
|
|
77
|
-
"tree-sitter": "
|
|
77
|
+
"tree-sitter": "0.22.4",
|
|
78
78
|
"glob": "^11.0.0",
|
|
79
79
|
"rimraf": "^6.0.0",
|
|
80
80
|
"npmlog": "^7.0.0",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"peerDependencyRules": {
|
|
85
85
|
"ignoreMissing": [],
|
|
86
86
|
"allowedVersions": {
|
|
87
|
-
"tree-sitter": "
|
|
87
|
+
"tree-sitter": "0.22.4"
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
},
|
|
@@ -131,9 +131,9 @@
|
|
|
131
131
|
"recharts": "^2.15.4",
|
|
132
132
|
"sqlite-vec": "^0.1.7-alpha.2",
|
|
133
133
|
"sqlite-vss": "^0.1.2",
|
|
134
|
-
"tree-sitter": "
|
|
135
|
-
"tree-sitter-bash": "^0.
|
|
136
|
-
"tree-sitter-c": "^0.
|
|
134
|
+
"tree-sitter": "0.22.4",
|
|
135
|
+
"tree-sitter-bash": "^0.23.3",
|
|
136
|
+
"tree-sitter-c": "^0.23.6",
|
|
137
137
|
"tree-sitter-c-sharp": "^0.21.3",
|
|
138
138
|
"tree-sitter-cpp": "^0.21.0",
|
|
139
139
|
"tree-sitter-csv": "^1.2.0",
|
|
@@ -156,12 +156,12 @@
|
|
|
156
156
|
"tree-sitter-markdown": "^0.7.1",
|
|
157
157
|
"tree-sitter-matlab": "^1.0.17",
|
|
158
158
|
"tree-sitter-objc": "^3.0.2",
|
|
159
|
-
"tree-sitter-ocaml": "^0.
|
|
159
|
+
"tree-sitter-ocaml": "^0.23.2",
|
|
160
160
|
"tree-sitter-php": "^0.23.9",
|
|
161
161
|
"tree-sitter-puppet": "^1.3.0",
|
|
162
162
|
"tree-sitter-python": "^0.21.0",
|
|
163
163
|
"tree-sitter-r": "^0.0.1-security",
|
|
164
|
-
"tree-sitter-regex": "^0.
|
|
164
|
+
"tree-sitter-regex": "^0.24.3",
|
|
165
165
|
"tree-sitter-ruby": "^0.21.0",
|
|
166
166
|
"tree-sitter-rust": "^0.21.0",
|
|
167
167
|
"tree-sitter-scala": "^0.24.0",
|
package/pnpm-workspace.yaml
DELETED