alexandr 0.0.1
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/README.md +13 -0
- package/bin.js +14 -0
- package/package.json +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# alexandr
|
|
2
|
+
|
|
3
|
+
The self-hosted AI workspace runtime — CLI.
|
|
4
|
+
|
|
5
|
+
> **This is a placeholder** reserving the `alexandr` name on npm. The real CLI is on
|
|
6
|
+
> the way: a thin, developer-friendly front door that pulls and boots the alexandr
|
|
7
|
+
> runtime locally via Docker.
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npx alexandr up # pull + boot the runtime locally (coming soon)
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Track progress → https://github.com/alexandrco/alexandr
|
package/bin.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// alexandr — name-reservation placeholder. The real CLI lands soon.
|
|
4
|
+
process.stdout.write(`
|
|
5
|
+
alexandr — self-hosted AI workspace runtime
|
|
6
|
+
|
|
7
|
+
This is a placeholder reserving the "alexandr" command.
|
|
8
|
+
The real CLI is on the way:
|
|
9
|
+
|
|
10
|
+
npx alexandr up # pull + boot the runtime locally (coming soon)
|
|
11
|
+
|
|
12
|
+
Track it → https://github.com/alexandrco/alexandr
|
|
13
|
+
|
|
14
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "alexandr",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "alexandr — the self-hosted AI workspace runtime CLI. Placeholder reserving the name; the real CLI (npx alexandr up → pulls + boots the runtime) is on the way.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"alexandr": "./bin.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=20"
|
|
15
|
+
},
|
|
16
|
+
"license": "UNLICENSED",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/alexandrco/alexandr.git",
|
|
20
|
+
"directory": "tooling/runtime"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/alexandrco/alexandr#readme",
|
|
23
|
+
"keywords": [
|
|
24
|
+
"alexandr",
|
|
25
|
+
"self-host",
|
|
26
|
+
"docker",
|
|
27
|
+
"runtime",
|
|
28
|
+
"ai",
|
|
29
|
+
"workspace"
|
|
30
|
+
]
|
|
31
|
+
}
|