{"id":51465154,"url":"https://github.com/rabilrbl/hermes-brave-search-plugin","last_synced_at":"2026-07-06T10:01:31.901Z","repository":{"id":364864426,"uuid":"1207771618","full_name":"rabilrbl/hermes-brave-search-plugin","owner":"rabilrbl","description":"Enable brave search in Hermes agent","archived":false,"fork":false,"pushed_at":"2026-05-06T11:58:28.000Z","size":9,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-14T22:03:14.498Z","etag":null,"topics":["brave-search","brave-search-api","hermes","hermes-agent","hermes-plugin"],"latest_commit_sha":null,"homepage":"","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/rabilrbl.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":"2026-04-11T11:33:01.000Z","updated_at":"2026-05-22T16:35:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"0bce35df-e73a-4782-a74c-b9741aa11916","html_url":"https://github.com/rabilrbl/hermes-brave-search-plugin","commit_stats":null,"previous_names":["rabilrbl/hermes-brave-search-plugin"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rabilrbl/hermes-brave-search-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabilrbl%2Fhermes-brave-search-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabilrbl%2Fhermes-brave-search-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabilrbl%2Fhermes-brave-search-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabilrbl%2Fhermes-brave-search-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rabilrbl","download_url":"https://codeload.github.com/rabilrbl/hermes-brave-search-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabilrbl%2Fhermes-brave-search-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35185688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-06T02:00:07.184Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["brave-search","brave-search-api","hermes","hermes-agent","hermes-plugin"],"created_at":"2026-07-06T10:01:28.353Z","updated_at":"2026-07-06T10:01:31.896Z","avatar_url":"https://github.com/rabilrbl.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hermes Plugin: Brave Search\n\nLive web search inside Hermes Agent via the [Brave Search API](https://brave.com/search/api/).\n\nRegisters one tool (`brave_web_search`) under the `brave-search` toolset.\n\n## Install\n\n```bash\nhermes plugins install rabilrbl/hermes-brave-search-plugin\n```\n\nDuring installation you will be prompted to enter your Brave Search API key (`BRAVE_API_KEY`). The value is saved to `~/.hermes/.env`.\n\n## Getting your API key\n\n1. Go to [https://api-dashboard.search.brave.com/app/keys](https://api-dashboard.search.brave.com/app/keys).\n2. Sign up or log in.\n3. Click **+ Add API Key** and copy the subscription token.\n\nThen set it manually if you skipped the prompt:\n\n```bash\n# ~/.hermes/.env\nBRAVE_API_KEY=\"your-api-key-here\"\n```\n\nRestart Hermes or run `/reset` to reload.\n\n## Usage\n\nEnable the `brave-search` toolset:\n\n```bash\nhermes tools enable brave-search\n```\n\nThen ask Hermes to search:\n\n```\nSearch for the latest Rust release notes\n```\n\n## Parameters\n\n| Parameter     | Type    | Required | Description                                       |\n|---------------|---------|----------|---------------------------------------------------|\n| `query`       | string  | Yes      | Search query                                       |\n| `count`       | integer | No       | Number of results (1–20, default 10)               |\n| `country`     | string  | No       | Country code, e.g. `us`, `in`                      |\n| `search_lang` | string  | No       | Result language code, e.g. `en`                    |\n| `freshness`   | string  | No       | Recency filter: `pd` (day), `pw` (week), `pm` (month), `py` (year) |\n| `safesearch`  | string  | No       | `off`, `moderate` (default), or `strict`           |\n\n## Example output\n\n```json\n{\n  \"query\": \"Rust release notes\",\n  \"count\": 10,\n  \"results\": [\n    {\n      \"title\": \"Rust 1.78.0 | Rust Blog\",\n      \"url\": \"https://blog.rust-lang.org/2024/05/02/Rust-1.78.0.html\",\n      \"description\": \"Announcing Rust 1.78.0...\",\n      \"source\": \"Rust Blog\",\n      \"age\": \"2 weeks ago\"\n    }\n  ]\n}\n```\n\n## Files\n\n- `plugin.yaml` — manifest and env requirements\n- `schemas.py` — tool schema shown to the model\n- `tools.py` — Brave Search API implementation\n- `__init__.py` — plugin registration wiring\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frabilrbl%2Fhermes-brave-search-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frabilrbl%2Fhermes-brave-search-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frabilrbl%2Fhermes-brave-search-plugin/lists"}