@hile/cli 4.0.5 → 4.0.6

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 (2) hide show
  1. package/AI.md +1 -0
  2. package/package.json +5 -5
package/AI.md CHANGED
@@ -336,6 +336,7 @@ Use this recipe when the user wants a new Hile app or template guidance.
336
336
  - Do not assume `@hile/http` Zod validation mutates or coerces `ctx.query`, `ctx.params`, or `ctx.request.body`.
337
337
  - Do not put reusable business logic only in controllers, pages, queue workers, or message handlers.
338
338
  - Do not use old message examples that append a secondary response getter; current request APIs return promises directly.
339
+ - Do not invent service-specific HTTP-in-Micro envelopes or Base64 file bodies; use `@hile/http-over-micro` and its request/response streams.
339
340
  - Do not claim exactly-once delivery or execution from Redis locks, queues, idempotency, or rate limits.
340
341
  - Do not use queue `jobId` as the only side-effect idempotency boundary.
341
342
  - Do not log the entire async context by default.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hile/cli",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -29,12 +29,12 @@
29
29
  "vitest": "^4.0.18"
30
30
  },
31
31
  "dependencies": {
32
- "@hile/bootstrap": "^4.0.1",
33
- "@hile/logger": "^4.0.1",
34
- "@hile/micro": "^4.0.4",
32
+ "@hile/bootstrap": "^4.0.2",
33
+ "@hile/logger": "^4.0.2",
34
+ "@hile/micro": "^4.0.5",
35
35
  "commander": "^14.0.3",
36
36
  "pino-pretty": "^13.1.3",
37
37
  "yaml": "^2.9.0"
38
38
  },
39
- "gitHead": "c89cb395e014c1973dcc0053a533cfea039a91fe"
39
+ "gitHead": "c57b2c5a3c017ae56d4a862a089b2af01368c3ba"
40
40
  }