A comprehensive skills suite for Blackbox.ai products, compatible with both Claude Code and Blackbox AI's native skill system.
| Skill | Description |
|---|---|
| blackbox-api | REST API, OpenAI-compatible endpoints, model routing, image/video generation |
| blackbox-cli | Terminal agent, database chat, multi-agent execution, remote tasks |
| blackbox-vscode | VS Code extension, auto/manual/voice modes, sub-agent orchestration |
| blackbox-skills | Meta-skill for creating and managing Blackbox skills |
| blackbox-builder | Vibe coding platform, rapid prototyping, deployment |
| blackbox-desktop | Desktop agent, MCP client, automation modes |
| blackbox-enterprise | Team management, SSO, compliance, enterprise deployment |
| blackbox-integrations | 35+ IDEs, GitHub/GitLab, Slack/Teams, Jira/Linear, SDKs |
Symlinks all skills to ~/.claude/skills/:
bash scripts/install-claude.shCopies skills to .blackbox/skills/ in your project:
bash scripts/install-blackbox.sh # current directory
bash scripts/install-blackbox.sh /path/to/project # specific projectCheck all SKILL.md files have valid frontmatter:
bash scripts/validate.shskills/
├── blackbox-api/
│ ├── SKILL.md
│ └── references/
│ ├── api-reference.md
│ ├── models.md
│ ├── error-codes.md
│ └── provider-routing.md
├── blackbox-cli/
│ ├── SKILL.md
│ └── references/
│ ├── commands.md
│ ├── database-chat.md
│ └── multi-agent.md
├── blackbox-vscode/
│ ├── SKILL.md
│ └── references/
│ ├── configuration.md
│ ├── orchestration.md
│ └── context-integration.md
├── blackbox-skills/
│ ├── SKILL.md
│ └── references/
│ └── skill-format.md
├── blackbox-builder/
│ ├── SKILL.md
│ └── references/
│ └── builder-guide.md
├── blackbox-desktop/
│ ├── SKILL.md
│ └── references/
│ ├── capabilities.md
│ └── mcp-setup.md
├── blackbox-enterprise/
│ ├── SKILL.md
│ └── references/
│ └── enterprise-features.md
└── blackbox-integrations/
├── SKILL.md
└── references/
└── integrations-list.md
Each skill contains:
- SKILL.md — Main skill file with YAML frontmatter (
name,description) and structured guidance - references/ — Detailed reference documentation for deep dives
Skills are discovered automatically based on task context. When you work on something related to a skill's description, it activates and provides relevant knowledge.
Both Claude Code and Blackbox AI use Markdown with YAML frontmatter for skills. This repo uses the union of both systems' frontmatter fields, making skills work in either environment.
MIT