with one click
amp-backlog
AI-powered ranking of Amp system improvement ideas
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
AI-powered ranking of Amp system improvement ideas
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | amp-backlog |
| description | AI-powered ranking of Amp system improvement ideas |
In plain English: AI-powered ranking of your Amp system improvement backlog based on current system state. Shows you what to build next.
When to use it:
How to run it:
/amp-backlog # Full review with re-ranking
System/Amp_Backlog.mdRead these files to understand current system state:
System/Amp_Backlog.md # All ideas to score
System/usage_log.md # Feature adoption patterns
System/user-profile.yaml # Role, preferences
CLAUDE.md # Current capabilities
System/Session_Learnings/ # Recent pain points (last 30 days)
.claude/commands/ # Available commands
core/mcp/ # MCP integrations
06-Resources/Learnings/ # Captured patterns
Build a context dictionary with:
For every active idea in the backlog, calculate 5 dimension scores.
Before scoring ANY idea, validate it's actually implementable in Cursor:
What Cursor/Terminal CAN do:
What Cursor/Terminal CANNOT do:
If idea requires something from the CANNOT list → Set all scores to 0 and flag as "Not feasible in Cursor"
After feasibility check passes, score on 5 dimensions:
Question: How much would this improve daily workflow?
Scoring logic:
Base score: 50
+20 if matches_recent_pain_points():
- Search System/Session_Learnings/ for mentions of this issue
- Keywords from idea title/description appear in learnings
- Problem stated explicitly in recent notes
+15 if affects_daily_workflow():
- Touches commands used >3x per week (from usage_log)
- Modifies core files (03-Tasks/Tasks.md, daily plans, person pages)
- Impacts repetitive actions
+15 if has_compound_value():
- Enables other ideas in backlog
- Reduces technical debt
- Creates reusable patterns
- Unblocks multiple workflows
Max: 100
Examples:
Question: Does this fit actual usage patterns?
Scoring logic:
Base score: 50
+30 based on usage_overlap():
- Extract features idea depends on
- Check if those features are used (usage_log)
- Calculate overlap: (used_features / total_features) * 30
+20 if fits_role_profile():
- PM roles: prioritize project/product features
- Sales roles: prioritize relationship/account features
- Leadership: prioritize synthesis/review features
- Match category to role focus areas
Max: 100
Examples:
Question: Does this reduce context/token usage?
CRITICAL - Cursor Feasibility Check: Before scoring, verify the idea is implementable in Cursor/Terminal:
Scoring logic:
Base score: 50
+25 if reduces_token_usage():
- Caches/stores frequently accessed data (in files/MCP)
- Compresses or summarizes verbose content (file-based)
- Eliminates redundant reads
- Enables more efficient retrieval patterns
+15 if improves_context_efficiency():
- Reduces number of files that need reading
- Creates structured summaries (YAML/JSON files)
- Better indexing/search to avoid broad scans
- Moves data from markdown to structured format
+10 if enables_incremental_updates():
- Supports partial updates instead of full rewrites
- Tracks changes in separate files
- Lazy loading or on-demand computation
Max: 100
Examples:
Question: Does this enhance system memory, persistence, or self-learning?
Scoring logic:
Base score: 50
+20 if improves_memory_persistence():
- Stores learnings for future reference
- Creates retrievable knowledge base
- Captures patterns that compound over time
- Builds historical context
+20 if enables_self_learning():
- System learns from user behavior
- Adapts recommendations based on patterns
- Builds preference models
- Improves predictions over time
+10 if creates_feedback_loops():
- Tracks outcomes of suggestions
- Measures effectiveness of recommendations
- Refines based on what works
Max: 100
Examples:
Question: Does this enable proactive concierge behavior?
Scoring logic:
Base score: 50
+25 if enables_anticipation():
- Surfaces relevant info before asked
- Predicts needs based on patterns
- Proactive suggestions not just reactive
- Context-aware prompts
+15 if automates_routine_decisions():
- Handles repetitive choices automatically
- Learns user preferences and applies them
- Reduces decision fatigue
+10 if improves_timing():
- Right information at right time
- Context-aware interruptions
- Anticipates upcoming needs
Max: 100
Examples:
total_score = (
(impact * 0.35) +
(alignment * 0.20) +
(token_efficiency * 0.20) +
(memory_learning * 0.15) +
(proactivity * 0.10)
)
Round to integer: total_score = round(total_score)
Priority Bands:
Why These Dimensions:
Rewrite System/Amp_Backlog.md with:
- **[idea-XXX]** Title
- **Score:** 92 (Impact: 95, Alignment: 90, Effort: 85, Synergy: 95, Fresh: 70)
- **Category:** category
- **Captured:** YYYY-MM-DD
- **Why ranked here:** [1-2 sentence reasoning based on scores]
- **Description:** [original description]
Show the user the top 5 ideas with context:
# 📊 Backlog Review Complete
*Analyzed {{total_ideas}} ideas against current system state*
## 🔥 Top 5 Recommendations
### 1. [idea-XXX] {{title}} (Score: {{score}})
**Why now:** {{reasoning based on scores - be specific}}
**Quick assessment:**
- Impact: {{impact_justification}}
- Fits your patterns: {{alignment_justification}}
- Effort: {{effort_estimate}}
**Next step:** Run `/amp-improve "{{title}}"` to workshop this idea
---
### 2. [idea-YYY] {{title}} (Score: {{score}})
[Same format]
---
[... continue for top 5 ...]
---
## 📈 Backlog Health
- **Total ideas:** {{total}}
- **High priority (85+):** {{high_count}}
- **Medium priority (60-84):** {{medium_count}}
- **Low priority (<60):** {{low_count}}
{{#if high_count > 5}}
⚠️ **Note:** You have {{high_count}} high-priority ideas. Consider tackling 1-2 this week to reduce backlog.
{{/if}}
{{#if low_count > 10}}
💡 **Tip:** {{low_count}} low-priority ideas might be worth archiving or refining.
{{/if}}
---
## What would you like to do?
1. **Workshop an idea** → `/amp-improve "[title]"`
2. **Capture a new idea** → Use `capture_idea` MCP tool
3. **Mark one implemented** → Use `mark_implemented` MCP tool
4. **View full backlog** → Check `System/Amp_Backlog.md`
# 📊 Backlog Review
Your backlog is empty!
Start capturing improvement ideas:
- Use the `capture_idea` MCP tool anytime you think "I wish Amp did X"
- Run `/amp-improve` to explore capability gaps
- Run `/amp-level-up` to discover unused features
The backlog system will help you track and prioritize ideas systematically.
🎉 **Good news:** No urgent improvements needed!
Your system is working well. The backlog has ideas for later, but nothing critical right now.
Consider:
- Running `/amp-level-up` to discover unused features
- Capturing ideas as they come up
- Reviewing backlog quarterly
⚠️ **Backlog maintenance needed**
You have {{stale_count}} ideas older than 6 months. These might be:
- No longer relevant → Archive them
- Still valuable but not urgent → Keep them
- Worth revisiting with new context → Re-evaluate descriptions
Review stale ideas:
{{list stale ideas}}
Want to bulk archive these? I can help clean up the backlog.
When user says "Let's work on #1" or "Workshop idea-XXX":
/amp-improve with context:
/amp-improve "{{idea_title}}"
Context from backlog:
- Current score: {{score}}
- Why it's prioritized: {{reasoning}}
- Original description: {{description}}
/amp-improve takes over for workshoppingdef check_cursor_feasibility(idea: dict) -> dict:
"""
Returns: {
'feasible': bool,
'reason': str,
'capabilities_required': list
}
"""
description_lower = idea['description'].lower()
# Red flags - things Cursor CAN'T do
cannot_do = {
'track edits': 'Cannot monitor file edits in real-time',
'watch user': 'Cannot observe user actions passively',
'hook into': 'Cannot hook into Cursor internals',
'monitor changes': 'Cannot monitor without explicit file reads',
'background process': 'No persistent background processes'
}
for phrase, reason in cannot_do.items():
if phrase in description_lower:
return {
'feasible': False,
'reason': reason,
'suggestion': 'Reframe as file-based or command-triggered'
}
# Green flags - things Cursor CAN do
can_do = ['file', 'read', 'write', 'mcp', 'command', 'cache', 'index', 'parse']
has_feasible_approach = any(word in description_lower for word in can_do)
if has_feasible_approach:
return {'feasible': True, 'reason': 'Uses Cursor-compatible operations'}
else:
return {
'feasible': False,
'reason': 'No clear implementation path in Cursor',
'suggestion': 'Add file-based or MCP approach'
}
def calculate_impact(idea, context):
# First check feasibility
feasibility = check_cursor_feasibility(idea)
if not feasibility['feasible']:
return 0 # Not feasible = 0 impact
score = 50
# Check session learnings for pain point mentions
learnings = context['session_learnings']
idea_keywords = extract_keywords(idea['title'] + idea['description'])
for learning in learnings:
learning_keywords = extract_keywords(learning['content'])
if overlap(idea_keywords, learning_keywords) > 0.3:
score += 20
break
# Check if affects daily workflow
if touches_daily_commands(idea, context['usage_log']):
score += 15
# Check compound value
if enables_other_ideas(idea, context['backlog']):
score += 15
return min(score, 100)
def calculate_alignment(idea, context):
score = 50
# Extract related features
features = extract_related_features(idea)
used_features = get_used_features(context['usage_log'])
overlap_ratio = len(features & used_features) / len(features)
score += int(overlap_ratio * 30)
# Role fit
role = context['user_profile']['role']
category = idea['category']
role_fit_map = {
'PM': ['projects', 'workflows', 'knowledge'],
'Sales': ['relationships', 'tasks'],
'Leadership': ['knowledge', 'workflows']
}
if category in role_fit_map.get(role, []):
score += 20
return min(score, 100)
def calculate_token_efficiency(idea, context):
score = 50
# Check if reduces token usage
if reduces_reads(idea): # Caching, summaries
score += 25
# Context efficiency improvements
if improves_retrieval(idea): # Better indexing, structured data
score += 15
# Incremental updates
if supports_incremental(idea): # Partial updates, lazy loading
score += 10
return min(score, 100)
def calculate_memory_learning(idea, context):
score = 50
# Memory persistence
if stores_learnings(idea): # Knowledge base, historical context
score += 20
# Self-learning capability
if enables_adaptation(idea): # Learns from behavior, improves over time
score += 20
# Feedback loops
if tracks_outcomes(idea): # Measures effectiveness, refines
score += 10
return min(score, 100)
def calculate_proactivity(idea, context):
score = 50
# Anticipation capability
if enables_anticipation(idea): # Surfaces info before asked
score += 25
# Automation of routine decisions
if automates_decisions(idea): # Handles repetitive choices
score += 15
# Timing improvements
if improves_timing(idea): # Right info at right time
score += 10
return min(score, 100)
/week-plan or standaloneThe backlog isn't a todo list - it's a decision support system.
Scores help you:
But you're still the decision maker. If a low-scoring idea excites you, workshop it. The system serves you, not the other way around.
Update System/usage_log.md to mark backlog review as used.
Analytics (Silent):
Call track_event with event_name backlog_reviewed and properties:
ideas_countThis only fires if the user has opted into analytics. No action needed if it returns "analytics_disabled".
Extract and track commitments from meeting notes - who promised what to whom, with deadlines and status tracking.
Route tasks to Pi for comparison testing. Toggle Pi mode or run specific commands through Pi.
View and manage Pi-built extensions synced to Amp. Shows available tools, commands, and sync status.
Review proposed actions surfaced by the B-1 Activation Engine. Gathers recent signals, extracts candidates, ranks them, drafts artifacts, and captures the user's response per offer. Standalone — does not modify /daily-plan.
Configure AI model options - budget cloud models (save 80%+) and offline mode (use Amp without internet)
Check your AI model configuration - see what's set up, current model, credits remaining