It gets to documenter but QA fails false positive then it gets blocked because it needs to be awaiting_pm_review to be able to merge. It's almost there.

This commit is contained in:
Renn F
2026-05-01 05:41:10 +02:00
parent 7970020021
commit 254cc93fd5
49 changed files with 3290 additions and 2250 deletions
+13 -1
View File
@@ -19,6 +19,7 @@ import {
FolderGit2,
GitBranch,
Database,
Cpu,
} from "lucide-react";
import { Button } from "@/components/ui/button";
import { ScrollArea } from "@/components/ui/scroll-area";
@@ -118,7 +119,18 @@ export function Sidebar() {
</ScrollArea>
{/* Footer */}
<div className="border-t p-2">
<div className="border-t p-2 space-y-1">
<Link
href="/settings/ai-providers"
className={cn(
"flex items-center gap-3 rounded-lg px-3 py-2 text-sm font-medium text-muted-foreground hover:bg-muted hover:text-foreground transition-colors",
sidebarCollapsed && "justify-center px-2"
)}
title={sidebarCollapsed ? "AI Providers" : undefined}
>
<Cpu className="h-5 w-5" />
{!sidebarCollapsed && <span>AI Providers</span>}
</Link>
<Link
href="/settings"
className={cn(
+7
View File
@@ -99,10 +99,17 @@ export enum HandoffStatus {
export enum ModelProvider {
ANTHROPIC = "anthropic",
OLLAMA_CLOUD = "ollama_cloud",
OPENAI = "openai",
LOCAL = "local",
}
export enum AssignmentScope {
GLOBAL = "global",
ROLE = "role",
AGENT_SLUG = "agent_slug",
}
export enum SessionTaskRelationshipType {
DISCUSSION = "discussion",
PLANNING = "planning",