Files
SuperClaude/superclaude/__main__.py
kazuki a4ffe52724 refactor: consolidate PM Agent optimization and pending changes
PM Agent optimization (already committed separately):
- superclaude/commands/pm.md: 1652→14 lines
- superclaude/agents/pm-agent.md: 735→429 lines
- docs/agents/pm-agent-guide.md: new guide file

Other pending changes:
- setup: framework_docs, mcp, logger, remove ui.py
- superclaude: __main__, cli/app, cli/commands/install
- tests: test_ui updates
- scripts: workflow metrics analysis tools
- docs/memory: session state updates

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-17 04:54:31 +09:00

14 lines
279 B
Python

#!/usr/bin/env python3
"""
SuperClaude Framework Management Hub
Entry point when running as: python -m superclaude
This module delegates to the modern typer-based CLI.
"""
import sys
from superclaude.cli.app import cli_main
if __name__ == "__main__":
sys.exit(cli_main())