WordCounterGPT
Description
A ChatGPT plugin for precise character and word counting
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Word Counter API
We're excited to announce the launch of our first free and open-source ChatGPT plugin that serves a useful purpose!
What Does It Do?
This plugin is designed for counting characters and words in a given text.
Why Create This Plugin?
ChatGPT's base model isn't always great at accurately counting characters and words, so we created this plugin to address that need.
Use Cases
- Check the word count of your essays or articles.
- Verify the character count of your tweets to ensure they fit within the limit.
- Use this plugin as a template to create your own ChatGPT plugins.
Setup and Run
Navigate to the root directory of the Word Counter API.
Create a virtual environment:
python -m venv venvor
python3 -m venv venvActivate the virtual environment:
- On Windows:
venv\Scripts\activate - On macOS/Linux:
source venv/bin/activate
- On Windows:
Install the required packages:
pip install -r requirements.txtRun the FastAPI application:
uvicorn server:app --reload
The application will be accessible at "http://localhost:8000/".
How It Works
The Word Counter API is a FastAPI application that serves as a ChatGPT plugin. It provides an endpoint `/count` that counts characters and words in a given text when accessed.
The main code for the application is in the `server.py` file. Here's a snippet of the code that defines the `/count` endpoint:
@app.post("/count")
def count_characters_and_words(data: TextData):
text = data.text
character_count = len(text)
word_count = len(text.split())
return {
"character_count": character_count,
"word_count": word_count
}
When a user accesses the `/count` endpoint and provides text data, the application returns a JSON response containing the character count and word count.
Setting Up the Plugin with ChatGPT
To set up the Word
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11