@texra-ai/cli 0.38.6 → 0.38.8
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 +17 -10
- package/dist/bin/texra.js +1205 -1766
- package/dist/resources/agents/correct.yaml +1 -0
- package/dist/resources/agents/merge.yaml +1 -0
- package/dist/resources/agents/ocr.yaml +1 -0
- package/dist/resources/agents/polish.yaml +4 -3
- package/dist/resources/agents/transcribe_audio.yaml +1 -0
- package/dist/resources/goal/goal.yaml +26 -0
- package/dist/resources/tool_use_agents/assistant.yaml +127 -0
- package/dist/resources/tool_use_agents/changeReviewer.yaml +71 -0
- package/dist/resources/tool_use_agents/codeReviewer.yaml +58 -0
- package/dist/resources/tool_use_agents/codeSimplifier.yaml +65 -0
- package/dist/resources/tool_use_agents/coder.yaml +75 -0
- package/dist/resources/tool_use_agents/creator.yaml +1 -0
- package/dist/resources/tool_use_agents/engineer.yaml +131 -0
- package/dist/resources/tool_use_agents/latexDiff.yaml +3 -1
- package/dist/resources/tool_use_agents/latexFixer.yaml +8 -2
- package/dist/resources/tool_use_agents/lean.yaml +1 -0
- package/dist/resources/tool_use_agents/numerics.yaml +1 -0
- package/dist/resources/tool_use_agents/presenter.yaml +1 -0
- package/dist/resources/tool_use_agents/prover.yaml +90 -0
- package/dist/resources/tool_use_agents/research.yaml +2 -4
- package/dist/resources/tool_use_agents/review.yaml +5 -2
- package/dist/resources/tool_use_agents/setup.yaml +51 -31
- package/dist/resources/tool_use_agents/testEngineer.yaml +63 -0
- package/package.json +5 -5
- package/dist/resources/odyssey/odyssey.yaml +0 -56
- package/dist/resources/tool_use_agents/chat.yaml +0 -57
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[](https://www.npmjs.com/package/@texra-ai/cli)
|
|
10
10
|
[](https://www.npmjs.com/package/@texra-ai/cli)
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
An AI theorist for VS Code and the terminal. Multi-agent
|
|
13
13
|
workflows for writing, reviewing, formalizing, and rendering academic
|
|
14
14
|
work — with every change returned as a diff you approve.
|
|
15
15
|
|
|
@@ -21,6 +21,9 @@ code --install-extension texra-ai.texra
|
|
|
21
21
|
|
|
22
22
|
# Terminal — requires Node.js >=22.9.0
|
|
23
23
|
npm install -g @texra-ai/cli
|
|
24
|
+
|
|
25
|
+
# Or via Homebrew (macOS / Linux)
|
|
26
|
+
brew install texra-ai/tap/texra
|
|
24
27
|
```
|
|
25
28
|
|
|
26
29
|
Sign in with GitHub or Google for hosted access (no key management
|
|
@@ -59,14 +62,15 @@ Run history and agent settings are shared between both surfaces.
|
|
|
59
62
|
|
|
60
63
|
## Teams
|
|
61
64
|
|
|
62
|
-
|
|
65
|
+
Five built-in presets cover the most common research disciplines:
|
|
63
66
|
|
|
64
|
-
| Team
|
|
65
|
-
|
|
|
66
|
-
| **Physicist**
|
|
67
|
-
| **Mathematician**
|
|
68
|
-
| **Computer Scientist
|
|
69
|
-
| **Lean Project**
|
|
67
|
+
| Team | Built for |
|
|
68
|
+
| ---------------------- | -------------------------------------------------------------------------------- |
|
|
69
|
+
| **Physicist** | Analytical derivations, numerical experiments, literature search, slide drafting |
|
|
70
|
+
| **Mathematician** | Attacking open problems, proofs, Lean 4 formalization, LaTeX correction |
|
|
71
|
+
| **Computer Scientist** | Algorithm design, code-driven experiments and ablations, tests, literature |
|
|
72
|
+
| **Lean Project** | Mathlib search, tactic simplification, blueprint-driven formalization |
|
|
73
|
+
| **Software Engineer** | An engineer lead delegating implementation, review, debugging, and testing |
|
|
70
74
|
|
|
71
75
|
Pick a team in **Settings → Multi-Agent**, or with `texra multi-agent
|
|
72
76
|
run <preset>`. Or define your own roster in YAML.
|
|
@@ -79,10 +83,13 @@ run <preset>`. Or define your own roster in YAML.
|
|
|
79
83
|
|
|
80
84
|
**Tool-use agents** work conversationally with file, shell, and search
|
|
81
85
|
access: `research`, `numerics`, `review`, `presenter`, `latexFixer`,
|
|
82
|
-
`latexDiff`, `creator`, `lean`, `
|
|
86
|
+
`latexDiff`, `creator`, `lean`, `assistant`, `setup`, plus a
|
|
87
|
+
software-engineering line — `engineer`, `coder`, `codeReviewer`,
|
|
88
|
+
`testEngineer`, `codeSimplifier`.
|
|
83
89
|
|
|
84
90
|
**Hosted specialists** (signed-in users): `orchestrator`, `search`,
|
|
85
|
-
`simplifier`, `criticize`, `
|
|
91
|
+
`simplifier`, `criticize`, `firstread`, `logic`, `notation`, `enhance`,
|
|
92
|
+
`elevate`, `humanize`, `devise`, `apply`, `verifyFix`, `generic`,
|
|
86
93
|
`progressCheck`, and the Lean line — `leanOrchestrator`,
|
|
87
94
|
`leanBlueprint`, `leanSearch`, `leanSimplifier`.
|
|
88
95
|
|