mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
feat: update project overview hook to include projectPath in queryKey
docs: add team lifecycle orchestrator skill documentation with detailed architecture, agent registry, and execution phases docs: introduce team planex skill for issue-by-issue execution with Codex CLI, including input parsing and session management
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: review-cycle
|
name: review-cycle
|
||||||
description: Unified multi-dimensional code review with automated fix orchestration. Supports session-based (git changes) and module-based (path patterns) review modes with 7-dimension parallel analysis, iterative deep-dive, and automated fix pipeline. Triggers on "workflow:review-cycle", "workflow:review-session-cycle", "workflow:review-module-cycle", "workflow:review-cycle-fix".
|
description: Unified multi-dimensional code review with automated fix orchestration. Supports session-based (git changes) and module-based (path patterns) review modes with 7-dimension parallel analysis, iterative deep-dive, and automated fix pipeline. Triggers on "workflow:review-cycle", "workflow:review-session-cycle", "workflow:review-module-cycle", "workflow:review-cycle-fix".
|
||||||
allowed-tools: spawn_agent, wait, send_input, close_agent, AskUserQuestion, Read, Write, Edit, Bash, Glob, Grep
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Review Cycle
|
# Review Cycle
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name: roadmap-with-file
|
name: roadmap-with-file
|
||||||
description: Strategic requirement roadmap with iterative decomposition and issue creation. Outputs roadmap.md (human-readable, single source) + issues.jsonl (machine-executable). Handoff to team-planex.
|
description: Strategic requirement roadmap with iterative decomposition and issue creation. Outputs roadmap.md (human-readable, single source) + issues.jsonl (machine-executable). Handoff to team-planex.
|
||||||
argument-hint: "[-y|--yes] [-c|--continue] [-m progressive|direct|auto] \"requirement description\""
|
argument-hint: "[-y|--yes] [-c|--continue] [-m progressive|direct|auto] \"requirement description\""
|
||||||
allowed-tools: spawn_agent, wait, send_input, close_agent, AskUserQuestion, Read, Write, Edit, Bash, Glob, Grep
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Auto Mode
|
## Auto Mode
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: team-lifecycle
|
name: team-lifecycle
|
||||||
description: Full lifecycle orchestrator - spec/impl/test. Spawn-wait-close pipeline with inline discuss subagent, shared explore cache, fast-advance, and consensus severity routing.
|
description: Full lifecycle orchestrator - spec/impl/test. Spawn-wait-close pipeline with inline discuss subagent, shared explore cache, fast-advance, and consensus severity routing.
|
||||||
agents: analyst, writer, planner, executor, tester, reviewer, architect, fe-developer, fe-qa
|
|
||||||
phases: 5
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Team Lifecycle Orchestrator
|
# Team Lifecycle Orchestrator
|
||||||
@@ -3,8 +3,6 @@ name: team-planex
|
|||||||
description: |
|
description: |
|
||||||
Beat pipeline: planner decomposes requirements issue-by-issue, orchestrator spawns
|
Beat pipeline: planner decomposes requirements issue-by-issue, orchestrator spawns
|
||||||
Codex executor per issue immediately. All execution via Codex CLI only.
|
Codex executor per issue immediately. All execution via Codex CLI only.
|
||||||
agents: 2
|
|
||||||
phases: 3
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Team PlanEx (Codex)
|
# Team PlanEx (Codex)
|
||||||
@@ -38,7 +38,7 @@ export function useProjectOverview(options: UseProjectOverviewOptions = {}) {
|
|||||||
const queryEnabled = enabled && !!projectPath;
|
const queryEnabled = enabled && !!projectPath;
|
||||||
|
|
||||||
const query = useQuery({
|
const query = useQuery({
|
||||||
queryKey: projectOverviewKeys.detail(),
|
queryKey: projectOverviewKeys.detail(projectPath),
|
||||||
queryFn: () => fetchProjectOverview(projectPath),
|
queryFn: () => fetchProjectOverview(projectPath),
|
||||||
staleTime,
|
staleTime,
|
||||||
enabled: queryEnabled,
|
enabled: queryEnabled,
|
||||||
|
|||||||
Reference in New Issue
Block a user