From 4524702cd41fb3a67ef6df20a21e2a177dcf5145 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Mon, 13 Oct 2025 21:15:30 +0800 Subject: [PATCH] docs: restore Template System directory tree structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restore the original directory tree visualization for Template System section, replacing the compressed table format with a clear hierarchical structure. Changes: - Replace table format with ASCII directory tree - Show complete file paths: prompts/, planning-roles/, tech-stacks/ - Display full template hierarchy with descriptions - Improve path clarity for RULES field references Benefits: - Clear visualization of template file locations - Easy to reference in $(cat ...) commands - Better understanding of directory structure - Facilitates accurate template path construction File: intelligent-tools-strategy.md: 431 → 451 lines (+20 lines) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../workflows/intelligent-tools-strategy.md | 38 ++++++++++++++----- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/.claude/workflows/intelligent-tools-strategy.md b/.claude/workflows/intelligent-tools-strategy.md index ab54b6c6..ddd85faf 100644 --- a/.claude/workflows/intelligent-tools-strategy.md +++ b/.claude/workflows/intelligent-tools-strategy.md @@ -243,16 +243,36 @@ RULES: Focus on type safety and component composition | **Module Documentation** | Analysis Tools | Universal module/file documentation for all levels | `memory/claude-module-unified.txt` | ### Template System -**Base**: `~/.claude/workflows/cli-templates/` -| Category | Template | Purpose | -|----------|----------|---------| -| **Analysis** | pattern.txt, architecture.txt, security.txt, quality.txt | Code/architecture review | -| **Development** | feature.txt, refactor.txt, testing.txt | Implementation tasks | -| **Memory** | claude-module-unified.txt | Module documentation | -| **Planning** | task-breakdown.txt | Task decomposition | -| **Roles** | system-architect.md, security-expert.md, feature-planner.md | Planning perspectives | -| **Tech Stacks** | typescript-dev.md, python-dev.md, react-dev.md | Language conventions | +**Base Structure**: `~/.claude/workflows/cli-templates/` + +#### Available Templates +``` +prompts/ +├── analysis/ +│ ├── pattern.txt - Code pattern analysis +│ ├── architecture.txt - System architecture review +│ ├── security.txt - Security assessment +│ └── quality.txt - Code quality review +├── development/ +│ ├── feature.txt - Feature implementation +│ ├── refactor.txt - Refactoring tasks +│ └── testing.txt - Test generation +├── memory/ +│ └── claude-module-unified.txt - Universal module/file documentation template +└── planning/ + └── task-breakdown.txt - Task decomposition + +planning-roles/ +├── system-architect.md - System design perspective +├── security-expert.md - Security architecture +└── feature-planner.md - Feature specification + +tech-stacks/ +├── typescript-dev.md - TypeScript guidelines +├── python-dev.md - Python conventions +└── react-dev.md - React architecture +``` ---