mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
- Remove --analyze|--deep parameters from plan.md, use default analysis - Change .analysis to .process directory structure for better organization - Create ANALYSIS_RESULTS.md template focused on verified results - Add .process folder to workflow-architecture.md file structure - Template emphasizes verification of files, methods, and commands - Prevent execution errors from non-existent references 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
"""
|
|
Refactored Python Script Analyzer
|
|
Modular, reusable architecture for intelligent file analysis and workflow automation.
|
|
"""
|
|
|
|
__version__ = "2.0.0"
|
|
__author__ = "Claude Development Team"
|
|
__email__ = "dev@example.com"
|
|
|
|
from .analyzer import Analyzer
|
|
from .indexer import ProjectIndexer
|
|
from .cli import AnalysisCLI
|
|
from .core import (
|
|
Config, FileIndexer, FileInfo, IndexStats,
|
|
ContextAnalyzer, AnalysisResult,
|
|
PathMatcher, MatchResult, PathMatchingResult,
|
|
EmbeddingManager, GitignoreParser
|
|
)
|
|
from .tools import ModuleAnalyzer, ModuleInfo, TechStackLoader
|
|
from .utils import Colors, CacheManager, IOHelpers
|
|
|
|
__all__ = [
|
|
'Analyzer', 'ProjectIndexer', 'AnalysisCLI',
|
|
# Core modules
|
|
'Config',
|
|
'FileIndexer', 'FileInfo', 'IndexStats',
|
|
'ContextAnalyzer', 'AnalysisResult',
|
|
'PathMatcher', 'MatchResult', 'PathMatchingResult',
|
|
'EmbeddingManager', 'GitignoreParser',
|
|
# Tools
|
|
'ModuleAnalyzer', 'ModuleInfo',
|
|
'TechStackLoader',
|
|
# Utils
|
|
'Colors', 'CacheManager', 'IOHelpers'
|
|
] |