developer-growth-analysis

davila7/claude-code-templates · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/davila7/claude-code-templates --skill developer-growth-analysis
0 commentsdiscussion
summary

This skill provides personalized feedback on your recent coding work by analyzing your Claude Code chat interactions and identifying patterns that reveal strengths and areas for growth.

skill.md

Developer Growth Analysis

This skill provides personalized feedback on your recent coding work by analyzing your Claude Code chat interactions and identifying patterns that reveal strengths and areas for growth.

When to Use This Skill

Use this skill when you want to:

  • Understand your development patterns and habits from recent work
  • Identify specific technical gaps or recurring challenges
  • Discover which topics would benefit from deeper study
  • Get curated learning resources tailored to your actual work patterns
  • Track improvement areas across your recent projects
  • Find high-quality articles that directly address the skills you're developing

This skill is ideal for developers who want structured feedback on their growth without waiting for code reviews, and who prefer data-driven insights from their own work history.

What This Skill Does

This skill performs a six-step analysis of your development work:

  1. Reads Your Chat History: Accesses your local Claude Code chat history from the past 24-48 hours to understand what you've been working on.

  2. Identifies Development Patterns: Analyzes the types of problems you're solving, technologies you're using, challenges you encounter, and how you approach different kinds of tasks.

  3. Detects Improvement Areas: Recognizes patterns that suggest skill gaps, repeated struggles, inefficient approaches, or areas where you might benefit from deeper knowledge.

  4. Generates a Personalized Report: Creates a comprehensive report showing your work summary, identified improvement areas, and specific recommendations for growth.

  5. Finds Learning Resources: Uses HackerNews to curate high-quality articles and discussions directly relevant to your improvement areas, providing you with a reading list tailored to your actual development work.

  6. Sends to Your Slack DMs: Automatically delivers the complete report to your own Slack direct messages so you can reference it anytime, anywhere.

How to Use

Ask Claude to analyze your recent coding work:

Analyze my developer growth from my recent chats

Or be more specific about which time period:

Analyze my work from today and suggest areas for improvement

The skill will generate a formatted report with:

  • Overview of your recent work
  • Key improvement areas identified
  • Specific recommendations for each area
  • Curated learning resources from HackerNews
  • Action items you can focus on

Instructions

