@tridha643/hestia 1.3.0 → 1.3.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/dist/assets/portless/dist/cli.js +4 -3
- package/dist/assets/portless/hestia-hardening.patch +7 -6
- package/dist/assets/portless/provenance.json +1 -1
- package/dist/cli.js +925 -369
- package/dist/cli.js.map +30 -26
- package/dist/daemon.js +621 -222
- package/dist/daemon.js.map +20 -18
- package/package.json +1 -1
- package/skills/hestia/SKILL.md +10 -0
package/package.json
CHANGED
package/skills/hestia/SKILL.md
CHANGED
|
@@ -46,6 +46,16 @@ at `~/.hestia/repositories/<repoId>.toml`, optional committed `hestia.toml`,
|
|
|
46
46
|
then automatic discovery. Conflicts fail rather than silently overriding a
|
|
47
47
|
workload source. `.hestia/` must remain ignored.
|
|
48
48
|
|
|
49
|
+
Configured proc and Wrangler workloads may declare environment values. Literal
|
|
50
|
+
`${endpoint:<alias>.host}`, `${endpoint:<alias>.port}`, and
|
|
51
|
+
`${endpoint:<alias>.url}` references resolve only after the producing workload
|
|
52
|
+
is ready, while `{port}` resolves to the receiving process's own assigned
|
|
53
|
+
port. A value shaped as `{ file = ".hestia/..." }` reads ignored local
|
|
54
|
+
material into memory; Hestia refuses file inputs outside `.hestia/` and never
|
|
55
|
+
persists their contents. Use `cwd` to select a package-local `.env.schema`,
|
|
56
|
+
`varlock = true` to compose that package's resolver, and `health_path` when
|
|
57
|
+
port ownership alone doesn't prove that the application compiled successfully.
|
|
58
|
+
|
|
49
59
|
## Run and consume structured endpoints
|
|
50
60
|
|
|
51
61
|
```bash
|