@octavus/docs 4.0.0 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -149,6 +149,7 @@ interface OctavusClientConfig {
149
149
  baseUrl: string; // Octavus API URL
150
150
  apiKey?: string; // Your API key
151
151
  traceModelRequests?: boolean; // Enable model request tracing (default: false)
152
+ maxRetries?: number; // Retries for transient network failures during streaming (default: 2, set to 0 to disable)
152
153
  }
153
154
 
154
155
  class OctavusClient {
@@ -133,7 +133,7 @@ interface UIWorkerPart {
133
133
  parts: UIMessagePart[]; // Nested parts from the worker (excluding nested workers)
134
134
  output?: unknown;
135
135
  error?: string;
136
- status: 'running' | 'done' | 'error';
136
+ status: 'running' | 'done' | 'error' | 'cancelled';
137
137
  }
138
138
 
139
139
  // Step boundary marker (structural, not rendered visually)
@@ -236,6 +236,7 @@ description: >
236
236
  version: 1.0.0
237
237
  license: MIT
238
238
  author: Octavus Team
239
+ category: Productivity
239
240
  ---
240
241
 
241
242
  # QR Code Generator
@@ -273,6 +274,7 @@ Main script for generating QR codes...
273
274
  | `version` | No | Semantic version string |
274
275
  | `license` | No | License identifier |
275
276
  | `author` | No | Skill author |
277
+ | `category` | No | Display category used to group and filter skills in the UI |
276
278
  | `secrets` | No | Array of secret declarations (enables secure mode) |
277
279
 
278
280
  ## Best Practices
@@ -50,7 +50,7 @@ Specify models in `provider/model-id` format. Any model supported by the provide
50
50
  | Provider | Format | Examples |
51
51
  | --------- | ---------------------- | -------------------------------------------------------------------------------------------------- |
52
52
  | Anthropic | `anthropic/{model-id}` | `claude-opus-4-7`, `claude-opus-4-6`, `claude-sonnet-4-6`, `claude-sonnet-4-5`, `claude-haiku-4-5` |
53
- | Google | `google/{model-id}` | `gemini-3-pro-preview`, `gemini-3-flash-preview`, `gemini-2.5-flash` |
53
+ | Google | `google/{model-id}` | `gemini-3.5-flash`, `gemini-3-flash-preview`, `gemini-2.5-flash` |
54
54
  | OpenAI | `openai/{model-id}` | `gpt-5`, `gpt-4o`, `o4-mini`, `o3`, `o3-mini`, `o1` |
55
55
 
56
56
  ### Examples