Agent Reach — Python CLI + library that gives AI agents read/search access to 14+ internet platforms. Positioning: installer + doctor + config tool. NOT a wrapper — after install, agents call upstream tools directly. Repo: github.com/Panniantong/Agent-Reach | License: MIT | Version: 1.3.0
pip install -e .— Dev installpytest tests/ -v— All testspytest tests/test_cli.py -v— CLI tests onlybash test.sh— Full integration test (creates venv, installs, runs doctor + channel tests)python -m agent_reach.cli doctor— Run diagnosticspython -m agent_reach.cli install --env=auto— Auto-configure
agent_reach/cli.py— CLI entry point (argparse)agent_reach/core.py— Core read/search routing logicagent_reach/config.py— Config management (YAML, env vars)agent_reach/doctor.py— Diagnostics engineagent_reach/channels/— One file per platform (twitter.py, reddit.py, youtube.py, etc.)agent_reach/channels/base.py— Base channel class (all channels inherit from this)agent_reach/integrations/mcp_server.py— MCP server integrationagent_reach/skill/— OpenClaw skill filesagent_reach/guides/— Usage guidestests/— pytest testsconfig/mcporter.json— MCP tool config
- Python 3.10+ with type hints
- Each channel is a single file in
channels/, inherits fromBaseChannel - Channel contract: must implement
can_handle(url),read(url),search(query),check()methods - Use
logurufor logging,richfor CLI output - Commit format:
type(scope): message(one commit = one thing) - All upstream tool calls go through public API/CLI, never hack internals
- NEVER modify upstream open source projects' source code
- Agent Reach is a "glue layer" — only route and call, don't reimagine
- Version in THREE places must match:
pyproject.toml,__init__.py,tests/test_cli.py - Always new branch for changes, PR to main, never push to main directly
- Run
pytest tests/ -vbefore committing — all tests must pass - Cookie-based auth (Twitter, XHS): use Cookie-Editor export method only, no QR scan
- XHS login: Cookie-Editor browser export only (QR will hang)