Contributing
Agent Cloud is open source. Contributions are welcome across code, documentation, design, and developer education.
Where to start
Pick a lane and ship something small.
Website
Tighten copy, improve the visuals, add diagrams, or add new pages.
Docs
Make onboarding smoother: cloud-specific guides, FAQs, and troubleshooting.
Agents and providers
Improve analysis, planning, guardrails, and new deployment targets.
Local development
Install dependencies, then use the usual scripts.
pnpm install
pnpm build
pnpm type-check
pnpm test
Website development
The website is a static set of pages under website/.
Preview locally
Serve the files with any static server.
cd website
python3 -m http.server 5173
Edit content
Pages live as plain HTML files (for example website/index.html) and share common styles in website/assets/styles.css.
Submitting changes
Open a PR with a short description and screenshots when changing the website layout.
git checkout -b your-branch-name
git add -A
git commit -m "your message"
git push -u origin your-branch-name