@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.
Files changed (28) hide show
  1. package/README.md +17 -10
  2. package/dist/bin/texra.js +1205 -1766
  3. package/dist/resources/agents/correct.yaml +1 -0
  4. package/dist/resources/agents/merge.yaml +1 -0
  5. package/dist/resources/agents/ocr.yaml +1 -0
  6. package/dist/resources/agents/polish.yaml +4 -3
  7. package/dist/resources/agents/transcribe_audio.yaml +1 -0
  8. package/dist/resources/goal/goal.yaml +26 -0
  9. package/dist/resources/tool_use_agents/assistant.yaml +127 -0
  10. package/dist/resources/tool_use_agents/changeReviewer.yaml +71 -0
  11. package/dist/resources/tool_use_agents/codeReviewer.yaml +58 -0
  12. package/dist/resources/tool_use_agents/codeSimplifier.yaml +65 -0
  13. package/dist/resources/tool_use_agents/coder.yaml +75 -0
  14. package/dist/resources/tool_use_agents/creator.yaml +1 -0
  15. package/dist/resources/tool_use_agents/engineer.yaml +131 -0
  16. package/dist/resources/tool_use_agents/latexDiff.yaml +3 -1
  17. package/dist/resources/tool_use_agents/latexFixer.yaml +8 -2
  18. package/dist/resources/tool_use_agents/lean.yaml +1 -0
  19. package/dist/resources/tool_use_agents/numerics.yaml +1 -0
  20. package/dist/resources/tool_use_agents/presenter.yaml +1 -0
  21. package/dist/resources/tool_use_agents/prover.yaml +90 -0
  22. package/dist/resources/tool_use_agents/research.yaml +2 -4
  23. package/dist/resources/tool_use_agents/review.yaml +5 -2
  24. package/dist/resources/tool_use_agents/setup.yaml +51 -31
  25. package/dist/resources/tool_use_agents/testEngineer.yaml +63 -0
  26. package/package.json +5 -5
  27. package/dist/resources/odyssey/odyssey.yaml +0 -56
  28. package/dist/resources/tool_use_agents/chat.yaml +0 -57
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  [![npm version](https://img.shields.io/npm/v/@texra-ai/cli?label=%40texra-ai%2Fcli)](https://www.npmjs.com/package/@texra-ai/cli)
10
10
  [![CLI downloads](https://img.shields.io/npm/dm/@texra-ai/cli?label=CLI%20downloads)](https://www.npmjs.com/package/@texra-ai/cli)
11
11
 
12
- A LaTeX research assistant for VS Code and the terminal. Multi-agent
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
- Four built-in presets cover the most common research disciplines:
65
+ Five built-in presets cover the most common research disciplines:
63
66
 
64
- | Team | Built for |
65
- | --------------------------- | -------------------------------------------------------------------------------- |
66
- | **Physicist** | Analytical derivations, numerical experiments, literature search, slide drafting |
67
- | **Mathematician** | Proofs, Lean 4 formalization, research, LaTeX correction |
68
- | **Computer Scientist (ML)** | Algorithm design, experiments and ablations, literature, reproducibility |
69
- | **Lean Project** | Mathlib search, tactic simplification, blueprint-driven formalization |
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`, `chat`, `setup`.
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`, `devise`, `apply`, `generic`,
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