agent-management
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to…
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
$ npx -y skills add davila7/claude-code-templates --skill ai-release-hunter --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ai-release-hunterContext preview
The summary Claude sees to decide when to auto-load this skill.
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
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 to set up a scheduled release-hunter job. 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"
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`).
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).
Also list the org's repos (`https://api.github.com/orgs/anthropics/repos?per_page=100`) and consider any other with recent relevant activity (agent SDKs, examples, tooling).
Anthropic's technical blog with tips, techniques and POVs from its developers for building with Claude. Fetch it with WebFetch and take the list of recent posts (date + title + link). Compare against the already-reported ones in `STATE_DIR/seen.json` under the key `claude_dev_posts` (list of slugs or URLs; create it if missing). Report each new post as a highlighted item: title, date, one line on why it matters to `AUDIENCE` + link to the post. Add the new ones at the end.
If any repo returns 404, skip it and continue. Also list both orgs' repos and add up to ~15 more with a push in the last 30 days whose name or description fits AI: new models, agents, MCP, vision, audio, multimodal, diffusion, segmentation, embeddings, fine-tuning, RL. Ignore internal infra repos, consumer product demos or archived ones.
If any repo returns 404, skip it and continue. Also list the org's repos and add those with a push in the last 30 days not already in the list.
Labs page updates: fetch https://vercel.com/labs and compare the experiment list (name + category: Labs products / Active experiments / Past experiments) against the snapshot at `SNAPSHOT_DIR/vercel-labs-experiments.json`. Report any new experiment or category change as a highlighted item. Update the snapshot at the end.
If any repo returns 404, skip it and continue. Also list the org's repos and add up to ~10 more with a push in the last 30 days whose name or description fits AI: agents, codex, MCP, skills, computer use, guardrails, plugins, sandboxing. Ignore
Ready-to-use configurations for Anthropic's Claude Code. A comprehensive collection of AI agents, custom commands, settings, hooks, external integrations (MCPs), and project templates to enhance your development workflow.
Repo: davila7/claude-code-templates
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to…
Send and receive cryptographically signed messages between AI agents using the Agent…
Search auto-generated codebase documentation for function signatures, API docs, class…
Query the code graph database to understand component relationships, dependencies, and change…
Search conversation history and semantic memory to recall previous discussions, decisions,…