🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Daily Dev Feed

by @phancthanhduc

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

Versionv0.1.0
βš™οΈ Configuration

Prerequisites

1. daily-dev Skill - This skill depends on the daily-dev skill being installed:

   clawhub install daily-dev
   

2. Daily.dev Plus Subscription - Required for API access - Get one at https://app.daily.dev/plus

3. 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)

πŸ“‹ Tips & Best Practices

"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
  • View on ClawHub
    TERMINAL
    clawhub install daily-dev-feed

    πŸ§ͺ Use this skill with your agent

    Most visitors already have an agent. Pick your environment, install or copy the workflow, then run the smoke-test prompt above.

    πŸ” Can't find the right skill?

    Search 60,000+ AI agent skills β€” free, no login needed.

    Search Skills β†’