@hunsu/bridge 0.1.3 → 0.2.0-next.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 +27 -0
- package/dist/cli.js +155 -69
- package/dist/index.d.ts +114 -1030
- package/dist/index.js +155 -7823
- package/package.json +17 -10
- package/dist/cli.d.ts +0 -2
- package/dist/execute/execute-model.d.ts +0 -50
- package/dist/execute/execute-model.js +0 -17
- package/dist/execute/execute-workflow.d.ts +0 -27
- package/dist/execute/execute-workflow.js +0 -65
- package/dist/execute/execution-plan.d.ts +0 -6
- package/dist/execute/execution-plan.js +0 -337
- package/src/cli.ts +0 -82
- package/src/execute/execute-model.ts +0 -72
- package/src/execute/execute-workflow.ts +0 -115
- package/src/execute/execution-plan.ts +0 -379
- package/src/index.ts +0 -9837
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @hunsu/bridge
|
|
2
|
+
|
|
3
|
+
The headless Hunsu Bridge daemon and its authenticated CLI client.
|
|
4
|
+
|
|
5
|
+
> The headless prerelease is experimental. An exact candidate is published
|
|
6
|
+
> under `candidate-next` and reaches `next` only after registry, service, and
|
|
7
|
+
> production verification.
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npx @hunsu/bridge@next setup
|
|
11
|
+
npx @hunsu/bridge@next status
|
|
12
|
+
npx @hunsu/bridge@next open
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
The installed user service runs an exact package version from `HUNSU_HOME`, not
|
|
16
|
+
from the npm cache. Use `hunsu-bridge dev --port 0` for an isolated foreground
|
|
17
|
+
development daemon.
|
|
18
|
+
|
|
19
|
+
For advanced local package verification only, run setup from an absolute
|
|
20
|
+
tarball path:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
hunsu-bridge setup --runtime-package /absolute/path/hunsu-bridge-0.2.0-next.1.tgz
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
This option rejects URLs, dist-tags, ranges, Git specs, relative paths, and
|
|
27
|
+
packages other than the exact `@hunsu/bridge` candidate.
|