Install this plugin in the same environment as LLM.
llm install llm-devinprerequisite: Devin API key and Organization ID (Devin Team Plan)
https://docs.devin.ai/api-reference/overview
Set up a service user and get your organization ID from Settings > Service users.
export LLM_DEVIN_KEY=your_api_key_here
export LLM_DEVIN_ORG_ID=your_org_id_here
llm -m devin "Hello, Devin"Continue that Devin conversation with llm -c immediately after the previous command, or specify the model explicitly:
llm -m devin -c "Follow-up message"Start an interactive chat session:
llm chat -m devinllm -m deepwiki -o repository ftnext/llm-devin "Summarize this repository"To set up this plugin locally, first checkout the code:
cd llm-devinThen create a new virtual environment and install the dependencies and test dependencies:
uv sync --extra testTo run the tests:
uv run pytest