Fix typo on Logpush overview page#812
Closed
tlozoot wants to merge 1 commit into
Closed
Conversation
soheiokamoto
approved these changes
Feb 19, 2021
crwaters16
approved these changes
Feb 22, 2021
Contributor
|
This typo fix is also included in #803, so maybe just let that one merge. |
Contributor
|
Closed, as it was fixed in #803. |
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Jan 30, 2026
Sync documentation from cloudflare/agents PR #812. This update adds extensive documentation covering: - Core concepts: scheduling, routing, state, callable methods, HTTP/WebSockets - Client SDK: React hooks and vanilla JavaScript integration - API reference: getCurrentAgent() context management - Getting started: quickstart guide for building agents - How-to guides: adding agents to existing projects New features documented: - scheduleEvery() for fixed-interval recurring tasks - basePath routing for custom URL patterns - Server-sent identity with onIdentity callbacks - Callable improvements: timeouts, streaming, introspection - MCP client options-based API All documentation follows Cloudflare style guidelines with proper component usage (WranglerConfig, TypeScriptExample, PackageManagers). Source PR: cloudflare/agents#812
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Jan 30, 2026
Add comprehensive documentation for Agents SDK features: - Add routing guide covering URL patterns, instance naming, and custom routing with basePath - Add callable methods guide for RPC over WebSocket with @callable decorator - Add client SDK reference for React and vanilla JS (useAgent, AgentClient, agentFetch) - Add integration guide for adding agents to existing Workers projects - Add HTTP/WebSockets guide covering lifecycle hooks, connection management, and hibernation All documentation follows Cloudflare style guide: - TypeScriptExample, WranglerConfig, and PackageManagers components - Relative links with trailing slashes - No contractions or exclamation marks - Proper frontmatter with pcx_content_type and sidebar order Source: cloudflare/agents#812
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Jan 31, 2026
- Add routing documentation (basePath, identity features) - Add callable methods documentation (timeout, getCallableMethods) - Add webhooks guide - Update schedule-tasks with scheduleEvery() method - Update mcp-client-api with options-based addMcpServer() Source: cloudflare/agents#812
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Jan 31, 2026
This commit syncs documentation from cloudflare/agents PR #812 (DO NOT LAND: docs/tests/enhancements) to the cloudflare-docs repository. New documentation added: Getting Started: - Quickstart guide with counter agent example - Integration guide for existing Workers projects Core Concepts: - State management (setState, initialState, persistence) - Routing (URL patterns, custom routing, identity) - HTTP & WebSocket lifecycle (hooks, connection management) - Callable methods (RPC over WebSocket, streaming) - Context management (getCurrentAgent) Platform: - Configuration (wrangler.jsonc, environment setup, deployment) Guides: - Client SDK (React useAgent, AgentClient, agentFetch) - Webhooks (routing, signature verification, broadcasting) - Scheduling (delayed, cron, interval patterns) - MCP client (connecting to MCP servers, OAuth) All files follow Cloudflare docs style guide: - MDX format with proper frontmatter - PackageManagers, WranglerConfig, TypeScriptExample components - Full relative links with trailing slashes - No contractions or exclamation marks Source: cloudflare/agents#812
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Feb 2, 2026
This sync adds comprehensive documentation for the Agents SDK covering: **New Features:** - scheduleEvery() method for fixed-interval recurring tasks - MCP server options-based API (cleaner than positional params) - Custom routing with basePath and server-sent identity - Callable system improvements (timeout, introspection, streaming) **New Documentation Pages:** - Quickstart guide for new users - Guide for adding agents to existing projects - Routing documentation (URL patterns, custom paths, identity) - Callable methods documentation (RPC, streaming, TypeScript) - MCP client documentation (connecting to external MCP servers) **Updated Documentation:** - Enhanced state management docs with patterns and best practices - Updated scheduling docs with scheduleEvery() and interval mode All documentation follows cloudflare-docs style guidelines: - Uses WranglerConfig component for wrangler configs - Uses PackageManagers component for npm commands - Uses TypeScriptExample component for code examples - Full relative links with trailing slashes - Proper frontmatter and component imports Source: cloudflare/agents PR #812 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Feb 2, 2026
…vements This sync includes documentation for the following features from cloudflare/agents PR #812: **Scheduling:** - Add scheduleEvery() method for fixed-interval recurring tasks - Support for sub-minute intervals with overlap prevention - Update schedule type to include "interval" **Callable RPC improvements:** - Document client-side RPC timeout feature - Add timeout parameter examples for agent.call() and agent.stub **Custom routing and identity:** - Document basePath option for custom URL routing - Add identity callbacks (onIdentity, onIdentityChange) - Document agent.identified state and agent.ready promise - Add sendIdentityOnConnect option for security **MCP client enhancements:** - Document new options-based addMcpServer() API - Show both legacy positional and new options syntax - Add examples with transport configuration Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Feb 3, 2026
This PR syncs documentation changes from the agents repository PR #812 which adds comprehensive documentation and feature improvements. ## New Documentation - **whats-new.mdx**: Summary of recent updates including scheduleEvery(), routing enhancements, callable improvements, and MCP updates - **concepts/routing.mdx**: Comprehensive guide to agent routing patterns, custom URL routing with basePath, server-sent identity, and sub-paths ## Updated Documentation - **api-reference/schedule-tasks.mdx**: Added scheduleEvery() method documentation for fixed-interval recurring tasks with overlap prevention - **api-reference/websockets.mdx**: Added callable methods documentation including timeouts, streaming, and introspection ## Key Features Documented ### Scheduling - scheduleEvery() for sub-minute precision intervals - Overlap prevention and error resilience - Support for arbitrary intervals (not constrained to cron patterns) ### Routing - basePath option for custom URL paths - Server-sent identity on connection - onIdentity and onIdentityChange callbacks - path option for sub-paths - sendIdentityOnConnect agent option for security ### Callable Methods - Client-side RPC timeout support - Streaming error handling with stream.error() - getCallableMethods() introspection API - Connection close handling ### MCP Client - Options-based addMcpServer() API - Backward compatibility with legacy signature Related PR: cloudflare/agents#812 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Feb 3, 2026
Updates from cloudflare/agents PR #812 (DO NOT LAND: docs/tests/enhancements): ## State Management - Add validateStateChange() hook for synchronous validation before persistence - Clarify that onStateUpdate() runs via waitUntil (best-effort, non-blocking) - Document execution order: validateStateChange → persist → broadcast → onStateUpdate ## Scheduling - Add scheduleEvery() method for interval-based scheduling with sub-minute precision - Document overlap prevention and error resilience for intervals - Add comparison table between cron and interval scheduling - Update Schedule type to include "interval" variant ## Routing - Add custom URL routing with basePath option - Document server-sent identity system (onIdentity, onIdentityChange callbacks) - Add identified reactive state property - Document sendIdentityOnConnect agent option for security - Add guidance on when to use custom routing vs default patterns ## Callable Methods - Create new comprehensive callable-methods.mdx documentation - Document client-side RPC timeouts with timeout option - Add getCallableMethods() introspection API - Update CallOptions type to include timeout parameter - Document connection error handling and retries ## MCP Client API - Update addMcpServer() to show options-based signature as preferred - Document transport.type options (streamable-http, sse, auto) - Add example with custom headers for authentication - Mark legacy positional parameters as still supported Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
agents-git-bot Bot
pushed a commit
that referenced
this pull request
Feb 3, 2026
Updates documentation to reflect changes from cloudflare/agents PR #812: ## State Management - Document synchronous setState() (no longer returns Promise) - Add validateStateChange() hook for synchronous validation - Clarify onStateUpdate() is non-gating (runs via queueMicrotask) - Document state update execution order ## Callable Methods - Add @callable decorator documentation - Document client-side RPC timeout option - Add stream.error() method for graceful error handling - Document getCallableMethods() introspection API - Document connection close handling for pending calls - Enhance streaming documentation with new options format ## Scheduling - Add scheduleEvery() method for fixed-interval recurring tasks - Document overlap prevention and error resilience - Compare interval vs cron scheduling approaches - Add comprehensive API reference ## MCP Client - Document new options-based addMcpServer() API - Show cleaner syntax avoiding positional undefined parameters - Note legacy signature still supported for backward compatibility Related PR: cloudflare/agents#812
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.