Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
dailybothq avatar

Deepworkplan

  • 81 installs
  • 19 repo stars
  • Updated July 16, 2026
  • dailybothq/deepworkplan-skill

Makes a repository AI-agent-ready (AGENTS.md, docs, .agents) and runs structured multi-task Deep Work Plans an agent drafts, executes, and resumes.

About

A router skill that onboards a repo into an AI-first structure and drives durable multi-task Deep Work Plans through create, execute, refine, resume, status, and verify sub-skills. Developers use it to plan and run long-horizon coding work an agent can execute autonomously.

  • Routes intent to create/execute/refine/resume/status/verify/onboard sub-skills
  • Plan outputs land in a gitignored .dwp/ directory at repo root

Deepworkplan by the numbers

  • 81 all-time installs (skills.sh)
  • Ranked #1,442 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dailybothq/deepworkplan-skill --skill deepworkplan

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs81
repo stars19
Last updatedJuly 16, 2026
Repositorydailybothq/deepworkplan-skill

What it does

Makes a repository AI-agent-ready (AGENTS.md, docs, .agents) and runs structured multi-task Deep Work Plans an agent drafts, executes, and resumes.

Files

addons/dailybot/SKILL.mdMarkdownGitHub ↗

DeepWorkPlan — Dailybot Addon

Connect the target repo to the developer's Dailybot team so that DWP work — especially a plan completion — surfaces to humans as a standup-style progress/milestone report. This is an opt-in addon; it is never required for a repo to be AI-first, and it never blocks the actual work.

## The rule that overrides everything: this addon DEFERS, it does not reinvent

>

The official Dailybot agent skill already owns install, consent, auth,
context detection, the writing style, and the non-blocking guarantee. This
addon's job is narrow: (1) offer to install the Dailybot skill/CLI through
their own consent flows, and (2) wire an optional report step into DWP
execute/plan-completion that routes through the dailybot report sub-skill.
It MUST NOT duplicate, bypass, or weaken any Dailybot consent or auth flow —
it points at them. (Normative source: `SPEC.md`.)

Positioning guardrail (read before anything)

The core DeepWorkPlan methodology has ZERO Dailybot dependency. It is vendor-neutral, MIT, and agent-agnostic. A repo with zero addons — including this one — is fully conformant. This addon adds team visibility for developers who already use Dailybot; declining it leaves a fully AI-first repo. Never present Dailybot as a precondition for DWP, and never auto-install it for everyone.

Read these first (all relative inside the skill)

  • `SPEC.md` — the normative (RFC-2119) contract: what is installed

(all opt-in), how auth is deferred, how the report step is wired, the never-block rule, and the vendor-neutral guardrail.

  • `templates/INTEGRATION.md` — reasoning guidance

