systemr-cli 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- systemr_cli-1.0.0/.gitignore +11 -0
- systemr_cli-1.0.0/DESIGN.md +810 -0
- systemr_cli-1.0.0/PKG-INFO +191 -0
- systemr_cli-1.0.0/README.md +163 -0
- systemr_cli-1.0.0/clawhub/systemr-trading/SKILL.md +105 -0
- systemr_cli-1.0.0/clawhub/systemr-trading/scripts/mcp_stdio_proxy.py +251 -0
- systemr_cli-1.0.0/neo/__init__.py +3 -0
- systemr_cli-1.0.0/neo/__main__.py +5 -0
- systemr_cli-1.0.0/neo/auth.py +192 -0
- systemr_cli-1.0.0/neo/cli.py +205 -0
- systemr_cli-1.0.0/neo/client.py +64 -0
- systemr_cli-1.0.0/neo/commands/__init__.py +0 -0
- systemr_cli-1.0.0/neo/commands/auth_commands.py +303 -0
- systemr_cli-1.0.0/neo/commands/chat_commands.py +937 -0
- systemr_cli-1.0.0/neo/commands/cron_commands.py +179 -0
- systemr_cli-1.0.0/neo/commands/doctor_command.py +178 -0
- systemr_cli-1.0.0/neo/commands/eval_commands.py +73 -0
- systemr_cli-1.0.0/neo/commands/journal_commands.py +197 -0
- systemr_cli-1.0.0/neo/commands/plan_commands.py +77 -0
- systemr_cli-1.0.0/neo/commands/risk_commands.py +68 -0
- systemr_cli-1.0.0/neo/commands/scan_commands.py +62 -0
- systemr_cli-1.0.0/neo/commands/size_commands.py +60 -0
- systemr_cli-1.0.0/neo/config.py +70 -0
- systemr_cli-1.0.0/neo/confirmation.py +311 -0
- systemr_cli-1.0.0/neo/credits.py +98 -0
- systemr_cli-1.0.0/neo/cron.py +365 -0
- systemr_cli-1.0.0/neo/display/__init__.py +0 -0
- systemr_cli-1.0.0/neo/display/chat_renderer.py +127 -0
- systemr_cli-1.0.0/neo/display/formatters.py +112 -0
- systemr_cli-1.0.0/neo/display/tables.py +53 -0
- systemr_cli-1.0.0/neo/display/theme.py +154 -0
- systemr_cli-1.0.0/neo/hooks.py +170 -0
- systemr_cli-1.0.0/neo/logging.py +56 -0
- systemr_cli-1.0.0/neo/model_failover.py +193 -0
- systemr_cli-1.0.0/neo/orchestrator.py +288 -0
- systemr_cli-1.0.0/neo/profile.py +505 -0
- systemr_cli-1.0.0/neo/store.py +405 -0
- systemr_cli-1.0.0/neo/streaming.py +315 -0
- systemr_cli-1.0.0/neo/types.py +109 -0
- systemr_cli-1.0.0/pyproject.toml +55 -0
- systemr_cli-1.0.0/tests/__init__.py +0 -0
- systemr_cli-1.0.0/tests/test_auth.py +57 -0
- systemr_cli-1.0.0/tests/test_chat_helpers.py +155 -0
- systemr_cli-1.0.0/tests/test_chat_renderer.py +111 -0
- systemr_cli-1.0.0/tests/test_cli.py +48 -0
- systemr_cli-1.0.0/tests/test_config.py +16 -0
- systemr_cli-1.0.0/tests/test_confirmation.py +138 -0
- systemr_cli-1.0.0/tests/test_credits.py +91 -0
- systemr_cli-1.0.0/tests/test_cron.py +184 -0
- systemr_cli-1.0.0/tests/test_doctor.py +60 -0
- systemr_cli-1.0.0/tests/test_formatters.py +29 -0
- systemr_cli-1.0.0/tests/test_hooks.py +106 -0
- systemr_cli-1.0.0/tests/test_logging.py +26 -0
- systemr_cli-1.0.0/tests/test_model_failover.py +119 -0
- systemr_cli-1.0.0/tests/test_orchestrator.py +112 -0
- systemr_cli-1.0.0/tests/test_profile.py +429 -0
- systemr_cli-1.0.0/tests/test_store.py +133 -0
- systemr_cli-1.0.0/tests/test_streaming.py +132 -0
- systemr_cli-1.0.0/tests/test_types.py +117 -0