orion-super-agent-dev 0.1.10
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/bin/orion.js +11 -0
- package/out/brains/darwin-arm64/orion-brain +0 -0
- package/out/brains/darwin-x64/orion-brain +0 -0
- package/out/brains/linux-arm64/orion-brain +0 -0
- package/out/brains/linux-x64/orion-brain +0 -0
- package/out/brains/win32-x64/orion-brain.exe +0 -0
- package/out/indexProcessWorker.cjs +7798 -0
- package/out/main.js +99496 -0
- package/out/treesitter/grammars/tree-sitter-go.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter-java.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter-javascript.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter-python.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter-ruby.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter-rust.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter-tsx.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter-typescript.wasm +0 -0
- package/out/treesitter/grammars/tree-sitter.wasm +0 -0
- package/out/worker.js +1968 -0
- package/package.json +26 -0
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orion-super-agent-dev",
|
|
3
|
+
"version": "0.1.10",
|
|
4
|
+
"description": "[dev] Orion \u2014 a terminal AI super-agent, strongest at coding. Local brain, local disk: the agent loop runs on your machine; only the metered model call leaves it.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"orion-dev": "bin/orion.js"
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=20"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"out",
|
|
15
|
+
"bin"
|
|
16
|
+
],
|
|
17
|
+
"keywords": [
|
|
18
|
+
"ai",
|
|
19
|
+
"agent",
|
|
20
|
+
"super-agent",
|
|
21
|
+
"tui",
|
|
22
|
+
"cli",
|
|
23
|
+
"orion"
|
|
24
|
+
],
|
|
25
|
+
"homepage": "https://dev.orion-super-agent.com"
|
|
26
|
+
}
|