Skip to content

Commit 02bac71

Browse files
authored
feat: promote Tasks to GA (#20923)
## Summary This change promotes Coder Tasks from Beta to GA by removing Beta labels from: - TasksPage UI component - Documentation files Tasks feature is now ready for general availability! --- 🤖 This change was written by Claude Sonnet 4.5 Thinking using [mux](https://github.com/coder/mux) and reviewed by a human 🏂
1 parent b255827 commit 02bac71

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

docs/ai-coder/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Coder [integrates with IDEs](../user-guides/workspace-access/index.md) such as C
88

99
These agents work well inside existing Coder workspaces as they can simply be enabled via an extension or are built-into the editor.
1010

11-
## Agents with Coder Tasks (Beta)
11+
## Agents with Coder Tasks
1212

1313
In cases where the IDE is secondary, such as prototyping or long-running background jobs, agents like Claude Code or Aider are better for the job and new SaaS interfaces like [Devin](https://devin.ai) and [ChatGPT Codex](https://openai.com/index/introducing-codex/) are emerging.
1414

15-
[Coder Tasks](./tasks.md) is a new interface inside Coder to run and manage coding agents with a chat-based UI. Unlike SaaS-based products, Coder Tasks is self-hosted (included in your Coder deployment) and allows you to run any terminal-based agent such as Claude Code or Codex's Open Source CLI.
15+
[Coder Tasks](./tasks.md) is an interface inside Coder to run and manage coding agents with a chat-based UI. Unlike SaaS-based products, Coder Tasks is self-hosted (included in your Coder deployment) and allows you to run any terminal-based agent such as Claude Code or Codex's Open Source CLI.
1616

1717
![Coder Tasks UI](../images/guides/ai-agents/tasks-ui.png)
1818

docs/ai-coder/tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Coder Tasks (Beta)
1+
# Coder Tasks
22

33
Coder Tasks is an interface for running & managing coding agents such as Claude Code and Aider, powered by Coder workspaces.
44

site/src/pages/TasksPage/TasksPage.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { templates } from "api/queries/templates";
33
import type { TasksFilter } from "api/typesGenerated";
44
import { Badge } from "components/Badge/Badge";
55
import { Button, type ButtonProps } from "components/Button/Button";
6-
import { FeatureStageBadge } from "components/FeatureStageBadge/FeatureStageBadge";
76
import { Margins } from "components/Margins/Margins";
87
import {
98
PageHeader,
@@ -55,10 +54,7 @@ const TasksPage: FC = () => {
5554
<title>{pageTitle("AI Tasks")}</title>
5655
<Margins>
5756
<PageHeader>
58-
<span className="flex flex-row gap-2">
59-
<PageHeaderTitle>Tasks</PageHeaderTitle>
60-
<FeatureStageBadge contentType={"beta"} size="md" />
61-
</span>
57+
<PageHeaderTitle>Tasks</PageHeaderTitle>
6258
<PageHeaderSubtitle>Automate tasks with AI</PageHeaderSubtitle>
6359
</PageHeader>
6460

0 commit comments

Comments
 (0)