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/bin/orion.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Orion terminal client entry point. Loads the compiled app (out/main.js).
|
|
3
|
+
// During development run `npm run dev` (tsx) instead.
|
|
4
|
+
import("../out/main.js").catch((err) => {
|
|
5
|
+
// The invoked name, not a hardcoded one: this same shim ships as `orion`, `orion-dev`, and
|
|
6
|
+
// `orion-stage` (one bin file, per-tier package.json bin keys), and an error signed by the
|
|
7
|
+
// wrong tier's name would send the user debugging the wrong install.
|
|
8
|
+
const self = require("path").basename(process.argv[1] || "orion");
|
|
9
|
+
console.error(self + ": failed to start —", err && err.stack ? err.stack : err);
|
|
10
|
+
process.exit(1);
|
|
11
|
+
});
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|