Skip to content

BlackBoxVision/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

BlackBoxVision Claude Code Skills

A collection of Claude Code skills for BlackBoxVision teams — reusable, shareable prompts that extend Claude Code's capabilities for common workflows.


What are Claude Code Skills?

Claude Code skills are .skill files that package a focused prompt (plus optional reference files) into a named capability that Claude Code can automatically trigger. Once registered, a skill appears in Claude Code's skill selector and can be invoked with a / command or triggered automatically when relevant keywords are detected.

Skills live in a ZIP archive structured as:

<skill-name>/
├── SKILL.md          # The main prompt and trigger rules (required)
└── references/       # Supporting reference files (optional)
    └── *.md

Available Skills

Skill Description Trigger keywords
agent-readiness Audits a project for AI-assisted development readiness. Scores 8 dimensions and produces a prioritized report. "agent readiness", "AI readiness", "ready for Claude Code", "audit for automation"

How to Use a Skill

Install via Claude Code UI

  1. Open Claude Code
  2. Go to Settings → Skills
  3. Click Add skill and point it to the .skill file (or the folder if using the unpacked format)

Reference in a prompt

Once installed, you can invoke a skill directly:

/agent-readiness

Or reference a skill file from a prompt:

@agent-readiness audit this project

Claude Code will auto-trigger the skill when it detects relevant keywords (see trigger keywords per skill above).


Contributing

Want to add a new skill?

  1. Create a folder under the repo root: <skill-name>/
  2. Add SKILL.md with at minimum a YAML front-matter block and the skill prompt:
---
name: your-skill-name
description: |
  What this skill does and when to trigger it.
  Include trigger keyword examples.
---

# Your Skill Title

Skill prompt content here...
  1. Optionally add reference files under <skill-name>/references/
  2. Update this README with a row in the Available Skills table
  3. Open a PR — small, focused additions are welcome

License

MIT

About

A collection of Claude Code skills for BlackBoxVision teams

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors