Source profileQuality 88/100

NousResearch/hermes-agent/optional-skills/autonomous-ai-agents/blackbox/SKILL.md

blackbox

Delegate coding tasks to the Blackbox AI multi-model CLI.

Source repository stars
225,255
Declared platforms
0
Static risk flags
1
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

Delegate coding tasks to Blackbox AI via the Hermes terminal. Blackbox is a multi-model coding agent CLI that dispatches tasks to multiple LLMs (Claude, Codex, Gemini, Blackbox Pro) and uses a judge to select the best implementation.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/NousResearch/hermes-agent --skill "optional-skills/autonomous-ai-agents/blackbox"
    Safe inspection promptEditorial

    Inspect the Agent Skill "blackbox" from https://github.com/NousResearch/hermes-agent/blob/f5be9236e00ddf2f2a412697f267078fc4ee068e/optional-skills/autonomous-ai-agents/blackbox/SKILL.md at commit f5be9236e00ddf2f2a412697f267078fc4ee068e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Prerequisites

      Node.js 20+ installed

      Node.js 20+ installedBlackbox CLI installed: npm install -g @blackboxai/blackbox-cli (binary: blackbox)API key from app.blackbox.ai/dashboard
    2. 02

      One-Shot Tasks

      Review the “One-Shot Tasks” section in the pinned source before continuing.

      Review and apply the “One-Shot Tasks” source section.
    3. 03

      Background Mode (Long Tasks)

      For tasks that take minutes, use background mode so you can monitor progress:

      For tasks that take minutes, use background mode so you can monitor progress:
    4. 04

      Start in background with PTY

      terminal(command="blackbox --prompt 'Refactor the auth module to use OAuth 2.0'", workdir="/project", background=true, pty=true)

      terminal(command="blackbox --prompt 'Refactor the auth module to use OAuth 2.0'", workdir="/project", background=true, pty=true)
    5. 05

      Returns sessionid

      Review the “Returns sessionid” section in the pinned source before continuing.

      Review and apply the “Returns sessionid” source section.

    Permission review

    Static risk signals and limitations

    Network access

    medium · line 73

    The documentation includes network, browsing, or remote request actions.

    terminal(command="REVIEW=$(mktemp -d) && git clone https://github.com/user/repo.git $REVIEW && cd $REVIEW && gh pr checkout 42 && blackbox --prompt 'Review this PR against main. Check for bugs, security issues, and code quality.'", pty=true

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score88/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars225,255SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    NousResearch/hermes-agent
    Skill path
    optional-skills/autonomous-ai-agents/blackbox/SKILL.md
    Commit
    f5be9236e00ddf2f2a412697f267078fc4ee068e
    License
    MIT
    Collected
    2026-08-04
    Default branch
    main
    View the original SKILL.md

    Blackbox CLI

    Delegate coding tasks to Blackbox AI via the Hermes terminal. Blackbox is a multi-model coding agent CLI that dispatches tasks to multiple LLMs (Claude, Codex, Gemini, Blackbox Pro) and uses a judge to select the best implementation.

    The CLI (npm @blackbox_ai/blackbox-cli, binary blackbox) is a TypeScript coding agent (forked from Gemini CLI) and supports interactive sessions, non-interactive one-shots, checkpointing, MCP, and vision model switching.

    Prerequisites

    • Node.js 20+ installed
    • Blackbox CLI installed: npm install -g @blackbox_ai/blackbox-cli (binary: blackbox)
    • API key from app.blackbox.ai/dashboard
    • Configured: run blackbox configure and enter your API key
    • Use pty=true in terminal calls — Blackbox CLI is an interactive terminal app

    One-Shot Tasks

    terminal(command="blackbox --prompt 'Add JWT authentication with refresh tokens to the Express API'", workdir="/path/to/project", pty=true)
    

    For quick scratch work:

    terminal(command="cd $(mktemp -d) && git init && blackbox --prompt 'Build a REST API for todos with SQLite'", pty=true)
    

    Background Mode (Long Tasks)

    For tasks that take minutes, use background mode so you can monitor progress:

    # Start in background with PTY
    terminal(command="blackbox --prompt 'Refactor the auth module to use OAuth 2.0'", workdir="~/project", background=true, pty=true)
    # Returns session_id
    
    # Monitor progress
    process(action="poll", session_id="<id>")
    process(action="log", session_id="<id>")
    
    # Send input if Blackbox asks a question
    process(action="submit", session_id="<id>", data="yes")
    
    # Kill if needed
    process(action="kill", session_id="<id>")
    

    Checkpoints & Resume

    Blackbox CLI has built-in checkpoint support for pausing and resuming tasks:

    # After a task completes, Blackbox shows a checkpoint tag
    # Resume with a follow-up task:
    terminal(command="blackbox --resume-checkpoint 'task-abc123-2026-03-06' --prompt 'Now add rate limiting to the endpoints'", workdir="~/project", pty=true)
    

    Session Commands

    During an interactive session, use these commands:

    CommandEffect
    /compressShrink conversation history to save tokens
    /clearWipe history and start fresh
    /statsView current token usage
    Ctrl+CCancel current operation

    PR Reviews

    Clone to a temp directory to avoid modifying the working tree:

    terminal(command="REVIEW=$(mktemp -d) && git clone https://github.com/user/repo.git $REVIEW && cd $REVIEW && gh pr checkout 42 && blackbox --prompt 'Review this PR against main. Check for bugs, security issues, and code quality.'", pty=true)
    

    Parallel Work

    Spawn multiple Blackbox instances for independent tasks:

    terminal(command="blackbox --prompt 'Fix the login bug'", workdir="/tmp/issue-1", background=true, pty=true)
    terminal(command="blackbox --prompt 'Add unit tests for auth'", workdir="/tmp/issue-2", background=true, pty=true)
    
    # Monitor all
    process(action="list")
    

    Multi-Model Mode

    Blackbox's unique feature is running the same task through multiple models and judging the results. Configure which models to use via blackbox configure — select multiple providers to enable the Chairman/judge workflow where the CLI evaluates outputs from different models and picks the best one.

    Key Flags

    FlagEffect
    --prompt "task" (-p)Non-interactive one-shot execution
    --resume-checkpoint "tag"Resume from a saved checkpoint
    --yolo (-y)Auto-approve all actions and model switches
    --vlm-switch-mode <mode>Image-handling: once, session, or persist
    -c, --checkpointingEnable checkpointing of file edits
    blackbox configureChange settings, providers, models
    blackbox updateUpdate the CLI to the latest version
    blackbox mcpManage MCP servers
    blackbox extensionsManage CLI extensions
    blackbox voice <action> / blackbox shortcutConfigure voice input / the b shortcut

    Vision Support

    Blackbox automatically detects images in input and can switch to multimodal analysis. VLM modes:

    • "once" — Switch model for current query only
    • "session" — Switch for entire session
    • "persist" — Stay on current model (no switch)

    Token Limits

    Control token usage via .blackboxcli/settings.json:

    {
      "sessionTokenLimit": 32000
    }
    

    Rules

    1. Always use pty=true — Blackbox CLI is an interactive terminal app and will hang without a PTY
    2. Use workdir — keep the agent focused on the right directory
    3. Background for long tasks — use background=true and monitor with process tool
    4. Don't interfere — monitor with poll/log, don't kill sessions because they're slow
    5. Report results — after completion, check what changed and summarize for the user
    6. Credits cost money — Blackbox uses a credit-based system; multi-model mode consumes credits faster
    7. Check prerequisites — verify blackbox CLI is installed before attempting delegation

    Alternatives

    Compare before choosing

    Computed 10023,781

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    dask

    Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    neurokit2

    Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.

    Computed 9814,225

    wanshuiyin/Auto-claude-code-research-in-sleep

    proof-checker

    Use it for engineering and operations tasks; the detail page covers purpose, installation, and practical steps.