conversation-analyzer
π―Skillfrom mhattingpete/claude-skills-marketplace
Analyzes conversation patterns, interaction metrics, and communication effectiveness to provide insights into collaborative exchanges and dialogue dynamics.
Installation
npx skills add https://github.com/mhattingpete/claude-skills-marketplace --skill conversation-analyzerSkill Details
Overview
# Claude Skills Marketplace
A curated marketplace of Claude Code plugins for software engineering workflows.

Repository Structure
```
claude-skills-marketplace/
βββ .claude-plugin/
β βββ marketplace.json # Marketplace manifest
βββ execution-runtime/ # π Code execution environment (NEW!)
β βββ api/ # Importable API library
β βββ mcp-server/ # FastMCP server
β βββ setup.sh # One-command installation
β βββ README.md
βββ engineering-workflow-plugin/ # Engineering workflow plugin
β βββ .claude-plugin/
β β βββ plugin.json # Plugin manifest
β βββ agents/
β β βββ plan-implementer.md # Plan implementation agent
β βββ skills/
β β βββ feature-planning/ # Feature planning skill
β β βββ git-pushing/ # Git automation skill
β β βββ review-implementing/ # Code review skill
β β βββ test-fixing/ # Test fixing skill
β βββ README.md
βββ visual-documentation-plugin/ # Visual documentation plugin
β βββ .claude-plugin/
β β βββ plugin.json # Plugin manifest
β βββ skills/
β β βββ architecture-diagram-creator/ # Architecture diagram skill
β β βββ dashboard-creator/ # Dashboard creation skill
β β βββ flowchart-creator/ # Flowchart creation skill
β β βββ technical-doc-creator/ # Technical documentation skill
β β βββ timeline-creator/ # Timeline creation skill
β βββ EXAMPLES.md
β βββ README.md
βββ productivity-skills-plugin/ # Productivity & optimization plugin
β βββ .claude-plugin/
β β βββ plugin.json # Plugin manifest
β βββ skills/
β β βββ code-auditor/ # Code auditing skill
β β βββ codebase-documenter/ # Codebase documentation skill
β β βββ conversation-analyzer/ # Usage analysis skill
β β βββ project-bootstrapper/ # Project setup skill
β βββ README.md
βββ code-operations-plugin/ # Code manipulation plugin
β βββ .claude-plugin/
β β βββ plugin.json # Plugin manifest
β βββ skills/
β β βββ code-execution/ # π Python execution skill (NEW!)
β β β βββ examples/ # Example scripts
β β βββ code-transfer/ # Code transfer skill
β β β βββ scripts/
β β β βββ line_insert.py # Line-based insertion script
β β βββ code-refactor/ # Bulk refactoring skill
β β βββ file-operations/ # File analysis skill
β βββ README.md
βββ LICENSE
βββ README.md
```
What are Skills and Agents?
Skills are model-invoked capabilities that extend Claude Code's functionality. Unlike slash commands that require explicit user activation, Skills are automatically triggered by Claude based on context and the Skill's description.
Each Skill consists of a SKILL.md file with:
- YAML frontmatter (name, description, metadata)
- Detailed instructions for Claude
- Optional supporting files (scripts, templates, references)
Agents are specialized Claude instances that can be invoked by Claude to handle specific types of work. They run independently with their own context and can use different models optimized for their task.
Each Agent consists of an AGENT.md file with:
- YAML frontmatter (name, description, model selection)
- Specialized instructions and constraints
- Decision-making frameworks for their domain
Skills and Agents work together: Skills can orchestrate when to invoke Agents, and Agents can use Skills while executing their tasks.
π NEW: Execution Runtime (90%+ Token Savings)
The marketplace now includes a code execution environment implementing the [Anthropic code execution pattern](https://www.anthropic.com/engineering/code-execution-with-mcp). Instead of loading code through context, Claude executes Python lo