{"id":42062874,"url":"https://github.com/webagent-cloud/webagent","last_synced_at":"2026-02-05T07:01:14.300Z","repository":{"id":288783965,"uuid":"969145583","full_name":"webagent-cloud/webagent","owner":"webagent-cloud","description":"🚀 Fast AI web browser agent to automate repetitive tasks","archived":false,"fork":false,"pushed_at":"2025-12-23T19:37:33.000Z","size":726,"stargazers_count":14,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-25T09:49:06.487Z","etag":null,"topics":["api","browser-use","llm","webagent"],"latest_commit_sha":null,"homepage":"https://webagent.cloud","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webagent-cloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-19T13:46:52.000Z","updated_at":"2025-12-23T19:37:36.000Z","dependencies_parsed_at":"2025-04-19T18:58:26.511Z","dependency_job_id":null,"html_url":"https://github.com/webagent-cloud/webagent","commit_stats":null,"previous_names":["webagent-cloud/webagent"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/webagent-cloud/webagent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webagent-cloud%2Fwebagent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webagent-cloud%2Fwebagent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webagent-cloud%2Fwebagent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webagent-cloud%2Fwebagent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webagent-cloud","download_url":"https://codeload.github.com/webagent-cloud/webagent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webagent-cloud%2Fwebagent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29114951,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T05:31:32.482Z","status":"ssl_error","status_checked_at":"2026-02-05T05:31:29.075Z","response_time":65,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","browser-use","llm","webagent"],"created_at":"2026-01-26T08:00:35.203Z","updated_at":"2026-02-05T07:01:14.280Z","avatar_url":"https://github.com/webagent-cloud.png","language":"Python","readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"frontend/src/assets/logo.png\" alt=\"WebAgent Logo\" width=\"200\"/\u003e\n\u003c/div\u003e\n\n🚀 Build fast and reliable AI browser agents !\n\nWebagent uses AI to build complex browser workflows from simple prompts.\n\n```\ncurl -X POST http://localhost:3000/runs \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"prompt\": \"Go to https://webagent.cloud and explain what the platform does.\"\n  }'\n```\n\n### Fast and reliable.\n\n- 🚀 Webagent can record and cache browser actions to build parameterized workflows, then replay repetitive tasks without using AI — fast and cost-effective.\n- 💊 Workflows are self-healing: if a website changes, the workflow falls back to AI.\n\n### Adaptable.\n\n- 🔒 Self-Host on your infrastructure\n- 🔗 Integrate into any app with the API, or n8n, Zapier, Make integrations.\n- 🌐 Multiple LLM compatibility\n- 🔎 Supports multiple Browsers sources: Local, Steel, Browserbase\n- 🔌 Compatible with multiple AI agent engine : Browser-use, Notte, Stagehand (soon)\n\n\n### And many more !\n- 💽 Store and retrieve results in database\n- 🪝 Get notified of results with webhooks\n- 🗄️ Structure results with JSON Schema\n- 🍪 Reuse sessions and cookies with authentication contexts (soon)\n\n## Installation\n\n### Option 1: Local Installation\n\n1. Make sure you have Python 3.12+ installed.\n2. Install the dependencies:\n\n```bash\npip install -r requirements.txt\n```\n\n3. Configure your `.env` file with the necessary environment variables (API keys, etc.)\nAdd your API keys for the provider you want to use to your .env file.\n\n```\nOPENAI_API_KEY=\nANTHROPIC_API_KEY=\nGEMINI_API_KEY=\n\nBROWSER_PROVIDER=local # local | browserbase | steel\n# Provide browser provider API keys if needed\nSTEEL_API_KEY=****\nBROWSERBASE_PROJECT_ID=******\nBROWSERBASE_API_KEY=******\n```\n\n4. Run the server\n\n```bash\npython server.py\n```\n\nGo on http://localhost:8080 and start automating !\n\n### Option 2: Docker Installation\n\n#### Using Docker\n\n1. Build the Docker image:\n\n```bash\ndocker build -t webagent .\n```\n\n2. Run the container:\n\n```bash\ndocker run -p 8080:8080 --env-file .env webagent\n```\n\nThe Docker image includes all necessary dependencies, including Playwright for browser automation.\n\n#### Using Docker Compose\n\n1. Configure your environment variables in the `docker-compose.yml` file or in a `.env` file.\n\n2. Start the service:\n\n```bash\ndocker-compose up\n```\n\nGo on http://localhost:8080 and start automating !\n\n## API Documentation\n\nThe documentation is available at https://docs.webagent.cloud/self-hosted-api-reference/introduction\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebagent-cloud%2Fwebagent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebagent-cloud%2Fwebagent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebagent-cloud%2Fwebagent/lists"}