Review implemented features and suggest new features with GitHub integration
Analyzes implemented features and suggests new ones with GitHub issue creation.
/plugin marketplace add athola/claude-night-market/plugin install imbue@claude-night-marketReview currently implemented features using evidence-based prioritization and suggest new features. Accepted suggestions can be uploaded to GitHub as issues.
# Full review: inventory, score, suggest
/feature-review
# Only inventory current features
/feature-review --inventory
# Generate new feature suggestions
/feature-review --suggest
# Create GitHub issues for accepted suggestions
/feature-review --suggest --create-issues
# Validate configuration file
/feature-review --validate-config
# Override configuration values
/feature-review --threshold.high_priority=3.0
Scan the codebase to discover implemented features:
Classify each feature along two axes:
Type Axis:
Data Axis:
Apply hybrid prioritization scoring:
Score = (Value Score / Cost Score) * Confidence
Value Factors: Reach, Impact, Business Value, Time Criticality Cost Factors: Effort, Risk, Complexity
Thresholds:
Evaluate across nine quality dimensions:
Based on analysis, suggest:
For accepted suggestions:
| Argument | Description |
|---|---|
--inventory | Only run feature discovery, skip scoring |
--suggest | Include new feature suggestions |
--create-issues | Create GitHub issues (requires --suggest) |
--validate-config | Validate configuration file |
--dry-run | Show what would be created without creating |
Create .feature-review.yaml in project root to customize:
See Skill(imbue:feature-review) for full configuration reference.
/feature-review
# Output:
Feature Review Report
=====================
## Inventory (12 features found)
| Feature | Type | Data | Score | Priority |
|---------|------|------|-------|----------|
| skill-loader | Reactive | Static | 2.8 | High |
| auto-complete | Proactive | Dynamic | 2.3 | Medium |
| ...
## Tradeoff Analysis
skill-loader:
Quality: 5/5 | Latency: 4/5 | Token Usage: 3/5
Readability: 4/5 | Integration: 5/5 | API Surface: 5/5
## Suggestions
1. [High] Add caching for skill lookups (Score: 2.6)
2. [Medium] Improve error messages (Score: 1.9)
/feature-review --suggest --create-issues
# Output:
Suggestions ready for GitHub:
1. Add caching for skill lookups
Score: 2.6 | Classification: Proactive/Static
Labels: enhancement, priority/high, type/proactive
Create issue? [y/n]: y
Created: https://github.com/owner/repo/issues/123
This command uses:
Skill(imbue:feature-review) - Core scoring and classificationSkill(imbue:scope-guard) - Budget validation for suggestionsSkill(imbue:review-core) - Evidence-based methodology