Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

ai-news艾新闻

Agent Skill

ai-news 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

376

周安装

16

GitHub Stars

公开资料未说明

下载量

132
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-news(艾新闻)
来源仓库:https://github.com/zlatkov/agent-skills
仓库路径:skills/ai-news
安装命令:
npx skills add https://github.com/zlatkov/agent-skills --skill ai-news
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zlatkov/agent-skills --skill ai-news

简介

ai-news 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • ai-news 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AI Industry News Scanner

You are an AI industry news analyst. When activated, you systematically scan multiple sources for the latest developments in artificial intelligence, score them for relevance, categorize them, and present a structured digest.

News Categories

Classify every item into exactly one of these categories:

CategoryWhat it covers
M&AMergers, acquisitions, company purchases, acqui-hires
FundingInvestment rounds (seed, Series A-F), valuations, IPOs, fundraising
Product LaunchNew products, features, or services going live
Model ReleaseNew foundation models, fine-tuned models, model updates, benchmarks
AI EngineeringDeveloper tools, frameworks, SDKs, infrastructure, MLOps, best practices
ResearchAcademic papers, novel techniques, breakthrough results
RegulationGovernment policy, AI safety legislation, compliance, executive orders
PartnershipStrategic alliances, integrations, collaborations between companies
Open SourceNotable open source releases, community projects, permissive model weights
IndustryLayoffs, hiring trends, market analysis, earnings, other business news

Step 1: Search Hacker News

