mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-14 02:42:04 +08:00
Refactor planning workflow documentation and enhance UI designer role template
- Updated the `/workflow:plan` command description to clarify its orchestration of a 4-phase planning workflow. - Revised the execution flow and core planning principles for improved clarity and structure. - Removed the `ANALYSIS_RESULTS.md` file as it is no longer needed in the workflow. - Enhanced the `concept-enhanced` tool documentation to specify mandatory first steps and output requirements. - Expanded the `ui-designer` role template to include detailed design workflows, output requirements, and collaboration strategies. - Introduced new design phases with clear outputs and user approval checkpoints in the UI designer template.
This commit is contained in:
@@ -1,201 +1,117 @@
|
||||
---
|
||||
name: enhance-prompt
|
||||
description: Dynamic prompt enhancement for complex requirements - Structured enhancement of user prompts before agent execution
|
||||
description: Context-aware prompt enhancement using session memory and codebase analysis
|
||||
usage: /enhance-prompt <user_input>
|
||||
argument-hint: [--gemini] "user input to enhance"
|
||||
argument-hint: "user input to enhance"
|
||||
examples:
|
||||
- /enhance-prompt "add user profile editing"
|
||||
- /enhance-prompt "fix login button"
|
||||
- /enhance-prompt "clean up the payment code"
|
||||
---
|
||||
|
||||
### 🚀 **Command Overview: `/enhance-prompt`**
|
||||
## Overview
|
||||
|
||||
- **Type**: Prompt Engineering Command
|
||||
- **Purpose**: To systematically enhance raw user prompts, translating them into clear, context-rich, and actionable specifications before agent execution.
|
||||
- **Key Feature**: Dynamically integrates with Gemini for deep, codebase-aware analysis.
|
||||
Systematically enhances user prompts by combining session memory context with codebase patterns, translating ambiguous requests into actionable specifications.
|
||||
|
||||
### 📥 **Command Parameters**
|
||||
## Core Protocol
|
||||
|
||||
- `<user_input>`: **(Required)** The raw text prompt from the user that needs enhancement.
|
||||
- `--gemini`: **(Optional)** An explicit flag to force the full Gemini collaboration flow, ensuring codebase analysis is performed even for simple prompts.
|
||||
**Enhancement Pipeline:**
|
||||
`Intent Translation` → `Context Integration` → `Gemini Analysis (if needed)` → `Structured Output`
|
||||
|
||||
### 🔄 **Core Enhancement Protocol**
|
||||
**Context Sources:**
|
||||
- Session memory (conversation history, previous analysis)
|
||||
- Codebase patterns (via Gemini when triggered)
|
||||
- Implicit technical requirements
|
||||
|
||||
This is the standard pipeline every prompt goes through for structured enhancement.
|
||||
|
||||
`Step 1: Intent Translation` **->** `Step 2: Context Extraction` **->** `Step 3: Key Points Identification` **->** `Step 4: Optional Gemini Consultation`
|
||||
|
||||
### 🧠 **Gemini Collaboration Logic**
|
||||
|
||||
This logic determines when to invoke Gemini for deeper, codebase-aware insights.
|
||||
## Gemini Trigger Logic
|
||||
|
||||
```pseudo
|
||||
FUNCTION decide_enhancement_path(user_prompt, options):
|
||||
// Set of keywords that indicate high complexity or architectural changes.
|
||||
FUNCTION should_use_gemini(user_prompt):
|
||||
critical_keywords = ["refactor", "migrate", "redesign", "auth", "payment", "security"]
|
||||
|
||||
// Conditions for triggering Gemini analysis.
|
||||
use_gemini = FALSE
|
||||
IF options.gemini_flag is TRUE:
|
||||
use_gemini = TRUE
|
||||
ELSE IF prompt_affects_multiple_modules(user_prompt, threshold=3):
|
||||
use_gemini = TRUE
|
||||
ELSE IF any_keyword_in_prompt(critical_keywords, user_prompt):
|
||||
use_gemini = TRUE
|
||||
|
||||
// Execute the appropriate enhancement flow.
|
||||
enhanced_prompt = run_standard_enhancement(user_prompt) // Steps 1-3
|
||||
|
||||
IF use_gemini is TRUE:
|
||||
// This action corresponds to calling the Gemini CLI tool programmatically.
|
||||
// e.g., `gemini --all-files -p "..."` based on the derived context.
|
||||
gemini_insights = execute_tool("gemini","-P" enhanced_prompt) // Calls the Gemini CLI
|
||||
enhanced_prompt.append(gemini_insights)
|
||||
|
||||
RETURN enhanced_prompt
|
||||
END FUNCTION
|
||||
RETURN (
|
||||
prompt_affects_multiple_modules(user_prompt, threshold=3) OR
|
||||
any_keyword_in_prompt(critical_keywords, user_prompt)
|
||||
)
|
||||
END
|
||||
```
|
||||
|
||||
### 📚 **Enhancement Rules**
|
||||
**Gemini Integration:** @~/.claude/workflows/intelligent-tools-strategy.md
|
||||
|
||||
- **Ambiguity Resolution**: Generic terms are translated into specific technical intents.
|
||||
- `"fix"` → Identify the specific bug and preserve existing functionality.
|
||||
- `"improve"` → Enhance performance or readability while maintaining compatibility.
|
||||
- `"add"` → Implement a new feature and integrate it with existing code.
|
||||
- `"refactor"` → Restructure code to improve quality while preserving external behavior.
|
||||
- **Implicit Context Inference**: Missing technical context is automatically inferred.
|
||||
```bash
|
||||
# User: "add login"
|
||||
# Inferred Context:
|
||||
# - Authentication system implementation
|
||||
# - Frontend login form + backend validation
|
||||
# - Session management considerations
|
||||
# - Security best practices (e.g., password handling)
|
||||
```
|
||||
- **Technical Translation**: Business goals are converted into technical specifications.
|
||||
```bash
|
||||
# User: "make it faster"
|
||||
# Translated Intent:
|
||||
# - Identify performance bottlenecks
|
||||
# - Define target metrics/benchmarks
|
||||
# - Profile before optimizing
|
||||
# - Document performance gains and trade-offs
|
||||
```
|
||||
## Enhancement Rules
|
||||
|
||||
### 🗺️ **Enhancement Translation Matrix**
|
||||
### Intent Translation
|
||||
|
||||
| User Says | → Translate To | Key Context | Focus Areas |
|
||||
| ------------------ | ----------------------- | ----------------------- | --------------------------- |
|
||||
| "make it work" | Fix functionality | Debug implementation | Root cause → fix → test |
|
||||
| "add [feature]" | Implement capability | Integration points | Core function + edge cases |
|
||||
| "improve [area]" | Optimize/enhance | Current limits | Measurable improvements |
|
||||
| "fix [bug]" | Resolve issue | Bug symptoms | Root cause + prevention |
|
||||
| "refactor [code]" | Restructure quality | Structure pain points | Maintain behavior |
|
||||
| "update [component]" | Modernize | Version compatibility | Migration path |
|
||||
| User Says | Translate To | Focus |
|
||||
|-----------|--------------|-------|
|
||||
| "fix" | Debug and resolve | Root cause → preserve behavior |
|
||||
| "improve" | Enhance/optimize | Performance/readability |
|
||||
| "add" | Implement feature | Integration + edge cases |
|
||||
| "refactor" | Restructure quality | Maintain behavior |
|
||||
| "update" | Modernize | Version compatibility |
|
||||
|
||||
### ⚡ **Automatic Invocation Triggers**
|
||||
### Context Integration Strategy
|
||||
|
||||
The `/enhance-prompt` command is designed to run automatically when the system detects:
|
||||
- Ambiguous user language (e.g., "fix", "improve", "clean up").
|
||||
- Tasks impacting multiple modules or components (>3).
|
||||
- Requests for system architecture changes.
|
||||
- Modifications to critical systems (auth, payment, security).
|
||||
- Complex refactoring requests.
|
||||
**Session Memory First:**
|
||||
- Reference recent conversation context
|
||||
- Reuse previously identified patterns
|
||||
- Build on established understanding
|
||||
|
||||
### 🛠️ **Gemini Integration Protocol (Internal)**
|
||||
**Codebase Analysis (via Gemini):**
|
||||
- Only when complexity requires it
|
||||
- Focus on integration points
|
||||
- Identify existing patterns
|
||||
|
||||
**Gemini Integration**: @~/.claude/workflows/intelligent-tools-strategy.md
|
||||
|
||||
This section details how the system programmatically interacts with the Gemini CLI.
|
||||
- **Primary Tool**: All Gemini analysis is performed via direct calls to the `gemini` command-line tool (e.g., `gemini --all-files -p "..."`).
|
||||
- **Central Guidelines**: All CLI usage patterns, syntax, and context detection rules are defined in the central guidelines document:
|
||||
- **Template Selection**: For specific analysis types, the system references the template selection guide:
|
||||
- **All Templates**: `gemini-template-rules.md` - provides guidance on selecting appropriate templates
|
||||
- **Template Library**: `cli-templates/` - contains actual prompt and command templates
|
||||
|
||||
### 📝 **Enhancement Examples**
|
||||
|
||||
This card contains the original, unmodified examples to demonstrate the command's output.
|
||||
|
||||
#### Example 1: Feature Request (with Gemini Integration)
|
||||
**Example:**
|
||||
```bash
|
||||
# User Input: "add user profile editing"
|
||||
|
||||
# Standard Enhancement:
|
||||
TRANSLATED_INTENT: Implement user profile editing feature
|
||||
DOMAIN_CONTEXT: User management system
|
||||
ACTION_TYPE: Create new feature
|
||||
COMPLEXITY: Medium (multi-component)
|
||||
|
||||
# Gemini Analysis Added:
|
||||
GEMINI_PATTERN_ANALYSIS: FormValidator used in AccountSettings, PreferencesEditor
|
||||
GEMINI_ARCHITECTURE: UserService → ProfileRepository → UserModel pattern
|
||||
|
||||
# Final Enhanced Structure:
|
||||
ENRICHED_CONTEXT:
|
||||
- Frontend: Profile form using FormValidator pattern
|
||||
- Backend: API endpoints following UserService pattern
|
||||
- Database: User model via ProfileRepository
|
||||
- Auth: Permission checks using AuthGuard pattern
|
||||
|
||||
KEY_POINTS:
|
||||
- Data validation using existing FormValidator
|
||||
- Image upload via SecureUploadService
|
||||
- Field permissions with AuthGuard middleware
|
||||
|
||||
ATTENTION_AREAS:
|
||||
- Security: Use SecureUploadService for file handling
|
||||
- Performance: Lazy loading patterns (ProfileImage.tsx)
|
||||
# User: "add login"
|
||||
# Session Memory: Previous auth discussion, JWT mentioned
|
||||
# Inferred: JWT-based auth, integrate with existing session management
|
||||
# Gemini (if multi-module): Analyze AuthService patterns, middleware structure
|
||||
```
|
||||
|
||||
#### Example 2: Bug Fix
|
||||
## Output Structure
|
||||
|
||||
```bash
|
||||
# User Input: "login button doesn't work"
|
||||
|
||||
# Enhanced Structure:
|
||||
TRANSLATED_INTENT: Debug and fix non-functional login button
|
||||
DOMAIN_CONTEXT: Authentication UI
|
||||
ACTION_TYPE: Fix bug
|
||||
COMPLEXITY: Simple (single component)
|
||||
|
||||
KEY_POINTS:
|
||||
- Identify root cause (event/state/API)
|
||||
- Preserve existing auth flow
|
||||
- Add error handling if missing
|
||||
|
||||
ATTENTION_AREAS:
|
||||
- Don't break existing functionality
|
||||
- Test edge cases and user states
|
||||
INTENT: [Clear technical goal]
|
||||
CONTEXT: [Session memory + codebase patterns]
|
||||
ACTION: [Specific implementation steps]
|
||||
ATTENTION: [Critical constraints]
|
||||
```
|
||||
|
||||
#### Example 3: Refactoring Request
|
||||
### Output Examples
|
||||
|
||||
**Simple (no Gemini):**
|
||||
```bash
|
||||
# User Input: "clean up the payment code"
|
||||
|
||||
# Enhanced Structure:
|
||||
TRANSLATED_INTENT: Refactor payment module for maintainability
|
||||
DOMAIN_CONTEXT: Payment processing system
|
||||
ACTION_TYPE: Refactor
|
||||
COMPLEXITY: Complex (critical system)
|
||||
|
||||
KEY_POINTS:
|
||||
- Maintain exact functionality
|
||||
- Improve code organization
|
||||
- Extract reusable components
|
||||
|
||||
ATTENTION_AREAS:
|
||||
- Critical: No behavior changes
|
||||
- Security: Maintain PCI compliance
|
||||
- Testing: Comprehensive coverage
|
||||
# Input: "fix login button"
|
||||
INTENT: Debug non-functional login button
|
||||
CONTEXT: From session - OAuth flow discussed, known state issue
|
||||
ACTION: Check event binding → verify state updates → test auth flow
|
||||
ATTENTION: Preserve existing OAuth integration
|
||||
```
|
||||
|
||||
### ✨ **Key Benefits**
|
||||
**Complex (with Gemini):**
|
||||
```bash
|
||||
# Input: "refactor payment code"
|
||||
INTENT: Restructure payment module for maintainability
|
||||
CONTEXT: Session memory - PCI compliance requirements
|
||||
Gemini - PaymentService → StripeAdapter pattern identified
|
||||
ACTION: Extract reusable validators → isolate payment gateway logic
|
||||
ATTENTION: Zero behavior change, maintain PCI compliance, full test coverage
|
||||
```
|
||||
|
||||
1. **Clarity**: Ambiguous requests become clear specifications.
|
||||
2. **Completeness**: Implicit requirements become explicit.
|
||||
3. **Context**: Missing context is automatically inferred.
|
||||
4. **Codebase Awareness**: Gemini provides actual patterns from the project.
|
||||
5. **Quality**: Attention areas prevent common mistakes.
|
||||
6. **Efficiency**: Agents receive structured, actionable input.
|
||||
7. **Smart Flow Control**: Seamless integration with workflows.
|
||||
## Automatic Triggers
|
||||
|
||||
- Ambiguous language: "fix", "improve", "clean up"
|
||||
- Multi-module impact (>3 modules)
|
||||
- Architecture changes
|
||||
- Critical systems: auth, payment, security
|
||||
- Complex refactoring
|
||||
|
||||
## Key Principles
|
||||
|
||||
1. **Memory First**: Leverage session context before analysis
|
||||
2. **Minimal Gemini**: Only when complexity demands it
|
||||
3. **Context Reuse**: Build on previous understanding
|
||||
4. **Clear Output**: Structured, actionable specifications
|
||||
5. **Avoid Duplication**: Reference existing context, don't repeat
|
||||
Reference in New Issue
Block a user