{"id":45818119,"url":"https://github.com/blockscout/agent-skills","last_synced_at":"2026-05-02T00:00:55.383Z","repository":{"id":340474058,"uuid":"1159705303","full_name":"blockscout/agent-skills","owner":"blockscout","description":"A collection of AI agent skills for working with the Blockscout ecosystem — blockchain explorers, APIs, and supporting services.","archived":false,"fork":false,"pushed_at":"2026-04-30T06:54:32.000Z","size":813,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-30T08:21:26.864Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/blockscout.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-17T03:58:02.000Z","updated_at":"2026-04-24T17:17:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/blockscout/agent-skills","commit_stats":null,"previous_names":["blockscout/agent-skills"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/blockscout/agent-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockscout%2Fagent-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockscout%2Fagent-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockscout%2Fagent-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockscout%2Fagent-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blockscout","download_url":"https://codeload.github.com/blockscout/agent-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blockscout%2Fagent-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32517232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":[],"created_at":"2026-02-26T19:14:06.275Z","updated_at":"2026-05-02T00:00:55.366Z","avatar_url":"https://github.com/blockscout.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Blockscout Agent Skills\n\nA collection of AI agent skills for working with the Blockscout ecosystem — blockchain explorers, APIs, and supporting services.\n\nEach skill is a self-contained directory of structured instructions and helper scripts that give an AI agent domain expertise in a specific area. Skills follow the markdown-based format compatible with Claude Code, Codex, Cursor, OpenClaw, Claude Cowork, and other agents that support skill/instruction loading.\n\n## Skills\n\n| Skill | Description |\n|-------|-------------|\n| [blockscout-analysis](blockscout-analysis/) | Modular skill for blockchain data analysis and scripting using the Blockscout MCP Server. Guides agents to use native tools, REST API scripts, or hybrid flows for multi-chain EVM data. |\n| [web3-dev](web3-dev/) | Build web3 applications, scripts, CLIs, bots, and mobile/desktop clients that read blockchain data via the Blockscout PRO API — a single HTTP API spanning 100+ EVM chains. Sibling to `blockscout-analysis` (which targets the MCP server). |\n\n## Prerequisites\n\nDifferent skills depend on different Blockscout backends. Pick the row that matches the skill you want to install:\n\n| Skill | Requires |\n|-------|----------|\n| `blockscout-analysis` | Blockscout MCP server (auto-configured by the Claude Code and Codex plugins; configured manually for other agents — see below) |\n| `web3-dev` | Blockscout PRO API key (no MCP server involved) |\n\n## Setup\n\nEach skill is a directory with a `SKILL.md` entry point and supporting docs/scripts. Integration depends on your agent platform — see examples below. In the snippets below, replace `\u003cskill\u003e` with the directory name of the skill you want to install (e.g. `blockscout-analysis`, `web3-dev`).\n\n### Skills CLI (40+ agents)\n\nOne command installs a skill to 40+ coding agents (Claude Code, Codex, Cursor, Cline, Copilot, Windsurf, Continue, and more):\n\n```sh\nnpx skills@latest add https://github.com/blockscout/agent-skills --skill \u003cskill\u003e\n```\n\nUse `-g` to install globally, or `-a \u003cagent\u003e` to target a specific agent. See [skills.sh/docs](https://skills.sh/docs) for the full list of supported agents and options.\n\n\u003e **Note:** The Skills CLI installs the skill instructions only. Skill-specific backends (MCP server for `blockscout-analysis`, PRO API key for `web3-dev`) are **not** configured automatically — see [Prerequisites](#prerequisites).\n\n### Claude Code\n\nFor `blockscout-analysis`, no separate MCP server configuration is needed — it is set up automatically as part of the plugin installation. For `web3-dev`, you still need to provide a PRO API key (see [Prerequisites](#prerequisites)).\n\n```sh\nclaude plugin marketplace add blockscout/agent-skills\nclaude plugin install \u003cplugin\u003e@blockscout-ai\n```\n\nReplace `\u003cplugin\u003e` with `blockscout-analysis` or `web3-dev` (or run the install command once per plugin).\n\n### Claude Desktop (Chat / Cowork / Code)\n\nMust be configured separately for Chat/Cowork and for Code by the same procedure.\n\n1. Choose **Customize** in the sidebar:\n\n   ![Customize in sidebar](assets/Claude-Add-Pluging-00-Custmize.png)\n\n2. Choose **Browse plugins** → **Personal** → **Add marketplace from GitHub**:\n\n   ![Add marketplace from GitHub](assets/Claude-Add-Pluging-01-Add-Marketplace.png)\n\n3. Enter the GitHub repo ID `blockscout/agent-skills` and press **Sync**:\n\n   ![Enter repo ID](assets/Claude-Add-Pluging-02-Marketplace-GitHub.png)\n\n4. The marketplace **blockscout-ai** will appear in the list of Personal plugins. Click **Install** on each skill plugin you want (`blockscout-analysis`, `web3-dev`):\n\n   ![Install plugin](assets/Claude-Add-Pluging-03-Install-Plugin.png)\n\n5. Once installed, the plugin details are available in the **Customize** window:\n\n   ![Plugin info](assets/Claude-Add-Pluging-04-Plugin-Info.png)\n\n6. If the plugin has MCP servers associated (e.g. `blockscout-analysis`), their info will be available in the **Connectors** sub-item:\n\n   ![Plugin connector](assets/Claude-Add-Pluging-05-Plugin-Connector.png)\n\n### Codex CLI / Codex App\n\nAdd the marketplace first, then enable the skill plugin from inside Codex via the `/plugin` slash command (the command opens an interactive picker). For `blockscout-analysis`, the Blockscout MCP server is auto-configured by the plugin — no manual MCP setup required. For `web3-dev`, provide a PRO API key (see [Prerequisites](#prerequisites)).\n\n```sh\ncodex plugin marketplace add blockscout/agent-skills\n```\n\nThen run `codex` and type:\n\n```plaintext\n/plugin\n```\n\nSelect the marketplace **blockscout-ai** and enable the plugin(s) you want (`blockscout-analysis`, `web3-dev`).`\n\n### Gemini CLI\n\nThe first command (registering the Blockscout MCP server) is only needed for `blockscout-analysis`; skip it for `web3-dev`.\n\n```sh\ngemini mcp add --transport http blockscout https://mcp.blockscout.com/mcp   # blockscout-analysis only\ngemini skills install https://github.com/blockscout/agent-skills --path \u003cskill\u003e\n```\n\n## Updating\n\nThe skills and the underlying Blockscout infrastructure are under continuous development. Update the marketplace/plugin (Claude) or re-install the skill (Gemini, Codex) periodically to pick up the most recent versions.\n\n## Packaging\n\nTo create a distributable zip of a skill:\n\n```sh\nbash tools/package.sh \u003cskill-directory\u003e\n```\n\nThis produces `\u003cskill-directory\u003e-\u003cversion\u003e.zip` and `\u003cskill-directory\u003e-\u003cversion\u003e.skill` (version read from `SKILL.md` frontmatter) containing all tracked files except `.gitignore` and `README.md`. The `.skill` file is identical to the `.zip` but uses the extension recognised by Claude Desktop and Gemini CLI for one-click import.\n\n## Publishing Codex plugins\n\nThe Codex marketplace requires plugins to be self-contained directory trees with no symlinks. To keep each skill as a single source-of-truth directory at the repo root while still serving Codex, the published Codex layout lives on a dedicated `codex-plugins` branch. To regenerate that branch from the current `main` (or a release tag) and push it:\n\n```sh\nbash tools/publish-codex-plugins.sh [\u003csource-ref\u003e] [\u003ctarget-branch\u003e]\n```\n\nDefaults are `main` and `codex-plugins`. The script reads only committed content from `\u003csource-ref\u003e`, dereferences the symlinks under `.agents/plugins/*/skills/` into real directories, copies `.agents/plugins/marketplace.json` verbatim, writes a short `README.md`, and pushes the result. See [`.memory_bank/specs/publish-codex-plugins-spec.md`](.memory_bank/specs/publish-codex-plugins-spec.md) for the full specification.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblockscout%2Fagent-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblockscout%2Fagent-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblockscout%2Fagent-skills/lists"}