ouro.bot 0.1.0-alpha.1 → 0.1.0-alpha.3

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 (2) hide show
  1. package/index.js +2 -15
  2. package/package.json +7 -4
package/index.js CHANGED
@@ -1,16 +1,3 @@
1
1
  #!/usr/bin/env node
2
- // Thin wrapper: delegates to @ouro.bot/cli
3
- const path = require("path");
4
- const { execFileSync } = require("child_process");
5
- const entry = path.join(
6
- path.dirname(require.resolve("@ouro.bot/cli/package.json")),
7
- "dist",
8
- "heart",
9
- "daemon",
10
- "ouro-bot-entry.js"
11
- );
12
- try {
13
- execFileSync("node", [entry, ...process.argv.slice(2)], { stdio: "inherit" });
14
- } catch (err) {
15
- process.exit(err.status || 1);
16
- }
2
+ const { runOuroCli } = require("@ouro.bot/cli/runOuroCli");
3
+ runOuroCli(process.argv.slice(2));
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "ouro.bot",
3
- "version": "0.1.0-alpha.1",
4
- "description": "First-run wrapper for Ouroboros agent harness. Delegates to @ouro.bot/cli.",
3
+ "version": "0.1.0-alpha.3",
4
+ "description": "npx-friendly wrapper for @ouro.bot/cli",
5
5
  "bin": {
6
6
  "ouro.bot": "index.js"
7
7
  },
8
8
  "dependencies": {
9
- "@ouro.bot/cli": "0.1.0-alpha.1"
9
+ "@ouro.bot/cli": "*"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/ouroborosbot/ouroboros.git"
10
14
  },
11
- "keywords": ["ouroboros", "agent", "ai", "cli"],
12
15
  "license": "MIT"
13
16
  }