2025-05-29 15:52:44 +08:00
|
|
|
"""MCP prompt templates for PyPI package queries.
|
|
|
|
|
|
|
|
|
|
This package contains FastMCP prompt implementations that provide
|
|
|
|
|
reusable templates for common PyPI package analysis and decision-making scenarios.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from .dependency_management import (
|
|
|
|
|
audit_security_risks,
|
|
|
|
|
plan_version_upgrade,
|
|
|
|
|
resolve_dependency_conflicts,
|
|
|
|
|
)
|
2025-05-29 16:36:58 +08:00
|
|
|
from .environment_analysis import (
|
|
|
|
|
analyze_environment_dependencies,
|
|
|
|
|
check_outdated_packages,
|
|
|
|
|
generate_update_plan,
|
|
|
|
|
)
|
2025-05-29 15:52:44 +08:00
|
|
|
from .migration_guidance import (
|
|
|
|
|
generate_migration_checklist,
|
|
|
|
|
plan_package_migration,
|
|
|
|
|
)
|
|
|
|
|
from .package_analysis import (
|
|
|
|
|
analyze_package_quality,
|
|
|
|
|
compare_packages,
|
|
|
|
|
suggest_alternatives,
|
|
|
|
|
)
|
2025-05-29 16:36:58 +08:00
|
|
|
from .trending_analysis import (
|
|
|
|
|
analyze_daily_trends,
|
|
|
|
|
find_trending_packages,
|
|
|
|
|
track_package_updates,
|
|
|
|
|
)
|
2025-05-29 15:52:44 +08:00
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
# Package Analysis
|
|
|
|
|
"analyze_package_quality",
|
|
|
|
|
"compare_packages",
|
|
|
|
|
"suggest_alternatives",
|
|
|
|
|
# Dependency Management
|
|
|
|
|
"resolve_dependency_conflicts",
|
|
|
|
|
"plan_version_upgrade",
|
|
|
|
|
"audit_security_risks",
|
2025-05-29 16:36:58 +08:00
|
|
|
# Environment Analysis
|
|
|
|
|
"analyze_environment_dependencies",
|
|
|
|
|
"check_outdated_packages",
|
|
|
|
|
"generate_update_plan",
|
2025-05-29 15:52:44 +08:00
|
|
|
# Migration Guidance
|
|
|
|
|
"plan_package_migration",
|
|
|
|
|
"generate_migration_checklist",
|
2025-05-29 16:36:58 +08:00
|
|
|
# Trending Analysis
|
|
|
|
|
"analyze_daily_trends",
|
|
|
|
|
"find_trending_packages",
|
|
|
|
|
"track_package_updates",
|
2025-05-29 15:52:44 +08:00
|
|
|
]
|