Log a feature request for the marketplace (logging only - implementation happens in dedicated sessions)
Logs feature requests to marketplace feedback file for later review
/plugin marketplace add cadrianmae/claude-marketplace/plugin install feedback@cadrianmae-claude-marketplaceIMPORTANT: This command logs feature requests for LATER review and implementation in a dedicated marketplace development session. Do NOT attempt to implement features in this session. You may ask clarifying questions to better understand the request, then log it and continue with the user's current work.
MARKETPLACE_DIR=~/.claude/marketplaces/cadrianmae-claude-marketplace
FEEDBACK_FILE="$MARKETPLACE_DIR/FEEDBACK.md"
DATE=$(date '+%Y-%m-%d')
DESCRIPTION="$1"
# Create file if doesn't exist
if [[ ! -f "$FEEDBACK_FILE" ]]; then
cat > "$FEEDBACK_FILE" << 'EOF'
# Marketplace Feedback
Bugs and feature requests for cadrianmae-claude-marketplace plugins.
## Bugs
## Features
EOF
fi
# Find the Features section and append after it
sed -i "/^## Features$/a - [ ] [$DATE] $DESCRIPTION" "$FEEDBACK_FILE"
Respond with: "Feature request logged to marketplace FEEDBACK.md for later review. Continuing with your current work."
Then return focus to whatever the user was working on before this command.