When a user requests analysis of their developer growth or coding patterns from recent work:

  1. Access Chat History

    Read the chat history from ~/.claude/history.jsonl. This file is a JSONL format where each line contains:

    • display: The user's message/request
    • project: The project being worked on
    • timestamp: Unix timestamp (in milliseconds)
    • pastedContents: Any code or content pasted

    Filter for entries from the past 24-48 hours based on the current timestamp.

  2. Analyze Work Patterns

    Extract and analyze the following from the filtered chats:

    • Projects and Domains: What types of projects was the user working on? (e.g., backend, frontend, DevOps, data, etc.)
    • Technologies Used: What languages, frameworks, and tools appear in the conversations?
    • Problem Types: What categories of problems are being solved? (e.g., performance optimization, debugging, feature implementation, refactoring, setup/configuration)
    • Challenges Encountered: What problems did the user struggle with? Look for:
      • Repeated questions about similar topics
      • Problems that took multiple attempts to solve
      • Questions indicating knowledge gaps
      • Complex architectural decisions
    • Approach Patterns: How does the user solve problems? (e.g., methodical, exploratory, experimental)
  3. Identify Improvement Areas

    Based on the analysis, identify 3-5 specific areas where the user could improve. These should be:

    • Specific (not vague like "improve coding skills")
    • Evidence-based (grounded in actual chat history)
    • Actionable (practical improvements that can be made)
    • Prioritized (most impactful first)

    Examples of good improvement areas:

    • "Advanced TypeScript patterns (generics, utility types, type guards) - you struggled with type safety in [specific project]"
    • "Error handling and validation - I noticed you patched several bugs related to missing null checks"
    • "Async/await patterns - your recent work shows some race conditions and timing issues"
    • "Database query optimization - you rewrote the same query multiple times"
  4. Generate Report

    Create a comprehensive report with this structure:

    # Your Developer Growth Report
    
    **Report Period**: [Yesterday / Today / [Custom Date Range]]
    **Last Updated**: [Current Date and Time]
    
    ## Work Summary
    
    [2-3 paragraphs summarizing what the user worked on, projects touched, technologies used, and overall focus areas]
    
    Example:
    "Over the past 24 hours, you focused primarily on backend development with three distinct projects. Your work involved TypeScript, React, and deployment infrastructure. You tackled a mix of feature implementation, debugging, and architectural decisions, with a particular focus on API design and database optimization."
    
    ## Improvement Areas (Prioritized)
    
    ### 1. [Area Name]
    
    **Why This Matters**: [Explanation of why this skill is important for the user's work]
    
    **What I Observed**: [Specific evidence from chat history showing this gap]
    
    **Recommendation**: [Concrete step(s) to improve in this area]
    
    **Time to Skill Up**: [Brief estimate of effort required]
    
    ---
    
    [Repeat for 2-4 additional areas]
    
    ## Strengths Observed
    
    [2-3 bullet points highlighting things you're doing well - things to continue doing]
    
    ## Action Items
    
    Priority order:
    1. [Action item derived from highest priority improvement area]
    2. [Action item from next area]
    3. [Action item from next area]
    
    ## Learning Resources
    
    [Will be populated in next step]
    
  5. Search for Learning Resources

    Use Rube MCP to search HackerNews for articles related to each improvement area:

    • For each improvement area, construct a search query targeting high-quality resources
    • Search HackerNews using RUBE_SEARCH_TOOLS with queries like:
      • "Learn [Technology/Pattern] best practices"
      • "[Technology] advanced patterns and techniques"
      • "Debugging [specific problem type] in [language]"
    • Prioritize posts with high engagement (comments, upvotes)
    • For each area, include 2-3 most relevant articles with:
      • Article title
      • Publication date
      • Brief description of why it's relevant
      • Link to the article

    Add this section to the report:

    ## Curated Learning Resources
    
    ### For: [Improvement Area]
    
    1. **[Article Title]** - [Date]
       [Description of what it covers and why it's relevant to your improvement area]
       [Link]
    
    2. **[Article Title]** - [Date]
       [Description]
       [Link]
    
    [Repeat for other improvement areas]
    
  6. Present the Complete Report

    Deliver the report in a clean, readable format that the user can:

    • Quickly scan for key takeaways
    • Use for focused learning planning
    • Reference over the next week as they work on improvements
    • Share with mentors if they want external feedback
  7. Send Report to Slack DMs

    Use Rube MCP to send the complete report to the user's own Slack DMs:

    • Check if Slack connection is active via RUBE_SEARCH_TOOLS
    • If not connected, use RUBE_MANAGE_CONNECTIONS to initiate Slack auth
    • Use RUBE_MULTI_EXECUTE_TOOL to send the report as a formatted message:
      • Send the report title and period as the first message
      • Break the report into logical sections (Summary, Improvements, Strengths, Actions, Resources)
      • Format each section as a well-structured Slack message with proper markdown
      • Include clickable links for the learning resources
    • Confirm delivery in the CLI output

    This ensures the user has the report in a place they check regularly and can reference it throughout the week.

Example Usage

Input

Analyze my developer growth from my recent chats

Output

# Your Developer Growth Report

**Report Period**: November 9-10, 2024
**Last Updated**: November 10, 2024, 9:15 PM UTC

## Work Summary

Over the past two days, you focused on backend infrastructure and API development. Your primary project was an open-source showcase application, where you made significant progress on connections management, UI improvements, and deployment configuration. You worked with TypeScript, React, and Node.js, tackling challenges ranging from data security to responsive design. Your work shows a balance between implementing features and addressing technical debt.

## Improvement Areas (Prioritized)

### 1. Advanced TypeScript Patterns and Type Safety

**Why This Matters**: TypeScript is central to your work, but leveraging its advanced features (generics, utility types, conditional types, type guards) can significantly improve code reliability and reduce runtime errors. Better type safety catches bugs at compile time rather than in production.

**What I Observed**: In your recent chats, you were working with connection data structures and struggled a few times with typing auth configurations properly. You also had to iterate on union types for different connection states. There's an opportunity to use discriminated unions and type guards more effectively.

**Recommendation**: Study TypeScript's advanced type system, particularly utility types (Omit, Pick, Record), conditional types, and discriminated unions. Apply these patterns to your connection configuration handling and auth state management.

**Time to Skill Up**: 5-8 hours of focused learning and practice

### 2. Secure Data Handling and Information Hiding in UI

**Why This Matters**: You identified and fixed a security concern where sensitive connection data was being displayed in your console. Preventing information leakage is critical for applications handling user credentials and API keys. Good practices here prevent security incidents and user trust violations.

**What I Observed**: You caught that your "Your Apps" page was showing full connection data including auth configs. This shows good security instincts, and the next step is building this into your default thinking when handling sensitive information.

**Recommendation**: Review security best practices for handling sensitive data in frontend applications. Create reusable patterns for filtering/masking sensitive information before displaying it. Consider implementing a secure data layer that explicitly whitelist what can be shown in the UI.

**Time to Skill Up**: 3-4 hours

### 3. Component Architecture and Responsive UI Patterns

**Why This Matters**: You're designing UIs that need to work across different screen sizes and user interactions. Strong component architecture makes it easier to build complex UIs without bugs and improves maintainability.

**What I Observed**: You worked on the "Marketplace" UI (formerly Browse Tools), recreating it from a design image. You also identified and fixed scrolling issues where content was overflowing containers. There's an opportunity to strengthen your understanding of layout containment and responsive design patterns.

**Recommendation**: Study React component composition patterns and CSS layout best practices (especially flexbox and grid). Focus on container queries and responsive patterns that prevent overflow issues. Look into component composition libraries and design system approaches.

**Time to Skill Up**: 6-10 hours (depending on depth)

## Strengths Observed

- **Security Awareness**: You proactively identified data leakage issues before they became problems
- **Iterative Refinement**: You worked through UI requirements methodically, asking clarifying questions and improving designs
- **Full-Stack Capability**: You comfortably work across backend APIs, frontend UI, and deployment concerns
- **Problem-Solving Approach**: You break down complex tasks into manageable steps

## Action Items

Priority order:
1. Spend 1-2 hours learning TypeScript utility types and discriminated unions; apply to your connection data structures
2. Document security patterns for your project (what data is safe to display, filtering/masking functions)
3. Study one article on advanced React patterns and apply one pattern to your current UI work
4. Set up a code review checklist focused on type safety and data security for future PRs

## Curated Learning Resources

### For: Advanced TypeScript Patterns

1. **TypeScript's Advanced Types: Generics, Util
how to use developer-growth-analysis

How to use developer-growth-analysis on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add developer-growth-analysis
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/davila7/claude-code-templates --skill developer-growth-analysis

The skills CLI fetches developer-growth-analysis from GitHub repository davila7/claude-code-templates and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/developer-growth-analysis

Reload or restart Cursor to activate developer-growth-analysis. Access the skill through slash commands (e.g., /developer-growth-analysis) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.665 reviews
  • Maya Brown· Dec 20, 2024

    We added developer-growth-analysis from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Camila Dixit· Dec 8, 2024

    developer-growth-analysis has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Sakura Farah· Dec 8, 2024

    developer-growth-analysis is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Michael Liu· Dec 4, 2024

    developer-growth-analysis fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Naina Iyer· Nov 27, 2024

    developer-growth-analysis fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Fatima Farah· Nov 23, 2024

    developer-growth-analysis has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Diego Mehta· Nov 11, 2024

    Solid pick for teams standardizing on skills: developer-growth-analysis is focused, and the summary matches what you get after install.

  • Meera Johnson· Oct 18, 2024

    We added developer-growth-analysis from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Evelyn Martin· Oct 14, 2024

    Solid pick for teams standardizing on skills: developer-growth-analysis is focused, and the summary matches what you get after install.

  • Aditi Gupta· Oct 2, 2024

    developer-growth-analysis has been reliable in day-to-day use. Documentation quality is above average for community skills.

showing 1-10 of 65

1 / 7