rrce-workflow 0.2.66 → 0.2.67

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/dist/index.js +7 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3267,6 +3267,11 @@ var init_InstallWizard = __esm({
3267
3267
  const [status, setStatus] = useState3(checkInstallStatus(workspacePath));
3268
3268
  const [message, setMessage] = useState3("");
3269
3269
  const options = [
3270
+ {
3271
+ value: "opencode",
3272
+ label: "OpenCode",
3273
+ hint: status.opencode ? "INSTALLED" : "Not installed"
3274
+ },
3270
3275
  {
3271
3276
  value: "antigravity",
3272
3277
  label: "Antigravity IDE",
@@ -3289,6 +3294,7 @@ var init_InstallWizard = __esm({
3289
3294
  }
3290
3295
  ];
3291
3296
  const initialSelected = [
3297
+ ...status.opencode ? ["opencode"] : [],
3292
3298
  ...status.antigravity ? ["antigravity"] : [],
3293
3299
  ...status.vscodeGlobal ? ["vscode-global"] : [],
3294
3300
  ...status.vscodeWorkspace ? ["vscode-workspace"] : [],
@@ -3347,7 +3353,7 @@ var init_InstallView = __esm({
3347
3353
  const workspacePath = detectWorkspaceRoot();
3348
3354
  return /* @__PURE__ */ jsxs5(Box6, { flexDirection: "column", padding: 1, borderStyle: "round", borderColor: "magenta", flexGrow: 1, children: [
3349
3355
  /* @__PURE__ */ jsx6(Text6, { bold: true, color: "magenta", children: " Installation & Configuration " }),
3350
- /* @__PURE__ */ jsx6(Text6, { color: "dim", children: " Configure IDE integrations for VSCode, Claude, and Antigravity." }),
3356
+ /* @__PURE__ */ jsx6(Text6, { color: "dim", children: " Configure IDE integrations for OpenCode, VSCode, Claude, and Antigravity." }),
3351
3357
  /* @__PURE__ */ jsx6(Box6, { marginTop: 1, flexDirection: "column", children: /* @__PURE__ */ jsx6(
3352
3358
  InstallWizard,
3353
3359
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rrce-workflow",
3
- "version": "0.2.66",
3
+ "version": "0.2.67",
4
4
  "description": "RRCE-Workflow TUI - Agentic code workflow generator for AI-assisted development",
5
5
  "author": "RRCE Team",
6
6
  "license": "MIT",