feat(web-security): add caido-mode skill (Caido TypeScript SDK / caido-ts) - #119
Merged
GangGreenTemperTatum merged 1 commit intoAug 13, 2026
Conversation
…o-ts) Vendor the upstream caido/skills caido-mode skill (merged PR #22, @caido/sdk-client / caido-ts v0.4.0) into web-security as a third, independent Caido surface alongside the Python caido-sdk skill and the caido-proxy / caido-go MCP servers. - Vendor skills/caido-mode/ (tsx CLI + lib + tests) from caido/skills@5bb27a9 - Adapt SKILL.md for the dreadnode runtime: bootstrap from the skill dir, document non-interference with caido-sdk/caido-proxy (separate auth cache), and note runtime-provided CAIDO_URL/CAIDO_PAT - install_tools.sh: npm install the skill's node_modules at provision time - Dockerfile.runtime: pre-install tsx globally; document the caido-mode dep - capability.yaml: add caido-mode check, update description, bump to 1.7.0 Node deps (node_modules) are gitignored and installed at provision time. All 68 skill unit tests pass; just validate is green for web-security.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the caido-mode skill — the Caido TypeScript SDK CLI (
@caido/sdk-client, a.k.a.caido-ts) — to theweb-securitycapability. This is the TS companion to our existing Pythoncaido-sdkskill, vendored from the upstreamcaido/skillsPR #22 (merged to theirmain, source commit5bb27a9).It becomes a third independent Caido surface alongside:
caido-sdk— direct Pythoncaido-sdk-clientcallscaido-proxy/caido-go— MCP tool surfaceAll three target the same instance via
CAIDO_URL/CAIDO_PATand do not interfere: caido-mode caches its own auth in~/.claude/config/secrets.json, separate from the~/.caido-mcp/token.jsonused by the Python SDK skill and the MCP servers.What caido-mode adds
Curl-through-Caido testing (auth cached into reusable static curl configs), Match & Replace (tamper) rules, replay-session/collection handoffs, findings/scopes/filters/environments, and HTTPQL history search — write-side automation the other two skills don't cover.
Changes
skills/caido-mode/(tsx CLI +lib/+test/) fromcaido/skills@5bb27a9.node_modulesis gitignored.CAIDO_URL/CAIDO_PAT.npm installthe skill'snode_modulesat provision time (after Node setup).tsxglobally + document the dep.caido-modecheck, update description, bump1.6.0 → 1.7.0.Validation
npm test).just validategreen forweb-security@1.7.0(skills=79); newcaido-modecheck passes. Pre-existingcaido-cli/burpcheck warnings are unrelated (binaries absent on the dev host).Node deps are installed at provision time; nothing baked into the image (skill dir mounts at runtime).