diff --git a/components/frontend/README.md b/components/frontend/README.md index fc131e0869..e74887cc07 100644 --- a/components/frontend/README.md +++ b/components/frontend/README.md @@ -127,7 +127,7 @@ curl -i http://localhost:3000/api/projects/my-project/agentic-sessions \ #### 📊 Sessions Dashboard (T011) - **`SessionsDashboard.tsx`**: Live session management - Real-time WebSocket connections for session updates - - Grouped PR display (umbrella + submodule PRs) + - Grouped PR display (spec repo + submodule PRs) - Live message streaming with partial reassembly - Visual status indicators for all session states - Multi-runner support (Claude, OpenAI, local execution) @@ -147,7 +147,7 @@ curl -i http://localhost:3000/api/projects/my-project/agentic-sessions \ ### Key Features - **Live Session Monitoring**: WebSocket connections with automatic reconnection -- **Multi-repo PR Management**: Handle umbrella and submodule PRs separately +- **Multi-repo PR Management**: Handle spec repo and submodule PRs separately - **GitHub App Integration**: Streamlined per-user installation flow - **Repository Browsing**: Full file tree navigation with content preview - **Runner Support**: Claude Code, OpenAI, and local execution runners diff --git a/components/frontend/src/app/projects/[name]/rfe/[id]/rfe-workspace-card.tsx b/components/frontend/src/app/projects/[name]/rfe/[id]/rfe-workspace-card.tsx index 3b87e96b68..636c40f217 100644 --- a/components/frontend/src/app/projects/[name]/rfe/[id]/rfe-workspace-card.tsx +++ b/components/frontend/src/app/projects/[name]/rfe/[id]/rfe-workspace-card.tsx @@ -33,7 +33,7 @@ export function RfeWorkspaceCard({ Workspace & Repositories - Shared workspace for this workflow and optional repos + Shared workspace with spec repository (specs, planning docs, agent configs) and optional supporting repos
Workspace: {workflowWorkspace}
@@ -63,7 +63,7 @@ export function RfeWorkspaceCard({ {workflow.umbrellaRepo && (
- Umbrella: {workflow.umbrellaRepo.url} + Spec Repo: {workflow.umbrellaRepo.url}
{workflow.umbrellaRepo.branch && (
@@ -98,10 +98,10 @@ export function RfeWorkspaceCard({ {!isSeeded && !seedingStatus.checking && workflow.umbrellaRepo && ( - Umbrella Repository Not Seeded + Spec Repository Not Seeded

- Before you can start working on phases, the umbrella repository needs to be seeded. + Before you can start working on phases, the spec repository needs to be seeded. This will:

    diff --git a/components/frontend/src/app/projects/[name]/rfe/new/page.tsx b/components/frontend/src/app/projects/[name]/rfe/new/page.tsx index 40656cfb15..f8e0492d42 100644 --- a/components/frontend/src/app/projects/[name]/rfe/new/page.tsx +++ b/components/frontend/src/app/projects/[name]/rfe/new/page.tsx @@ -289,6 +289,9 @@ export default function ProjectNewRFEWorkflowPage() { + + The spec repository contains your feature specifications, planning documents, and agent configurations for this RFE workspace + )}