hermes atlas
apr·2026 153·repos hermes·v0.10.0 ★ star this repo

smartcontractkit/chainlink-agent-skills

[PUBLIC] Repository for Chainlink Skills that implement https://agentskills.io/specification

★ 105 langJavaScript licenseMIT updated2026-05-26

This repository provides a collection of standardized coding skills for AI agents to interact with the Chainlink oracle network and smart contract ecosystem. Built on the agentskills.io specification, these tools allow agents to perform tasks such as managing cross-chain transfers, integrating data feeds, and implementing verifiable randomness. Developers can install specific skills via the Vercel open skills CLI to enable agents to generate workflows, handle on-chain verification, and manage runtime operations across multiple blockchain networks.

  • Standardized skills for CCIP, Data Feeds, VRF, and Data Streams
  • Supports CRE onboarding, workflow generation, and local simulations
  • Compatible with Vercel's open skills ecosystem CLI for easy installation
full readme from github

Chainlink Developer Agent Skills

Official Repo for Chainlink coding skills. Each skill follows the Agent Skills specification.

Available Skills

Skill Description
chainlink-cre-skill CRE onboarding, workflow generation, CLI/SDK help, and runtime operations
chainlink-ccip-skill CCIP sends, contracts, local testing, monitoring, discovery, and CCT workflows
chainlink-data-feeds-skill Data Feeds contracts, multi-chain Data Feeds integration
chainlink-data-streams-skill Data Streams REST/WebSocket SDKs, report decoding, on-chain verification, and real-time frontend apps
chainlink-ace-skill ACE core contracts, Policy Management, Cross-Chain Identity, and compliance token examples
chainlink-vrf-skill VRF v2.5 subscription and direct-funding consumers, migration from V2, billing, and network addresses

Install

Use vercel's CLI for the open skills ecosystem. Project-level installation is the default.

npx skills add smartcontractkit/chainlink-agent-skills

npx skills add smartcontractkit/chainlink-agent-skills

But if you want to install globally (at the user level) then add the -g flag.

Note the use of --skill to specify which specific skill to install.

npx skills add smartcontractkit/chainlink-agent-skills --skill chainlink-cre-skill -g
npx skills add smartcontractkit/chainlink-agent-skills --skill chainlink-ccip-skill -g
npx skills add smartcontractkit/chainlink-agent-skills --skill chainlink-data-feeds-skill -g
npx skills add smartcontractkit/chainlink-agent-skills --skill chainlink-data-streams-skill -g
npx skills add smartcontractkit/chainlink-agent-skills --skill chainlink-ace-skill -g
npx skills add smartcontractkit/chainlink-agent-skills --skill chainlink-vrf-skill -g

Use

When your agent supports Agent Skills, it will discover and activate these skills based on the task. However we recommend that you explicitly invoke the skill in your agent chat sessions as follows:

Using /chainlink-data-feeds-skill, /chainlink-cre-skill, and /chainlink-ccip-skill, 
build a tokenized fund project that:

- delivers data (NAV, yields and ESG attestations) securely on-chain
- mints fund tokens representing shares in a tokenized investment fund
- uses Chainlink Proof of Reserve by CRE for real-time verification of reserved assets
- can be traded and settled seamlessly across multiple public and private chains
- has a clean, modern UI dashboard

Create a development plan. Include steps for testing on testnets. 
Make sure README has instructions on how to run local CRE simulations and 
how to monitor status of cross-chain transfers using the CCIP CLI.

Any questions before you start?