- jules.google.com - create PRs with a virtual SWE
- aistudio.google.com - free dev access to google models
- gemini.google.com
- chatgpt.com
- claude.com
- https://github.com/upstash/context7 and https://context7.com/ -- Docs to add to LLM context for up to date results.
- https://gitingest.com/ -- get any git repo to markdown format
- https://firebase.google.com/studio -- ai enabled vibe coding
- https://blog.google/technology/developers/introducing-gemini-cli-open-source-ai-agent/ -- google cli agent
- https://www.anthropic.com/claude-code - anthropic cli agent
https://github.com/actions/github-script -- script within github actions for github api stuff
- name: Output plan to PR (optional, small plans only)
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
const plan = fs.readFileSync('infra/tfplan', 'utf8');
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `Terraform plan completed. Artifact uploaded.`
});