radsimcli 1.2.1__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 (91) hide show
  1. radsimcli-1.2.1/.gitignore +70 -0
  2. radsimcli-1.2.1/LICENSE +21 -0
  3. radsimcli-1.2.1/NOTICE +24 -0
  4. radsimcli-1.2.1/PKG-INFO +665 -0
  5. radsimcli-1.2.1/README.md +630 -0
  6. radsimcli-1.2.1/pyproject.toml +75 -0
  7. radsimcli-1.2.1/radsim/__init__.py +127 -0
  8. radsimcli-1.2.1/radsim/__main__.py +6 -0
  9. radsimcli-1.2.1/radsim/access_control.py +93 -0
  10. radsimcli-1.2.1/radsim/adversarial.py +511 -0
  11. radsimcli-1.2.1/radsim/agent.py +2663 -0
  12. radsimcli-1.2.1/radsim/agent_config.py +372 -0
  13. radsimcli-1.2.1/radsim/api_client.py +912 -0
  14. radsimcli-1.2.1/radsim/archaeology.py +595 -0
  15. radsimcli-1.2.1/radsim/background.py +188 -0
  16. radsimcli-1.2.1/radsim/browser.py +172 -0
  17. radsimcli-1.2.1/radsim/cli.py +301 -0
  18. radsimcli-1.2.1/radsim/code_quality.py +191 -0
  19. radsimcli-1.2.1/radsim/commands.py +2443 -0
  20. radsimcli-1.2.1/radsim/complexity.py +436 -0
  21. radsimcli-1.2.1/radsim/config.py +692 -0
  22. radsimcli-1.2.1/radsim/diff_display.py +288 -0
  23. radsimcli-1.2.1/radsim/escape_listener.py +180 -0
  24. radsimcli-1.2.1/radsim/file_tools.py +432 -0
  25. radsimcli-1.2.1/radsim/git_tools.py +207 -0
  26. radsimcli-1.2.1/radsim/health.py +253 -0
  27. radsimcli-1.2.1/radsim/hooks.py +225 -0
  28. radsimcli-1.2.1/radsim/jobs.py +549 -0
  29. radsimcli-1.2.1/radsim/keybindings.py +66 -0
  30. radsimcli-1.2.1/radsim/learning/__init__.py +119 -0
  31. radsimcli-1.2.1/radsim/learning/active_learner.py +356 -0
  32. radsimcli-1.2.1/radsim/learning/analytics.py +351 -0
  33. radsimcli-1.2.1/radsim/learning/error_analyzer.py +278 -0
  34. radsimcli-1.2.1/radsim/learning/few_shot_assembler.py +294 -0
  35. radsimcli-1.2.1/radsim/learning/preference_learner.py +366 -0
  36. radsimcli-1.2.1/radsim/learning/reflection_engine.py +399 -0
  37. radsimcli-1.2.1/radsim/learning/self_improver.py +578 -0
  38. radsimcli-1.2.1/radsim/learning/tool_optimizer.py +383 -0
  39. radsimcli-1.2.1/radsim/log_config.py +29 -0
  40. radsimcli-1.2.1/radsim/memory.py +489 -0
  41. radsimcli-1.2.1/radsim/menu.py +119 -0
  42. radsimcli-1.2.1/radsim/model_router.py +253 -0
  43. radsimcli-1.2.1/radsim/modes.py +351 -0
  44. radsimcli-1.2.1/radsim/onboarding.py +991 -0
  45. radsimcli-1.2.1/radsim/output.py +1492 -0
  46. radsimcli-1.2.1/radsim/panning.py +259 -0
  47. radsimcli-1.2.1/radsim/patch.py +240 -0
  48. radsimcli-1.2.1/radsim/planner.py +449 -0
  49. radsimcli-1.2.1/radsim/prompts.py +468 -0
  50. radsimcli-1.2.1/radsim/rate_limiter.py +351 -0
  51. radsimcli-1.2.1/radsim/repo_map.py +296 -0
  52. radsimcli-1.2.1/radsim/response_validator.py +180 -0
  53. radsimcli-1.2.1/radsim/safety.py +300 -0
  54. radsimcli-1.2.1/radsim/scheduler.py +308 -0
  55. radsimcli-1.2.1/radsim/search_tools.py +391 -0
  56. radsimcli-1.2.1/radsim/shell_tools.py +181 -0
  57. radsimcli-1.2.1/radsim/skill_registry.py +148 -0
  58. radsimcli-1.2.1/radsim/skills/README.md +54 -0
  59. radsimcli-1.2.1/radsim/skills/browser_automation.md +191 -0
  60. radsimcli-1.2.1/radsim/skills/directory_operations.md +100 -0
  61. radsimcli-1.2.1/radsim/skills/file_operations.md +150 -0
  62. radsimcli-1.2.1/radsim/skills/git_operations.md +229 -0
  63. radsimcli-1.2.1/radsim/skills/production_readiness.md +153 -0
  64. radsimcli-1.2.1/radsim/skills/search.md +178 -0
  65. radsimcli-1.2.1/radsim/skills/shell_commands.md +138 -0
  66. radsimcli-1.2.1/radsim/skills/web_tools.md +135 -0
  67. radsimcli-1.2.1/radsim/skills.py +350 -0
  68. radsimcli-1.2.1/radsim/sub_agent.py +590 -0
  69. radsimcli-1.2.1/radsim/task_logger.py +328 -0
  70. radsimcli-1.2.1/radsim/telegram.py +661 -0
  71. radsimcli-1.2.1/radsim/todo.py +126 -0
  72. radsimcli-1.2.1/radsim/tool_result.py +115 -0
  73. radsimcli-1.2.1/radsim/tools/__init__.py +435 -0
  74. radsimcli-1.2.1/radsim/tools/advanced.py +660 -0
  75. radsimcli-1.2.1/radsim/tools/code_intel.py +209 -0
  76. radsimcli-1.2.1/radsim/tools/command_policy.py +168 -0
  77. radsimcli-1.2.1/radsim/tools/constants.py +89 -0
  78. radsimcli-1.2.1/radsim/tools/definitions.py +1152 -0
  79. radsimcli-1.2.1/radsim/tools/dependencies.py +328 -0
  80. radsimcli-1.2.1/radsim/tools/directory_ops.py +95 -0
  81. radsimcli-1.2.1/radsim/tools/file_ops.py +354 -0
  82. radsimcli-1.2.1/radsim/tools/git.py +194 -0
  83. radsimcli-1.2.1/radsim/tools/project.py +208 -0
  84. radsimcli-1.2.1/radsim/tools/search.py +186 -0
  85. radsimcli-1.2.1/radsim/tools/shell.py +57 -0
  86. radsimcli-1.2.1/radsim/tools/testing.py +285 -0
  87. radsimcli-1.2.1/radsim/tools/validation.py +170 -0
  88. radsimcli-1.2.1/radsim/tools/web.py +49 -0
  89. radsimcli-1.2.1/radsim/ui.py +328 -0
  90. radsimcli-1.2.1/radsim/update_checker.py +144 -0
  91. radsimcli-1.2.1/radsim/vector_memory.py +649 -0
