psylch/skill-issue-skill · Archived

skill-issue

Report skill bugs, design flaws, or suggestions to the centralized issue tracker.

First seen Apr 2, 2026

Installation

$ npx skills add psylch/skill-issue-skill --skill skill-issue

Summary

  • Report skill bugs, design flaws, or suggestions to the centralized issue tracker.
  • Use when a skill doesn't work as expected, has a design problem, or could be improved.
  • Triggers: 'report skill issue', 'skill bug', 'skill problem', 'skill-issue', '上报skill问题', 'skill设计问题

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,318 B
  • docs SUMMARY.md 304 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Skill Issue Reporter

Report issues with skills to the centralized tracker at psylch/skill-issues.

When to use

When you encounter a problem while using a skill:

  • The skill's instructions don't match reality (outdated paths, missing tools)
  • The skill's design doesn't fit the actual use case
  • A script or command from the skill fails
  • The skill is missing a capability it should have

Workflow

1. Identify the skill

Auto-detect: look back in your conversation for the most recent Skill tool invocation — its skill parameter is the skill name. If the issue was triggered by a script, check the script path for skills/<name>/.

If auto-detection fails, ask the user or infer from context. The name must match the skill's SKILL.md frontmatter name field (e.g., better-agent-browser, tech-research, ch-project-context).

2. Compose the issue

Write a title and body with whatever context is most useful. You have the richest context right now — include what matters:

  • What you were trying to do
  • What went wrong or felt wrong
  • Relevant error messages, file paths, or commands
  • Your assessment of whether it's a bug, design flaw, or suggestion

No fixed template. Organize the information however makes the problem clearest.

3. Submit

Run this command via Bash:

gh issue create -R psylch/skill-issues \
  --label "skill:<SKILL_NAME>" \
  --title "<TITLE>" \
  --body "$(cat <<'EOF'
<BODY>

---
Source project: <current project name or path>
EOF
)"

Optionally add a type label: --label bug, --label suggestion, or --label design-flaw.

4. Confirm

After creating, note the issue URL in your response so the user (or future CIO session) can find it.

Notes

  • The gh CLI must be authenticated (it almost always is in this environment)
  • Don't worry about duplicate detection — issue volume is low, CIO deduplicates manually
  • Include a "Source project" line at the bottom so CIO knows where to look for context