feat: add crypto-market-movers template#262
Open
ngisaiah wants to merge 1 commit into
Open
Conversation
Scheduled agent that pulls the top 100 cryptocurrencies from CoinGecko, deterministically ranks the five largest 24-hour gainers and losers in code, and uses an LLM to summarize the results into a daily report. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Contributor
:robot_face: AgentKit Structural ValidationNew Contributions Detected
Check Results
🎉 All checks passed! This contribution follows the AgentKit structure. |
Contributor
WalkthroughChangesThe kit adds a scheduled CoinGecko workflow that validates and ranks market data in code, then formats the results through a constrained LLM report-generation step. Crypto Market Movers pipeline
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
5 tasks
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.
PR Checklist
1. Select Contribution Type
kits/<category>/<kit-name>/)bundles/<bundle-name>/)templates/<template-name>/)2. General Requirements
kebab-caseand matches the flow IDREADME.md(purpose, setup, usage)3. File Structure (Check what applies)
lamatic.config.tspresent with valid metadata (name, description, tags, steps, author) — repo useslamatic.config.ts, notconfig.json.tsfile inflows/(current repo convention — not the legacyconfig.json/inputs.json/meta.jsonper-flow folder structure).env.exampleonly required for kits/bundles; this is a template with no env vars4. Validation
apps/, nothing tonpm install/npm run dev; flow validated via Lamatic Studiofeat: add crypto-market-movers template)Summary
Test plan
current_price,price_change_percentage_24h,total_volume) are correctly excluded from ranking viaNumber.isFinitestrict checks (noNumber()coercion ofnullinto0).kits/crypto-market-movers/only (10 files, 597 insertions).crypto-market-moversscheduled agent kit and supporting configuration.crontrigger runs daily at 9:00 AM America/New_York.apinode fetches the top 100 USD cryptocurrencies from CoinGecko.codenode validates, normalizes, and ranks market data.llmnode formats the pre-ranked results into the required Markdown report.addNodeprovides a downstream attachment point.