π¦ 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.
βοΈ 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
"Invalid or missing token" error
dda_DAILY_DEV_TOKEN"Rate limit exceeded" error
X-RateLimit-Remaining header before making requestsRetry-After seconds before retryingTERMINAL
clawhub install daily-dev-feed