@tridha643/hestia 1.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tridha643/hestia",
3
- "version": "1.2.0",
3
+ "version": "1.3.1",
4
4
  "description": "Per-worktree isolated development stacks for humans and coding agents",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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
@@ -240,7 +250,8 @@ JSON/NDJSON commands.
240
250
  Run `down` before switching or deleting the branch. After deletion, use the
241
251
  recorded project with `hestia down --project <project>`. Docker workloads
242
252
  cannot be stopped individually (`backend-not-stoppable`); proc/Wrangler
243
- workloads can. Named volumes are retained unless `--destroy` is explicit.
253
+ workloads can. Named volumes and project-built images are retained unless
254
+ `--destroy` is explicit (it adds `-v --rmi local`; shared base images stay).
244
255
 
245
256
  ## Stable error remedies
246
257