Load tools through CrewAI and keep the runtime execution safe.
6
Setup steps
Workflow
Ready
Runtime
Safe
Integrated
Tools
CLI
Pull the manifest, set your policy, execute. No SDK sprawl, no boilerplate. Just the tool you need, right now.
pip install swytchcode-runtime crewai python-dotenv
swytchcode login
swytchcode get githubHow it connects
Follow these steps to connect your agent, load a toolkit, and start executing tools through Swytchcode.
Install the CLI, or use swy as a shorter alias for swytchcode.
npm install -g swytchcodeInstall the Runtime SDK together with CrewAI.
pip install swytchcode-runtime crewai python-dotenvSet up a Swytchcode project in your repo.
npx swytchcode
swytchcode initInitialize the CrewAI provider and load the tools your crew will use.
from swytchcode_runtime import Swytchcode
from swytchcode_runtime.providers.crewai import CrewAIProvider
swx = Swytchcode(provider=CrewAIProvider())
tools = swx.tools.get(toolkits=["github"])CrewAI can use those tools as normal agent tools while Swytchcode handles the execution path.
print(f"Loaded {len(tools)} tools for the crew")Run your script and keep the tool execution boundary within Swytchcode.
python main.pyWorks with
Install the CLI and pull your first manifest in under a minute. No account required.