deepstrainQuick Start
Quick Start
Install deepstrain, configure your DeepSeek key, and run your first AI task — in under 2 minutes.
1. Install
bash
pip install deepstrain2. Configure
bash
deepstrain configure
# → Enter your DeepSeek API key (platform.deepseek.com)
# → Terminal opens deepstrain.vercel.app for activation
# → Pay once → terminal auto-activates3. Run
bash
# Interactive chat with 48 AI tools
deepstrain chat
# One-shot: pass a task directly
deepstrain chat "review auth.py for security issues"
# Short aliases — all equivalent
ds chat "refactor the User model"
strain chat "write tests for api.py"What happens inside
$ strain chat "add input validation to register()"
→ reading register() via surgical_read ...
→ detecting framework: FastAPI
→ patching with surgical_patch (AST-verified) ...
→ running tests: pytest tests/test_auth.py ...
✓ 3 tests passed · 0 failed
✓ Pydantic validators added, rollback-safe