@macroscope/cli 0.0.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.
- package/README.md +14 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +1473 -0
- package/dist/cli.js.map +1 -0
- package/dist/core/index.d.ts +125 -0
- package/dist/core/index.js +483 -0
- package/dist/core/index.js.map +1 -0
- package/dist/index-BTDioymD.d.ts +177 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/ui/assets/index-ByDfVdzb.css +1 -0
- package/dist/ui/assets/index-D3mfLpRq.js +45 -0
- package/dist/ui/assets/index-D3mfLpRq.js.map +1 -0
- package/dist/ui/index.html +13 -0
- package/package.json +75 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# @macroscope/cli
|
|
2
|
+
|
|
3
|
+
Catalogue tooling for AI-collaborative software development. See repo root for design doc and contributor guide.
|
|
4
|
+
|
|
5
|
+
This package is in **scaffold stage** — the CLI surface exists but commands beyond `--version`, `--help`, and `hello` are not yet implemented.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i -g @macroscope/cli
|
|
11
|
+
macroscope --help
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
The binary command is `macroscope` — the npm package is scoped under `@macroscope` because the unscoped `macroscope` name on npm is taken by an unrelated abandoned package.
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|