mirror of
https://github.com/obra/superpowers.git
synced 2026-09-25 22:09:05 +00:00
[opencode] Windows 11 Git Bash Install #303
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#303
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
Windows 11 Git Bash:
ln -sf ~/.config/opencode/superpowers/.opencode/plugin/superpowers.js ~/.config/opencode/plugin/superpowers.js
To Reproduce
Steps to reproduce the behavior:
ln -sf in Windows 11 Git Bash = cp
import * as skillsCore from '../../lib/skills-core.js';
Logs
Cannot find module '../../lib/skills-core.js
编辑
~/.config/opencode/plugin/superpowers.js文件,将第13行import * as skillsCore from '../../lib/skills-core.js';改成import * as skillsCore from '../superpowers/lib/skills-core.js';保存即可。Edit the file
~/.config/opencode/plugin/superpowers.js, and modify the 13th line toimport * as skillsCore from '../.. /lib/skills-core.js'; Change it to:import * as skillsCore from '../superpowers/lib/skills-core.js'; Just save it.