Skip to content
Proposals/Register workspace-scoped scheduled tasks and du
proposalteamP5Worth a lookCline

Register workspace-scoped scheduled tasks and durable todo agendas in Cline

Cline SDK v0.0.76 lets agents create scheduled tasks and a durable todo agenda scoped to the workspace, generate images mid-turn with history persistence, and load skill slash commands via the skills tool so transcripts stay clean.

Why this loop

This release changes how long-running agent work and skills should be structured. Schedules and todos are now first-class and workspace-scoped, so recurring or multi-step work should be registered as agenda items instead of ad-hoc chat prompts. Model-driven image generation is persisted in session history and exports, so visual outputs can be part of normal turns. Skill slash commands load through the skills tool (transcript keeps `/my-skill ...` only; instructions arrive once), which means skill usage and logging should assume tool-based loading, not pasted SKILL.md bodies. Hook fixes (PreToolUse contextModification as `<hook_context>`, awaited PostToolUse with cancel/contextModification) and live detached command output further reward explicit hook and command patterns over workarounds.

Proposed actions

  1. In each active Cline workspace, instruct the agent: "Create a durable todo agenda for this repo and register workspace-scoped scheduled tasks for our recurring jobs (tests, dependency refresh, docs sync); list the registered schedules and confirm they are scoped to this workspace only."
  2. Update team skill docs: "Invoke skills only via slash commands (e.g. `/my-skill ...`) so they load through the skills tool; do not paste SKILL.md into the user message. Verify the transcript shows the slash invocation, not the full skill body, and that skill instructions arrive once."
  3. For design or UI tasks, prompt: "When the selected model supports image generation, generate images during the turn and confirm they appear in session history and exports; do not rely on external image tools for those models."
  4. Revise PreToolUse/PostToolUse hooks to rely on SDK v0.0.76 behavior: deliver `contextModification` for the next engine turn as a `<hook_context>` block (tool name + call id), await PostToolUse (within 120s), and honor `contextModification` and `cancel` instead of fire-and-forget.
  5. For shell automation on Windows, rewrite PowerShell agent commands assuming `$ErrorActionPreference='Stop'` fail-fast, and use `run_commands` with the structured `{ command }` form (no `args` key) so spaced commands route through the shell without ENOENT.

Agent prompt

Paste into your agent or query via MCP (`get_agent_prompt`) — free, no extra AI cost

Paste into Claude Code / CLAUDE.md task

# DevAgentRadar → Claude Code

You are helping me adopt a real coding-assistant change. Work only from the facts below. Do not invent features.

## Context
Assistant: Cline
Proposal: Register workspace-scoped scheduled tasks and durable todo agendas in Cline
Summary: Cline SDK v0.0.76 lets agents create scheduled tasks and a durable todo agenda scoped to the workspace, generate images mid-turn with history persistence, and load skill slash commands via the skills tool so transcripts stay clean.
Primary source: https://github.com/cline/cline/releases/tag/sdk/sdk/v0.0.76

## Why it matters
This release changes how long-running agent work and skills should be structured. Schedules and todos are now first-class and workspace-scoped, so recurring or multi-step work should be registered as agenda items instead of ad-hoc chat prompts. Model-driven image generation is persisted in session history and exports, so visual outputs can be part of normal turns. Skill slash commands load through the skills tool (transcript keeps `/my-skill ...` only; instructions arrive once), which means skill usage and logging should assume tool-based loading, not pasted SKILL.md bodies. Hook fixes (PreToolUse contextModification as `<hook_context>`, awaited PostToolUse with cancel/contextModification) and live detached command output further reward explicit hook and command patterns over workarounds.

## Suggested actions
1. In each active Cline workspace, instruct the agent: "Create a durable todo agenda for this repo and register workspace-scoped scheduled tasks for our recurring jobs (tests, dependency refresh, docs sync); list the registered schedules and confirm they are scoped to this workspace only."
2. Update team skill docs: "Invoke skills only via slash commands (e.g. `/my-skill ...`) so they load through the skills tool; do not paste SKILL.md into the user message. Verify the transcript shows the slash invocation, not the full skill body, and that skill instructions arrive once."
3. For design or UI tasks, prompt: "When the selected model supports image generation, generate images during the turn and confirm they appear in session history and exports; do not rely on external image tools for those models."
4. Revise PreToolUse/PostToolUse hooks to rely on SDK v0.0.76 behavior: deliver `contextModification` for the next engine turn as a `<hook_context>` block (tool name + call id), await PostToolUse (within 120s), and honor `contextModification` and `cancel` instead of fire-and-forget.
5. For shell automation on Windows, rewrite PowerShell agent commands assuming `$ErrorActionPreference='Stop'` fail-fast, and use `run_commands` with the structured `{ command }` form (no `args` key) so spaced commands route through the shell without ENOENT.

## Config surfaces this release may change
- skills — check your repo before applying
- hooks — check your repo before applying


## Your job
1. Restate the change in one sentence.
2. Propose a minimal plan for my repo (or a throwaway pilot).
3. Implement only what I approve; prefer small diffs and tests.
4. Call out risks (permissions, breaking APIs, cost).

Start by confirming you understood the proposal.
agentmodelclibreakingRelease source ↗

Your loop

This browser · no sign-in · not shared as “you”

Your decision stays on this device. A public tally appears after a few votes.

Originating release signal

Clinesdk/sdk/v0.0.76Aug 21, 2026

SDK v0.0.76

Added model-driven image generation. · Models that support it can generate images during a turn, and generated images are persisted in session history and exports · Agents can now create and manage scheduled tasks and a durable todo agenda. · Schedules are scoped to the workspace that registered them · Skill slash commands now load through the skills tool instead of being pasted into the user message. · The persisted transcript records what you typed (`/my-skill ...`) rather than the whole SKILL.md body, and skill instructions arrive once instead of twice. · Workflows keep textual expansion · +17 more changes

Verified excerpt — the source's own words
- Added model-driven image generation. Models that support it can generate images during a turn, and generated images are persisted in session history and exports
- Agents can now create and manage scheduled tasks and a durable todo agenda. Schedules are scoped to the workspace that registered them
- Skill slash commands now load through the skills tool instead of being pasted into the user message. The persisted transcript records what you typed (`/my-skill ...`) rather than the whole SKILL.md body, and skill instructions arrive once instead of twice. Workflows keep textual expansion
- Fixed provider-executed tool activity being dropped entirely — every tool the Claude Code provider ran inside its own session modified the workspace with no tool activity in runtime events, transcripts, or the UI. These now surface as observational tool events
- Fixed `PreToolUse` hook `contextModification` never reaching the model on the next engine; it is delivered again as a `<hook_context>` block stamped with the tool name and call id, hidden from user-facing transcripts

Excerpt ends here — this release continues at the source ↗.

Primary source ↗