UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

24 lines 1.03 kB
/** * Feedback Command Handler * * Submit a bug report, feature request, or feedback to the AIWG GitHub repository. * Prefills system context automatically (version, OS, Node, provider, frameworks). * * Usage: * aiwg feedback # interactive (if TTY) * aiwg feedback --type bug # skip type selection * aiwg feedback --type feature # feature request * aiwg feedback --type doc # documentation gap * aiwg feedback --title "X" --body "Y" # fully non-interactive * aiwg feedback --no-context # skip attaching system context * * Submission flow: * 1. If `gh` CLI is available → `gh issue create --repo jmagly/aiwg` * 2. Else → open browser with pre-filled GitHub issue URL * 3. If no browser → print the formatted issue body to stdout * * @issue #885 */ import { CommandHandler } from './types.js'; export declare const feedbackHandler: CommandHandler; //# sourceMappingURL=feedback.d.ts.map