Skip to content
Open
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 app/src/components/agents/agent-profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export function AgentProfile({ agentId }: { agentId: string }) {

{profile.hidden ? (
<p className="-mt-1 text-xs text-muted-foreground">
Hidden from your agents list. This changes nothing for anyone
Hidden from your coworkers list. This changes nothing for anyone
else.
</p>
) : null}
Expand Down
4 changes: 2 additions & 2 deletions app/src/components/app-sidebar/app-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
<EmptyHeader>
<EmptyTitle>You don't have channels yet</EmptyTitle>
<EmptyDescription className="text-pretty">
Start talking to agents and your channels will appear
Start talking to coworkers and your channels will appear
here.
</EmptyDescription>
</EmptyHeader>
Expand Down Expand Up @@ -302,7 +302,7 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
<div className="size-[28px] flex items-center justify-center">
<IconBolt />
</div>
<span className="text-sm trackint-tight">Agents</span>
<span className="text-sm trackint-tight">Coworkers</span>
</SidebarMenuButton>
</SidebarMenuItem>
<SidebarMenuItem>
Expand Down
8 changes: 4 additions & 4 deletions app/src/routes/_authed/_app/agents/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function AgentsScreen() {
<div className="max-w-2xl px-4 w-full mx-auto">
<div className="mt-12 w-full max-w-2xl">
<div className="flex flex-row w-full items-center justify-between">
<h2 className="font-bold text-lg">Your agents</h2>
<h2 className="font-bold text-lg">Your coworkers</h2>
<Button
variant="ghost"
size="sm"
Expand All @@ -61,7 +61,7 @@ function AgentsScreen() {
)}
>
<IconPlus />
New agent
New coworker
</Button>
</div>
<div className="flex flex-row mt-4">
Expand All @@ -82,15 +82,15 @@ function AgentsScreen() {
<Empty className="border border-dashed h-[180px]">
<EmptyHeader>
<EmptyTitle className="text-muted-foreground">
You don't have any agents created.
You don't have any coworkers created.
</EmptyTitle>
</EmptyHeader>
</Empty>
)}
</div>
</div>
<div className="mt-8 w-full max-w-2xl">
<h2 className="font-bold text-lg">Explore agents</h2>
<h2 className="font-bold text-lg">Explore coworkers</h2>
<div className="grid grid-cols-4 gap-4 mt-4">
{!!explore?.length &&
explore.map((agent, index) => {
Expand Down