@rivet-dev/agentos-toolchain 0.0.0-nathan-agentos-package-resolution.efc374f → 0.2.5-rc.4
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/agentos-toolchain.mjs +7 -0
- package/dist/chunk-YTYFSDXW.js +1135 -0
- package/dist/cli.js +147 -41
- package/dist/index.d.ts +157 -5
- package/dist/index.js +15 -1
- package/package.json +37 -33
- package/LICENSE +0 -191
- package/dist/chunk-7CUVPD4O.js +0 -272
- package/dist/chunk-CSSRRHDX.js +0 -256
- package/dist/chunk-CTAUCHIN.js +0 -243
- package/dist/chunk-K4RHMOJ7.js +0 -282
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Committed bin shim: pnpm links workspace bins at install time and silently
|
|
3
|
+
// skips missing targets, so pointing `bin` at generated dist/cli.js meant a
|
|
4
|
+
// fresh checkout never got the `agentos-toolchain` shim (CI: "agentos-toolchain:
|
|
5
|
+
// not found"). This file always exists; dist/cli.js is built before dependents
|
|
6
|
+
// run via turbo's ^build ordering.
|
|
7
|
+
await import("../dist/cli.js");
|