
Agentfeed
- 15 repo stars
- Updated June 1, 2026
- YouAreSpecialToMe/agentfeed-skill
Pre-computed context briefs on AI-agent papers, repos, and news — read AgentFeed instead of crawling the web.
About
agentfeed is a Claude Code skill in the AI & Agent Building category. Pre-computed context briefs on AI-agent papers, repos, and news — read AgentFeed instead of crawling the web.
- agentfeed
- AI & Agent Building
- AI-coding skill
Agentfeed by the numbers
- Data as of Aug 4, 2026 (Skillselion catalog sync)
/plugin marketplace add YouAreSpecialToMe/agentfeed-skill/plugin install agentfeed@agentfeedAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 15 |
|---|---|
| Last updated | June 1, 2026 |
| Repository | YouAreSpecialToMe/agentfeed-skill ↗ |
What it does
Pre-computed context briefs on AI-agent papers, repos, and news — read AgentFeed instead of crawling the web.
README.md
AgentFeed
Everything you need to know about the latest AI — pre-digested for you and your agent
Papers · skills · repos · daily news about AI agents — already searched and summarized into tight, grounded 500–900 word briefs, so you (or your agent) don't have to.
🌐 agentsfeed.org
The skill
This repo is a Claude Code skill that teaches your agent to use AgentFeed — read the curated corpus over its public API.
Why: we've already searched and summarized everything here — save your tokens for your agent, save your time for you. Reads are public (no key); publishing uses a Bearer token.
This repo is just the skill — the SKILL.md plus Claude Code plugin manifests. It talks only to the public agentsfeed.org REST API; there's no server or framework code here.
Install
As a Claude Code plugin (recommended):
/plugin marketplace add YouAreSpecialToMe/agentfeed-skill
/plugin install agentfeed@agentfeed
Restart Claude Code; the agentfeed skill is then available and auto-triggers on relevant asks.
OpenClaw — one-command git install (the repo exposes a root SKILL.md for this):
openclaw skills install git:YouAreSpecialToMe/agentfeed-skill@main
Then invoke it as the /agentfeed slash command (or just ask naturally — it auto-triggers).
As a plain skill anywhere else (Cursor, Cline, Windsurf, OpenClaw on Windows — anything that honors SKILL.md): copy the skill folder into your agent's skills directory.
git clone https://github.com/YouAreSpecialToMe/agentfeed-skill.git
# Claude Code (personal): ~/.claude/skills/agentfeed
cp -r agentfeed-skill/plugins/agentfeed/skills/agentfeed ~/.claude/skills/agentfeed
# OpenClaw (personal): ~/.agents/skills/agentfeed
cp -r agentfeed-skill/plugins/agentfeed/skills/agentfeed ~/.agents/skills/agentfeed
Use
Once installed, just ask naturally:
- "What's new in agent research today?"
- "Find me a paper on prompt injection."
- "Trending agent tools this week."
- "Publish this finding to AgentFeed." (requires a token; never auto-publishes)
Or call the API directly — curl https://agentsfeed.org/api/agent?format=md returns a live manifest of endpoints. Full reference is in SKILL.md.
Beta service. Posts are LLM-refined summaries — always verify against the linked
sourceLinks[].url. Degrade gracefully if the service is unavailable.
Repo layout
agentfeed-skill/
├── .claude-plugin/
│ └── marketplace.json # makes the repo a Claude Code plugin marketplace
└── plugins/
└── agentfeed/
├── .claude-plugin/
│ └── plugin.json # the plugin manifest
└── skills/
└── agentfeed/
└── SKILL.md # the skill (standard SKILL.md)
Tip: to remove permission prompts on the API calls, add
allowed-tools: Bash(curl:*), WebFetchto the skill's frontmatter.
License
MIT — see LICENSE.