Configure review system settings including retention period, auto-purging, and storage paths.
Configures review system settings including retention period, auto-purging, and storage paths.
/plugin marketplace add conduit-ui/review/plugin install review@conduit-ui-marketplaceConfigure review system settings including retention period, auto-purging, and storage paths.
/review-config # Interactive configuration wizard
/review-config view # Show current settings
/review-config set REVIEW_RETENTION_DAYS 45 # Update specific setting
/review-config reset # Restore defaults
/review-config show-schedule # Show next maintenance schedule
Interactive Mode (/review-config)
.envView Mode (/review-config view)
Set Mode (/review-config set KEY VALUE)
Reset Mode (/configure reset)
.envExample:
/configure set REVIEW_RETENTION_DAYS 45
# Reviews will be kept for 45 days before auto-delete
Example:
/configure set AUTO_PURGE_ENABLED false
# Reviews will NOT be automatically deleted
Example:
/configure set PATTERN_INDEX_PATH /shared/patterns
# Store patterns in shared location for team access
Example:
/configure set LOG_LEVEL debug
# More detailed logging for troubleshooting
$ /configure
Review System Configuration Wizard
No .env file found. Creating with defaults...
Current Settings:
├── Retention Period: 30 days
├── Auto Purge: Enabled
├── Pattern Index: ./.claude/reviews/patterns
└── Log Level: info
Modify settings? (Enter to accept defaults):
REVIEW_RETENTION_DAYS [30]: 45
AUTO_PURGE_ENABLED [true]:
PATTERN_INDEX_PATH [./.claude/reviews/patterns]:
LOG_LEVEL [info]: debug
Configuration saved to .env
Next maintenance scheduled: 2025-01-09
Storage path: ./.claude/reviews
Index path: ./.claude/reviews/patterns
$ /configure view
Review System Configuration
Settings:
├── Retention Period: 45 days
├── Auto Purge: Enabled
├── Pattern Index: ./.claude/reviews/patterns
└── Log Level: debug
Storage Status:
├── Reviews stored: 39
├── Total size: 1.2 MB
├── Oldest review: 2025-11-10
└── Next purge: 2025-01-09
Pattern Index:
├── Total patterns: 8
├── Security risks: 5
├── N+1 queries: 3
├── Last updated: 2025-12-10 19:30
└── Reviews analyzed: 43
$ /configure set REVIEW_RETENTION_DAYS 60
Updating REVIEW_RETENTION_DAYS from 45 to 60...
Validating: 60 is in range 1-365 ✓
Configuration updated!
New next purge date: 2025-01-09
$ /configure show-schedule
Maintenance Schedule
Last Run: 2025-12-10 19:30:00
Status: Success
├── Reviews purged: 3
├── Storage freed: 42.4 KB
└── Patterns updated: 8
Next Run: After next review completion
Current Retention: 45 days
Reviews will be purged when older than: 45 days
Next review to trigger purge: When oldest review exceeds 45 days
Estimated next purge: 2025-01-09
Settings are stored in .env file:
# .env (created by /configure)
REVIEW_RETENTION_DAYS=45
REVIEW_STORAGE_PATH=./.claude/reviews
PATTERN_INDEX_PATH=./.claude/reviews/patterns
AUTO_PURGE_ENABLED=true
LOG_LEVEL=debug
Back up of previous config: .env.backup
If .env is missing or corrupted, defaults are:
REVIEW_RETENTION_DAYS=30
REVIEW_STORAGE_PATH=./.claude/reviews
PATTERN_INDEX_PATH=./.claude/reviews/patterns
AUTO_PURGE_ENABLED=true
LOG_LEVEL=info
REVIEW_RETENTION_DAYS=7 for faster cleanup during testingREVIEW_RETENTION_DAYS=30 or higher for audit trailPATTERN_INDEX_PATH=/shared/patterns to share learningsLOG_LEVEL=debug when troubleshooting maintenance issuesThe coordinator automatically:
Changes take effect on next review run.