Thanks for your interest! DeepCloak is a thin orchestrator over
local-deep-research
and CloakBrowser. Read
CLAUDE.md and CONTEXT.md first — they hold the
working rules and the domain glossary. Use the glossary's terms (Bot Wall,
Stealth Fetch, Escalation, Bypass, Evidence Record) in code, tests, and issues.
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]" # add ,mcp for the MCP server
deepcloak setup # download the stealth browser (for live runs)
pytest # run the suite
ruff check . # lintFor fast unit work you don't need the heavy upstreams: pip install pytest ruff
then pip install -e . --no-deps — the pure modules and mocked smoke tests run
without them (this is what CI does).
- Small, surgical changes. Each changed line should trace to the issue.
- Test behavior, not internals. The pure/deep modules (
bot_wall_detector,evidence,fetch_router,config) are unit-tested through their public interface; integration points are smoke-tested with fakes. - Respect the ADRs in
docs/adr/. If a change contradicts one, say so in the PR rather than silently overriding it. - Keep the stealth seam narrow. See ADR-0001.
- Grab an issue (start with
ready-for-agent/good first issue). - Branch, implement with tests, keep
pytestandruffgreen. - Open a PR that references the issue. CI must pass.
DeepCloak Bypasses bot-detection. You are responsible for having the right to
access whatever you fetch. robots.txt is ignored by default; --respect-robots
honors it. See ADR-0002.