mirror of
https://github.com/obra/superpowers.git
synced 2026-09-25 22:09:05 +00:00
opencode can't start after install superpowers in win11 #256
Labels
No labels
antigravity
automated-issue-report
brainstorming
bug
claude-code
codex
copilot
cursor
documentation
duplicate
enhancement
factory
gemini-cli
good first issue
help wanted
hermes
hooks
invalid
kiro
needs-categorization
needs-rebase-to-dev-branch
needs-repro-case
new-harness
no-obvious-human-review
opencode
pi
plans
pr-template-rules-ignored
question
skill:brainstorming
skill:diagnosing-superpowers
skill:dispatching-parallel-agents
skill:executing-plans
skill:finishing-a-development-branch
skill:receiving-code-review
skill:requesting-code-review
skills
skill:subagent-driven-development
skill:systematic-debugging
skill:test-driven-development
skill:using-git-worktrees
skill:using-superpowers
skill:verification-before-completion
skill:writing-plans
skill:writing-skills
stale
subagents
tdd
trae
triage
upstream-bug
windows
wontfix
worktrees
No milestone
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
skills/obra-superpowers#256
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Describe the bug
Running opencode only show blank screen after superpowers being installed
To Reproduce
Steps to reproduce the behavior:
Expected behavior
opencode start as normal
Logs
there's no log/
Additional context
nothing
I have met the same issue, I have to remove the superpowers and reinstall the opencode.
I have met the same issue, I have to remove the superpowers and reinstall the opencode.
I have met the same issue, I have to remove the superpowers and reinstall the opencode.
I have met the same issue, I have to remove the superpowers and reinstall the opencode.
I have met the same issue, I have to remove the superpowers and reinstall the opencode.
Me too, my system is Windows 10.
Me too, my system is Windows 10.
Me too, my system is Windows 10.
Me too, my system is Windows 10.
Me too, my system is Windows 10.
@LeeMeo @wxzhuhua
On Windows,
~\.config\opencode\plugin\superpowers.jsis not created as a symbolic link,Open cmd as administrator and run the following command:
mklink %USERPROFILE%\.config\opencode\plugin\superpowers.js %USERPROFILE%\.config\opencode\superpowers\.opencode\plugin\superpowers.js@LeeMeo @wxzhuhua
On Windows,
~\.config\opencode\plugin\superpowers.jsis not created as a symbolic link,Open cmd as administrator and run the following command:
mklink %USERPROFILE%\.config\opencode\plugin\superpowers.js %USERPROFILE%\.config\opencode\superpowers\.opencode\plugin\superpowers.js@LeeMeo @wxzhuhua
On Windows,
~\.config\opencode\plugin\superpowers.jsis not created as a symbolic link,Open cmd as administrator and run the following command:
mklink %USERPROFILE%\.config\opencode\plugin\superpowers.js %USERPROFILE%\.config\opencode\superpowers\.opencode\plugin\superpowers.js@LeeMeo @wxzhuhua
On Windows,
~\.config\opencode\plugin\superpowers.jsis not created as a symbolic link,Open cmd as administrator and run the following command:
mklink %USERPROFILE%\.config\opencode\plugin\superpowers.js %USERPROFILE%\.config\opencode\superpowers\.opencode\plugin\superpowers.js@LeeMeo @wxzhuhua
On Windows,
~\.config\opencode\plugin\superpowers.jsis not created as a symbolic link,Open cmd as administrator and run the following command:
mklink %USERPROFILE%\.config\opencode\plugin\superpowers.js %USERPROFILE%\.config\opencode\superpowers\.opencode\plugin\superpowers.jsIt s OK!
It s OK!
It s OK!
It s OK!
No need administrator
No need administrator
No need administrator
No need administrator
@LilThawg29 works for me, thanks
@LilThawg29 works for me, thanks
@LilThawg29 works for me, thanks
@LilThawg29 works for me, thanks
https://chatgpt.com/share/69686714-8f94-8011-90c5-edc2875cd5df
https://chatgpt.com/share/69686714-8f94-8011-90c5-edc2875cd5df
https://chatgpt.com/share/69686714-8f94-8011-90c5-edc2875cd5df
https://chatgpt.com/share/69686714-8f94-8011-90c5-edc2875cd5df
i still can't start opencode after i restart my fixed opencode,why?
i still can't start opencode after i restart my fixed opencode,why?
i still can't start opencode after i restart my fixed opencode,why?
i still can't start opencode after i restart my fixed opencode,why?
I followed the suggestions from @barhma with a few adjustments for Windows. The manual installation (instructions here) works fine:
1. Clean up and reinstall:
PowerShell
2. Manual Installation:
PowerShell
Create directory and clone repo
Create Symbolic Link
I followed the suggestions from @barhma with a few adjustments for Windows. The manual installation (instructions here) works fine:
1. Clean up and reinstall:
PowerShell
2. Manual Installation:
PowerShell
Create directory and clone repo
Create Symbolic Link
I followed the suggestions from @barhma with a few adjustments for Windows. The manual installation (instructions here) works fine:
1. Clean up and reinstall:
PowerShell
2. Manual Installation:
PowerShell
Create directory and clone repo
Create Symbolic Link
There seems to be a shared root cause across the Windows reports here and in #260 / #273.
In these cases, opencode appears to start with a missing or unresolved plugin entrypoint at:
~/.config/opencode/plugin/superpowers.jsMultiple users have confirmed that manually creating a symlink or junction to:
superpowers/.opencode/plugin/superpowers.jsimmediately restores normal startup, which suggests that opencode’s plugin loader assumes this path exists as an invariant.
On Windows, creation of this link can fail or be skipped depending on environment (shell, permissions, dev mode), leaving opencode to attempt a
require()on a missing file during early startup. Because this happens before logging initializes, the failure manifests as a blank screen with no logs.The reinstall / mklink / junction-based fixes work because they restore this invariant, not because reinstall itself resolves the issue.
A systemic mitigation could be one of:
There seems to be a shared root cause across the Windows reports here and in #260 / #273.
In these cases, opencode appears to start with a missing or unresolved plugin entrypoint at:
~/.config/opencode/plugin/superpowers.jsMultiple users have confirmed that manually creating a symlink or junction to:
superpowers/.opencode/plugin/superpowers.jsimmediately restores normal startup, which suggests that opencode’s plugin loader assumes this path exists as an invariant.
On Windows, creation of this link can fail or be skipped depending on environment (shell, permissions, dev mode), leaving opencode to attempt a
require()on a missing file during early startup. Because this happens before logging initializes, the failure manifests as a blank screen with no logs.The reinstall / mklink / junction-based fixes work because they restore this invariant, not because reinstall itself resolves the issue.
A systemic mitigation could be one of:
Please remember to install the necessary dependency by running the following command in your terminal:
This should be done in the directory located at
~/.config/opencode.For more information, refer to this: https://github.com/obra/superpowers/pull/305
it works