원클릭으로
sharing-skills
Contribute skills back to upstream via branch and PR
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Contribute skills back to upstream via branch and PR
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Designed to assist users with ADHD (Attention Deficit Hyperactivity Disorder) by mitigating task paralysis, managing distractions, providing dopamine-driven progress tracking, and using executive-friendly visual formatting. Triggered by keywords or topics: - Focus/Distraction: "adhd", "fokus", "distracted", "gampang bosan", "pecah fokus", "distraksi", "sulit konsentrasi". - Task Initiation/Paralysis: "bingung mulai", "task paralysis", "mager", "banyak tugas", "tumpuk", "stuck", "overwhelmed". - Motivation/Rewards: "dopamine", "reward", "game", "poin", "xp", "checkpoint". - Formats: "bionic reading", "visual salience", "micro-step", "body double".
Execute detailed plans in batches with review checkpoints
Prevent task duplication, file conflicts, and coordination failures when multiple subagents work in parallel on the same Superagent project. Covers both Superagent→Subagent coordination and Master Agent→Superagent worktree coordination. Uses manage_plan and manage_tasks as the coordination hub.
Execute implementation plan by dispatching fresh subagent for each task, with code review between tasks
Create isolated git worktrees with smart directory selection and safety verification
Triggered when the agent needs to audit, discover, and resolve missing features, architectural or functional gaps, performance/process bottlenecks, and structural complexity liabilities across a codebase, delivering lean and pragmatic improvement blueprints.
| name | Sharing Skills |
| description | Contribute skills back to upstream via branch and PR |
| when_to_use | when you've developed a broadly useful skill and want to contribute it upstream via pull request |
| version | 2.1.0 |
| languages | bash |
Contribute skills from your local branch back to the upstream repository.
Workflow: Branch → Edit/Create skill → Commit → Push → PR
Share when:
Keep personal when:
gh CLI installed and authenticated~/.config/superpowers/skills/ (your local clone)cd ~/.config/superpowers/skills/
git checkout main
git pull upstream main
git push origin main # Push to your fork
# Branch name: add-skillname-skill
skill_name="your-skill-name"
git checkout -b "add-${skill_name}-skill"
# Work on your skill in skills/
# Create new skill or edit existing one
# Skill should be in skills/category/skill-name/SKILL.md
# Add and commit
git add skills/your-skill-name/
git commit -m "Add ${skill_name} skill
$(cat <<'EOF'
Brief description of what this skill does and why it's useful.
Tested with: [describe testing approach]
EOF
)"
git push -u origin "add-${skill_name}-skill"
# Create PR to upstream using gh CLI
gh pr create \
--repo upstream-org/upstream-repo \
--title "Add ${skill_name} skill" \
--body "$(cat <<'EOF'
## Summary
Brief description of the skill and what problem it solves.
## Testing
Describe how you tested this skill (pressure scenarios, baseline tests, etc.).
## Context
Any additional context about why this skill is needed and how it should be used.
EOF
)"
Here's a complete example of sharing a skill called "async-patterns":
# 1. Sync with upstream
cd ~/.config/superpowers/skills/
git checkout main
git pull upstream main
git push origin main
# 2. Create branch
git checkout -b "add-async-patterns-skill"
# 3. Create/edit the skill
# (Work on skills/async-patterns/SKILL.md)
# 4. Commit
git add skills/async-patterns/
git commit -m "Add async-patterns skill
Patterns for handling asynchronous operations in tests and application code.
Tested with: Multiple pressure scenarios testing agent compliance."
# 5. Push
git push -u origin "add-async-patterns-skill"
# 6. Create PR
gh pr create \
--repo upstream-org/upstream-repo \
--title "Add async-patterns skill" \
--body "## Summary
Patterns for handling asynchronous operations correctly in tests and application code.
## Testing
Tested with multiple application scenarios. Agents successfully apply patterns to new code.
## Context
Addresses common async pitfalls like race conditions, improper error handling, and timing issues."
Once your PR is merged:
cd ~/.config/superpowers/skills/
git checkout main
git pull upstream main
git push origin main
git branch -d "add-${skill_name}-skill"
git push origin --delete "add-${skill_name}-skill"
"gh: command not found"
gh auth login"Permission denied (publickey)"
gh auth status"Skill already exists"
PR merge conflicts
git fetch upstream && git rebase upstream/maingit push -f origin your-branchDo NOT batch multiple skills in one PR.
Each skill should:
Why? Individual skills can be reviewed, iterated, and merged independently.