text-analyzer
Advanced text analysis and summarization skill for Claude
npx skills add majiayu000/claude-skill-registry --skill demo-joeybe1-skill-split --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Text Analyzer Skill A comprehensive skill for analyzing, processing, and summarizing text documents with support for multiple formats and output types. ## Overview Text Analyzer provides intelligent text processing capabilities including: - Document summarization with multiple summary lengths - Sentiment analysis and emotion detection - Keyword extraction and topic modeling - Reading level assessment - Text statistics and metrics ## Installation ```bash curl -s https://claude.ai/skills/text-analyzer | bash ``` Or manually: 1. Copy `text-analyzer.md` to `~/.claude/skills/` 2. Restart Claude Code 3. Access via `/text-analyzer` command ## Quick Start ### Basic Summarization ```bash /text-analyzer summarize --file document.txt --length short ``` ### Sentiment Analysis ```bash /text-analyzer sentiment --text "This is amazing!" ``` ### Extract Keywords ```bash /text-analyzer keywords --file article.md --count 10 ``` ## Configuration Create `~/.config/text-analyzer.yaml`: ```yaml summarization: default_length: medium preserve_structure: true sentiment: model: bert-base confidence_threshold: 0.7 keywords: algorithm: tfidf min_frequency: 2 ``` ## Commands ### summarize Generates summaries
- Overview
- Installation
- Quick Start
- Basic Summarization
- Sentiment Analysis
- Extract Keywords
- Configuration
- Commands
- summarize
- sentiment
- keywords
- Use Cases
- Document Summarization Workflow
- Sentiment Monitoring
curl -s https://claude.ai/skills/text-analyzer | bash Extract summary and keywords Analyze sentiment ls ~/.claude/skills/ | grep text-analyzer curl -X POST http://localhost:8080/api/summarize \
What does the text-analyzer skill do?
Advanced text analysis and summarization skill for Claude
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill demo-joeybe1-skill-split --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
