用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/akornmeier/super-looper --skill sl-report-bug命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Compatibility command for the streamlined unattended developer workflow. Plans a software task with sl-plan when needed, then routes execution through sl-run in mode:unattended. Prefer sl-plan followed by sl-run for new workflows.
Run an explicit, non-mutating compatibility diagnostic for the super-looper plugin. Use only when validating a Claude Code or Codex installation, runtime adapter, bundled reference and script resolution, interactive question support, and one-worker subagent dispatch.
Compatibility command for interactive implementation. Plans a software task when needed, then routes canonical Markdown execution through sl-run in mode:interactive. Prefer sl-run directly for new workflows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | sl-report-bug |
| description | Report a bug in the super-looper plugin |
| argument-hint | [optional: brief description of the bug] |
| disable-model-invocation | true |
Report bugs encountered while using the super-looper plugin. This skill gathers structured information and creates a GitHub issue for the maintainer.
Ask the user the following questions using AskUserQuestion (call ToolSearch with select:AskUserQuestion first if its schema isn't loaded). Fall back to numbered options in chat only if it is unavailable or the call errors. Never silently skip the question:
Question 1: Bug Category
Question 2: Specific Component
Question 3: What Happened (Actual Behavior)
Question 4: What Should Have Happened (Expected Behavior)
Question 5: Steps to Reproduce
Question 6: Error Messages
Automatically gather environment details:
OS info:
uname -a
Plugin version: Read the plugin manifest or installed plugin metadata at ~/.claude/plugins/installed_plugins.json.
Agent CLI version:
claude --version
If any of these fail, note "unknown" and continue — do not block the report.
Create a well-structured bug report with:
## Bug Description
**Component:** [Type] - [Name]
**Summary:** [Brief description from argument or collected info]
## Environment
- **Plugin Version:** [from plugin manifest/registry]
- **Agent Platform:** Claude Code
- **Agent Version:** [from CLI version command]
- **OS:** [from uname]
## What Happened
[Actual behavior description]
## Expected Behavior
[Expected behavior description]
## Steps to Reproduce
1. [Step 1]
2. [Step 2]
3. [Step 3]
## Error Messages
[Any error output]
## Additional Context
[Any other relevant information]
---
_Reported via `/sl-report-bug` skill_
Use the GitHub CLI to create the issue:
gh issue create \
--repo akornmeier/super-looper \
--title "[super-looper] Bug: [Brief description]" \
--body "[Formatted bug report from Step 3]" \
--label "bug,super-looper"
Note: If labels don't exist, create without labels:
gh issue create \
--repo akornmeier/super-looper \
--title "[super-looper] Bug: [Brief description]" \
--body "[Formatted bug report]"
After the issue is created:
Bug report submitted successfully!
Issue: https://github.com/akornmeier/super-looper/issues/[NUMBER]
Title: [super-looper] Bug: [description]
Thank you for helping improve the super-looper plugin!
The maintainer will review your report and respond as soon as possible.
gh CLI is not installed or not authenticated: prompt the user to install/authenticate firstThis skill does NOT collect:
Only technical information about the bug is included in the report.