feedback-plugin/skills/feedback-session/SKILL.md
Analyze session for skill feedback and create GitHub issues. Use when a skill gave wrong guidance, a command failed, you found a better pattern, or a skill worked well.
npx skillsauth add laurigates/claude-plugins feedback-sessionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze the current session for skill feedback and create GitHub issues to track bugs, enhancements, and positive patterns.
| Use this skill when... | Use alternative when... |
|------------------------|------------------------|
| A skill gave wrong or outdated guidance | Want to update skills directly -> /project:distill |
| A command failed due to skill advice | Need static skill quality analysis -> /health:audit |
| Discovered a better flag or pattern | Want to capture general learnings -> /project:distill |
| A skill worked particularly well | Want to track command usage stats -> /analytics-report |
| End of session, want to file feedback | Need to fix a skill right now -> edit the SKILL.md directly |
| Feedback is about the plugin itself | Use --target-repo laurigates/claude-plugins to file against the plugin source |
IaC-managed labels: Some repositories manage GitHub labels declaratively via Terraform, Pulumi, or similar tools. In these repos, gh label create will either be forbidden or cause drift that the IaC tool destroys on the next apply. This skill detects this case and offers a graceful fallback (see Step 1).
Default target repo: By default, this skill files issues against the repository in the current working directory. If you are giving feedback about a plugin skill itself rather than the application code in the session, use --target-repo <owner/repo> to point at the plugin source repo.
Dominant-source mismatch: When the cwd has a git remote but the session's tool calls were dominated by a different plugin/source repo, this skill detects the mismatch and asks you to confirm which repo to file against — the cwd repo or the plugin source. See Step 1a for the full four-combination decision table.
Git remote and target-repo detection happens during Step 1a (execution), not
in this Context block. git remote -v and gh repo view both write to
stderr when invoked outside a git repository — and stderr from a Context
backtick aborts the skill before its body runs. 2>/dev/null and || are
also blocked in Context commands (see .claude/rules/agentic-permissions.md),
so there is no fallback form that survives the no-git case. Step 1a's
dominant-source scan runs for both the cwd-with-remote and the no-remote
cases, and surfaces a mismatch-confirmation prompt when the session's plugin
activity points to a different repo than the cwd remote.
Open feedback issues are fetched during Step 3 (deduplication), scoped to the
resolved $TARGET_REPO. They are not pre-fetched in context because
gh issue list without -R requires a configured remote and fails with
"no git remotes found" in repos that lack one.
Parse these from $ARGUMENTS:
| Parameter | Description |
|-----------|-------------|
| --dry-run | Show findings without creating issues |
| --bugs-only | Only report bugs (wrong/outdated guidance) |
| --enhancements-only | Only report enhancement opportunities |
| --positive-only | Only report positive feedback |
| --target-repo <owner/repo> | File issues against this repo instead of the cwd repo |
| -R <owner/repo> | Alias for --target-repo |
| [plugin-name] | Scope analysis to a specific plugin |
After parsing, set $TARGET_REPO to the value of --target-repo/-R if provided. Append -R $TARGET_REPO to all gh commands below when $TARGET_REPO is set.
Execute this session feedback workflow:
1a. Determine target repo
Use this four-combination decision table to resolve $TARGET_REPO:
| --target-repo set? | cwd has remote? | Dominant source found? | Action |
|----------------------|-----------------|------------------------|--------|
| Yes | any | any | Use --target-repo value. Done. |
| No | No | Yes (≥70%, ≥3 refs) | Prompt: accept dominant source or enter free-text. |
| No | No | No | Prompt: free-text entry or abort. |
| No | Yes | Agrees with cwd remote | Use cwd remote silently. |
| No | Yes | Differs from cwd remote | Prompt: offer dominant source AND cwd remote as named choices. |
Execute the steps below to implement this table.
Step A: Check for explicit --target-repo / -R.
If --target-repo or -R was passed in $ARGUMENTS, set $TARGET_REPO to that value and append -R $TARGET_REPO to every gh command in the remaining steps. Skip the rest of this sub-step.
Step B: Run the dominant-source scan (always).
Walk the conversation transcript and tool-call history collecting every reference of the form <plugin>:<skill> (skill invocations like /blueprint:init, agent IDs like agents-plugin:security-audit, and plugin names mentioned in skill bodies). For each match, look up the owning <owner>/<repo> by enumerating directories under ~/.claude/plugins/cache/<owner>/<repo>/ and matching <plugin> against the cached plugin manifests. Tally references per <owner>/<repo>.
Compute the share per entry. If the top entry accounts for more than ~70% of total references and there are at least 3 references in total, treat it as dominant: record $SUGGESTED_REPO and $N.
Step C: Attempt cwd remote detection.
Run gh repo view --json nameWithOwner -q '.nameWithOwner'. If it succeeds, record the result as $CWD_REPO.
Step D: Branch on the combination.
No $CWD_REPO and no dominant source — Use AskUserQuestion to ask the user to enter an owner/repo free-text. Validate against ^[A-Za-z0-9_.-]+/[A-Za-z0-9_.-]+$, set $TARGET_REPO, and continue to Step 1b. If the user declines, exit the skill.
No $CWD_REPO and dominant source found — Use AskUserQuestion to ask:
No git remote found. Suggested target:
$SUGGESTED_REPO(derived from $N plugin skills referenced this session). Accept, or enter a differentowner/repo?
Options:
$SUGGESTED_REPO — set $TARGET_REPO to the suggestion and append -R $TARGET_REPO to every remaining gh command.owner/repo — free-text follow-up; validate and set $TARGET_REPO.Continue to Step 1b once $TARGET_REPO is set.
$CWD_REPO present, no dominant source OR dominant source == $CWD_REPO — use $CWD_REPO silently as the implicit target (gh defaults to cwd; no -R needed). Continue to Step 1b.
$CWD_REPO present AND dominant source differs from $CWD_REPO — the session's plugin activity pointed mostly at a different repo than the cwd remote. Use AskUserQuestion to ask:
Mismatch detected. The session's tool calls were dominated by
$SUGGESTED_REPO($N references), but the current directory's git remote points to$CWD_REPO. Which repo should receive the feedback?
Options:
$SUGGESTED_REPO (plugin/skill source — dominant this session) — set $TARGET_REPO to $SUGGESTED_REPO and append -R $TARGET_REPO to all remaining gh commands.$CWD_REPO (cwd git remote — the application repo) — use $CWD_REPO silently (no -R needed).owner/repo — free-text follow-up; validate and set $TARGET_REPO.Continue to Step 1b once the choice is resolved.
The thresholds and prompt order above are deliberate. Keep them aligned when editing this step.
| Parameter | Value | Why |
|-----------|-------|-----|
| Dominance threshold | > 70% of total references | Lower thresholds risk wrong defaults on mixed sessions; higher would suppress correct suggestions on small ones |
| Minimum sample size | ≥ 3 references | Two references can both come from one stray skill mention; three is the smallest sample that survives one outlier |
| Prompt tiering | suggestion → free-text → abort | The user can correct a wrong guess in one keystroke without redoing the scan, and Abort is always one selection away |
| Mismatch prompt | named choices (dominant / cwd / free-text / abort) | Both repos are plausible; naming them saves the user a copy-paste and makes the choice explicit |
Evidence: issue #1207 (positive feedback) reported the first end-to-end exercise of this fallback in a no-remote cwd. The 3/3 100%-dominant case auto-suggested laurigates/claude-plugins, the user accepted on the first prompt, and the free-text tier never fired — confirming the "Recommended" affordance lands the suggestion cleanly when the heuristic is well-tuned. Issue #1425 extended the dominant-source scan to the cwd-with-remote branch so the mismatch is surfaced rather than silently dropped.
Bonus / future work: when
$SUGGESTED_REPOis also cloned at~/.claude/plugins/cache/<owner>/<repo>/<version>/, that path could be used by Step 1b'slabels.tf/labels.yamlGlob detection instead of cwd, so IaC-managed labels are detected correctly even when the skill runs outside the plugin checkout. This Step 1b plumbing is intentionally out of scope for this PR — track as a separate issue. For now, Step 1b continues to scan the cwd.
1b. Check whether labels are IaC-managed
Run: gh label list -R $TARGET_REPO --json name,description --jq '.[].description' (omit -R if no explicit target).
Scan the output for IaC indicators in any label description:
terraform, pulumi, cdk, managed by, do not create, iac, infrastructureAlso check for labels.tf in the cwd: look for files matching **/labels.tf or **/labels.yaml patterns using Glob.
If IaC indicators are found or labels.tf / labels.yaml exist in the working tree:
Display a warning:
⚠ IaC-managed labels detected in <repo>.
The `session-feedback` and `positive-feedback` labels cannot be created
via `gh label create` — they are managed declaratively and creating them
out-of-band would cause drift.
Use AskUserQuestion to ask: How would you like to proceed? Options:
bug/enhancement labels; add the two labels to your IaC definition to backfill.owner/repo where you can create labels freely (e.g. laurigates/claude-plugins).If user chooses option 2, set $TARGET_REPO to their input and re-run step 1b for the new repo.
If user chooses option 3, exit.
If user chooses option 1, set $SKIP_SESSION_LABELS=true and continue.
1c. Create missing labels (only when not IaC-managed)
Skip this step if $SKIP_SESSION_LABELS=true.
session-feedback exists: gh label list --json name --jq '.[].name' | grep -q session-feedbackgh label create session-feedback --description "Feedback from session analysis" --color "d876e3"positive-feedback exists similarly.gh label create positive-feedback --description "Skills that worked well" --color "0e8a16"Review the entire conversation for feedback signals. Look for these categories:
Bugs (label: session-feedback, bug):
Enhancements (label: session-feedback, enhancement):
Positive (label: positive-feedback):
For each finding, record:
Filter by $ARGUMENTS:
--bugs-only: only report bugs--enhancements-only: only report enhancements--positive-only: only report positive feedback[plugin-name] specified: only report for that pluginFor each finding, search for existing issues in $TARGET_REPO:
gh issue list --label session-feedback --search "<skill-name> <key-phrase>" --json number,title --jq '.[].title'
Skip findings that match an existing open issue title. Note skipped items for the summary.
If $SKIP_SESSION_LABELS=true, search without labels: gh issue list --search "feedback(<plugin>)" --json number,title --jq '.[].title'
Use AskUserQuestion to present categorized findings. Group by category:
Format each finding as:
[BUG] plugin-name/skill-name: brief description
[ENH] plugin-name/skill-name: brief description
[POS] plugin-name/skill-name: brief description
Let the user select which findings to file as issues (use multiSelect).
If --dry-run, present findings and stop here.
Auto mode does not skip this step. Filing a GitHub issue is not reversible via git restore — closing an issue leaves noise in the issue tracker and notifies subscribers. Always confirm the selection set before Step 5, regardless of mode. To skip the prompt entirely, the user can pass --dry-run and re-run after reviewing.
In plan mode: neither AskUserQuestion nor the subsequent gh issue create call is permitted — the harness disallows non-readonly tool calls except writes to the active plan file. Write the categorized findings to the active plan file as a single coherent block (one section per finding with category, plugin/skill, description, evidence, and proposed title/body), then call ExitPlanMode to surface for user approval. Do not file issues directly. After the user approves the plan, fall back to the default flow: present the selection prompt via AskUserQuestion (Step 4) and create the approved issues (Step 5). The --dry-run flag remains the fastest way to preview findings without entering plan mode.
For each approved finding, create a GitHub issue in $TARGET_REPO:
Title format: feedback(<plugin-name>): <description>
Labels (when not $SKIP_SESSION_LABELS):
session-feedback, bugsession-feedback, enhancementpositive-feedbackLabels (when $SKIP_SESSION_LABELS=true):
bugenhancement--label flag)Body template:
## Skill
`<plugin-name>/skills/<skill-name>/SKILL.md`
## Category
<Bug | Enhancement | Positive feedback>
## Description
<What happened during the session>
## Evidence
<Specific interaction, error message, or successful outcome>
## Suggested Action
<What should change in the skill, or what should be preserved>
Create each issue:
gh issue create --title "feedback(<plugin>): <desc>" --label "<labels>" --body "<body>"
Append -R $TARGET_REPO when set. Omit --label if no labels apply (positive + $SKIP_SESSION_LABELS).
Print a summary:
| Metric | Count | |--------|-------| | Findings identified | N | | Duplicates skipped | N | | Issues created | N | | Skipped by user | N |
List created issue numbers with links. If $SKIP_SESSION_LABELS=true, remind the user to add session-feedback and positive-feedback to their IaC label definition.
| Context | Command |
|---------|---------|
| List feedback issues | gh issue list --label session-feedback --json number,title,labels -q '.[]' |
| Search for duplicates | gh issue list --label session-feedback --search "keyword" --json title -q '.[].title' |
| Detect IaC label signals | gh label list --json name,description --jq '.[].description' |
| Check label exists | gh label list --json name -q '.[].name' |
| Create label | gh label create name --description "desc" --color "hex" |
| Create issue (with target) | gh issue create -R owner/repo --title "t" --label "l1,l2" --body "b" |
| Create issue (no labels) | gh issue create -R owner/repo --title "t" --body "b" |
| Infer current repo | gh repo view --json nameWithOwner -q '.nameWithOwner' |
| Flag | Description |
|------|-------------|
| --dry-run | Show findings without creating issues |
| --bugs-only | Only bug reports |
| --enhancements-only | Only enhancement suggestions |
| --positive-only | Only positive feedback |
| --target-repo <owner/repo> | File issues against a different repo (e.g. plugin source) |
| -R <owner/repo> | Alias for --target-repo |
| [plugin-name] | Scope to specific plugin |
tools
Scaffold a new ComfyUI custom-node repo (pyproject, CI, release-please, vitest+pytest, JS extension skeleton) in the picker/gesture vein. Use when bootstrapping or init-ing a comfyui node pack.
tools
Orchestrate a ComfyUI node pack from idea to registry: scaffold, create + seed the repo, open the gitops adoption PR. Use when releasing or spinning up a new comfyui node pack.
testing
macOS EndpointSecurity/EDR high CPU & battery drain. Use when Kandji ESF / XProtect pegs a core; trace the exec storm via powermetrics + eslogger.
development
odiff pixel-by-pixel image diffing. Use when comparing screenshots, detecting visual regressions, diffing before/after PNGs, asserting golden images.