Key features implemented: - Updated package metadata and dependencies in PKG-INFO, setup files - Added main.py entry point for backward compatibility with README launch method - Enhanced CLI with config options, system info command, and proper signal handling - Implemented minimal PluginManager loading only plugin-loader core plugin - Refactored PluginLoader to follow minimal core design, removed sandbox/isolation complexity - Updated auto-dependency plugin with safer PL injection mechanism and disabled pl_injection - Removed legacy plugin files (firewall, frp_proxy, ftp_server, multi_lang_deploy, ops_toolbox, security_gateway) as functionality moved to core plugin system - Improved gitignore with comprehensive ignore patterns The changes implement a minimal core framework design where only the plugin-loader is directly loaded by the core, with all other plugins managed through the PL injection mechanism, significantly simplifying the architecture.
27 lines
657 B
Plaintext
27 lines
657 B
Plaintext
LICENSE
|
|
README.md
|
|
pyproject.toml
|
|
future_oss.egg-info/PKG-INFO
|
|
future_oss.egg-info/SOURCES.txt
|
|
future_oss.egg-info/dependency_links.txt
|
|
future_oss.egg-info/entry_points.txt
|
|
future_oss.egg-info/requires.txt
|
|
future_oss.egg-info/top_level.txt
|
|
oss/__init__.py
|
|
oss/cli.py
|
|
oss/core/context.py
|
|
oss/logger/logger.py
|
|
oss/plugin/base.py
|
|
oss/plugin/capabilities.py
|
|
oss/plugin/loader.py
|
|
oss/plugin/manager.py
|
|
oss/plugin/types.py
|
|
oss/plugins/auto_dependency.py
|
|
oss/plugins/firewall.py
|
|
oss/plugins/frp_proxy.py
|
|
oss/plugins/ftp_server.py
|
|
oss/plugins/multi_lang_deploy.py
|
|
oss/plugins/ops_toolbox.py
|
|
oss/plugins/security_gateway.py
|
|
oss/shared/__init__.py
|
|
oss/shared/router.py |