Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

daily-dev-feed每日开发源

Agent Skill

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

总安装

2,546

周安装

103

GitHub Stars

公开资料未说明

下载量

799
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:daily-dev-feed(每日开发源)
来源仓库:https://github.com/phancthanhduc/daily-dev-feed
安装命令:
openclaw skills install daily-dev-feed
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install daily-dev-feed

简介

由 daily.dev 提供支持的精选开发人员内容聚合。从数千个经过验证的来源获取实时文章、热门主题和个性化源。

SKILL.md

name
daily.dev Feed
description
Curated developer content aggregation powered by daily.dev. Get real-time articles, trending topics, and personalized feeds from thousands of validated sources.

daily.dev Feed Skill

Curated developer content aggregation powered by daily.dev. This skill wraps the daily.dev API to provide intelligent feed curation, trend detection, and personalized content discovery for developers.

Depends on: daily-dev skill v0.3.1+

Features

  • Personalized Feeds - Get content tailored to your tech stack and interests
  • Trending Detection - Discover what the developer community is talking about right now
  • Multi-Source Research - Aggregate perspectives across publishers on specific topics
  • Custom Feeds - Create dedicated feeds for learning projects or specific technologies
  • Bookmark Management - Organize and track articles you want to revisit
  • Tag Following - Follow technologies and stay current with their latest developments

Setup

Prerequisites

  1. daily-dev Skill - This skill depends on the daily-dev skill being installed:
   clawhub install daily-dev
  1. Daily.dev Plus Subscription - Required for API access

- Get one at https://app.daily.dev/plus

  1. API Token - Create at https://app.daily.dev/settings/api

- Tokens are prefixed with dda_ - Store securely using environment variables or your OS credential manager

Secure Token Storage

macOS - Keychain

security add-generic-password -a "$USER" -s "daily-dev-api" -w "dda_your_token"
export DAILY_DEV_TOKEN=$(security find-generic-password -a "$USER" -s "daily-dev-api" -w 2>/dev/null)

Windows - Credential Manager

$credential = New-Object System.Management.Automation.PSCredential("daily-dev-api", (ConvertTo-SecureString "dda_your_token" -AsPlainText -Force))
$credential | Export-Clixml "$env:USERPROFILE\.daily-dev-credential.xml"
$cred = Import-Clixml "$env:USERPROFILE\.daily-dev-credential.xml"
$env:DAILY_DEV_TOKEN = $cred.GetNetworkCredential().Password

Linux - Secret Service

echo "dda_your_token" | secret-tool store --label="daily.dev API Token" service daily-dev-api username "$USER"
export DAILY_DEV_TOKEN=$(secret-tool lookup service daily-dev-api username "$USER" 2>/dev/null)

API Reference

This skill exposes the full daily.dev public API via the dependency. Key endpoints:

  • GET /feeds/foryou - Your personalized feed
  • GET /feeds/popular - Trending content across the community
  • GET /feeds/discussed - Topics sparking debate
  • POST /feeds/custom - Create custom feeds by technology
  • GET /feeds/filters/tags - Browse available technology tags
  • POST /feeds/filters/tags/follow - Follow specific technologies
  • POST /bookmarks - Save articles you find valuable
  • GET /search/posts - Search content across all sources
  • GET /search/tags - Discover tags and topics
  • GET /profile - Manage your profile and stack

Full OpenAPI spec: https://api.daily.dev/public/v1/docs/json

Common Use Cases

📰 Weekly Tech Digest

Compile a personalized weekly summary of the most important developer news:

  • Fetch trending posts from /feeds/foryou and /feeds/popular
  • Filter by your followed technologies
  • Create a structured briefing with summaries and links
  • Deliver as email digest or Slack message

🚀 New Project Onboarding

When starting a new project, help developers stay current on its tech stack:

  • Analyze project dependencies (package.json, go.mod, Cargo.toml, etc.)
  • Auto-follow matching tags on daily.dev
  • Create a dedicated custom feed filtered to the project's technologies
  • Build a "Getting Started" bookmark list with foundational articles
  • Surface trending articles about the project's dependencies

🧠 Agent Self-Improvement

Keep your AI agents updated beyond their knowledge cutoff:

  • Create a custom feed for technologies the agent frequently assists with
  • Periodically fetch new articles to stay current
  • Include citations like "As of this week, the recommended approach is..."
  • Continuously adapt feed filters based on user questions

🔍 Research Deep Dive

Support learning about new technologies:

  • Create a custom feed filtered to a specific topic
  • Set up a matching bookmark list to collect best resources
  • Track learning progress: compare bookmarked posts vs. new items
  • Adjust feed filters as understanding deepens (beginner → advanced)

📊 Competitive Intelligence

Monitor what's happening in your technology space:

  • Track trending topics in your domain
  • Aggregate coverage from multiple sources
  • Identify emerging patterns and adoption trends
  • Surface discussions about competing approaches

🔀 Multi-Source Synthesis

Get balanced perspectives on controversial topics:

  • Search for coverage from multiple publishers
  • Compare viewpoints across sources
  • Surface where sources agree vs. disagree
  • Create synthesis documents with citations

Rate Limits

  • 60 requests per minute per user

Monitor these response headers:

  • X-RateLimit-Limit - Maximum requests per window
  • X-RateLimit-Remaining - Requests remaining
  • X-RateLimit-Reset - Unix timestamp of window reset
  • Retry-After - Seconds to wait when rate limited

Error Handling

CodeMeaning
401Invalid or missing token
403Plus subscription required
404Resource not found
429Rate limit exceeded

Error Response Format:

{
  "error": "error_code",
  "message": "Human readable message"
}

Security Notes

CRITICAL: Your API token grants access to personalized content. Protect it:

  • NEVER send your token to any domain other than api.daily.dev
  • Never commit tokens to code or share them publicly
  • Rotate tokens periodically
  • Use environment variables or secure credential managers only

Integration with Gas Town Agents

Use this skill in your agentic framework to enable agents to:

  • Stay current on the latest developer trends
  • Provide timely recommendations based on real-time content
  • Build personalized learning experiences for users
  • Discover and share relevant articles based on user context
  • Generate informed briefs on technology topics

Example agent trigger: "What should the team be paying attention to this week?"

Troubleshooting

"Plus subscription required" error

  • Ensure your daily.dev account has an active Plus subscription
  • Verify your API token is from a Plus account at https://app.daily.dev/settings/api

"Invalid or missing token" error

  • Verify the token starts with dda_
  • Ensure the token is stored in the correct environment variable: DAILY_DEV_TOKEN
  • Re-create the token if it's been compromised

"Rate limit exceeded" error

  • Check X-RateLimit-Remaining header before making requests
  • Implement exponential backoff for retries
  • Consider batching requests where possible
  • Wait for Retry-After seconds before retrying

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

76.48%
按下载量换算611

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills