@ship-cli/opencode 0.2.2 → 0.2.3

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/package.json +1 -1
  2. package/src/plugin.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ship-cli/opencode",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin for Ship - Linear task management integration",
6
6
  "license": "MIT",
package/src/plugin.ts CHANGED
@@ -1567,7 +1567,7 @@ const actionHandlers: Record<string, ActionHandler> = {
1567
1567
  Effect.gen(function* () {
1568
1568
  const status = yield* ship.getStackStatus(args.workdir);
1569
1569
  if (!status.isRepo) {
1570
- return `Error: ${status.error || "Not a jj repository"}`;
1570
+ return `Error: ${status.error || "Not a jj repository. Run 'jj git init --colocate' to set up jj for stacked changes."}`;
1571
1571
  }
1572
1572
  if (!status.change) {
1573
1573
  return "Error: Could not get current change";