Add data feeds starter kit example#35
Merged
Merged
Conversation
thodges-gh
force-pushed
the
feat/data-feeds-starter-kit
branch
from
June 17, 2026 19:52
a1ac328 to
13942c4
Compare
Contributor
Author
|
My test results:
Notes: "out of the box" means |
thodges-gh
marked this pull request as ready for review
June 17, 2026 22:00
andrejrakic
approved these changes
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a Data Feeds starter-kit template to the
chainlink-data-feeds-skillso the agentcan scaffold a complete, working Foundry project on request. The template — adapted from
the Foundry starter kit — lives
under
chainlink-data-feeds-skill/templates/starter-kit/and includes:src/PriceFeedConsumer.sol— a price feed consumer contract usingAggregatorV3Interfacescript/PriceFeedConsumer.s.sol— a Foundry deployment scripttest/PriceFeedConsumer.t.solwithtest/mocks/MockV3Aggregator.sol— tests and a mockaggregator
foundry.toml,remappings.txt, andREADME.md— project config and setup docsSKILL.mdis updated to point the agent at this template when a user asks for a workingexample, and its
metadata.versionis bumped to0.0.4.Justification
Developers frequently want a ready-to-run example rather than isolated snippets. Bundling
a known-good Foundry project lets the skill scaffold a functional Data Feeds project
end-to-end (build, test, deploy) instead of assembling files piecemeal, improving the
out-of-the-box experience and reducing integration errors.
Testing: Ensure you're on skill version
0.0.4, then in an empty project ask theagent: "Give me a working example of a data feeds project." The agent should use the
templates/starter-kitcode to scaffold a functional Foundry project.