Manage the OrchestKit feedback system that learns from your usage. Use when providing feedback, reporting issues, suggesting improvements.
View on GitHubyonatangross/skillforge-claude-plugin
ork
January 25, 2026
Select agents to install to:
npx add-skill https://github.com/yonatangross/skillforge-claude-plugin/blob/main/skills/feedback/SKILL.md -a claude-code --skill feedbackInstallation paths:
.claude/skills/feedback/# Feedback - Manage Learning System View and manage the OrchestKit feedback system that learns from your usage. ## Overview - Checking feedback system status - Pausing/resuming learning - Resetting learned patterns - Exporting feedback data - Managing privacy settings - Enabling/disabling anonymous analytics sharing - Viewing privacy policy ## Usage ``` /feedback # Same as status /feedback status # Show current state /feedback pause # Pause learning /feedback resume # Resume learning /feedback reset # Clear learned patterns /feedback export # Export feedback data /feedback settings # Show/edit settings /feedback opt-in # Enable anonymous sharing /feedback opt-out # Disable anonymous sharing /feedback privacy # View privacy policy /feedback export-analytics # Export anonymous analytics for review ``` ## Subcommands ### status (default) Show the current feedback system state. **Output:** ``` Feedback System Status ----------------------------- Learning: Enabled Anonymous sharing: Disabled Data retention: 90 days Learned Patterns: - Auto-approves: npm install, npm test, git push (3 commands) - Code style: async/await preferred, TypeScript strict mode Agent Performance: - backend-architect: 94% success (28 spawns) [improving] - test-generator: 72% success (18 spawns) [declining] Context Savings: ~8k tokens/session (estimated) Storage: .claude/feedback/ (45 KB) ``` ### pause Temporarily pause all learning without clearing data. **Action:** 1. Set `pausedUntil` in preferences to a far future date 2. Confirm to user **Output:** ``` Feedback learning paused Your existing patterns are preserved. Resume with: /feedback resume ``` ### resume Resume paused learning. **Action:** 1. Clear `pausedUntil` in preferences 2. Confirm to user **Output:** ``` Feedback learning resumed The system will continue learning from your usage. ```