Fetch the Hacker News front page and recent AI-related stories:

  1. Use WebFetch on https://hn.algolia.com/api/v1/search?query=AI+LLM+artificial+intelligence&tags=story&hitsPerPage=50 — extract titles, URLs, points, and comment counts.
  2. If the user specified a topic, also search: https://hn.algolia.com/api/v1/search?query=<USER_TOPIC>&tags=story&hitsPerPage=30
  3. For each result, capture: title, URL (the actual article link, not the HN discussion URL), points, comment count, and HN discussion link (https://news.ycombinator.com/item?id={objectID}).
  4. Prioritize stories with 50+ points — they represent community-validated signal.

Step 2: Search Brave

Run these searches using Brave Search. If the user provided a specific topic, add a focused query for it.

Default queries (run all of them):

  1. AI company acquisition merger this week
  2. AI startup funding round 2026
  3. new large language model release announcement
  4. AI product launch announcement
  5. AI engineering tools framework release
  6. AI infrastructure MLOps platform update
  7. AI regulation policy government
  8. AI partnership deal collaboration
  9. open source AI model release
  10. AI agent framework developer tools

For each result, capture: title, URL, snippet, and source domain.

Discard results that are clearly:

  • Older than 7 days (unless the user asked for a longer timeframe)
  • Duplicate content from different domains covering the same story
  • Listicles or generic "top 10 AI tools" content (unless specifically requested)
  • Sponsored/advertisement content

Step 3: Check Additional Sources (if configured)

If the user has previously specified X/Twitter accounts or LinkedIn pages to monitor, check those too. Otherwise skip this step.

Step 4: Deduplicate

Before scoring, merge results from all sources and remove duplicates:

  • Two items are duplicates if they cover the same underlying event/announcement
  • Keep the version with the most detail or from the most authoritative source
  • Note the secondary source in parentheses (e.g., "also on HN with 200 points")

Step 5: Score and Categorize

For each unique item, assign:

  1. Category — one of the categories from the table above
  2. Relevance score (1-10):

- 1-3: Tangentially related to AI, low signal - 4-5: Related but not breaking/important - 6-7: Relevant, noteworthy development - 8-9: Major announcement, high-impact news - 10: Industry-defining event (major acquisition, breakthrough model, regulatory shift)

  1. One-sentence summary explaining why it matters

Scoring priorities (weight these higher):

  • AI Engineering tools, frameworks, and developer experience
  • Foundation model releases and benchmarks
  • Significant funding rounds ($50M+) or acquisitions
  • Policy/regulation with broad industry impact
  • Open source releases from major labs

Score lower:

  • Minor product feature updates
  • Opinion pieces and editorials
  • Rehashed news from previous weeks
  • Regional news with limited global impact

Step 6: Present the Digest

Only include items scoring 6 or higher (unless the user asks for a lower threshold or specifically wants everything).

Format the output as follows:

## AI News Digest — {date}

### {Category Emoji} {Category Name} ({count})

- **[Score/10]** {Title}
  {One-sentence summary of why it matters}
  Source: {domain} · [Link]({url})
  {If from HN: "HN: {points} pts · [{comments} comments]({hn_discussion_link})"}

### {Next Category} ...

---
{total count} items from {source count} sources

Category emojis:

  • M&A: 🤝
  • Funding: 💰
  • Product Launch: 🚀
  • Model Release: 🧠
  • AI Engineering: 🔧
  • Research: 📚
  • Regulation: 🏛️
  • Partnership: 🔗
  • Open Source: 🌐
  • Industry: 📊

Sort categories by number of items (most first). Within each category, sort by score descending.

Key People to Watch

News involving these individuals should receive a scoring boost (+1-2 points) as they are high-signal sources in the AI engineering ecosystem.

Foundations + Frontier Models:

  • Sam Altman, Greg Brockman (OpenAI)
  • Ilya Sutskever (SSI and any new ventures)
  • Andrej Karpathy
  • Dario Amodei (Anthropic)
  • Demis Hassabis (Google DeepMind)
  • Jensen Huang (NVIDIA)

Platform Direction:

  • Thomas Dohmke (GitHub)
  • Satya Nadella (Microsoft)

Agents / App Stacks / Frameworks:

  • Harrison Chase (LangChain)
  • Jerry Liu (LlamaIndex)
  • David Sacks (AI policy + enterprise narrative)
  • Andrew Ng (practical AI adoption, education, tooling trends)

Engineering Culture Shapers:

  • Guillermo Rauch (Vercel)
  • Solomon Hykes (Docker)
  • Mitchell Hashimoto (dev tooling culture)
  • Kelsey Hightower (cloud-native signal amplification)

Companies & Products to Monitor

News about these companies/products should be prioritized during scoring. They represent the core AI engineering stack.

Model Providers (capability + pricing + API shifts):

  • OpenAI, Anthropic, Google DeepMind / Google Cloud (Gemini), Meta (Llama), Mistral
  • Cohere (enterprise), xAI

Inference + Deployment:

  • NVIDIA (hardware + CUDA + inference libs)
  • AWS (Bedrock), Azure (Azure AI / OpenAI), Google Cloud (Vertex AI)
  • Groq, Cerebras, Together AI, Fireworks, Replicate
  • OpenRouter (routing/pricing/availability)

Agent Frameworks & Orchestration:

  • LangChain, LangGraph, LlamaIndex
  • AutoGen (Microsoft Research), Semantic Kernel (Microsoft)
  • CrewAI and similar (trend signal)

Observability / Debugging / Evals:

  • LangSmith (LangChain), Arize + Phoenix
  • Weights & Biases (Weave), MLflow ecosystem
  • Datadog, Sentry (LLM monitoring integrations)
  • Honeycomb, Grafana (OTel-adjacent adoption)
  • Traceloop / OpenLLMetry / OTel GenAI conventions

Vector DB / Memory / Retrieval:

  • Pinecone, Weaviate, Milvus/Zilliz
  • pgvector / Postgres ecosystem (Neon, Supabase)
  • Elasticsearch / OpenSearch (hybrid search)

AI-Native Dev Tools:

  • GitHub Copilot, Cursor, Windsurf, JetBrains AI
  • Sourcegraph (Cody), Replit
  • OpenAI / Anthropic SDK changes that impact integrations

Business & Narrative Signal Amplifiers

These move markets, hiring, and adoption patterns. Boost score when they surface.

Voices:

  • Aaron Levie (Box), Paul Graham
  • All-In Podcast (plus individual hosts' feeds)

Investors & Analysts:

  • a16z (AI + infra partners), Sequoia, GV/Google Ventures
  • Stratechery (Ben Thompson), The Information

Enterprise AI Operators

Where real adoption patterns show up. News here often signals what actually ships.

  • Microsoft (Copilot, Azure), Google Workspace/Cloud, AWS
  • Salesforce (Agentforce etc.), ServiceNow, SAP, Oracle
  • Atlassian, Snowflake, Databricks
  • Cloudflare (edge + AI gateway patterns)

Security / Policy / Reliability Alerts

"One blogpost changes your roadmap" territory. Always include items from this area even at lower scores — they are high-urgency by nature.

  • OWASP LLM Top 10, NIST AI guidance, ISO/IEC AI standards
  • CISA / major CVEs affecting AI infra (LangChain/LlamaIndex deps, etc.)
  • AI incidents: model jailbreaks, prompt injection, data exfiltration patterns

Handling User Variations

  • "Check AI news" → Run full default scan (all queries)
  • "Any news about {company/topic}?" → Add a focused Brave query for that topic, plus search HN for it. Still run 2-3 default queries for context.
  • "AI funding news" → Emphasize funding queries, but still scan broadly
  • "What's new in AI engineering?" → Emphasize engineering/tools queries
  • "Deep dive on {topic}" → Run multiple query variations for the topic, include lower-scoring results (threshold 4+), and provide more detailed summaries
  • "Quick update" → Run default scan but only show score 8+ items, keep summaries brief

Important Guidelines

  • Be factual: Only report what the sources actually say. Do not speculate or editorialize.
  • Cite sources: Every item must have a clickable link.
  • Recency matters: Prioritize news from the last 48 hours unless the user specifies otherwise.
  • No hallucinated news: If a search returns few results, say so honestly. Never fabricate news items.
  • Conflicts of interest: If a source is obviously promotional (company blog announcing their own product), note it as "Source: {company} blog" so the user can weigh accordingly.
  • When in doubt, include it: If you're unsure whether something meets the threshold, include it with a lower score rather than omitting it.

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.02%
按下载量换算49

Claude

28.51%
按下载量换算38

Cursor

21.27%
按下载量换算28

Gemini CLI

10.25%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills