Agent Skills · Developers
Install Dailybot as a native skill for Claude Code, Cursor, OpenAI Codex, Gemini, GitHub Copilot, Cline, Windsurf, and OpenClaw. Two open packs, one mental model, zero vendor lock-in.
A skill teaches your AI agent how to talk to Dailybot without you re-explaining every session. We ship two packs. agent-skill covers the core Dailybot API surface (reports, messages, email, health, check-ins, kudos, forms, teams). deepworkplan-skill is our Deep Work Plan methodology as a portable skill — the same one this repo runs on.
The two packs
agent-skill — the Dailybot surface
Eight sub-skills covering the core surface: report (progress updates), messages (poll team instructions), email (consent-gated), health (online/offline + pending messages), checkin (complete standups), kudos (users or teams), forms (full lifecycle: list/submit/update/transition/delete), teams (resolve names to UUIDs). Every sub-skill accepts both API-key and CLI-Bearer credentials — the parity guarantee holds inside the skill too.
Browse the full skills catalog →deepworkplan-skill — structured deep work
The Deep Work Plan methodology packaged as a router with 8 sub-skills: create, execute, refine, resume, status, verify, onboard, author. Turn any goal into an executable, gated plan. Same skill we’re using to ship this developer-portal overhaul.
GitHub →Install per agent
The agent-skill router installs the Dailybot CLI on first use (from https://cli.dailybot.com/install.sh, SHA-256 verified). Minimum CLI version pinned by the pack: 1.10.0. Set DAILYBOT_AUTO_YES=1 to skip the consent prompt in CI.
Claude Code
# Skills live under .claude/skills/ (or the .agents/ symlink).
npx skills add DailybotHQ/agent-skill
npx skills add DailybotHQ/deepworkplan-skillCursor
# Cursor reads .agents/. The agent-skill setup script symlinks .claude/ for us.
npx skills add DailybotHQ/agent-skill
npx skills add DailybotHQ/deepworkplan-skillOpenAI Codex / Gemini CLI
# Both follow the .agents/ convention with # command prefix.
npx skills add DailybotHQ/agent-skill
npx skills add DailybotHQ/deepworkplan-skill
# In-chat: #dailybot-report, #dwp-create, etc.OpenClaw
# OpenClaw pulls skills from the same registry.
openclaw skills install dailybot
openclaw skills install deepworkplanGitHub Copilot / Cline / Windsurf
# Any harness that reads .agents/ works out of the box.
git clone https://github.com/DailybotHQ/agent-skill && ./agent-skill/setup.sh
git clone https://github.com/DailybotHQ/deepworkplan-skill && ./deepworkplan-skill/setup.shArchitecture
Both packs are pure Markdown — no code, no binaries. A skill is a directory of SKILL.md files that describe capabilities in plain English; the AI agent reads them like documentation. Installation is a copy operation with a setup.sh that symlinks per-agent aliases; uninstalling is a delete. Per-repo silence: drop .dailybot/disabled in any repo root and every outbound call from the skill stops for that repo.
All skills in the catalog (2)
- Dailybot Agent SkillThe official cross-agent skill that turns any AI coding CLI — Claude Code, Cursor, Codex, Gemini, Copilot — into a real teammate on Dailybot. Eight sub-skills mapped 1:1 to the public API.
- Deep Work PlanThe flagship agent methodology from Dailybot. Turn any ambiguous multi-step goal into a numbered, atomic, validated plan every AI coding agent can execute — one gated task at a time.