Remove auto model routing; default to Claude Opus 4.6 on Bedrock; strip Oz tips

This commit is contained in:
Ryan Ward
2026-05-13 09:33:45 -05:00
parent e1c33317d3
commit 029e90be2b
6 changed files with 90 additions and 109 deletions
@@ -39,26 +39,6 @@ impl AITip for CloudModeTip {
/// Returns a collection of tips for the cloud mode loading screen.
pub fn get_cloud_mode_tips() -> Vec<CloudModeTip> {
vec![
CloudModeTip::new(
"Install the Oz Slack integration to trigger agents from any channel or DM.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations/slack"),
),
CloudModeTip::new(
"Build programmatic agents using Oz's TypeScript and Python SDKs.",
Some("https://docs.warp.dev/reference/api-and-sdk"),
),
CloudModeTip::new(
"Set team or personal secrets for agents using the `oz secret` command.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/secrets"),
),
CloudModeTip::new(
"View all your agent runs and their status in the Oz web app.",
Some("https://oz.warp.dev"),
),
CloudModeTip::new(
"Join any Oz cloud agent run in real-time using Agent Session Sharing.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/viewing-cloud-agent-runs"),
),
CloudModeTip::new(
"Set up recurring agents that run on cron schedules for automated maintenance.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/triggers/scheduled-agents"),
@@ -71,14 +51,6 @@ pub fn get_cloud_mode_tips() -> Vec<CloudModeTip> {
"Build agents that respond to CI failures and attempt automatic fixes.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations/github-actions"),
),
CloudModeTip::new(
"Run agents from GitHub Actions using the `oz-agent-action`.",
Some("https://github.com/warpdotdev/oz-agent-action"),
),
CloudModeTip::new(
"Call the Oz REST API to trigger agents from any backend service or internal tool.",
Some("https://docs.warp.dev/reference/api-and-sdk"),
),
CloudModeTip::new(
"Create reusable environments with Docker images for consistent agent execution.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/environments"),
@@ -87,14 +59,6 @@ pub fn get_cloud_mode_tips() -> Vec<CloudModeTip> {
"Share agent session links with your team for collaborative debugging.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/viewing-cloud-agent-runs"),
),
CloudModeTip::new(
"Use the `--share` flag with the Oz CLI to enable session sharing from anywhere.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/platform"),
),
CloudModeTip::new(
"Fork a completed Oz cloud agent session into Warp to continue the work locally.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/viewing-cloud-agent-runs"),
),
CloudModeTip::new(
"Build internal tools that use agents to answer questions from your databases.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations"),
@@ -103,26 +67,6 @@ pub fn get_cloud_mode_tips() -> Vec<CloudModeTip> {
"Create a scheduled agent to clean up stale feature flags every week.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/triggers/scheduled-agents"),
),
CloudModeTip::new(
"Tag @Oz in Linear issues to automatically investigate and propose fixes.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations/linear"),
),
CloudModeTip::new(
"Run agents on remote dev boxes or CI runners using the Oz CLI.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/platform"),
),
CloudModeTip::new(
"Configure MCP servers to give Oz cloud agents access to GitHub, Linear, and Sentry.",
Some("https://docs.warp.dev/agent-platform/capabilities/mcp"),
),
CloudModeTip::new(
"Use `oz agent run` to kick off tasks without opening the Warp terminal.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/platform"),
),
CloudModeTip::new(
"View your teammates' agent runs in the Oz web app for shared visibility.",
Some("https://oz.warp.dev"),
),
CloudModeTip::new(
"Build agents that automatically triage and label incoming GitHub issues.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations/github-actions"),
@@ -135,10 +79,6 @@ pub fn get_cloud_mode_tips() -> Vec<CloudModeTip> {
"Create an agent that automatically reviews PRs and suggests improvements.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations/github-actions"),
),
CloudModeTip::new(
"Use `oz environment create` to define reproducible execution contexts.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/environments"),
),
CloudModeTip::new(
"Trigger agents from webhooks to respond to production incidents.",
Some("https://docs.warp.dev/reference/api-and-sdk"),
@@ -163,38 +103,10 @@ pub fn get_cloud_mode_tips() -> Vec<CloudModeTip> {
"Build an agent that automatically formats and lints code on a schedule.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/triggers/scheduled-agents"),
),
CloudModeTip::new(
"Use `oz schedule create` to set up cron-triggered agents.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/triggers/scheduled-agents"),
),
CloudModeTip::new(
"Pause and resume scheduled agents without deleting them using `oz schedule pause`.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/triggers/scheduled-agents"),
),
CloudModeTip::new(
"Use `oz mcp list` to see which MCP servers are available to your agents.",
Some("https://docs.warp.dev/agent-platform/capabilities/mcp"),
),
CloudModeTip::new(
"Build an internal Slack bot that delegates coding tasks to Oz agents.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations/slack"),
),
CloudModeTip::new(
"Create an agent that responds to @mentions in Slack threads with full context.",
Some("https://docs.warp.dev/agent-platform/cloud-agents/integrations/slack"),
),
CloudModeTip::new(
"Use the Oz TypeScript SDK to build custom automation pipelines.",
Some("https://docs.warp.dev/reference/api-and-sdk"),
),
CloudModeTip::new(
"Use the Oz Python SDK to integrate agents into your data pipelines.",
Some("https://docs.warp.dev/reference/api-and-sdk"),
),
CloudModeTip::new(
"Monitor agent success rates and runtimes using the Oz API.",
Some("https://docs.warp.dev/reference/api-and-sdk"),
),
CloudModeTip::new(
"Build a dashboard that tracks all agent activity across your team.",
Some("https://docs.warp.dev/reference/api-and-sdk"),