This repository contains a collection of agent skills for blecsd. These skills are designed to enhance the capabilities of agents by providing them with specialized functionalities.
Agent Skills are folders of instructions, scripts, and resources that agents can discover and use to do things more accurately and efficiently. They work across any AI agent that supports the open Agent Skills standard.
| Skill | Description |
|---|---|
| blecsd-3d | Render 3D graphics in the terminal with @blecsd/3d. Covers software rasterize... |
| blecsd-ai | Build AI/LLM terminal interfaces with @blecsd/ai. Covers streaming conversati... |
| blecsd-audio | Add audio to blECSd terminal apps with @blecsd/audio. Covers audio manager, c... |
| blecsd-game | Build terminal games with @blecsd/game. Covers the high-level game API, input... |
| blecsd-media | Render images, GIFs, PNGs, and video in the terminal with @blecsd/media. Cove... |
| blecsd-tui | Best practices and module map for blECSd, a modern TypeScript terminal UI lib... |
Use npx skills to install skills directly:
# Install all skills
npx skills add blecsd/agent-skills
# Install specific skills
npx skills add blecsd/agent-skills --skill blecsd-tui
# List available skills
npx skills add blecsd/agent-skills --listInstall via Claude Code's plugin system:
# Add the marketplace
/plugin marketplace add blecsd/agent-skills
# Install specific skill
/plugin install blecsd-tui-skillClaude Code plugins are also supported in Factory's Droid.
Agent skills can also be installed by using the below commands from Playbooks or Context7:
# Playbooks
npx playbooks add skill blecsd/agent-skills
# Context7
npx ctx7 skills install /blecsd/agent-skillsUse the included script to add new skills:
node scripts/add-skill.js <skill-name> "<description>"Example:
node scripts/add-skill.js blecsd-tui "Helps to develop tui applications and games with the modern typescript blessed rewrite"This will create the skill structure and automatically update this README and the marketplace.json.
| Script | Description |
|---|---|
node scripts/add-skill.js |
Add a new skill to the repository |
node scripts/sync-skills.js |
Sync README and marketplace.json with skills directory |
- Fork this repository
- Create a new skill using
node scripts/add-skill.js - Edit the skill's
SKILL.mdwith your content - Submit a pull request
MIT