@@ -0,0 +1,70 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.so
6
+ *.egg
7
+ *.egg-info/
8
+ build/
9
+ dist/
10
+ sdist/
11
+ wheels/
12
+ *.whl
13
+
14
+ # Virtual Environments
15
+ venv/
16
+ .venv/
17
+ env/
18
+ ENV/
19
+
20
+ # Secrets & Credentials - NEVER commit these
21
+ .env
22
+ .env.*
23
+ !.env.example
24
+ *.key
25
+ *.pem
26
+ *.p12
27
+ *.pfx
28
+ credentials.json
29
+ service-account*.json
30
+ secrets/
31
+
32
+ # OS Files
33
+ .DS_Store
34
+ Thumbs.db
35
+ Desktop.ini
36
+
37
+ # IDEs & Editors
38
+ .vscode/
39
+ .idea/
40
+ *.swp
41
+ *.swo
42
+ *~
43
+ .project
44
+ .settings/
45
+
46
+ # Claude Code
47
+ .claude/
48
+
49
+ # Linters & Testing
50
+ .ruff_cache/
51
+ .pytest_cache/
52
+ .mypy_cache/
53
+ .coverage
54
+ htmlcov/
55
+ coverage.xml
56
+
57
+ # Generated files
58
+ *.pdf
59
+
60
+ # Logs
61
+ *.log
62
+ logs/
63
+
64
+ # Local config
65
+ .radsim/
66
+ .radsim_cache/
67
+
68
+ # RadSim feature data
69
+ plans/
70
+ panning_sessions/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024-2026 Matthew Bright
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
radsimcli-1.2.1/NOTICE ADDED
@@ -0,0 +1,24 @@
1
+ RadSim - Radical Simplicity CLI Agent
2
+ Copyright (c) 2024-2026 Matthew Bright
3
+
4
+ Licensed under the MIT License. See LICENSE file for details.
5
+
6
+ Project: https://github.com/emera-digital/radsim
7
+ Author: Matthew Bright
8
+ Organization: Emera Digital Tools
9
+
10
+ Third-Party Dependencies
11
+ ========================
12
+
13
+ This project uses the following third-party libraries:
14
+
15
+ - anthropic (MIT License) - Anthropic Python SDK
16
+ - openai (MIT License) - OpenAI Python SDK
17
+ - google-generativeai (Apache 2.0) - Google Generative AI SDK
18
+ - playwright (Apache 2.0) - Browser automation
19
+ - chromadb (Apache 2.0) - Vector database
20
+ - pytest (MIT License) - Testing framework
21
+ - ruff (MIT License) - Python linter and formatter
22
+ - hatchling (MIT License) - Build system
23
+
24
+ Each dependency is subject to its own license terms.