(NOT copy-paste): detect-if-already-installed, how to wire the optional report step into DWP execution, and the consent / never-block rules.

  • ../README.md — the addon mechanism (opt-in, reconcile-don't-clobber, contract).

When this runs

  • From `onboard` Phase 7b — after the core AI-first scaffolding, onboard

offers this addon alongside devcontainer; if accepted it reads this SKILL and runs the flow below.

  • Directly/deepworkplan-addon-dailybot on an already-onboarded repo to

add the Dailybot integration.

The flow

Step 0 — Consent + recommend-only-if-relevant

1. Confirm relevance. Offer this addon only when it makes sense: the developer or team already uses Dailybot, or explicitly asks for team reporting. In trust/auto mode you MAY recommend it only on that signal — do not auto-install for everyone. If the developer declines, stop cleanly; the repo stays baseline-conformant. 2. Detect existing setup (reconcile-don't-clobber). Before installing anything, check what is already present (see templates/INTEGRATION.md):

  • Dailybot skill already installed at the agent's skills dir

(~/.<agent>/skills/dailybot/)?

  • dailybot CLI already on PATH (command -v dailybot)?
  • A repo identity already committed (.dailybot/profile.json or

.dailybot_example/profile.json)?

  • An existing report step already wired into the repo's DWP execute notes?
  • Harness hook configs already carrying dailybot hook entries

(.claude/settings.json, .agents/settings.json, .cursor/hooks.json, …)? If a piece already exists, do not redo it — record it and only fill gaps.

Step 1 — Offer the Dailybot skill + CLI install (OPT-IN, defer consent)

Present the install paths and let the developer choose; never run an installer without their explicit acceptance — and where the Dailybot skill's own consent flow applies, defer to it rather than prompting yourself.

  • Dailybot agent skill (the recommended path — it brings the consent/auth

flow with it):

  • npx skills add DailybotHQ/agent-skill (cross-agent, recommended), or
  • OpenClaw native: openclaw skills install dailybot, or
  • git clone https://github.com/DailybotHQ/agent-skill.git + run its setup.sh.
  • Dailybot CLI (the underlying bridge, from

`DailybotHQ/cli`; the skill installs it on first use via its own SHA-256-verified consent flow — you generally do not install it separately, but these are the supported paths if asked):

  • curl -sSL https://cli.dailybot.com/install.sh | bash — pair with the

checksum/consent verification the Dailybot skill documents in shared/auth.md (cross-origin diff + .sha256 sidecar check; never run it unverified), or

  • pip install dailybot-cli (Python 3.10+), or
  • brew install dailybothq/tap/dailybot (macOS).
Do not reimplement the verified installer. If the Dailybot skill is being
installed, let its shared/auth.md flow drive the CLI install + checksum
verification. Only surface the raw CLI commands when the developer explicitly
wants the CLI without the skill.

Step 2 — Auth: DEFER to the Dailybot skill's own consent flow

Do not prompt for email, OTP, or API keys yourself, and do not store any credential. Authentication is owned by the Dailybot skill's `shared/auth.md`: dailybot login (email OTP) or DAILYBOT_API_KEY / dailybot config key=.... Point the developer at that flow; the skill handles login, profile, and the HTTP fallback. If they decline auth, skip reporting — never block.

Step 3 — Wire the plan lifecycle events into DWP execution

This is the integration value. Reasoning guidance is in templates/INTEGRATION.md — adapt it to the repo; do not copy verbatim.

  • Add a short, clearly-optional note to the repo's DWP execution docs (e.g. the

generated AGENTS.md reporting section and/or docs/AI_AGENT_COLLAB.md) describing the four lifecycle events (SPEC §5.1) that fire when the Dailybot skill is installed: 1. Kickoff (SHOULD, regular) — when a plan is materialized and approved, report what is being built and why ("Starting: …"). 2. Significant task (MAY, regular) — a feature/bug fix/major refactor completes; intermediate setup tasks are never reported. 3. Blocked (SHOULD, regular with blockers) — the plan halts on a stop condition and state.json.blocked is populated (typical of unattended runs): the team sees what is stuck and what it needs in the standup instead of discovering a silent overnight halt. 4. Completion (SHOULD, the only milestone) — via the dailybot report sub-skill (dailybot agent update ... --milestone --json-data ...), describing what was built, never "completed a plan."

  • Where the plan carries the machine-readable state layer

(../../spec/PLAN_STATE.md), derive the --json-data payload from state.json: completed from completed tasks (phrased as outcomes), in_progress from the current task, blockers from state.json.blocked.

  • Every event MUST be best-effort and conditional: it fires only if the

Dailybot skill/CLI is present and authenticated, and it MUST NOT block create or execute if Dailybot is absent, unauthenticated, or unreachable — warn once and continue (see SPEC §Never-block).

  • Optionally commit a repo identity so every contributor/agent signs reports the

same way: .dailybot/profile.json (or the gitignore-friendly .dailybot_example/profile.json template) — never with a key field (credentials in that file are a hard error per the CLI). The same file MAY carry the committed report policy the hooks honor: "report": {"min_interval_minutes": 30, "nudge": true} ("nudge": false is the soft opt-out that keeps manual reporting available).

Step 3b — Offer deterministic hook enforcement (OPT-IN, defer to the Dailybot skill)

The lifecycle wiring above is prompt-layer: it relies on the model remembering to report. Since Dailybot agent skill >= 1.6.0 with dailybot-cli >= 1.12.0, the Dailybot skill also ships deterministic hook enforcement (report/hooks.md): harness lifecycle hooks (dailybot hook session-start | activity | post-commit | stop | dismiss) backed by a local per-repo report ledger, so the harness itself detects unreported work and reminds the agent at end of turn — even in the long unattended sessions where prompt instructions decay. This is the strongest version of the visibility this addon exists for.

  • Offer it (consent-gated, show the exact config before writing) when the

installed Dailybot skill/CLI versions support it: commit the repo-level hook config — Claude Code .claude/settings.json (or .agents/settings.json where .claude → .agents), Cursor .cursor/hooks.json, other harnesses per the table in the Dailybot skill's report/hooks.md — so every contributor and fresh container gets autonomous reporting on clone; the only per-person step left is dailybot login.

  • Defer the mechanics. The hook templates, output formats, anti-noise

gates, and uninstall path are owned by the Dailybot skill's `report/hooks.md` — point at it; do not duplicate or hand-roll the JSON beyond merging it in. Merge into existing config files, never overwrite (§Reconcile).

  • The two layers compose — no double-reporting. A successful

dailybot agent update (any lifecycle event from Step 3) resets the hook ledger, so the hooks stay silent after a lifecycle report; they act as the deterministic backstop when a lifecycle event was missed. A hook reminder mid-plan is answered with either a lifecycle-appropriate report or dailybot hook dismiss — never ignored, never blocking.

  • Degrade gracefully. Older skill/CLI → skip this step (the Step 3 wiring

stands alone) and mention dailybot upgrade once. The dailybot hook commands are local-only and always exit 0, so installing them cannot violate the never-block rule; they also respect .dailybot/disabled.

Step 4 — Validate (SPEC §Validation)

Run the validation checklist and report: whether the skill/CLI is present, that auth was deferred (not reinvented), that the report step is wired as optional + non-blocking, whether hook enforcement was offered/installed (and the versions that gated it), the identity source if any, and any deferred items. If nothing could be installed here (sandbox/CI), say why — do not silently skip, and do not fail the onboarding.

Failure-mode guardrails

  • Never required, never blocking. If declined — or if Dailybot is missing,

unauthenticated, or unreachable — stop/continue cleanly. The repo stays baseline-conformant and execute is never blocked by reporting.

  • Defer auth, never store secrets. No email/OTP/API-key prompting here; no

credential written to any file. Point at the Dailybot skill's shared/auth.md.

  • Verified install only. Never recommend curl ... install.sh | bash

without the checksum/consent verification the Dailybot skill owns.

  • Reconcile, don't clobber. An existing skill/CLI/identity/report step is

preserved; only fill gaps. Any destructive change needs explicit approval.

  • Vendor-neutral. Never imply DWP needs Dailybot. This addon is purely

additive team visibility for teams already on Dailybot.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.