diff --git a/packages/opencode/src/cli/cmd/providers.ts b/packages/opencode/src/cli/cmd/providers.ts index 5cc2114936..dc438b1893 100644 --- a/packages/opencode/src/cli/cmd/providers.ts +++ b/packages/opencode/src/cli/cmd/providers.ts @@ -431,7 +431,7 @@ export const ProvidersLoginCommand = cmd({ if (["cloudflare", "cloudflare-ai-gateway"].includes(provider)) { prompts.log.info( - "Cloudflare AI Gateway can be configured with CLOUDFLARE_GATEWAY_ID, CLOUDFLARE_ACCOUNT_ID, and CLOUDFLARE_API_TOKEN environment variables. Read more: https://altimate.ai/docs/providers/#cloudflare-ai-gateway", + "Cloudflare AI Gateway can be configured with CLOUDFLARE_GATEWAY_ID, CLOUDFLARE_ACCOUNT_ID, and CLOUDFLARE_API_TOKEN environment variables. Read more: https://docs.altimate.sh/configure/providers/", ) } diff --git a/packages/opencode/src/cli/cmd/tui/app.tsx b/packages/opencode/src/cli/cmd/tui/app.tsx index cc8231bd08..bfd3635fb6 100644 --- a/packages/opencode/src/cli/cmd/tui/app.tsx +++ b/packages/opencode/src/cli/cmd/tui/app.tsx @@ -680,7 +680,7 @@ function App() { title: "Open docs", value: "docs.open", onSelect: () => { - open("https://altimate.ai/docs").catch(() => {}) + open("https://docs.altimate.sh").catch(() => {}) dialog.clear() }, category: "System", diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index e687bb74f7..d4f3a88cbd 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -78,7 +78,7 @@ export namespace Config { export const state = Instance.state(async () => { const auth = await Auth.all() - // Config loading order (low -> high precedence): https://altimate.ai/docs/config#precedence-order + // Config loading order (low -> high precedence): https://docs.altimate.sh/configure/config/ // 1) Remote .well-known/opencode (org defaults) // 2) Global config (~/.config/opencode/opencode.json{,c}) // 3) Custom config (OPENCODE_CONFIG) @@ -1074,7 +1074,7 @@ export namespace Config { command: z .record(z.string(), Command) .optional() - .describe("Command configuration, see https://altimate.ai/docs/commands"), + .describe("Command configuration, see https://docs.altimate.sh/configure/commands/"), skills: Skills.optional().describe("Additional skill folder paths"), watcher: z .object({ @@ -1141,7 +1141,7 @@ export namespace Config { }) .catchall(Agent) .optional() - .describe("Agent configuration, see https://altimate.ai/docs/agents"), + .describe("Agent configuration, see https://docs.altimate.sh/configure/agents/"), provider: z .record(z.string(), Provider) .optional() diff --git a/packages/opencode/src/session/prompt/anthropic.txt b/packages/opencode/src/session/prompt/anthropic.txt index fff5bef987..7a0ee01240 100644 --- a/packages/opencode/src/session/prompt/anthropic.txt +++ b/packages/opencode/src/session/prompt/anthropic.txt @@ -9,7 +9,7 @@ If the user asks for help or wants to give feedback inform them of the following - To give feedback, users should report the issue at https://github.com/AltimateAI/altimate-code -When the user directly asks about Altimate Code (eg. "can Altimate Code do...", "does Altimate Code have..."), or asks in second person (eg. "are you able...", "can you do..."), or asks how to use a specific Altimate Code feature (eg. implement a hook, write a slash command, or install an MCP server), use the WebFetch tool to gather information to answer the question from Altimate Code docs. The list of available docs is available at https://altimate.ai/docs +When the user directly asks about Altimate Code (eg. "can Altimate Code do...", "does Altimate Code have..."), or asks in second person (eg. "are you able...", "can you do..."), or asks how to use a specific Altimate Code feature (eg. implement a hook, write a slash command, or install an MCP server), use the WebFetch tool to gather information to answer the question from Altimate Code docs. The list of available docs is available at https://docs.altimate.sh # Tone and style - Only use emojis if the user explicitly requests it. Avoid using emojis in all communication unless asked. diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts index 1e62358956..47fd831c4b 100644 --- a/packages/sdk/js/src/gen/types.gen.ts +++ b/packages/sdk/js/src/gen/types.gen.ts @@ -1209,7 +1209,7 @@ export type Config = { diff_style?: "auto" | "stacked" } /** - * Command configuration, see https://altimate.ai/docs/commands + * Command configuration, see https://docs.altimate.sh/configure/commands/ */ command?: { [key: string]: { @@ -1266,7 +1266,7 @@ export type Config = { [key: string]: AgentConfig | undefined } /** - * Agent configuration, see https://altimate.ai/docs/agent + * Agent configuration, see https://docs.altimate.sh/configure/agents/ */ agent?: { plan?: AgentConfig diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index 0c7d344040..2026f4732c 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -1315,7 +1315,7 @@ export type Config = { logLevel?: LogLevel server?: ServerConfig /** - * Command configuration, see https://altimate.ai/docs/commands + * Command configuration, see https://docs.altimate.sh/configure/commands/ */ command?: { [key: string]: { @@ -1389,7 +1389,7 @@ export type Config = { [key: string]: AgentConfig | undefined } /** - * Agent configuration, see https://altimate.ai/docs/agents + * Agent configuration, see https://docs.altimate.sh/configure/agents/ */ agent?: { plan?: AgentConfig diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json index 0a4bad1b95..1a404a45c1 100644 --- a/packages/sdk/openapi.json +++ b/packages/sdk/openapi.json @@ -10340,7 +10340,7 @@ "$ref": "#/components/schemas/ServerConfig" }, "command": { - "description": "Command configuration, see https://altimate.ai/docs/commands", + "description": "Command configuration, see https://docs.altimate.sh/configure/commands/", "type": "object", "propertyNames": { "type": "string" @@ -10474,7 +10474,7 @@ } }, "agent": { - "description": "Agent configuration, see https://altimate.ai/docs/agents", + "description": "Agent configuration, see https://docs.altimate.sh/configure/agents/", "type": "object", "properties": { "plan": {