Agent skill · AI & Agents

text-analyzer

Advanced text analysis and summarization skill for Claude

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Version: 1.0.0
Declared author: claude-team
Path: skills/analysis/demo-joeybe1-skill-split/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Installation
  3. Quick Start
  4. Basic Summarization
  5. Sentiment Analysis
  6. Extract Keywords
  7. Configuration
  8. Commands
  9. summarize
  10. sentiment
  11. keywords
  12. Use Cases
  13. Document Summarization Workflow
  14. Sentiment Monitoring
Ships with 1 file
  • metadata.json
Commands it runs
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 \
More from claude-skill-registry
All skills →
About this skill
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.

Keep going