Cursor CLI subagents and GitHub Actions.
Spawn parallel AI agents for any task:
cursor-agent -p "Research patterns" --model gpt-5 --force
cursor-agent -p "Implement features" --model sonnet-4 --force
cursor-agent -p "Debug code" --model auto --forceWorkflows handle repository maintenance automatically:
- Fix CI failures
- Resolve merge conflicts
- Improve PR descriptions
- Security audits
- Translate i18n keys
- Update documentation
uv sync && uv run pytest
python -c "from cursor_cli_examples import add; print(add(2, 3))"Run the calculator web interface:
# Install dependencies
uv sync
# Start the web UI (recommended)
uv run web
# Or manually:
cd src/cursor_cli_examples
python app.pyThen open your browser to http://localhost:5001 to use the calculator.
The web UI provides:
- Basic Calculator: Perform simple operations between two numbers
- Chain Calculator: Build complex calculations by chaining multiple operations together
Both calculators use the same underlying arithmetic functions from the main module.