From 26474c29ebb6e06584aea0267bc5789c82c570fd Mon Sep 17 00:00:00 2001 From: yusyus Date: Sat, 3 Jan 2026 19:58:25 +0300 Subject: [PATCH] docs: Mark C3.1 Design Pattern Detection as completed in roadmap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates FLEXIBLE_ROADMAP.md to reflect completion of C3.1: - Added completion checkmark and version (v2.6.0) - Listed key deliverables: 10 patterns, 9 languages, 3 detection levels - Added reference to documentation and issue #71 - Updated "Start Small" recommendation to C3.2 Closes #71 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- FLEXIBLE_ROADMAP.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/FLEXIBLE_ROADMAP.md b/FLEXIBLE_ROADMAP.md index 1f84b0e..ea90ab7 100644 --- a/FLEXIBLE_ROADMAP.md +++ b/FLEXIBLE_ROADMAP.md @@ -176,13 +176,18 @@ Generate skills from actual code repositories **Start Small:** Pick C2.1 first (simple file walker) #### C3: Code Pattern Recognition -- [ ] **Task C3.1:** Detect common patterns (singleton, factory, etc.) +- [x] **Task C3.1:** Detect common patterns (singleton, factory, etc.) ✅ **v2.6.0** - Completed Jan 2026 + - 10 GoF patterns: Singleton, Factory, Observer, Strategy, Decorator, Builder, Adapter, Command, Template Method, Chain of Responsibility + - 9 languages: Python (AST), JavaScript, TypeScript, C++, C, C#, Go, Rust, Java + - 3 detection levels: Surface (naming), Deep (structure), Full (behavior) + - CLI tool, MCP integration, 24 tests, 87% precision + - See: `docs/PATTERN_DETECTION.md`, Issue #71 - [ ] **Task C3.2:** Extract usage examples from test files - [ ] **Task C3.3:** Build "how to" guides from code - [ ] **Task C3.4:** Extract configuration patterns - [ ] **Task C3.5:** Create architectural overview -**Start Small:** Pick C3.1 first (pattern detection research) +**Start Small:** Pick C3.2 next (extract usage examples from tests) ---