@haystackeditor/cli 0.7.1 → 0.7.2
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/dist/utils/skill.js +6 -6
- package/package.json +1 -1
package/dist/utils/skill.js
CHANGED
|
@@ -85,21 +85,21 @@ grep '"name":' .haystack.json
|
|
|
85
85
|
|
|
86
86
|
\`\`\`json
|
|
87
87
|
{
|
|
88
|
-
"name": "
|
|
89
|
-
"description": "Run
|
|
88
|
+
"name": "Backend pipeline - golden input",
|
|
89
|
+
"description": "Run pipeline on known input to verify it works",
|
|
90
90
|
"trigger": "on_change",
|
|
91
|
-
"watch_patterns": ["
|
|
92
|
-
"service": "
|
|
91
|
+
"watch_patterns": ["packages/my-pipeline/src/**"],
|
|
92
|
+
"service": "my-pipeline",
|
|
93
93
|
"type": "backend",
|
|
94
94
|
"steps": [
|
|
95
95
|
{
|
|
96
96
|
"action": "run",
|
|
97
97
|
"command": "pnpm start",
|
|
98
|
-
"env": { "
|
|
98
|
+
"env": { "INPUT_ID": "known-good-input-123" },
|
|
99
99
|
"timeout": 120
|
|
100
100
|
},
|
|
101
101
|
{ "action": "assert_exit_code", "code": 0 },
|
|
102
|
-
{ "action": "assert_output_contains", "pattern": "
|
|
102
|
+
{ "action": "assert_output_contains", "pattern": "Processing complete" }
|
|
103
103
|
]
|
|
104
104
|
}
|
|
105
105
|
\`\`\`
|