ouro.bot 0.0.1-alpha.0

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 (3) hide show
  1. package/README.md +10 -0
  2. package/bin/ouro.js +15 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # ouro.bot
2
+
3
+ Friendly first-use entrypoint for Ouroboros CLI.
4
+
5
+ ## Usage
6
+
7
+ - `npx ouro.bot`
8
+ - `ouro`
9
+
10
+ This package delegates execution to `@ouro.bot/cli`.
package/bin/ouro.js ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env node
2
+ const { spawnSync } = require('node:child_process');
3
+ const path = require('node:path');
4
+
5
+ const cliPath = path.join(__dirname, '..', 'node_modules', '@ouro.bot', 'cli', 'bin', 'ouro.js');
6
+ const result = spawnSync(process.execPath, [cliPath, ...process.argv.slice(2)], {
7
+ stdio: 'inherit'
8
+ });
9
+
10
+ if (result.error) {
11
+ console.error(`Failed to launch @ouro.bot/cli: ${result.error.message}`);
12
+ process.exit(1);
13
+ }
14
+
15
+ process.exit(result.status == null ? 1 : result.status);
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "ouro.bot",
3
+ "version": "0.0.1-alpha.0",
4
+ "description": "Ouro CLI first-use wrapper",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "ouro": "bin/ouro.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ],
13
+ "dependencies": {
14
+ "@ouro.bot/cli": "0.0.1-alpha.0"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/arimendelow/ouroboros-agent-harness"
19
+ }
20
+ }