@nwire/please 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +1 -15
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -35,18 +35,4 @@ please --help
35
35
 
36
36
  ## When to use
37
37
 
38
- Operations work — re-run a stuck workflow, query a projection, kick a one-off action — without writing a script or shelling into a worker. Fits L3 and up.
39
-
40
- ## Used only within nwire-app
41
-
42
- This package is part of the Nwire stack — it only makes sense inside a Nwire application built with `@nwire/app` + `@nwire/forge`. If you're looking for a standalone primitive, see:
43
-
44
- - [`@nwire/handler`](../nwire-handler/README.md) — the operation primitive (transport-agnostic)
45
- - [`@nwire/hooks`](../nwire-hooks/README.md) — universal dispatch (chain + listeners)
46
- - [`@nwire/http`](../nwire-http/README.md) — typed HTTP without forge
47
- - [`@nwire/endpoint`](../nwire-endpoint/README.md) — graceful shutdown for any host
48
-
49
- ## See also
50
-
51
- - [Architecture sketch §05 — Tooling](../../architecture-sketch.html#packages)
52
- - Sibling packages: [@nwire/cli](../nwire-cli), [@nwire/mcp](../nwire-mcp)
38
+ Operations work — re-run a stuck workflow, query a projection, kick a one-off action — without writing a script or shelling into a worker.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nwire/please",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Nwire — operator CLI. runPlease dispatches actions/queries by name across all registered apps; --tenant for tenant scoping; --help lists everything. Scaffolding (make:module / make:action) lands on top.",
5
5
  "keywords": [
6
6
  "ace",
@@ -9,9 +9,11 @@
9
9
  "nwire",
10
10
  "please"
11
11
  ],
12
+ "license": "MIT",
12
13
  "files": [
13
14
  "dist",
14
- "README.md"
15
+ "README.md",
16
+ "LICENSE"
15
17
  ],
16
18
  "type": "module",
17
19
  "main": "./dist/please.js",
@@ -26,7 +28,7 @@
26
28
  "access": "public"
27
29
  },
28
30
  "dependencies": {
29
- "@nwire/forge": "0.7.0"
31
+ "@nwire/forge": "0.7.1"
30
32
  },
31
33
  "devDependencies": {
32
34
  "@types/node": "^22.19.9",