# Send feed-diet to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "feed-diet",
    "name": "feed-diet",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/tkuehnl/feed-diet",
    "canonicalUrl": "https://clawhub.ai/tkuehnl/feed-diet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/feed-diet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=feed-diet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "scripts/classify.sh",
      "scripts/common.sh",
      "scripts/feed-diet.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "feed-diet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T13:50:42.097Z",
      "expiresAt": "2026-05-07T13:50:42.097Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=feed-diet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=feed-diet",
        "contentDisposition": "attachment; filename=\"feed-diet-0.2.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "feed-diet"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/feed-diet"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/feed-diet",
    "downloadUrl": "https://openagent3.xyz/downloads/feed-diet",
    "agentUrl": "https://openagent3.xyz/skills/feed-diet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/feed-diet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/feed-diet/agent.md"
  }
}
```
## Documentation

### 🍽️ Feed Diet

Audit your information diet and get a gorgeous report showing what you actually consume.

### Trigger

Activate when the user mentions any of:

"feed diet"
"information diet"
"audit my feeds"
"what am I reading"
"analyze my HN"
"reading habits"
"content diet"
"feed report"

### Audit Mode (default)

Determine the data source. Ask the user for one of:

A Hacker News username (e.g., "tosh")
An OPML file path containing RSS feed subscriptions



Fetch the content. Run the appropriate fetch script:
# For HN:
bash "$SKILL_DIR/scripts/hn-fetch.sh" USERNAME 100

# For OPML:
bash "$SKILL_DIR/scripts/opml-parse.sh" /path/to/feeds.opml



Classify items. Pipe the fetched items through the classifier:
cat items.jsonl | bash "$SKILL_DIR/scripts/classify.sh" > classified.jsonl

The classifier uses LLM (if ANTHROPIC_API_KEY or OPENAI_API_KEY is set) or falls back to keyword matching.


Generate the report. Run the main entry point:
bash "$SKILL_DIR/scripts/feed-diet.sh" audit --hn USERNAME --limit 100



Present the report to the user. The output is Markdown — render it directly.

### Digest Mode (weekly curated reading)

When the user wants a filtered reading list based on their goals:

bash "$SKILL_DIR/scripts/feed-diet.sh" digest --hn USERNAME --goal "systems programming, distributed systems" --days 7

### Quick Reference

CommandDescriptionfeed-diet audit --hn USERFull diet audit for an HN userfeed-diet audit --opml FILEFull diet audit from RSS feedsfeed-diet digest --hn USER --goal "X"Weekly digest filtered by goals

### Notes for the Agent

Be conversational. After presenting the report, offer observations like "Looks like you're heavy on news — want me to suggest some deeper technical feeds?"
Suggest the digest mode if the user seems interested in filtering their reading.
The report is the star. Don't summarize it — present it in full. It's designed to be screenshot-worthy.
If classification seems off, mention that setting an LLM API key improves accuracy.

### Discord v2 Delivery Mode (OpenClaw v2026.2.14+)

When the conversation is happening in a Discord channel:

Send a compact first summary (top category, diversity score, top 2 recommendations), then ask if the user wants the full report.
Keep the first response under ~1200 characters and avoid wide category tables in the first message.
If Discord components are available, include quick actions:

Show Full Diet Report
Generate Weekly Digest
Show Recommendations


If components are not available, provide the same follow-ups as a numbered list.
Prefer short follow-up chunks (<=15 lines per message) when sharing long reports.

### References

scripts/feed-diet.sh — Main entry point
scripts/hn-fetch.sh — Hacker News story fetcher
scripts/opml-parse.sh — OPML/RSS feed parser
scripts/classify.sh — Batch content classifier (LLM + fallback)
scripts/common.sh — Shared utilities and formatting

### Example 1: HN Audit

User: "Audit my HN reading diet — my username is tosh"

Agent runs:

bash "$SKILL_DIR/scripts/feed-diet.sh" audit --hn tosh --limit 50

Output: A full Markdown report with category breakdown table, top categories with sample items, surprising finds, and recommendations.

### Example 2: Weekly Digest

User: "Give me a digest of what's relevant to my work on compilers and programming languages"

Agent runs:

bash "$SKILL_DIR/scripts/feed-diet.sh" digest --hn tosh --goal "compilers, programming languages, parsers" --days 7

Output: A curated reading list of 10-20 items ranked by relevance to the user's goals.

### Example 3: RSS Feed Audit

User: "Here's my OPML file, tell me what my feed diet looks like"

Agent runs:

bash "$SKILL_DIR/scripts/feed-diet.sh" audit --opml /path/to/feeds.opml
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tkuehnl
- Version: 0.2.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T13:50:42.097Z
- Expires at: 2026-05-07T13:50:42.097Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/feed-diet)
- [Send to Agent page](https://openagent3.xyz/skills/feed-diet/agent)
- [JSON manifest](https://openagent3.xyz/skills/feed-diet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/feed-diet/agent.md)
- [Download page](https://openagent3.xyz/downloads/feed-diet)