Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Contributing to agent-browser

Thanks for your interest in contributing!

## Getting Started

1. Fork the repository
2. Clone your fork: `git clone https://github.com/YOUR_USERNAME/agent-browser.git`
3. Install dependencies: `pnpm install`
4. Build: `cargo build --release`

## Development Workflow

- Create a feature branch: `git checkout -b feat/your-feature`
- Make your changes
- Run tests: `cargo test`
- Commit using conventional commits: `feat:`, `fix:`, `docs:`, `chore:`
- Push and open a Pull Request

## Pull Request Guidelines

- Keep PRs focused on a single change
- Update documentation if needed
- Add tests for new features
- Ensure CI passes

## Code Style

- Rust: follow standard `rustfmt` conventions
- TypeScript: follow the project's ESLint configuration
- Commit messages: follow [Conventional Commits](https://www.conventionalcommits.org/)

## Questions?

Open an issue or start a discussion!
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# agent-browser
\n[![npm version](https://img.shields.io/npm/v/agent-browser)](https://www.npmjs.com/package/agent-browser) [![License](https://img.shields.io/github/license/dextonai/agent-browser)](LICENSE)

Browser automation CLI for AI agents. Fast native Rust CLI.

Expand Down