← ClaudeAtlas

daily-devlisted

Overcome LLM knowledge cutoffs with real-time developer content. daily.dev aggregates articles from thousands of sources, validated by community engagement, with structured taxonomy for precise discovery.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 82
Install: claude install-skill aiskillstore/marketplace
# daily.dev API for AI Agents Overcome LLM knowledge cutoffs with real-time developer content. daily.dev aggregates articles from thousands of sources, validated by community engagement, with structured taxonomy for precise discovery. ## Security **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 - Tokens are prefixed with `dda_` - if you see this prefix, treat it as sensitive ## Setup 1. **Requires Plus subscription** - Get one at https://app.daily.dev/plus 2. **Create a token** at https://app.daily.dev/settings/api 3. Store your token securely (environment variables, secrets manager) User can use environment variable or choose one of the secure storage methods below per operating system. ### Secure Token Storage (Recommended) #### macOS - Keychain ```bash # Store token security add-generic-password -a "$USER" -s "daily-dev-api" -w "dda_your_token" # Retrieve token security find-generic-password -a "$USER" -s "daily-dev-api" -w # Auto-load in ~/.zshrc or ~/.bashrc export DAILY_DEV_TOKEN=$(security find-generic-password -a "$USER" -s "daily-dev-api" -w 2>/dev/null) ``` #### Windows - Credential Manager ```powershell # Store token (run in PowerShell) $credential = New-Object System.Management.Automation.PSCredential("daily-dev-api", (ConvertTo-SecureString "dda_your_token" -AsPlainText -Force)) $credential | Export-