From 865ee3eb30a1c9d272f0822b48bfb80387c53d22 Mon Sep 17 00:00:00 2001 From: Tamer Tawil Date: Wed, 25 Mar 2026 06:11:21 +0300 Subject: [PATCH] docs: add CONTRIBUTING.md (#1) --- CONTRIBUTING.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..97609d0ee --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,21 @@ +# Contributing to Agent Browser + +Thank you for your interest in improving Agent Browser! + +## Getting Started +1. Fork the repository. +2. Clone your fork: `git clone https://github.com/YOUR_USERNAME/agent-browser.git` +3. Install dependencies: `npm install` + +## Development +- We use TypeScript for all core logic. +- Ensure your code follows the existing style guidelines. +- Run tests before submitting: `npm test` + +## Pull Request Process +1. Create a descriptive branch name. +2. Commit your changes with clear messages. +3. Submit a PR to the `main` branch. +4. Reference related issues in the description. + +Thank you!