@crewx/workflow 0.3.22-rc.131 → 0.3.22-rc.133

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 +2 -2
  2. package/package.json +4 -4
package/SKILL.md CHANGED
@@ -334,7 +334,7 @@ extract_attachments:
334
334
  | `output_schema` | object | No | Standard JSON Schema 2020-12 for parsed output. |
335
335
  | `output_retry` | integer | No | Retry attempts if JSON parse or schema validation fails. |
336
336
 
337
- `skill_task` uses `CREWX_CLI` (default: `npx crewx`) and executes the equivalent of:
337
+ `skill_task` uses `CREWX_CLI` (default: `crewx`) and executes the equivalent of:
338
338
 
339
339
  ```bash
340
340
  crewx skill <skill> ...args
@@ -681,7 +681,7 @@ Rules:
681
681
  | Variable | Description | Default |
682
682
  |----------|-------------|---------|
683
683
  | `CREWX_WORKSPACE` | Workspace directory (where `workflows/` lives) | `.` |
684
- | `CREWX_CLI` | CrewX CLI path (for `agent_task` and `skill_task`) | `npx crewx` |
684
+ | `CREWX_CLI` | CrewX CLI path (for `agent_task` and `skill_task`) | `crewx` |
685
685
  | `CREWX_WORKFLOW_TIMEOUT` | `agent_task` execution timeout (ms) | `1800000` (30 min) |
686
686
  | `CREWX_WORKFLOW_SHELL` | First safety gate for `shell_task`; must be `1` | unset |
687
687
  | `CREWX_CONFIG` | Custom config file path | `crewx.yaml` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/workflow",
3
- "version": "0.3.22-rc.131",
3
+ "version": "0.3.22-rc.133",
4
4
  "description": "Workflow engine for CrewX - list, show, validate workflows with Mermaid visualization",
5
5
  "type": "commonjs",
6
6
  "main": "dist/src/engine.js",
@@ -58,9 +58,9 @@
58
58
  "dependencies": {
59
59
  "@hyperjump/json-schema": "^1.9.4",
60
60
  "js-yaml": "^4.1.0",
61
- "@crewx/shared": "0.0.6",
62
- "@crewx/sdk": "0.9.0-rc.85",
63
- "@crewx/knowledge-core": "0.1.17-rc.95"
61
+ "@crewx/knowledge-core": "0.1.17-rc.97",
62
+ "@crewx/sdk": "0.9.0-rc.87",
63
+ "@crewx/shared": "0.0.6"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@types/js-yaml": "^4.0.9",