Public BitDive workflows packaged in two formats:
skills/for portable agent skills installed withnpx skills addclaude/agents/for Claude Code subagents
The set is focused on BitDive integration, runtime trace analysis, and trace-based regression workflows.
skills/<skill-name>/SKILL.md
skills/<skill-name>/agents/openai.yaml
claude/agents/<agent-name>.md
| Workflow | Purpose |
|---|---|
add-bitdive-spring |
Add BitDive producer and optional replay support to a Spring Boot service |
bitdive-overview |
Choose the right BitDive MCP tool for discovery, inspection, and updates |
bitdive-trace-comparison |
Compare traces and locate the exact point of behavior drift |
bitdive-dev-workflow |
Run a phased BitDive development workflow with human checkpoints |
bitdive-test-management |
Create, wire, repair, refresh, and rebuild replay groups |
bitdive-docker-networking |
Connect Dockerized services to cloud or self-hosted BitDive |
skills CLI treats --all as "install all skills to all agents". To install
the full BitDive set only for selected agents, use --skill '*' with explicit
-a flags.
Let the installer ask which agent you want to use:
npx skills add bitDive/bitdive-skills --skill '*'Global interactive install:
npx skills add bitDive/bitdive-skills --skill '*' -gInstall the full portable skill set into Codex:
npx skills add bitDive/bitdive-skills --skill '*' -a codexGlobal install:
npx skills add bitDive/bitdive-skills --skill '*' -g -a codexInstall the same portable skill set into Claude Code:
npx skills add bitDive/bitdive-skills --skill '*' -a claude-codeGlobal install:
npx skills add bitDive/bitdive-skills --skill '*' -g -a claude-codeInstall the full portable set into both agents with one command:
npx skills add bitDive/bitdive-skills --skill '*' -a codex -a claude-codeGlobal install:
npx skills add bitDive/bitdive-skills --skill '*' -g -a codex -a claude-codeClaude-native subagents also live in claude/agents/.
Clone the repository, enter it, then copy the subagents you want into a Claude Code project:
git clone https://github.com/bitDive/bitdive-skills.git
cd bitdive-skills
mkdir -p /path/to/project/.claude/agents
cp claude/agents/<agent-name>.md /path/to/project/.claude/agents/Optional user-wide install:
mkdir -p ~/.claude/agents
cp claude/agents/<agent-name>.md ~/.claude/agents/Use this path only if you specifically want native Claude subagents. For
one-command install across agents, use the skills/ format above.
- Use the
skills/format if you wantnpx skills add bitDive/bitdive-skillsfor Codex, Claude Code, or both. - Use
claude/agents/only if you specifically want native Claude Code subagents in.claude/agents/. - The workflow names are intentionally aligned across both formats.
These workflows are most useful when:
- BitDive MCP is configured and reachable
- the target service is already instrumented or about to be instrumented
- the repository has a real module-scoped test command you can rerun quickly
agents/openai.yamlis included for each skill so the set is ready for UI-facing use.- Claude support is stored as visible source files in
claude/agents/, not hidden repo-local config. - The workflows are text-first and repository-agnostic. Project-specific names and private paths were removed.
- If you want to publish under another license, replace the root
LICENSEfile before pushing the repository.