multiAI Summary Pending

enact-text-summarizer

Analyzes text and provides word count, character count, and sentence statistics

231 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/enact-text-summarizer/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/enactprotocol/enact-text-summarizer/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/enact-text-summarizer/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How enact-text-summarizer Compares

Feature / Agentenact-text-summarizerStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Analyzes text and provides word count, character count, and sentence statistics

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Text Summarizer

A tool that analyzes text and provides useful statistics including word count, character count, sentence count, and estimated reading time.

## Usage

```bash
enact run keithgroves/text-summarizer --args '{"text": "Hello world. This is a test."}'
```

## Features

- Word count
- Character count (excluding spaces)
- Sentence count estimation
- Average word length calculation
- Reading time estimation (based on 200 words/minute)

## Example Output

```json
{
  "wordCount": 6,
  "characterCount": 22,
  "sentenceCount": 2,
  "averageWordLength": 3.67,
  "readingTimeMinutes": 0.03
}
```