Skip to main content
Glama

ACE MCP Server

optimized-creative-template.mdcโ€ข7.14 kB
--- description: Optimized creative phase template with progressive documentation globs: "**/creative*/**", "**/design*/**", "**/decision*/**" alwaysApply: false --- # OPTIMIZED CREATIVE PHASE TEMPLATE > **TL;DR:** This template implements a progressive documentation approach for creative phases, optimizing token usage while maintaining thorough design exploration. ## ๐Ÿ“ PROGRESSIVE DOCUMENTATION MODEL ```mermaid graph TD Start["Creative Phase Start"] --> P1["1๏ธโƒฃ PROBLEM<br>Define scope"] P1 --> P2["2๏ธโƒฃ OPTIONS<br>Explore alternatives"] P2 --> P3["3๏ธโƒฃ ANALYSIS<br>Evaluate selected options"] P3 --> P4["4๏ธโƒฃ DECISION<br>Finalize approach"] P4 --> P5["5๏ธโƒฃ IMPLEMENTATION<br>Document guidelines"] style Start fill:#d971ff,stroke:#a33bc2,color:white style P1 fill:#4da6ff,stroke:#0066cc,color:white style P2 fill:#ffa64d,stroke:#cc7a30,color:white style P3 fill:#4dbb5f,stroke:#36873f,color:white style P4 fill:#d94dbb,stroke:#a3378a,color:white style P5 fill:#4dbbbb,stroke:#368787,color:white ``` ## ๐Ÿ“‹ TEMPLATE STRUCTURE ```markdown ๐Ÿ“Œ CREATIVE PHASE START: [Component Name] โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” 1๏ธโƒฃ PROBLEM Description: [Brief problem description] Requirements: [Key requirements as bullet points] Constraints: [Technical or business constraints] 2๏ธโƒฃ OPTIONS Option A: [Name] - [One-line description] Option B: [Name] - [One-line description] Option C: [Name] - [One-line description] 3๏ธโƒฃ ANALYSIS | Criterion | Option A | Option B | Option C | |-----------|----------|----------|----------| | Performance | โญโญโญ | โญโญ | โญโญโญโญ | | Complexity | โญโญ | โญโญโญ | โญโญโญโญ | | Maintainability | โญโญโญโญ | โญโญโญ | โญโญ | Key Insights: - [Insight 1] - [Insight 2] 4๏ธโƒฃ DECISION Selected: [Option X] Rationale: [Brief justification] 5๏ธโƒฃ IMPLEMENTATION NOTES - [Implementation note 1] - [Implementation note 2] - [Implementation note 3] โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” ๐Ÿ“Œ CREATIVE PHASE END ``` ## ๐Ÿงฉ DETAILED OPTION ANALYSIS (ON DEMAND) Detailed analysis can be provided on demand for selected options: ```markdown <details> <summary>Detailed Analysis: Option A</summary> ### Option A: [Full Name] **Complete Description**: [Detailed description of how the option works] **Pros**: - [Pro 1 with explanation] - [Pro 2 with explanation] - [Pro 3 with explanation] **Cons**: - [Con 1 with explanation] - [Con 2 with explanation] **Implementation Complexity**: [Low/Medium/High] [Explanation of complexity factors] **Resource Requirements**: [Details on resource needs] **Risk Assessment**: [Analysis of risks] </details> ``` ## ๐Ÿ“Š COMPLEXITY-BASED SCALING The template automatically scales documentation requirements based on task complexity level: ### Level 1-2 (Quick Fix/Enhancement) - Simplified problem/solution - Focus on implementation - Minimal option exploration ### Level 3 (Feature Development) - Multiple options required - Analysis table with key criteria - Implementation guidelines ### Level 4 (Enterprise Development) - Comprehensive analysis - Multiple viewpoints considered - Detailed implementation plan - Expanded verification criteria ## โœ… VERIFICATION PROTOCOL Quality verification is condensed into a simple checklist: ```markdown VERIFICATION: [x] Problem clearly defined [x] Multiple options considered [x] Decision made with rationale [x] Implementation guidance provided ``` ## ๐Ÿ”„ USAGE EXAMPLES ### Architecture Decision (Level 3) ```markdown ๐Ÿ“Œ CREATIVE PHASE START: Authentication System โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” 1๏ธโƒฃ PROBLEM Description: Design an authentication system for the application Requirements: Secure, scalable, supports SSO, easy to maintain Constraints: Must work with existing user database, <100ms response time 2๏ธโƒฃ OPTIONS Option A: JWT-based stateless auth - Simple token-based approach Option B: Session-based auth with Redis - Server-side session storage Option C: OAuth2 implementation - Delegated authorization framework 3๏ธโƒฃ ANALYSIS | Criterion | JWT | Sessions | OAuth2 | |-----------|-----|----------|--------| | Security | โญโญโญ | โญโญโญโญ | โญโญโญโญโญ | | Scalability | โญโญโญโญโญ | โญโญโญ | โญโญโญโญ | | Complexity | โญโญ | โญโญโญ | โญโญโญโญ | | Performance | โญโญโญโญโญ | โญโญโญ | โญโญโญ | Key Insights: - JWT offers best performance but limited revocation options - Sessions provide better security control but require more infrastructure - OAuth2 most complex but offers best integration possibilities 4๏ธโƒฃ DECISION Selected: Option A: JWT-based auth with refresh tokens Rationale: Best balance of performance and scalability while meeting security needs 5๏ธโƒฃ IMPLEMENTATION NOTES - Use HS256 algorithm for token signing - Implement short-lived access tokens (15min) with longer refresh tokens (7 days) - Store token blacklist in Redis for revocation capability - Add rate limiting on token endpoints โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” ๐Ÿ“Œ CREATIVE PHASE END ``` ### Algorithm Decision (Level 2) ```markdown ๐Ÿ“Œ CREATIVE PHASE START: Search Algorithm โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” 1๏ธโƒฃ PROBLEM Description: Implement efficient text search for product catalog Requirements: Fast results, support for partial matches, case insensitive Constraints: Dataset < 10,000 items, must work in browser environment 2๏ธโƒฃ OPTIONS Option A: Simple regex search - Basic pattern matching Option B: Trie-based search - Prefix tree structure Option C: Fuzzy search with Levenshtein - Edit distance algorithm 3๏ธโƒฃ DECISION Selected: Option B: Trie-based search Rationale: Best performance for prefix searches with manageable memory usage 4๏ธโƒฃ IMPLEMENTATION NOTES - Use existing trie library - Preprocess text to lowercase during indexing - Implement letter-by-letter search for instant results - Add debounce (300ms) to prevent excessive rebuilding โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” ๐Ÿ“Œ CREATIVE PHASE END ``` ## ๐Ÿ† TOKEN EFFICIENCY BENEFITS This template significantly reduces token usage by: 1. Focusing on essential information without unnecessary verbosity 2. Using compact tabular formats for comparisons 3. Implementing progressive disclosure for detailed information 4. Scaling documentation requirements by task complexity 5. Using visual indicators (emojis) for quick scanning The template maintains the rigor of the creative process while improving token efficiency by approximately 60% over the previous format.

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Angry-Robot-Deals/ace-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server