@crewx/notify 0.1.0-rc.57 → 0.1.0-rc.58

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/SKILL.md +3 -3
  2. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -14,8 +14,8 @@ It sends the notification to the server's `POST /api/v1/notifications` endpoint
14
14
  ## Commands
15
15
 
16
16
  ```bash
17
- npx crewx notify "<title>" [--level=info|warning|critical] [--body="..."]
18
- npx crewx notify usage
17
+ crewx notify "<title>" [--level=info|warning|critical] [--body="..."]
18
+ crewx notify usage
19
19
  ```
20
20
 
21
21
  - `title` (required) — Notification title. Passed as a positional argument.
@@ -24,7 +24,7 @@ npx crewx notify usage
24
24
  - `usage` — Prints this `SKILL.md` as-is.
25
25
 
26
26
  ```bash
27
- npx crewx notify "Deploy needs approval" --level=warning --body="Staging is green; confirm prod."
27
+ crewx notify "Deploy needs approval" --level=warning --body="Staging is green; confirm prod."
28
28
  ```
29
29
 
30
30
  ## When To Use
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/notify",
3
- "version": "0.1.0-rc.57",
3
+ "version": "0.1.0-rc.58",
4
4
  "description": "Notification CLI for CrewX agents — POST an in-app notification to the dashboard",
5
5
  "type": "commonjs",
6
6
  "main": "dist/src/engine.js",