Skip to content

Conversation

@abracchi-tw
Copy link
Contributor

  • Added instructions on installing cloudflare cert in nonstandard environments - @ptzimmerman @kkrum these instructions need to be double-checked, can you help out? (file: /connections/connect-devices/warp/install-cloudflare-cert.md)
  • Linked our Privacy Policy in our Logs section

@TownLake TownLake merged commit 8e9d678 into production Jan 27, 2021
@TownLake TownLake deleted the logs branch January 27, 2021 08:58
agents-git-bot bot pushed a commit that referenced this pull request Nov 27, 2025
Adds comprehensive documentation for the new task management system in the Agents SDK:

- Task Management API reference in agents-api.mdx:
  - @task() decorator for creating trackable tasks
  - TaskContext API for progress updates and event streaming
  - Task lifecycle management (pending → running → completed/failed/aborted)
  - this.tasks methods for managing tasks (get, list, cancel, cleanup)
  - Task options (timeout, retries, custom IDs)
  - React integration with useTask hook
  - Complete type definitions for Task, TaskStatus, TaskEvent

- Enhanced workflow integration documentation in run-workflows.mdx:
  - Comparison table: @task() vs workflow() approaches
  - Unified client API for both execution modes
  - Examples of using @task() for quick operations
  - Examples of this.workflow() for durable operations
  - Workflow progress update patterns
  - Cross-references to Task Management API

Synced from cloudflare/agents PR #683: add task management system with lifecycle tracking

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Nov 27, 2025
This syncs documentation from cloudflare/agents PR #683 which adds a task management system with lifecycle tracking to the Agents SDK.

Changes include:
- New concept page explaining tasks and their lifecycle
- API reference documentation for the Tasks API
- Tutorial guide for building a task-based agent
- Examples of using @task() decorator and TaskContext
- Client-side task tracking with useTask() hook

Related PR: cloudflare/agents#683
agents-git-bot bot pushed a commit that referenced this pull request Nov 27, 2025
Documents the new task management system introduced in PR #683, including:
- Task decorator (@task()) for method-level task tracking
- TaskContext API with emit(), setProgress(), and abort signals
- Task lifecycle management (pending → running → completed/failed/aborted)
- this.tasks accessor for task operations (get, list, cancel, cleanup)
- React integration with useTask() hook
- Workflow integration with this.workflow() and AgentWorkflow base class
- Comparison table for when to use @task() vs workflow()

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Dec 14, 2025
Updates the Tasks concept documentation to include:
- Durable tasks backed by Cloudflare Workflows
- DurableTaskWorkflow setup and configuration
- Durable context methods (ctx.step, ctx.sleep, ctx.waitForEvent)
- Retry configuration for durable tasks
- Custom AgentWorkflow class for advanced control
- Enhanced client-side task tracking examples
- Comparison table for tasks vs durable tasks

This sync corresponds to PR #683 in cloudflare/agents which adds the @task() decorator for tracked background operations with real-time progress updates and cancellation support.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Dec 14, 2025
Adds comprehensive documentation for the new task management system from PR #683:

- New Tasks API reference documenting @task() decorator, TaskContext methods, and task lifecycle management
- New Durable Tasks guide covering long-running operations backed by Cloudflare Workflows
- Updated sidebar ordering to logically place tasks documentation after state management
- Adjusted navigation order for browse-the-web, HTTP/SSE, RAG, and WebSockets pages

These changes document the new @task() and @task({ durable: true }) decorators that enable tracked background operations with real-time progress updates, cancellation support, and WebSocket broadcasting to connected clients.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Dec 14, 2025
Syncs documentation from cloudflare/agents PR #683
cloudflare/agents#683

Adds comprehensive documentation for the task system including:
- Tasks: Tracked background operations with progress updates
- Durable Tasks: Long-running operations backed by Cloudflare Workflows

New pages:
- /agents/api-reference/tasks/ - Task decorator, TaskContext API, and client updates
- /agents/api-reference/durable-tasks/ - Durable task setup, workflow context methods, and custom workflows
agents-git-bot bot pushed a commit that referenced this pull request Dec 14, 2025
Syncs documentation for cloudflare/agents PR #683 which adds:
- @task() decorator for tracked background operations
- Task management API (get, list, cancel, delete)
- Durable tasks with Cloudflare Workflows integration
- Real-time task updates via WebSocket

Related to: cloudflare/agents#683
agents-git-bot bot pushed a commit that referenced this pull request Dec 14, 2025
Sync documentation for PR #683 from cloudflare/agents repository.

This update adds comprehensive documentation for the new task management system:
- New @task() decorator for tracked background operations
- @task({ durable: true }) for long-running tasks backed by Workflows
- DurableTaskWorkflow and AgentWorkflow classes
- Task management API (this.tasks.get(), list(), cancel(), delete())
- Real-time progress updates via WebSocket
- Integration with Cloudflare Workflows

Changes:
- Add api-reference/tasks.mdx - Complete API reference for the task system
- Add concepts/durable-tasks.mdx - Guide for durable tasks with Workflows
- Update api-reference/run-workflows.mdx - Add section on task system integration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Dec 14, 2025
Improvements to sync from cloudflare/agents PR #683:
- Add Tasks concept documentation (new file)
- Enhance Durable Tasks with important note about retry semantics
- Expand "When to use durable tasks" section with AgentWorkflow guidance
- Add comprehensive Task Runner guide with step-by-step tutorial

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Dec 29, 2025
Documents the new @task() decorator and workflow integration features
added in cloudflare/agents PR #683. Includes:

- Comprehensive guide for integrating Cloudflare Workflows with Agents
- Comparison of ctx.waitUntil() vs Workflow approaches
- Complete example with React client and real-time progress updates
- Configuration and deployment instructions

Related PR: cloudflare/agents#683

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Dec 29, 2025
Documents how to integrate Cloudflare Workflows with Agents SDK for running long-running background tasks. Covers both quick analysis (Agent-based) and deep analysis (Workflow-based) patterns with real-time progress tracking.

Based on PR #683: add task management and workflow integration
cloudflare/agents#683

Generated with Claude Code https://claude.com/claude-code

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot bot pushed a commit that referenced this pull request Jan 1, 2026
- Add comprehensive guide for integrating Cloudflare Workflows with Agents SDK
- Demonstrate durable execution, human-in-the-loop approval, and scheduled tasks
- Include complete working examples with TypeScript code
- Update workflows concept doc with integration overview and cross-references
- Document when to use ctx.waitUntil() vs Cloudflare Workflows

Related to cloudflare/agents PR #683 (add task management and workflow integration)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants