@amirhosseinnateghi/vibed-cli 0.1.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 +27 -0
  2. package/dist/index.js +11028 -0
  3. package/package.json +37 -0
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @amirhosseinnateghi/vibed-cli — `vibed`
2
+
3
+ Make it vibed: check, bundle, and publish a project to
4
+ [vibed](../../docs/connector.md) as a single self-contained HTML Experience.
5
+
6
+ ```bash
7
+ vibed check [path] # can this project be vibed? (no network/auth)
8
+ vibed login # authenticate this machine (device flow, browser approve)
9
+ vibed publish [path] # bundle + publish → prints the URL
10
+ vibed whoami | logout
11
+ ```
12
+
13
+ Flags: `--api <url>` (or `VIBED_API`), `--entry <file>`, `--no-build`,
14
+ `--title`, `--caption`, `--category`, `--tags a,b`, `--unlisted`, `--no-remix`,
15
+ `--yes`, `--json`.
16
+
17
+ See [docs/connector.md](../../docs/connector.md) for the full guide (login flow,
18
+ what "vibeable" means, agent/AGENTS.md integration). The bundler reuses
19
+ `@vibed/sandbox` so `vibed check` applies the exact server-side rules.
20
+
21
+ ## Dev
22
+
23
+ ```bash
24
+ pnpm --filter @amirhosseinnateghi/vibed-cli build # → dist/index.js (bundled, standalone)
25
+ pnpm --filter @amirhosseinnateghi/vibed-cli test # bundler unit tests
26
+ pnpm --filter @amirhosseinnateghi/vibed-cli dev -- check ./some-project
27
+ ```