@texra-ai/cli 0.38.4 → 0.38.5
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 +3 -3
- package/dist/bin/orchestrate-harness.js +38344 -0
- package/dist/bin/texra.js +1144 -1111
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ work — with every change returned as a diff you approve.
|
|
|
19
19
|
# VS Code (or Cursor, Windsurf, Antigravity)
|
|
20
20
|
code --install-extension texra-ai.texra
|
|
21
21
|
|
|
22
|
-
# Terminal — requires Node.js 22
|
|
22
|
+
# Terminal — requires Node.js >=22.9.0
|
|
23
23
|
npm install -g @texra-ai/cli
|
|
24
24
|
```
|
|
25
25
|
|
|
@@ -52,7 +52,7 @@ In the terminal:
|
|
|
52
52
|
```sh
|
|
53
53
|
texra chat # interactive tool-use session
|
|
54
54
|
texra run polish --input paper.tex # one-shot workflow
|
|
55
|
-
texra multi-agent run physicist
|
|
55
|
+
texra multi-agent run physicist --instruction "Check this derivation" # named team
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
Run history and agent settings are shared between both surfaces.
|
|
@@ -112,7 +112,7 @@ In the CLI, export the same variables in your shell and run with
|
|
|
112
112
|
## Requirements
|
|
113
113
|
|
|
114
114
|
- **VS Code 1.105+** (also runs in Cursor, Windsurf, Antigravity), or
|
|
115
|
-
**Node.js 22
|
|
115
|
+
**Node.js >=22.9.0** for the CLI
|
|
116
116
|
- **LaTeX distribution** (TeX Live, MiKTeX, or MacTeX)
|
|
117
117
|
- **Perl** (for `latexindent` and `latexdiff`)
|
|
118
118
|
- Optional: ImageMagick + Ghostscript (for PDF/image processing),
|