Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/opencode/src/cli/cmd/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
)
}

Expand Down
2 changes: 1 addition & 1 deletion packages/opencode/src/cli/cmd/tui/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions packages/opencode/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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({
Expand Down Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion packages/opencode/src/session/prompt/anthropic.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/js/src/gen/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]: {
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/js/src/v2/gen/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]: {
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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": {
Expand Down
Loading