docs: update documentation structure, add integrations and skills #6
Merged
BestOwl merged 12 commits intocorespeed-io:masterfrom Feb 8, 2026
Merged
docs: update documentation structure, add integrations and skills #6BestOwl merged 12 commits intocorespeed-io:masterfrom
BestOwl merged 12 commits intocorespeed-io:masterfrom
Conversation
Add .vscode to gitignore and update bun.lock with configVersion.
- Add Cloudflare AI Gateway integration section with example - Update Anthropic models: add claude-sonnet-4-5, remove claude-3-haiku - Update OpenAI models: add gpt-5.2, o4, reorganize reasoning models - Move introduction to frontmatter description - Remove redundant H1 header
Rewrite loop interceptors documentation to use the new simplified API:
- Replace class-based MaxTokensInterceptor with continueOnMaxTokens()
- Replace ErrorDetectionInterceptor with errorDetector(command, args)
- Remove ToolExecutionInterceptor (now automatic)
- Add examples for multiple languages (Deno, Node, Python, Rust, Go)
- Simplify custom interceptor examples with factory functions
- Update InterceptorResult to use { complete, reason } pattern
- Add combining interceptors example
- Add createZypherAgent as the recommended approach - Move manual setup to collapsible "Alternative" section - Update model to claude-sonnet-4-5-20250929 - Improve event streaming example with proper stdout writing - Simplify code by removing getRequiredEnv helper - Move introduction to frontmatter description
- Move introduction text to frontmatter descriptions - Remove redundant H1 headers from all tools docs
- Move introduction text to frontmatter description - Remove redundant H1 header
- Replace markdown link with Card component - Move introduction to frontmatter description
Add new skills documentation explaining how to create and use agent skills for reusable workflows and custom commands.
Add new integrations documentation section: - ACP (Agent Communication Protocol) integration guide - HTTP server integration for web applications - Index page with integration overview
Remove verbose multi-language examples, keep only Deno example.
- Fix continueOnMaxTokens to take number directly, not options object - Remove incorrect toolApprovalHandler docs (not in createZypherAgent API)
BestOwl
approved these changes
Feb 8, 2026
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.
Summary
continueOnMaxTokens(),errorDetector())createZypherAgentfactory as the recommended approach in quick startChanges
New Documentation
Updated Documentation
createZypherAgentfactory patternStructural Improvements