@ouro.bot/cli 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 +6 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # @ouro.bot/cli
2
+
3
+ Alpha bootstrap package for the Ouroboros CLI.
4
+
5
+ ## Usage
6
+
7
+ - `npx @ouro.bot/cli`
8
+ - `ouro`
9
+
10
+ This package currently reserves and establishes the official namespace.
package/bin/ouro.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ const pkg = require('../package.json');
3
+
4
+ console.log(`ouro alpha bootstrap (${pkg.name} ${pkg.version})`);
5
+ console.log('Official CLI namespace is reserved and active.');
6
+ console.log('Runtime UX and full feature surface are shipping next.');
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@ouro.bot/cli",
3
+ "version": "0.0.1-alpha.0",
4
+ "description": "Ouroboros CLI (alpha bootstrap package)",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "ouro": "bin/ouro.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/arimendelow/ouroboros-agent-harness"
19
+ }
20
+ }