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.
Files changed (59) hide show
  1. systemr_cli-1.0.0/.gitignore +11 -0
  2. systemr_cli-1.0.0/DESIGN.md +810 -0
  3. systemr_cli-1.0.0/PKG-INFO +191 -0
  4. systemr_cli-1.0.0/README.md +163 -0
  5. systemr_cli-1.0.0/clawhub/systemr-trading/SKILL.md +105 -0
  6. systemr_cli-1.0.0/clawhub/systemr-trading/scripts/mcp_stdio_proxy.py +251 -0
  7. systemr_cli-1.0.0/neo/__init__.py +3 -0
  8. systemr_cli-1.0.0/neo/__main__.py +5 -0
  9. systemr_cli-1.0.0/neo/auth.py +192 -0
  10. systemr_cli-1.0.0/neo/cli.py +205 -0
  11. systemr_cli-1.0.0/neo/client.py +64 -0
  12. systemr_cli-1.0.0/neo/commands/__init__.py +0 -0
  13. systemr_cli-1.0.0/neo/commands/auth_commands.py +303 -0
  14. systemr_cli-1.0.0/neo/commands/chat_commands.py +937 -0
  15. systemr_cli-1.0.0/neo/commands/cron_commands.py +179 -0
  16. systemr_cli-1.0.0/neo/commands/doctor_command.py +178 -0
  17. systemr_cli-1.0.0/neo/commands/eval_commands.py +73 -0
  18. systemr_cli-1.0.0/neo/commands/journal_commands.py +197 -0
  19. systemr_cli-1.0.0/neo/commands/plan_commands.py +77 -0
  20. systemr_cli-1.0.0/neo/commands/risk_commands.py +68 -0
  21. systemr_cli-1.0.0/neo/commands/scan_commands.py +62 -0
  22. systemr_cli-1.0.0/neo/commands/size_commands.py +60 -0
  23. systemr_cli-1.0.0/neo/config.py +70 -0
  24. systemr_cli-1.0.0/neo/confirmation.py +311 -0
  25. systemr_cli-1.0.0/neo/credits.py +98 -0
  26. systemr_cli-1.0.0/neo/cron.py +365 -0
  27. systemr_cli-1.0.0/neo/display/__init__.py +0 -0
  28. systemr_cli-1.0.0/neo/display/chat_renderer.py +127 -0
  29. systemr_cli-1.0.0/neo/display/formatters.py +112 -0
  30. systemr_cli-1.0.0/neo/display/tables.py +53 -0
  31. systemr_cli-1.0.0/neo/display/theme.py +154 -0
  32. systemr_cli-1.0.0/neo/hooks.py +170 -0
  33. systemr_cli-1.0.0/neo/logging.py +56 -0
  34. systemr_cli-1.0.0/neo/model_failover.py +193 -0
  35. systemr_cli-1.0.0/neo/orchestrator.py +288 -0
  36. systemr_cli-1.0.0/neo/profile.py +505 -0
  37. systemr_cli-1.0.0/neo/store.py +405 -0
  38. systemr_cli-1.0.0/neo/streaming.py +315 -0
  39. systemr_cli-1.0.0/neo/types.py +109 -0
  40. systemr_cli-1.0.0/pyproject.toml +55 -0
  41. systemr_cli-1.0.0/tests/__init__.py +0 -0
  42. systemr_cli-1.0.0/tests/test_auth.py +57 -0
  43. systemr_cli-1.0.0/tests/test_chat_helpers.py +155 -0
  44. systemr_cli-1.0.0/tests/test_chat_renderer.py +111 -0
  45. systemr_cli-1.0.0/tests/test_cli.py +48 -0
  46. systemr_cli-1.0.0/tests/test_config.py +16 -0
  47. systemr_cli-1.0.0/tests/test_confirmation.py +138 -0
  48. systemr_cli-1.0.0/tests/test_credits.py +91 -0
  49. systemr_cli-1.0.0/tests/test_cron.py +184 -0
  50. systemr_cli-1.0.0/tests/test_doctor.py +60 -0
  51. systemr_cli-1.0.0/tests/test_formatters.py +29 -0
  52. systemr_cli-1.0.0/tests/test_hooks.py +106 -0
  53. systemr_cli-1.0.0/tests/test_logging.py +26 -0
  54. systemr_cli-1.0.0/tests/test_model_failover.py +119 -0
  55. systemr_cli-1.0.0/tests/test_orchestrator.py +112 -0
  56. systemr_cli-1.0.0/tests/test_profile.py +429 -0
  57. systemr_cli-1.0.0/tests/test_store.py +133 -0
  58. systemr_cli-1.0.0/tests/test_streaming.py +132 -0
  59. systemr_cli-1.0.0/tests/test_types.py +117 -0
@@ -0,0 +1,11 @@
1
+ __pycache__/
2
+ *.pyc
3
+ *.pyo
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ .venv/
8
+ .pytest_cache/
9
+ .ruff_cache/
10
+ *.db
11
+ .neo/