/feedback
Submit a bug report, feature request, or feedback to the AIWG GitHub repository — prefills system context automatically
$ npx -y skills add jmagly/aiwg --skill feedback --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/feedback
Context preview
The summary Claude sees to decide when to auto-load this skill.
Submit a bug report, feature request, or feedback to the AIWG GitHub repository — prefills system context automatically
SKILL.md
feedback.SKILL.mdnamespace: aiwg
name: feedback
platforms: [all]
description: Submit a bug report, feature request, or feedback to the AIWG GitHub repository — prefills system context automatically
AIWG Feedback
Submit a bug report, feature request, doc gap, or general feedback to the AIWG GitHub repository. System context (version, OS, provider, installed frameworks) is collected and prefilled automatically.
Triggers
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
- "report a bug" → bug report
- "something isn't working" → bug report
- "aiwg is broken" → bug report with doctor output
- "request a feature" → feature request
- "this feature is missing" → feature request
- "docs are wrong" / "doc gap" → documentation issue
- "file an issue" → issue submission (type selection prompt)
- "give feedback about aiwg" → general feedback
Trigger Patterns Reference
| Pattern | Example | Action | |---------|---------|--------| | Bug report | "report a bug with aiwg serve" | `aiwg feedback --type bug` | | Feature request | "request a feature for aiwg" | `aiwg feedback --type feature` | | Doc gap | "the docs for mcp inject are wrong" | `aiwg feedback --type doc` | | General | "I have feedback" | `aiwg feedback` | | With context | "file this as a bug: X" | Extract title/body, run `aiwg feedback --type bug --title "..." --body "..."` |
Behavior
When triggered:
1. **Extract from conversation** (if the user described the issue):
- **Type**: bug | feature | doc | other
- **Title**: short phrase summarizing the issue (max 80 chars)
- **Body**: structured description of what happened, what was expected
2. **Run the appropriate command**:
# Interactive (when type/title/body not clear from context)
aiwg feedback
# With extracted type
aiwg feedback --type bug
# Fully extracted from conversation
aiwg feedback --type bug --title "doctor crashes when .aiwg missing" --body "Running aiwg doctor in a new project with no .aiwg directory causes an unhandled exception..."
# Feature request
aiwg feedback --type feature --title "add --watch flag to aiwg index build" --body "..."
# Doc gap
aiwg feedback --type doc --title "mcp inject workflow not documented" --body "..."
3. **Report the result** — confirm the issue was filed or provide the GitHub URL.
Examples
Example 1: Bug from conversation
**User**: "aiwg doctor crashes when I run it in a new project — there's an unhandled error about missing .aiwg"
**Extraction**:
- Type: bug
- Title: `doctor crashes when .aiwg directory is missing`
- Body: description from user message
**Action**:
aiwg feedback --type bug \
--title "doctor crashes when .aiwg directory is missing" \
--body "Running aiwg doctor in a project with no .aiwg directory causes an unhandled exception. Steps: 1) Create a new empty directory 2) Run aiwg doctor 3) Error occurs."
Example 2: Feature request from conversation
**User**: "I wish aiwg session could pass extra flags directly to the provider binary"
**Extraction**:
- Type: feature
- Title: `aiwg session: pass-through flags to provider binary`
- Body: description from user message
**Action**:
aiwg feedback --type feature \
--title "aiwg session: pass-through flags to provider binary" \
--body "Would be useful to be able to pass provider-specific flags through aiwg session, e.g. aiwg session -- --verbose"
Example 3: Ambiguous — ask
**User**: "I have some feedback"
**Clarification prompt**: "What's the feedback about? (Bug you found, feature you'd like, or something else?)"
Then run interactively:
aiwg feedback
Clarification Prompts
If the user's intent is ambiguous:
- "Is this a bug you found, a feature you'd like, or something else?"
- "Can you describe what you expected vs what happened?"
- "Which aiwg command or feature is this about?"
References
- @$AIWG_ROOT/src/cli/handlers/feedback.ts — Feedback command handler
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference (feedback section)
- GitHub Issues: https://github.com/jmagly/aiwg/issues
Read more
namespace: aiwg name: feedback platforms: [all] description: Submit a bug report, feature request, or feedback to the AIWG GitHub repository — prefills system context automatically
AIWG Feedback
Submit a bug report, feature request, doc gap, or general feedback to the AIWG GitHub repository. System context (version, OS, provider, installed frameworks) is collected and prefilled automatically.
Triggers
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
- "report a bug" → bug report
- "something isn't working" → bug report
- "aiwg is broken" → bug report with doctor output
- "request a feature" → feature request
- "this feature is missing" → feature request
- "docs are wrong" / "doc gap" → documentation issue
- "file an issue" → issue submission (type selection prompt)
- "give feedback about aiwg" → general feedback
Trigger Patterns Reference
| Pattern | Example | Action | |---------|---------|--------| | Bug report | "report a bug with aiwg serve" | `aiwg feedback --type bug` | | Feature request | "request a feature for aiwg" | `aiwg feedback --type feature` | | Doc gap | "the docs for mcp inject are wrong" | `aiwg feedback --type doc` | | General | "I have feedback" | `aiwg feedback` | | With context | "file this as a bug: X" | Extract title/body, run `aiwg feedback --type bug --title "..." --body "..."` |
Behavior
When triggered:
1. **Extract from conversation** (if the user described the issue):
- **Type**: bug | feature | doc | other
- **Title**: short phrase summarizing the issue (max 80 chars)
- **Body**: structured description of what happened, what was expected
2. **Run the appropriate command**:
# Interactive (when type/title/body not clear from context) aiwg feedback # With extracted type aiwg feedback --type bug # Fully extracted from conversation aiwg feedback --type bug --title "doctor crashes when .aiwg missing" --body "Running aiwg doctor in a new project with no .aiwg directory causes an unhandled exception..." # Feature request aiwg feedback --type feature --title "add --watch flag to aiwg index build" --body "..." # Doc gap aiwg feedback --type doc --title "mcp inject workflow not documented" --body "..."
3. **Report the result** — confirm the issue was filed or provide the GitHub URL.
Examples
Example 1: Bug from conversation
**User**: "aiwg doctor crashes when I run it in a new project — there's an unhandled error about missing .aiwg"
**Extraction**:
- Type: bug
- Title: `doctor crashes when .aiwg directory is missing`
- Body: description from user message
**Action**:
aiwg feedback --type bug \ --title "doctor crashes when .aiwg directory is missing" \ --body "Running aiwg doctor in a project with no .aiwg directory causes an unhandled exception. Steps: 1) Create a new empty directory 2) Run aiwg doctor 3) Error occurs."
Example 2: Feature request from conversation
**User**: "I wish aiwg session could pass extra flags directly to the provider binary"
**Extraction**:
- Type: feature
- Title: `aiwg session: pass-through flags to provider binary`
- Body: description from user message
**Action**:
aiwg feedback --type feature \ --title "aiwg session: pass-through flags to provider binary" \ --body "Would be useful to be able to pass provider-specific flags through aiwg session, e.g. aiwg session -- --verbose"
Example 3: Ambiguous — ask
**User**: "I have some feedback"
**Clarification prompt**: "What's the feedback about? (Bug you found, feature you'd like, or something else?)"
Then run interactively:
aiwg feedback
Clarification Prompts
If the user's intent is ambiguous:
- "Is this a bug you found, a feature you'd like, or something else?"
- "Can you describe what you expected vs what happened?"
- "Which aiwg command or feature is this about?"
References
- @$AIWG_ROOT/src/cli/handlers/feedback.ts — Feedback command handler
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference (feedback section)
- GitHub Issues: https://github.com/jmagly/aiwg/issues
Multi-agent AI framework for Claude Code, Copilot, Cursor, Warp, and 6 more platforms 200+ agents, 109+ CLI commands, 400+ deployable agent/skill/command/rule artifacts, 8 core frameworks, 32 addons, and a 40-plugin Claude Code marketplace.
Repo: jmagly/aiwg
Other skills on aiwg.
- /agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Open skill - /agent-loop
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Open skill - /auto-test-execution
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Open skill - /cross-task-learner
Enable agent loops to learn from similar past tasks and share patterns across loops
Open skill - /debug-memory
Query and manage the executable feedback debug memory
Open skill - /execute-feedback
Execute tests on generated code and iterate until passing
Open skill

