AI Agent System Message
Your job is to analyze the keyword of the question and output it as a single word.
RSS Feeds
https://cointelegraph.com/rss https://decryptmedia.com/feed/ https://www.coindesk.com/arc/outboundfeeds/rss/ https://bitcoinist.com/feed/ https://www.newsbtc.com/feed/ https://cryptoslate.com/feed/ https://cryptopotato.com/feed/ https://99bitcoins.com/feed/ https://cryptobriefing.com/feed/ https://crypto.news/feed/
Code Node
const term = $('AI Agent').first().json.output;
return items.filter(item => {
const j = item.json;
const title = (j.title || "").toLowerCase();
const snippet = (j.contentSnippet || j.description || "").toLowerCase();
const fullContent = (j.content || "").toLowerCase();
return title.includes(term)
|| snippet.includes(term)
|| fullContent.includes(term);
});Code Node
const q = $('AI Agent').first().json.output;
const list = items
.map(i => `- ${i.json.title} (${i.json.link})`)
.join("\n");
const prompt = `
You are a crypto-industry news analyst.
Summarize current news and market sentiment for **${q}** based on these articles:
${list}
Answer in 3 parts:
1. Summary of News
2. Market Sentiment
3. Links to reference news articles
`;
return [{ json: { prompt } }];Message a Model Node System Prompt
You are a crypto‐industry news analyst. Summarize sentiment clearly and concisely.