@oisincoveney/pipeline 1.0.0 → 1.0.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.
- package/.claude/commands/work-next.md +1 -1
- package/dist/index.js +10 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -182050,11 +182050,11 @@ ${sharedInstructions(args)}
|
|
|
182050
182050
|
}
|
|
182051
182051
|
function codexDefinition() {
|
|
182052
182052
|
return {
|
|
182053
|
-
content:
|
|
182053
|
+
content: `---
|
|
182054
182054
|
description: Run the installed oisin pipeline CLI for a task. Use when the user asks to run work-next or the oisin pipeline.
|
|
182055
182055
|
---
|
|
182056
182056
|
|
|
182057
|
-
Codex currently does not support project-defined custom slash commands. Use this skill with:
|
|
182057
|
+
${header("codex")}Codex currently does not support project-defined custom slash commands. Use this skill with:
|
|
182058
182058
|
|
|
182059
182059
|
\`\`\`
|
|
182060
182060
|
/use work-next <ticket id or task description>
|
|
@@ -189832,7 +189832,14 @@ function isCliEntrypoint(argv) {
|
|
|
189832
189832
|
}
|
|
189833
189833
|
if (isCliEntrypoint(process.argv)) {
|
|
189834
189834
|
runCli(process.argv).catch((err) => {
|
|
189835
|
-
|
|
189835
|
+
if (err instanceof CommanderError) {
|
|
189836
|
+
process.exit(err.exitCode);
|
|
189837
|
+
}
|
|
189838
|
+
if (err instanceof Error) {
|
|
189839
|
+
console.error(err.message);
|
|
189840
|
+
process.exit(1);
|
|
189841
|
+
}
|
|
189842
|
+
console.error(String(err));
|
|
189836
189843
|
process.exit(1);
|
|
189837
189844
|
});
|
|
189838
189845
|
}
|