Skill · em Dados, IA e pesquisa

ai-release-hunter

Daily digest of AI releases from Anthropic, Meta, Vercel Labs, OpenAI and Google GitHub repos, the Claude Cowork changelog, the claude.dev blog and Hacker News, deduplicated against a local state file and sent by email. Use when the user asks for a daily AI news digest, to scan AI labs for new…

Procedência

Antes de instalar

1 arquivo · 11,2 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/skills/ai-release-hunter/.

d=".claude/skills/ai-release-hunter"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/ai-research/ai-release-hunter"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.claude/skills/ai-release-hunter/.

d="$HOME/.claude/skills/ai-release-hunter"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/ai-research/ai-release-hunter"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Codex

Neste projeto: instala em .agents/skills/ai-release-hunter/.

d=".agents/skills/ai-release-hunter"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/ai-research/ai-release-hunter"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.agents/skills/ai-release-hunter/.

d="$HOME/.agents/skills/ai-release-hunter"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/ai-research/ai-release-hunter"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Antigravity

Neste projeto: instala em .agents/skills/ai-release-hunter/.

d=".agents/skills/ai-release-hunter"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/ai-research/ai-release-hunter"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Global: instala em ~/.gemini/antigravity-cli/skills/ai-release-hunter/.

d="$HOME/.gemini/antigravity-cli/skills/ai-release-hunter"
u="https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/skills/ai-research/ai-release-hunter"
curl -fsSL --create-dirs \
  -o "$d/SKILL.md" "$u/SKILL.md"

Peça ao Rook

Já usa o Rook Labs? Cole no chat do Rook: instale a skill https://rooklabs.sh/marketplace/cct.ai-release-hunter

Prévia do SKILL.md

---
name: ai-release-hunter
description: Daily digest of AI releases from Anthropic, Meta, Vercel Labs, OpenAI and Google GitHub repos, the Claude Cowork changelog, the claude.dev blog and Hacker News, deduplicated against a local state file and sent by email. Use when the user asks for a daily AI news digest, to scan AI labs for new releases, or…
license: MIT
allowed-tools: Bash Read Write WebFetch
metadata:
  author: Daniel Avila
  version: "1.0.0"
  tags: "ai-news, releases, github, hacker-news, digest, email, anthropic, openai, google, meta, vercel"
---

# AI Release Hunter (Anthropic + Meta + Vercel + OpenAI + Google + Hacker News)

Scans the public AI repos of Anthropic, Meta, Vercel Labs, OpenAI and Google on GitHub, plus the Claude Cowork changelog, the claude.dev blog and Hacker News, and emails a digest of the day's relevant movements. Designed to run once a day as a scheduled job (cron, a Claude Code routine, or `/loop`).

## Configuration

Set these before the first run. Every path is relative to the working directory unless you choose otherwise.

| Setting | Default | Purpose |
|---------|---------|---------|
| `RECIPIENT_EMAIL` | *(required)* | Address that receives the digest |
| `SEND_COMMAND` | *(required)* | Command that sends an email given a recipient, subject and body file (e.g. a Gmail CLI, `mail` or `sendmail`; to send through an MCP tool instead, add it to `allowed-tools`) |
| `STATE_DIR` | `.release-hunter/state/` | Deduplication state (`seen.json`) |
| `SNAPSHOT_DIR` | `.release-hunter/snapshots/` | Page snapshots (Vercel Labs, Cowork changelog) |
| `OUTPUT_DIR` | `.release-hunter/output/` | Email bodies and run logs |
| `EMAIL_LANGUAGE` | Spanish | Language of the email |
| `EMAIL_SUBJECT` | `IA: novedades del día (Anthropic + Meta + Vercel + OpenAI + Google + Hacker News)` | Subject line |
| `AUDIENCE` | the user's audience | Who the "why it matters" lines are written for (e.g. a YouTube channel, a team) |

Suggested schedule: daily at ~08:00 in the user's time zone.

Add `.release-hunter/` to `.gitignore` so state, snapshots and email bodies are never committed. The scan makes well over 60 GitHub API calls per run, so a `GITHUB_TOKEN` is strongly recommended (see below).

## Watched sources

### Anthropic (GitHub org `anthropics`)
- anthropics/claude-code
- anthropics/claude-cookbooks
- anthropics/anthropic-sdk-python
…

Ver todo o marketplace