Skip to content
Skillv1.0.0

enact-text-summarizer

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

by aiskillstore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from aiskillstore/marketplace (skills/enactprotocol/enact-text-summarizer/SKILL.md). Install upstream with npx skills add aiskillstore/marketplace --skill enact-text-summarizer. Copyright stays with the author.

Text Summarizer

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

Usage

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

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

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/aiskillstore-marketplace-enact-text-summarizer/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

aiskillstore-marketplace-enact-text-summarizer.ocm.jsonjson
{
  "ocm": "1",
  "id": "aiskillstore-marketplace-enact-text-summarizer",
  "kind": "skill",
  "name": "enact-text-summarizer",
  "description": "Analyzes text and provides word count, character count, and sentence statistics",
  "publisher": "aiskillstore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "math",
      "creative"
    ],
    "tags": [
      "skill-md",
      "text",
      "analysis",
      "utility",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Analyzes text and provides word count, character count, and sentence statistics"
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/aiskillstore/marketplace",
      "path": "skills/enactprotocol/enact-text-summarizer/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/aiskillstore/marketplace/blob/HEAD/skills/enactprotocol/enact-text-summarizer/SKILL.md",
      "key": "aiskillstore/marketplace/skills/enactprotocol/enact-text-summarizer/SKILL.md"
    }
  },
  "instructions": "# Text Summarizer\n\nA tool that analyzes text and provides useful statistics including word count, character count, sentence count, and estimated reading time.\n\n## Usage\n\n```bash\nenact run keithgroves/text-summarizer --args '{\"text\": \"Hello world. This is a test.\"}'\n```\n\n## Features\n\n- Word count\n- Character count (excluding spaces)\n- Sentence count estimation\n- Average word length calculation\n- Reading time estimation (based on 200 words/minute)\n\n## Example Output\n\n```json\n{\n  \"wordCount\": 6,\n  \"characterCount\": 22,\n  \"sentenceCount\": 2,\n  \"averageWordLength\": 3.67,\n  \"readingTimeMinutes\": 0.0",
  "cost": {
    "context_tokens": 151
  }
}

Fetch it by URL: GET /api/v1/registry/aiskillstore-marketplace-enact-text-summarizer/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.