Skip to main content

For Developers & AI Agents

This page provides resources for developers building integrations with daily.dev and AI agents that need to understand or interact with the platform.

Machine-Readable Resources

ResourceURLDescription
llms.txt/llms.txtConcise platform overview for LLMs
Feature Index/api/features.jsonStructured JSON index of all features
OpenAPI Specapi.daily.dev/public/v1/docs/jsonFull API specification
Sitemap/sitemap.xmlAll documentation pages

Public API

The daily.dev Public API provides programmatic access to feeds, posts, bookmarks, and more.

Full API Documentation →

Quick Example

curl -H "Authorization: Bearer $TOKEN" \
"https://api.daily.dev/public/v1/feeds"

AI Agent Integrations

daily.dev provides skills/plugins for popular AI coding assistants:

Claude Code

claude plugin marketplace add https://github.com/dailydotdev/daily.git
claude plugin install daily.dev@daily.dev
claude "/daily.dev setup"

OpenClaw

Install the daily-dev skill from clawdhub and explain my new superpowers

Skill available at clawhub.ai/idoshamun/daily-dev

Codex

$skill-installer install the daily.dev skill from https://github.com/dailydotdev/daily.git

Cursor

  1. Open Settings → Rules
  2. Add Remote Rule from: https://github.com/dailydotdev/daily.git
  3. Use /daily.dev in Agent chat

Repository Access

For AI agents working with daily.dev codebases:

RepositoryPurpose
dailydotdev/docsThis documentation site
dailydotdev/appsWeb app and browser extension
dailydotdev/daily-apiBackend API

Each repository includes:

  • CLAUDE.md - Instructions for Claude/AI assistants
  • AGENTS.md - General AI agent guidelines (where applicable)

Feature Discovery

The features.json file provides a structured index of all platform features, including:

  • Feature descriptions and documentation links
  • API endpoints (where applicable)
  • Capabilities and limitations
  • Plus-only feature flags

Example: Checking if a feature requires Plus

const features = await fetch('https://docs.daily.dev/api/features.json').then(r => r.json());

if (features.features.smart_prompts.plus_only) {
console.log('Smart Prompts requires Plus subscription');
}

Rate Limits

When using the API programmatically:

Limit TypeRate
IP-based300 requests/minute
User-based60 requests/minute

Check response headers for current limits:

  • x-ratelimit-limit
  • x-ratelimit-remaining
  • x-ratelimit-reset

Support