@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.
@@ -1,5 +1,5 @@
1
1
  <!-- Generated by @oisincoveney/pipeline. -->
2
- <!-- @oisincoveney/pipeline:host=claude; version=1.0.0 -->
2
+ <!-- @oisincoveney/pipeline:host=claude; version=1.0.1 -->
3
3
 
4
4
  ---
5
5
  description: Run the oisin pipeline for a task
package/dist/index.js CHANGED
@@ -182050,11 +182050,11 @@ ${sharedInstructions(args)}
182050
182050
  }
182051
182051
  function codexDefinition() {
182052
182052
  return {
182053
- content: `${header("codex")}---
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
- console.error(err);
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
  }
package/package.json CHANGED
@@ -57,7 +57,7 @@
57
57
  "prepack": "bun run build:cli"
58
58
  },
59
59
  "type": "module",
60
- "version": "1.0.0",
60
+ "version": "1.0.1",
61
61
  "description": "",
62
62
  "main": "index.js",
63
63
  "keywords": [],