Files
Claude-Code-Workflow/.claude/python_script/tools/__init__.py
catlog22 fc6e851230 refactor: Update workflow plan system and template organization
- 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>
2025-09-18 16:26:50 +08:00

13 lines
317 B
Python

"""
Independent tool scripts for specialized analysis tasks.
Provides module analysis, tech stack detection, and workflow management tools.
"""
from .module_analyzer import ModuleAnalyzer, ModuleInfo
from .tech_stack import TechStackLoader
__all__ = [
'ModuleAnalyzer',
'ModuleInfo',
'TechStackLoader'
]