superoptix 0.2.4__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 (792) hide show
  1. superoptix-0.2.4/.github/ISSUE_TEMPLATE/bug_report.yml +94 -0
  2. superoptix-0.2.4/.github/ISSUE_TEMPLATE/feature_request.yml +122 -0
  3. superoptix-0.2.4/.github/ISSUE_TEMPLATE/question.yml +103 -0
  4. superoptix-0.2.4/.github/pull_request_template.md +100 -0
  5. superoptix-0.2.4/.github/workflows/ci.yml +44 -0
  6. superoptix-0.2.4/.github/workflows/release.yml +74 -0
  7. superoptix-0.2.4/.github/workflows/ruff.yml +29 -0
  8. superoptix-0.2.4/.gitignore +82 -0
  9. superoptix-0.2.4/.pre-commit-config.yaml +15 -0
  10. superoptix-0.2.4/.python-version +1 -0
  11. superoptix-0.2.4/.superoptix/memory/memory.db +0 -0
  12. superoptix-0.2.4/AGENTS.md +39 -0
  13. superoptix-0.2.4/CHANGELOG.md +292 -0
  14. superoptix-0.2.4/CODE_OF_CONDUCT.md +128 -0
  15. superoptix-0.2.4/CONTRIBUTING.md +199 -0
  16. superoptix-0.2.4/LICENCE +190 -0
  17. superoptix-0.2.4/MANIFEST.in +72 -0
  18. superoptix-0.2.4/PKG-INFO +576 -0
  19. superoptix-0.2.4/README.md +181 -0
  20. superoptix-0.2.4/Reference/stackone/.cursor/rules/development-workflow.mdc +1 -0
  21. superoptix-0.2.4/Reference/stackone/.cursor/rules/examples-standards.mdc +1 -0
  22. superoptix-0.2.4/Reference/stackone/.cursor/rules/git-workflow.mdc +1 -0
  23. superoptix-0.2.4/Reference/stackone/.cursor/rules/no-relative-imports.mdc +1 -0
  24. superoptix-0.2.4/Reference/stackone/.cursor/rules/package-installation.mdc +1 -0
  25. superoptix-0.2.4/Reference/stackone/.cursor/rules/release-please-standards.mdc +1 -0
  26. superoptix-0.2.4/Reference/stackone/.cursor/rules/uv-scripts.mdc +1 -0
  27. superoptix-0.2.4/Reference/stackone/.envrc +1 -0
  28. superoptix-0.2.4/Reference/stackone/.github/actions/setup-nix/action.yaml +50 -0
  29. superoptix-0.2.4/Reference/stackone/.github/dependabot.yaml +46 -0
  30. superoptix-0.2.4/Reference/stackone/.github/workflows/ci.yaml +100 -0
  31. superoptix-0.2.4/Reference/stackone/.github/workflows/nix-flake-update.yaml +63 -0
  32. superoptix-0.2.4/Reference/stackone/.github/workflows/nix-flake.yaml +35 -0
  33. superoptix-0.2.4/Reference/stackone/.github/workflows/release.yaml +66 -0
  34. superoptix-0.2.4/Reference/stackone/.gitignore +19 -0
  35. superoptix-0.2.4/Reference/stackone/.gitleaks.toml +14 -0
  36. superoptix-0.2.4/Reference/stackone/.gitmodules +3 -0
  37. superoptix-0.2.4/Reference/stackone/.mcp.json +12 -0
  38. superoptix-0.2.4/Reference/stackone/.release-please-config.json +15 -0
  39. superoptix-0.2.4/Reference/stackone/.release-please-manifest.json +3 -0
  40. superoptix-0.2.4/Reference/stackone/CHANGELOG.md +178 -0
  41. superoptix-0.2.4/Reference/stackone/CLAUDE.md +117 -0
  42. superoptix-0.2.4/Reference/stackone/LICENSE +201 -0
  43. superoptix-0.2.4/Reference/stackone/README.md +375 -0
  44. superoptix-0.2.4/Reference/stackone/examples/crewai_integration.py +55 -0
  45. superoptix-0.2.4/Reference/stackone/examples/file_uploads.py +83 -0
  46. superoptix-0.2.4/Reference/stackone/examples/index.py +105 -0
  47. superoptix-0.2.4/Reference/stackone/examples/langchain_integration.py +51 -0
  48. superoptix-0.2.4/Reference/stackone/examples/openai_integration.py +93 -0
  49. superoptix-0.2.4/Reference/stackone/examples/stackone_account_ids.py +40 -0
  50. superoptix-0.2.4/Reference/stackone/examples/test_examples.py +62 -0
  51. superoptix-0.2.4/Reference/stackone/examples/utility_tools_example.py +214 -0
  52. superoptix-0.2.4/Reference/stackone/flake.lock +170 -0
  53. superoptix-0.2.4/Reference/stackone/flake.nix +120 -0
  54. superoptix-0.2.4/Reference/stackone/justfile +43 -0
  55. superoptix-0.2.4/Reference/stackone/pyproject.toml +118 -0
  56. superoptix-0.2.4/Reference/stackone/stackone_ai/__init__.py +11 -0
  57. superoptix-0.2.4/Reference/stackone/stackone_ai/constants.py +5 -0
  58. superoptix-0.2.4/Reference/stackone/stackone_ai/feedback/__init__.py +5 -0
  59. superoptix-0.2.4/Reference/stackone/stackone_ai/feedback/tool.py +225 -0
  60. superoptix-0.2.4/Reference/stackone/stackone_ai/integrations/__init__.py +20 -0
  61. superoptix-0.2.4/Reference/stackone/stackone_ai/integrations/langgraph.py +86 -0
  62. superoptix-0.2.4/Reference/stackone/stackone_ai/models.py +564 -0
  63. superoptix-0.2.4/Reference/stackone/stackone_ai/py.typed +0 -0
  64. superoptix-0.2.4/Reference/stackone/stackone_ai/toolset.py +415 -0
  65. superoptix-0.2.4/Reference/stackone/stackone_ai/utility_tools.py +347 -0
  66. superoptix-0.2.4/Reference/stackone/stackone_ai/utils/__init__.py +1 -0
  67. superoptix-0.2.4/Reference/stackone/stackone_ai/utils/tfidf_index.py +242 -0
  68. superoptix-0.2.4/Reference/stackone/tests/conftest.py +101 -0
  69. superoptix-0.2.4/Reference/stackone/tests/mocks/serve.ts +134 -0
  70. superoptix-0.2.4/Reference/stackone/tests/test_feedback.py +395 -0
  71. superoptix-0.2.4/Reference/stackone/tests/test_fetch_tools.py +442 -0
  72. superoptix-0.2.4/Reference/stackone/tests/test_integrations_langgraph.py +217 -0
  73. superoptix-0.2.4/Reference/stackone/tests/test_models.py +962 -0
  74. superoptix-0.2.4/Reference/stackone/tests/test_tfidf_index.py +452 -0
  75. superoptix-0.2.4/Reference/stackone/tests/test_tool_calling.py +333 -0
  76. superoptix-0.2.4/Reference/stackone/tests/test_toolset.py +355 -0
  77. superoptix-0.2.4/Reference/stackone/tests/test_utility_tools.py +494 -0
  78. superoptix-0.2.4/Reference/stackone/uv.lock +4966 -0
  79. superoptix-0.2.4/docs/agent-patterns.md +445 -0
  80. superoptix-0.2.4/docs/changelog.md +6 -0
  81. superoptix-0.2.4/docs/contributing.md +199 -0
  82. superoptix-0.2.4/docs/debugging-guide.md +71 -0
  83. superoptix-0.2.4/docs/environment-setup.md +262 -0
  84. superoptix-0.2.4/docs/examples/agents/gepa-integration.md +328 -0
  85. superoptix-0.2.4/docs/examples/agents/huggingface-demo.md +165 -0
  86. superoptix-0.2.4/docs/examples/agents/langfuse-integration.md +423 -0
  87. superoptix-0.2.4/docs/examples/agents/lmstudio-demo.md +161 -0
  88. superoptix-0.2.4/docs/examples/agents/memory-demo.md +182 -0
  89. superoptix-0.2.4/docs/examples/agents/milvus-demo.md +168 -0
  90. superoptix-0.2.4/docs/examples/agents/mlflow-integration.md +363 -0
  91. superoptix-0.2.4/docs/examples/agents/mlx-demo.md +154 -0
  92. superoptix-0.2.4/docs/examples/agents/observability-demo.md +174 -0
  93. superoptix-0.2.4/docs/examples/agents/ollama-demo.md +159 -0
  94. superoptix-0.2.4/docs/examples/agents/optimas-examples.md +316 -0
  95. superoptix-0.2.4/docs/examples/agents/qdrant-demo.md +164 -0
  96. superoptix-0.2.4/docs/examples/agents/rag-chroma-demo.md +186 -0
  97. superoptix-0.2.4/docs/examples/agents/rag-lancedb-demo.md +178 -0
  98. superoptix-0.2.4/docs/examples/agents/tools-demo.md +189 -0
  99. superoptix-0.2.4/docs/examples/agents/weaviate-demo.md +168 -0
  100. superoptix-0.2.4/docs/examples/agents/weights-biases-demo.md +413 -0
  101. superoptix-0.2.4/docs/examples/index.md +195 -0
  102. superoptix-0.2.4/docs/faq.md +287 -0
  103. superoptix-0.2.4/docs/favicon.png +0 -0
  104. superoptix-0.2.4/docs/glossary.md +3 -0
  105. superoptix-0.2.4/docs/guides/agent-development.md +547 -0
  106. superoptix-0.2.4/docs/guides/agent-discovery.md +311 -0
  107. superoptix-0.2.4/docs/guides/agent-optimization/datasets.md +843 -0
  108. superoptix-0.2.4/docs/guides/agent-optimization/full-stack-example.md +974 -0
  109. superoptix-0.2.4/docs/guides/agent-optimization/memory.md +697 -0
  110. superoptix-0.2.4/docs/guides/agent-optimization/overview.md +408 -0
  111. superoptix-0.2.4/docs/guides/agent-optimization/prompts.md +585 -0
  112. superoptix-0.2.4/docs/guides/agent-optimization/protocols.md +724 -0
  113. superoptix-0.2.4/docs/guides/agent-optimization/rag.md +614 -0
  114. superoptix-0.2.4/docs/guides/agent-optimization/tools.md +713 -0
  115. superoptix-0.2.4/docs/guides/bdd.md +860 -0
  116. superoptix-0.2.4/docs/guides/cicd-integration.md +657 -0
  117. superoptix-0.2.4/docs/guides/cli-complete-guide.md +753 -0
  118. superoptix-0.2.4/docs/guides/cloud-inference.md +558 -0
  119. superoptix-0.2.4/docs/guides/conversational-interface.md +444 -0
  120. superoptix-0.2.4/docs/guides/crewai-integration.md +623 -0
  121. superoptix-0.2.4/docs/guides/crewai-task-optimization.md +521 -0
  122. superoptix-0.2.4/docs/guides/dataset-import.md +786 -0
  123. superoptix-0.2.4/docs/guides/deepagents-backends.md +788 -0
  124. superoptix-0.2.4/docs/guides/deepagents-index.md +312 -0
  125. superoptix-0.2.4/docs/guides/deepagents-integration.md +957 -0
  126. superoptix-0.2.4/docs/guides/dspy-optimizers.md +907 -0
  127. superoptix-0.2.4/docs/guides/enhanced-observability.md +520 -0
  128. superoptix-0.2.4/docs/guides/evaluation-testing.md +572 -0
  129. superoptix-0.2.4/docs/guides/examples/simple_calculator_mcp_server.py +85 -0
  130. superoptix-0.2.4/docs/guides/gepa-optimization.md +1222 -0
  131. superoptix-0.2.4/docs/guides/google-adk-integration.md +586 -0
  132. superoptix-0.2.4/docs/guides/index.md +51 -0
  133. superoptix-0.2.4/docs/guides/langfuse-integration.md +896 -0
  134. superoptix-0.2.4/docs/guides/logfire-integration.md +503 -0
  135. superoptix-0.2.4/docs/guides/marketplace.md +451 -0
  136. superoptix-0.2.4/docs/guides/mcp-rag-complete-guide.md +693 -0
  137. superoptix-0.2.4/docs/guides/memory-context-optimization.md +71 -0
  138. superoptix-0.2.4/docs/guides/memory-optimization.md +906 -0
  139. superoptix-0.2.4/docs/guides/memory.md +605 -0
  140. superoptix-0.2.4/docs/guides/microsoft-framework-integration.md +465 -0
  141. superoptix-0.2.4/docs/guides/mlflow-guide.md +358 -0
  142. superoptix-0.2.4/docs/guides/model-intelligence.md +760 -0
  143. superoptix-0.2.4/docs/guides/model-management.md +1100 -0
  144. superoptix-0.2.4/docs/guides/multi-framework.md +633 -0
  145. superoptix-0.2.4/docs/guides/observability-comparison.md +243 -0
  146. superoptix-0.2.4/docs/guides/observability.md +682 -0
  147. superoptix-0.2.4/docs/guides/openai-sdk-integration.md +1037 -0
  148. superoptix-0.2.4/docs/guides/optimas-integration.md +521 -0
  149. superoptix-0.2.4/docs/guides/optimization.md +320 -0
  150. superoptix-0.2.4/docs/guides/orchestra-development.md +621 -0
  151. superoptix-0.2.4/docs/guides/protocol-first-agents.md +545 -0
  152. superoptix-0.2.4/docs/guides/pydantic-ai-integration.md +1583 -0
  153. superoptix-0.2.4/docs/guides/pydantic-ai-mcp-demo.md +708 -0
  154. superoptix-0.2.4/docs/guides/rag.md +576 -0
  155. superoptix-0.2.4/docs/guides/rails-analogy.md +977 -0
  156. superoptix-0.2.4/docs/guides/responsible-ai.md +587 -0
  157. superoptix-0.2.4/docs/guides/sglang-inference.md +281 -0
  158. superoptix-0.2.4/docs/guides/stackone-integration.md +551 -0
  159. superoptix-0.2.4/docs/guides/super-cli.md +816 -0
  160. superoptix-0.2.4/docs/guides/superspec-agent-building.md +767 -0
  161. superoptix-0.2.4/docs/guides/superspec-configuration.md +616 -0
  162. superoptix-0.2.4/docs/guides/superspec-context-engineering.md +539 -0
  163. superoptix-0.2.4/docs/guides/superspec-dsl-examples.md +1059 -0
  164. superoptix-0.2.4/docs/guides/superspec-dsl-reference.md +665 -0
  165. superoptix-0.2.4/docs/guides/superspec.md +2205 -0
  166. superoptix-0.2.4/docs/guides/technical-architecture.md +699 -0
  167. superoptix-0.2.4/docs/guides/tiers.md +575 -0
  168. superoptix-0.2.4/docs/guides/tool-development.md +759 -0
  169. superoptix-0.2.4/docs/guides/vllm-inference.md +410 -0
  170. superoptix-0.2.4/docs/guides/weights-biases-integration.md +364 -0
  171. superoptix-0.2.4/docs/index.md +574 -0
  172. superoptix-0.2.4/docs/introduction.md +495 -0
  173. superoptix-0.2.4/docs/javascripts/extra.js +681 -0
  174. superoptix-0.2.4/docs/llm-setup.md +1102 -0
  175. superoptix-0.2.4/docs/logo.png +0 -0
  176. superoptix-0.2.4/docs/logo3.png +0 -0
  177. superoptix-0.2.4/docs/mission-superoptix.md +151 -0
  178. superoptix-0.2.4/docs/overrides/home.html +16 -0
  179. superoptix-0.2.4/docs/project-structure.md +227 -0
  180. superoptix-0.2.4/docs/quick-start.md +245 -0
  181. superoptix-0.2.4/docs/setup.md +191 -0
  182. superoptix-0.2.4/docs/stylesheets/extra.css +583 -0
  183. superoptix-0.2.4/docs/stylesheets/readthedocs-custom.css +46 -0
  184. superoptix-0.2.4/docs/superagentic-ai.md +296 -0
  185. superoptix-0.2.4/docs/superoptix_hero.png +0 -0
  186. superoptix-0.2.4/docs/techniques/index.md +36 -0
  187. superoptix-0.2.4/docs/troubleshooting.md +135 -0
  188. superoptix-0.2.4/docs/tutorials/deepagents-backends-tutorial.md +875 -0
  189. superoptix-0.2.4/docs/tutorials/deepagents-complete-workflow.md +1655 -0
  190. superoptix-0.2.4/docs/tutorials/first-orchestra.md +814 -0
  191. superoptix-0.2.4/docs/tutorials/genies-agent.md +1025 -0
  192. superoptix-0.2.4/docs/tutorials/index.md +99 -0
  193. superoptix-0.2.4/docs/tutorials/mcp-optimization.md +501 -0
  194. superoptix-0.2.4/docs/tutorials/multi-framework-quickstart.md +505 -0
  195. superoptix-0.2.4/docs/tutorials/openai-sdk-gepa-optimization.md +1427 -0
  196. superoptix-0.2.4/docs/tutorials/oracles-agent.md +814 -0
  197. superoptix-0.2.4/docs/tutorials/rag-optimization.md +399 -0
  198. superoptix-0.2.4/examples/integrations/stackone_benchmark_example.py +55 -0
  199. superoptix-0.2.4/examples/integrations/stackone_discovery_example.py +73 -0
  200. superoptix-0.2.4/examples/integrations/stackone_dspy_example.py +63 -0
  201. superoptix-0.2.4/examples/integrations/stackone_google_adk_example.py +67 -0
  202. superoptix-0.2.4/examples/integrations/stackone_optimization_example.py +71 -0
  203. superoptix-0.2.4/examples/integrations/stackone_pydantic_ai_example.py +76 -0
  204. superoptix-0.2.4/examples/integrations/stackone_semantic_kernel_example.py +78 -0
  205. superoptix-0.2.4/install.sh +243 -0
  206. superoptix-0.2.4/mkdocs.yml +265 -0
  207. superoptix-0.2.4/pyproject.toml +544 -0
  208. superoptix-0.2.4/ruff.toml +64 -0
  209. superoptix-0.2.4/superoptix/__init__.py +183 -0
  210. superoptix-0.2.4/superoptix/adapters/__init__.py +61 -0
  211. superoptix-0.2.4/superoptix/adapters/dspy_adapter.py +356 -0
  212. superoptix-0.2.4/superoptix/adapters/framework_registry.py +1127 -0
  213. superoptix-0.2.4/superoptix/adapters/observability_enhanced_dspy_adapter.py +760 -0
  214. superoptix-0.2.4/superoptix/adapters/optimas_openai_adapter.py +57 -0
  215. superoptix-0.2.4/superoptix/adapters/stackone_adapter.py +1234 -0
  216. superoptix-0.2.4/superoptix/agent_bases/__init__.py +14 -0
  217. superoptix-0.2.4/superoptix/agent_bases/protocol_agent.py +157 -0
  218. superoptix-0.2.4/superoptix/agents/README.md +302 -0
  219. superoptix-0.2.4/superoptix/agents/agriculture_food/crop_manager_playbook.yaml +126 -0
  220. superoptix-0.2.4/superoptix/agents/agriculture_food/food_safety_inspector_playbook.yaml +125 -0
  221. superoptix-0.2.4/superoptix/agents/agriculture_food/supply_chain_coordinator_playbook.yaml +125 -0
  222. superoptix-0.2.4/superoptix/agents/agriculture_food/sustainability_advisor_playbook.yaml +125 -0
  223. superoptix-0.2.4/superoptix/agents/analysis/README.md +67 -0
  224. superoptix-0.2.4/superoptix/agents/analysis/sentiment_analyzer_playbook.yaml +167 -0
  225. superoptix-0.2.4/superoptix/agents/consulting/business_analyst_playbook.yaml +124 -0
  226. superoptix-0.2.4/superoptix/agents/consulting/change_manager_playbook.yaml +124 -0
  227. superoptix-0.2.4/superoptix/agents/consulting/performance_consultant_playbook.yaml +124 -0
  228. superoptix-0.2.4/superoptix/agents/consulting/process_consultant_playbook.yaml +124 -0
  229. superoptix-0.2.4/superoptix/agents/consulting/strategy_consultant_playbook.yaml +124 -0
  230. superoptix-0.2.4/superoptix/agents/demo/DEMO_AGENTS_SUMMARY.md +402 -0
  231. superoptix-0.2.4/superoptix/agents/demo/MEMORY_OPTIMIZATION_DEMO.md +425 -0
  232. superoptix-0.2.4/superoptix/agents/demo/ODSC_CODE_REVIEW_DEMO.md +598 -0
  233. superoptix-0.2.4/superoptix/agents/demo/OPENAI_SDK_DEMO.md +512 -0
  234. superoptix-0.2.4/superoptix/agents/demo/README.md +217 -0
  235. superoptix-0.2.4/superoptix/agents/demo/SETUP.md +279 -0
  236. superoptix-0.2.4/superoptix/agents/demo/__init__.py +1 -0
  237. superoptix-0.2.4/superoptix/agents/demo/assistant_adk_playbook.yaml +132 -0
  238. superoptix-0.2.4/superoptix/agents/demo/assistant_microsoft_playbook.yaml +88 -0
  239. superoptix-0.2.4/superoptix/agents/demo/assistant_openai_playbook.yaml +156 -0
  240. superoptix-0.2.4/superoptix/agents/demo/chatbot_persistent_playbook.yaml +190 -0
  241. superoptix-0.2.4/superoptix/agents/demo/cloud_demo_oracles_playbook.yaml +109 -0
  242. superoptix-0.2.4/superoptix/agents/demo/cloud_demo_playbook.yaml +198 -0
  243. superoptix-0.2.4/superoptix/agents/demo/code_review_assistant_playbook.yaml +398 -0
  244. superoptix-0.2.4/superoptix/agents/demo/code_reviewer_playbook.yaml +270 -0
  245. superoptix-0.2.4/superoptix/agents/demo/content_creator_crew_playbook.yaml +162 -0
  246. superoptix-0.2.4/superoptix/agents/demo/customer_support_with_memory_playbook.yaml +190 -0
  247. superoptix-0.2.4/superoptix/agents/demo/huggingface_demo_playbook.yaml +201 -0
  248. superoptix-0.2.4/superoptix/agents/demo/lmstudio_demo_playbook.yaml +204 -0
  249. superoptix-0.2.4/superoptix/agents/demo/memory_demo_playbook.yaml +203 -0
  250. superoptix-0.2.4/superoptix/agents/demo/mlx_demo_playbook.yaml +199 -0
  251. superoptix-0.2.4/superoptix/agents/demo/observability_demo_playbook.yaml +223 -0
  252. superoptix-0.2.4/superoptix/agents/demo/ollama_demo_playbook.yaml +199 -0
  253. superoptix-0.2.4/superoptix/agents/demo/protocol_demo_playbook.yaml +81 -0
  254. superoptix-0.2.4/superoptix/agents/demo/pydantic_mcp_playbook.yaml +162 -0
  255. superoptix-0.2.4/superoptix/agents/demo/rag_chroma_demo_playbook.yaml +202 -0
  256. superoptix-0.2.4/superoptix/agents/demo/rag_lancedb_demo_playbook.yaml +204 -0
  257. superoptix-0.2.4/superoptix/agents/demo/rag_milvus_demo_playbook.yaml +203 -0
  258. superoptix-0.2.4/superoptix/agents/demo/rag_qdrant_demo_playbook.yaml +202 -0
  259. superoptix-0.2.4/superoptix/agents/demo/rag_weaviate_demo_playbook.yaml +202 -0
  260. superoptix-0.2.4/superoptix/agents/demo/research_agent_deepagents_playbook.yaml +150 -0
  261. superoptix-0.2.4/superoptix/agents/demo/research_agent_deepagents_playbook.yaml.bak +132 -0
  262. superoptix-0.2.4/superoptix/agents/demo/researcher_crew_playbook.yaml +156 -0
  263. superoptix-0.2.4/superoptix/agents/demo/researcher_hybrid_playbook.yaml +263 -0
  264. superoptix-0.2.4/superoptix/agents/demo/setup_code_review.py +144 -0
  265. superoptix-0.2.4/superoptix/agents/demo/tools_demo_playbook.yaml +236 -0
  266. superoptix-0.2.4/superoptix/agents/dspy_optimizers/better_together_summarizer_playbook.yaml +265 -0
  267. superoptix-0.2.4/superoptix/agents/dspy_optimizers/bettertogether_math_playbook.yaml +118 -0
  268. superoptix-0.2.4/superoptix/agents/dspy_optimizers/bettertogether_playbook.yaml +53 -0
  269. superoptix-0.2.4/superoptix/agents/dspy_optimizers/bootstrap_fewshot_classifier_playbook.yaml +217 -0
  270. superoptix-0.2.4/superoptix/agents/dspy_optimizers/bootstrap_math_playbook.yaml +123 -0
  271. superoptix-0.2.4/superoptix/agents/dspy_optimizers/bootstrapfewshot_playbook.yaml +77 -0
  272. superoptix-0.2.4/superoptix/agents/dspy_optimizers/copro_legal_analyzer_playbook.yaml +290 -0
  273. superoptix-0.2.4/superoptix/agents/dspy_optimizers/copro_math_playbook.yaml +121 -0
  274. superoptix-0.2.4/superoptix/agents/dspy_optimizers/copro_playbook.yaml +56 -0
  275. superoptix-0.2.4/superoptix/agents/dspy_optimizers/gepa_math_agent_playbook.yaml +195 -0
  276. superoptix-0.2.4/superoptix/agents/dspy_optimizers/gepa_playbook.yaml +86 -0
  277. superoptix-0.2.4/superoptix/agents/dspy_optimizers/knn_fewshot_recommender_playbook.yaml +271 -0
  278. superoptix-0.2.4/superoptix/agents/dspy_optimizers/knn_math_playbook.yaml +116 -0
  279. superoptix-0.2.4/superoptix/agents/dspy_optimizers/knnfewshot_playbook.yaml +51 -0
  280. superoptix-0.2.4/superoptix/agents/dspy_optimizers/labeledfewshot_playbook.yaml +52 -0
  281. superoptix-0.2.4/superoptix/agents/dspy_optimizers/miprov2_math_playbook.yaml +140 -0
  282. superoptix-0.2.4/superoptix/agents/dspy_optimizers/miprov2_playbook.yaml +80 -0
  283. superoptix-0.2.4/superoptix/agents/dspy_optimizers/miprov2_writing_agent_playbook.yaml +224 -0
  284. superoptix-0.2.4/superoptix/agents/dspy_optimizers/simba_math_playbook.yaml +134 -0
  285. superoptix-0.2.4/superoptix/agents/dspy_optimizers/simba_playbook.yaml +82 -0
  286. superoptix-0.2.4/superoptix/agents/dspy_optimizers/simba_qa_agent_playbook.yaml +178 -0
  287. superoptix-0.2.4/superoptix/agents/education/advanced_math_gepa_playbook.yaml +146 -0
  288. superoptix-0.2.4/superoptix/agents/education/art_instructor_playbook.yaml +98 -0
  289. superoptix-0.2.4/superoptix/agents/education/coding_mentor_playbook.yaml +98 -0
  290. superoptix-0.2.4/superoptix/agents/education/geography_guide_playbook.yaml +98 -0
  291. superoptix-0.2.4/superoptix/agents/education/history_guide_playbook.yaml +98 -0
  292. superoptix-0.2.4/superoptix/agents/education/language_tutor_playbook.yaml +98 -0
  293. superoptix-0.2.4/superoptix/agents/education/math_tutor_playbook.yaml +98 -0
  294. superoptix-0.2.4/superoptix/agents/education/music_teacher_playbook.yaml +98 -0
  295. superoptix-0.2.4/superoptix/agents/education/pe_coach_playbook.yaml +98 -0
  296. superoptix-0.2.4/superoptix/agents/education/reading_coach_playbook.yaml +98 -0
  297. superoptix-0.2.4/superoptix/agents/education/recipe_helper_playbook.yaml +99 -0
  298. superoptix-0.2.4/superoptix/agents/education/science_explorer_playbook.yaml +110 -0
  299. superoptix-0.2.4/superoptix/agents/education/study_coach_playbook.yaml +98 -0
  300. superoptix-0.2.4/superoptix/agents/education/writing_assistant_playbook.yaml +99 -0
  301. superoptix-0.2.4/superoptix/agents/energy_utilities/efficiency_consultant_playbook.yaml +125 -0
  302. superoptix-0.2.4/superoptix/agents/energy_utilities/grid_optimizer_playbook.yaml +125 -0
  303. superoptix-0.2.4/superoptix/agents/energy_utilities/renewable_analyst_playbook.yaml +125 -0
  304. superoptix-0.2.4/superoptix/agents/energy_utilities/smart_meter_analyst_playbook.yaml +125 -0
  305. superoptix-0.2.4/superoptix/agents/explicit_agents/PROTOCOL_FIRST_README.md +132 -0
  306. superoptix-0.2.4/superoptix/agents/explicit_agents/README.md +386 -0
  307. superoptix-0.2.4/superoptix/agents/explicit_agents/mcp_agent_playbook.yaml +138 -0
  308. superoptix-0.2.4/superoptix/agents/explicit_agents/protocol_first_agent_playbook.yaml +93 -0
  309. superoptix-0.2.4/superoptix/agents/explicit_agents/qa_bot_playbook.yaml +113 -0
  310. superoptix-0.2.4/superoptix/agents/explicit_agents/rag_assistant_playbook.yaml +141 -0
  311. superoptix-0.2.4/superoptix/agents/finance/budget_analyst_playbook.yaml +164 -0
  312. superoptix-0.2.4/superoptix/agents/finance/enterprise_extractor_gepa_playbook.yaml +174 -0
  313. superoptix-0.2.4/superoptix/agents/finance/financial_advisor_playbook.yaml +210 -0
  314. superoptix-0.2.4/superoptix/agents/finance/insurance_advisor_playbook.yaml +124 -0
  315. superoptix-0.2.4/superoptix/agents/finance/investment_researcher_playbook.yaml +124 -0
  316. superoptix-0.2.4/superoptix/agents/finance/tax_assistant_playbook.yaml +124 -0
  317. superoptix-0.2.4/superoptix/agents/gaming_sports/esports_manager_playbook.yaml +125 -0
  318. superoptix-0.2.4/superoptix/agents/gaming_sports/fan_engagement_manager_playbook.yaml +125 -0
  319. superoptix-0.2.4/superoptix/agents/gaming_sports/game_designer_playbook.yaml +125 -0
  320. superoptix-0.2.4/superoptix/agents/gaming_sports/sports_analyst_playbook.yaml +125 -0
  321. superoptix-0.2.4/superoptix/agents/gaming_sports/tournament_coordinator_playbook.yaml +125 -0
  322. superoptix-0.2.4/superoptix/agents/government_public/budget_analyst_playbook.yaml +125 -0
  323. superoptix-0.2.4/superoptix/agents/government_public/emergency_response_coordinator_playbook.yaml +125 -0
  324. superoptix-0.2.4/superoptix/agents/government_public/policy_analyst_playbook.yaml +125 -0
  325. superoptix-0.2.4/superoptix/agents/government_public/public_services_coordinator_playbook.yaml +125 -0
  326. superoptix-0.2.4/superoptix/agents/government_public/regulatory_compliance_officer_playbook.yaml +125 -0
  327. superoptix-0.2.4/superoptix/agents/healthcare/health_educator_playbook.yaml +124 -0
  328. superoptix-0.2.4/superoptix/agents/healthcare/medical_assistant_gepa_playbook.yaml +170 -0
  329. superoptix-0.2.4/superoptix/agents/healthcare/medical_assistant_playbook.yaml +124 -0
  330. superoptix-0.2.4/superoptix/agents/healthcare/mental_health_coach_playbook.yaml +196 -0
  331. superoptix-0.2.4/superoptix/agents/healthcare/nurse_helper_playbook.yaml +112 -0
  332. superoptix-0.2.4/superoptix/agents/healthcare/pharmacy_advisor_playbook.yaml +124 -0
  333. superoptix-0.2.4/superoptix/agents/hospitality_tourism/event_coordinator_playbook.yaml +125 -0
  334. superoptix-0.2.4/superoptix/agents/hospitality_tourism/guest_services_playbook.yaml +125 -0
  335. superoptix-0.2.4/superoptix/agents/hospitality_tourism/hotel_manager_playbook.yaml +125 -0
  336. superoptix-0.2.4/superoptix/agents/hospitality_tourism/travel_planner_playbook.yaml +125 -0
  337. superoptix-0.2.4/superoptix/agents/huggingface_demo/README.md +127 -0
  338. superoptix-0.2.4/superoptix/agents/huggingface_demo/playbook/huggingface_demo_playbook.yaml +125 -0
  339. superoptix-0.2.4/superoptix/agents/human_resources/benefits_advisor_playbook.yaml +125 -0
  340. superoptix-0.2.4/superoptix/agents/human_resources/performance_coach_playbook.yaml +125 -0
  341. superoptix-0.2.4/superoptix/agents/human_resources/policy_advisor_playbook.yaml +125 -0
  342. superoptix-0.2.4/superoptix/agents/human_resources/recruiter_playbook.yaml +125 -0
  343. superoptix-0.2.4/superoptix/agents/human_resources/training_coordinator_playbook.yaml +125 -0
  344. superoptix-0.2.4/superoptix/agents/legal/compliance_checker_playbook.yaml +124 -0
  345. superoptix-0.2.4/superoptix/agents/legal/contract_analyzer_gepa_playbook.yaml +173 -0
  346. superoptix-0.2.4/superoptix/agents/legal/contract_analyzer_playbook.yaml +124 -0
  347. superoptix-0.2.4/superoptix/agents/legal/document_drafter_playbook.yaml +124 -0
  348. superoptix-0.2.4/superoptix/agents/legal/legal_researcher_playbook.yaml +124 -0
  349. superoptix-0.2.4/superoptix/agents/legal/patent_assistant_playbook.yaml +124 -0
  350. superoptix-0.2.4/superoptix/agents/manufacturing/inventory_manager_playbook.yaml +125 -0
  351. superoptix-0.2.4/superoptix/agents/manufacturing/maintenance_scheduler_playbook.yaml +125 -0
  352. superoptix-0.2.4/superoptix/agents/manufacturing/production_planner_playbook.yaml +125 -0
  353. superoptix-0.2.4/superoptix/agents/manufacturing/quality_inspector_playbook.yaml +125 -0
  354. superoptix-0.2.4/superoptix/agents/manufacturing/safety_coordinator_playbook.yaml +125 -0
  355. superoptix-0.2.4/superoptix/agents/marketing/campaign_strategist_playbook.yaml +124 -0
  356. superoptix-0.2.4/superoptix/agents/marketing/content_creator_playbook.yaml +124 -0
  357. superoptix-0.2.4/superoptix/agents/marketing/email_marketer_playbook.yaml +124 -0
  358. superoptix-0.2.4/superoptix/agents/marketing/seo_specialist_playbook.yaml +124 -0
  359. superoptix-0.2.4/superoptix/agents/marketing/social_media_manager_playbook.yaml +124 -0
  360. superoptix-0.2.4/superoptix/agents/media_entertainment/audience_researcher_playbook.yaml +125 -0
  361. superoptix-0.2.4/superoptix/agents/media_entertainment/content_strategist_playbook.yaml +125 -0
  362. superoptix-0.2.4/superoptix/agents/media_entertainment/production_coordinator_playbook.yaml +125 -0
  363. superoptix-0.2.4/superoptix/agents/media_entertainment/streaming_analyst_playbook.yaml +125 -0
  364. superoptix-0.2.4/superoptix/agents/media_entertainment/talent_manager_playbook.yaml +125 -0
  365. superoptix-0.2.4/superoptix/agents/mlx_demo/README.md +167 -0
  366. superoptix-0.2.4/superoptix/agents/mlx_demo/playbook/mlx_demo_playbook.yaml +134 -0
  367. superoptix-0.2.4/superoptix/agents/optimas/README.md +214 -0
  368. superoptix-0.2.4/superoptix/agents/optimas/optimas_autogen_playbook.yaml +114 -0
  369. superoptix-0.2.4/superoptix/agents/optimas/optimas_crewai_playbook.yaml +103 -0
  370. superoptix-0.2.4/superoptix/agents/optimas/optimas_dspy_playbook.yaml +104 -0
  371. superoptix-0.2.4/superoptix/agents/optimas/optimas_openai_playbook.yaml +102 -0
  372. superoptix-0.2.4/superoptix/agents/real_estate/appraisal_assistant_playbook.yaml +124 -0
  373. superoptix-0.2.4/superoptix/agents/real_estate/listing_creator_playbook.yaml +124 -0
  374. superoptix-0.2.4/superoptix/agents/real_estate/market_researcher_playbook.yaml +124 -0
  375. superoptix-0.2.4/superoptix/agents/real_estate/property_analyzer_playbook.yaml +124 -0
  376. superoptix-0.2.4/superoptix/agents/real_estate/rental_manager_playbook.yaml +124 -0
  377. superoptix-0.2.4/superoptix/agents/retail/customer_service_playbook.yaml +227 -0
  378. superoptix-0.2.4/superoptix/agents/retail/inventory_optimizer_playbook.yaml +124 -0
  379. superoptix-0.2.4/superoptix/agents/retail/merchandising_planner_playbook.yaml +124 -0
  380. superoptix-0.2.4/superoptix/agents/retail/pricing_analyst_playbook.yaml +124 -0
  381. superoptix-0.2.4/superoptix/agents/retail/product_recommender_playbook.yaml +124 -0
  382. superoptix-0.2.4/superoptix/agents/security/privacy_delegate_gepa_playbook.yaml +147 -0
  383. superoptix-0.2.4/superoptix/agents/software/data_science_gepa_playbook.yaml +186 -0
  384. superoptix-0.2.4/superoptix/agents/software/developer_playbook.yaml +98 -0
  385. superoptix-0.2.4/superoptix/agents/software/developer_playbook_with_memory.yaml +272 -0
  386. superoptix-0.2.4/superoptix/agents/software/devops_engineer_playbook.yaml +98 -0
  387. superoptix-0.2.4/superoptix/agents/software/github_protocol_agent_playbook.yaml +111 -0
  388. superoptix-0.2.4/superoptix/agents/software/lightweight_developer_playbook.yaml +112 -0
  389. superoptix-0.2.4/superoptix/agents/software/performance_engineer_playbook.yaml +98 -0
  390. superoptix-0.2.4/superoptix/agents/software/product_owner_playbook.yaml +98 -0
  391. superoptix-0.2.4/superoptix/agents/software/qa_engineer_playbook.yaml +328 -0
  392. superoptix-0.2.4/superoptix/agents/software/scrum_master_playbook.yaml +98 -0
  393. superoptix-0.2.4/superoptix/agents/software/security_analyzer_gepa_playbook.yaml +192 -0
  394. superoptix-0.2.4/superoptix/agents/software/security_engineer_playbook.yaml +98 -0
  395. superoptix-0.2.4/superoptix/agents/software/system_architect_playbook.yaml +98 -0
  396. superoptix-0.2.4/superoptix/agents/software/technical_writer_playbook.yaml +111 -0
  397. superoptix-0.2.4/superoptix/agents/stackone/ats_agent.yaml +48 -0
  398. superoptix-0.2.4/superoptix/agents/stackone/crm_agent.yaml +48 -0
  399. superoptix-0.2.4/superoptix/agents/stackone/hris_agent.yaml +44 -0
  400. superoptix-0.2.4/superoptix/agents/testing/README.md +152 -0
  401. superoptix-0.2.4/superoptix/agents/testing/lmstudio_demo_playbook.yaml +239 -0
  402. superoptix-0.2.4/superoptix/agents/testing/local_test_agent_playbook.yaml +188 -0
  403. superoptix-0.2.4/superoptix/agents/testing/mlx_test_agent_playbook.yaml +99 -0
  404. superoptix-0.2.4/superoptix/agents/transportation/fleet_manager_playbook.yaml +125 -0
  405. superoptix-0.2.4/superoptix/agents/transportation/logistics_coordinator_playbook.yaml +125 -0
  406. superoptix-0.2.4/superoptix/agents/transportation/route_optimizer_playbook.yaml +125 -0
  407. superoptix-0.2.4/superoptix/agents/transportation/supply_chain_analyst_playbook.yaml +125 -0
  408. superoptix-0.2.4/superoptix/agents/transportation/warehouse_manager_playbook.yaml +125 -0
  409. superoptix-0.2.4/superoptix/agents.backup/README.md +302 -0
  410. superoptix-0.2.4/superoptix/agents.backup/agriculture_food/crop_manager_playbook.yaml +112 -0
  411. superoptix-0.2.4/superoptix/agents.backup/agriculture_food/food_safety_inspector_playbook.yaml +112 -0
  412. superoptix-0.2.4/superoptix/agents.backup/agriculture_food/supply_chain_coordinator_playbook.yaml +111 -0
  413. superoptix-0.2.4/superoptix/agents.backup/agriculture_food/sustainability_advisor_playbook.yaml +108 -0
  414. superoptix-0.2.4/superoptix/agents.backup/consulting/business_analyst_playbook.yaml +111 -0
  415. superoptix-0.2.4/superoptix/agents.backup/consulting/change_manager_playbook.yaml +110 -0
  416. superoptix-0.2.4/superoptix/agents.backup/consulting/performance_consultant_playbook.yaml +110 -0
  417. superoptix-0.2.4/superoptix/agents.backup/consulting/process_consultant_playbook.yaml +110 -0
  418. superoptix-0.2.4/superoptix/agents.backup/consulting/strategy_consultant_playbook.yaml +109 -0
  419. superoptix-0.2.4/superoptix/agents.backup/demo/DEMO_AGENTS_SUMMARY.md +402 -0
  420. superoptix-0.2.4/superoptix/agents.backup/demo/README.md +330 -0
  421. superoptix-0.2.4/superoptix/agents.backup/demo/cloud_demo_oracles_playbook.yaml +92 -0
  422. superoptix-0.2.4/superoptix/agents.backup/demo/cloud_demo_playbook.yaml +181 -0
  423. superoptix-0.2.4/superoptix/agents.backup/demo/huggingface_demo_playbook.yaml +183 -0
  424. superoptix-0.2.4/superoptix/agents.backup/demo/lmstudio_demo_playbook.yaml +185 -0
  425. superoptix-0.2.4/superoptix/agents.backup/demo/memory_demo_playbook.yaml +187 -0
  426. superoptix-0.2.4/superoptix/agents.backup/demo/mlx_demo_playbook.yaml +182 -0
  427. superoptix-0.2.4/superoptix/agents.backup/demo/observability_demo_playbook.yaml +205 -0
  428. superoptix-0.2.4/superoptix/agents.backup/demo/ollama_demo_playbook.yaml +182 -0
  429. superoptix-0.2.4/superoptix/agents.backup/demo/rag_chroma_demo_playbook.yaml +184 -0
  430. superoptix-0.2.4/superoptix/agents.backup/demo/rag_lancedb_demo_playbook.yaml +185 -0
  431. superoptix-0.2.4/superoptix/agents.backup/demo/rag_milvus_demo_playbook.yaml +185 -0
  432. superoptix-0.2.4/superoptix/agents.backup/demo/rag_qdrant_demo_playbook.yaml +184 -0
  433. superoptix-0.2.4/superoptix/agents.backup/demo/rag_weaviate_demo_playbook.yaml +184 -0
  434. superoptix-0.2.4/superoptix/agents.backup/demo/tools_demo_playbook.yaml +219 -0
  435. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/better_together_summarizer_playbook.yaml +164 -0
  436. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bettertogether_math_playbook.yaml +87 -0
  437. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bettertogether_playbook.yaml +43 -0
  438. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bootstrap_fewshot_classifier_playbook.yaml +154 -0
  439. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bootstrap_math_playbook.yaml +94 -0
  440. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/bootstrapfewshot_playbook.yaml +62 -0
  441. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/copro_legal_analyzer_playbook.yaml +182 -0
  442. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/copro_math_playbook.yaml +89 -0
  443. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/copro_playbook.yaml +46 -0
  444. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/gepa_math_agent_playbook.yaml +148 -0
  445. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/gepa_playbook.yaml +67 -0
  446. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/knn_fewshot_recommender_playbook.yaml +180 -0
  447. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/knn_math_playbook.yaml +85 -0
  448. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/knnfewshot_playbook.yaml +41 -0
  449. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/labeledfewshot_playbook.yaml +42 -0
  450. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/miprov2_math_playbook.yaml +98 -0
  451. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/miprov2_playbook.yaml +63 -0
  452. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/miprov2_writing_agent_playbook.yaml +162 -0
  453. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/simba_math_playbook.yaml +98 -0
  454. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/simba_playbook.yaml +67 -0
  455. superoptix-0.2.4/superoptix/agents.backup/dspy_optimizers/simba_qa_agent_playbook.yaml +132 -0
  456. superoptix-0.2.4/superoptix/agents.backup/education/advanced_math_gepa_playbook.yaml +99 -0
  457. superoptix-0.2.4/superoptix/agents.backup/education/art_instructor_playbook.yaml +89 -0
  458. superoptix-0.2.4/superoptix/agents.backup/education/coding_mentor_playbook.yaml +89 -0
  459. superoptix-0.2.4/superoptix/agents.backup/education/geography_guide_playbook.yaml +91 -0
  460. superoptix-0.2.4/superoptix/agents.backup/education/history_guide_playbook.yaml +91 -0
  461. superoptix-0.2.4/superoptix/agents.backup/education/language_tutor_playbook.yaml +90 -0
  462. superoptix-0.2.4/superoptix/agents.backup/education/math_tutor_playbook.yaml +91 -0
  463. superoptix-0.2.4/superoptix/agents.backup/education/music_teacher_playbook.yaml +90 -0
  464. superoptix-0.2.4/superoptix/agents.backup/education/pe_coach_playbook.yaml +90 -0
  465. superoptix-0.2.4/superoptix/agents.backup/education/reading_coach_playbook.yaml +89 -0
  466. superoptix-0.2.4/superoptix/agents.backup/education/recipe_helper_playbook.yaml +91 -0
  467. superoptix-0.2.4/superoptix/agents.backup/education/science_explorer_playbook.yaml +109 -0
  468. superoptix-0.2.4/superoptix/agents.backup/education/study_coach_playbook.yaml +89 -0
  469. superoptix-0.2.4/superoptix/agents.backup/education/writing_assistant_playbook.yaml +91 -0
  470. superoptix-0.2.4/superoptix/agents.backup/energy_utilities/efficiency_consultant_playbook.yaml +110 -0
  471. superoptix-0.2.4/superoptix/agents.backup/energy_utilities/grid_optimizer_playbook.yaml +111 -0
  472. superoptix-0.2.4/superoptix/agents.backup/energy_utilities/renewable_analyst_playbook.yaml +111 -0
  473. superoptix-0.2.4/superoptix/agents.backup/energy_utilities/smart_meter_analyst_playbook.yaml +110 -0
  474. superoptix-0.2.4/superoptix/agents.backup/explicit_agents/README.md +386 -0
  475. superoptix-0.2.4/superoptix/agents.backup/explicit_agents/mcp_agent_playbook.yaml +135 -0
  476. superoptix-0.2.4/superoptix/agents.backup/explicit_agents/qa_bot_playbook.yaml +111 -0
  477. superoptix-0.2.4/superoptix/agents.backup/explicit_agents/rag_assistant_playbook.yaml +132 -0
  478. superoptix-0.2.4/superoptix/agents.backup/finance/budget_analyst_playbook.yaml +152 -0
  479. superoptix-0.2.4/superoptix/agents.backup/finance/enterprise_extractor_gepa_playbook.yaml +129 -0
  480. superoptix-0.2.4/superoptix/agents.backup/finance/financial_advisor_playbook.yaml +204 -0
  481. superoptix-0.2.4/superoptix/agents.backup/finance/insurance_advisor_playbook.yaml +108 -0
  482. superoptix-0.2.4/superoptix/agents.backup/finance/investment_researcher_playbook.yaml +109 -0
  483. superoptix-0.2.4/superoptix/agents.backup/finance/tax_assistant_playbook.yaml +109 -0
  484. superoptix-0.2.4/superoptix/agents.backup/gaming_sports/esports_manager_playbook.yaml +111 -0
  485. superoptix-0.2.4/superoptix/agents.backup/gaming_sports/fan_engagement_manager_playbook.yaml +111 -0
  486. superoptix-0.2.4/superoptix/agents.backup/gaming_sports/game_designer_playbook.yaml +110 -0
  487. superoptix-0.2.4/superoptix/agents.backup/gaming_sports/sports_analyst_playbook.yaml +109 -0
  488. superoptix-0.2.4/superoptix/agents.backup/gaming_sports/tournament_coordinator_playbook.yaml +109 -0
  489. superoptix-0.2.4/superoptix/agents.backup/government_public/budget_analyst_playbook.yaml +111 -0
  490. superoptix-0.2.4/superoptix/agents.backup/government_public/emergency_response_coordinator_playbook.yaml +111 -0
  491. superoptix-0.2.4/superoptix/agents.backup/government_public/policy_analyst_playbook.yaml +110 -0
  492. superoptix-0.2.4/superoptix/agents.backup/government_public/public_services_coordinator_playbook.yaml +111 -0
  493. superoptix-0.2.4/superoptix/agents.backup/government_public/regulatory_compliance_officer_playbook.yaml +110 -0
  494. superoptix-0.2.4/superoptix/agents.backup/healthcare/health_educator_playbook.yaml +109 -0
  495. superoptix-0.2.4/superoptix/agents.backup/healthcare/medical_assistant_gepa_playbook.yaml +108 -0
  496. superoptix-0.2.4/superoptix/agents.backup/healthcare/medical_assistant_playbook.yaml +109 -0
  497. superoptix-0.2.4/superoptix/agents.backup/healthcare/mental_health_coach_playbook.yaml +183 -0
  498. superoptix-0.2.4/superoptix/agents.backup/healthcare/nurse_helper_playbook.yaml +100 -0
  499. superoptix-0.2.4/superoptix/agents.backup/healthcare/pharmacy_advisor_playbook.yaml +109 -0
  500. superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/event_coordinator_playbook.yaml +112 -0
  501. superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/guest_services_playbook.yaml +111 -0
  502. superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/hotel_manager_playbook.yaml +111 -0
  503. superoptix-0.2.4/superoptix/agents.backup/hospitality_tourism/travel_planner_playbook.yaml +110 -0
  504. superoptix-0.2.4/superoptix/agents.backup/huggingface_demo/README.md +127 -0
  505. superoptix-0.2.4/superoptix/agents.backup/huggingface_demo/playbook/huggingface_demo_playbook.yaml +85 -0
  506. superoptix-0.2.4/superoptix/agents.backup/human_resources/benefits_advisor_playbook.yaml +109 -0
  507. superoptix-0.2.4/superoptix/agents.backup/human_resources/performance_coach_playbook.yaml +109 -0
  508. superoptix-0.2.4/superoptix/agents.backup/human_resources/policy_advisor_playbook.yaml +110 -0
  509. superoptix-0.2.4/superoptix/agents.backup/human_resources/recruiter_playbook.yaml +110 -0
  510. superoptix-0.2.4/superoptix/agents.backup/human_resources/training_coordinator_playbook.yaml +111 -0
  511. superoptix-0.2.4/superoptix/agents.backup/legal/compliance_checker_playbook.yaml +109 -0
  512. superoptix-0.2.4/superoptix/agents.backup/legal/contract_analyzer_gepa_playbook.yaml +111 -0
  513. superoptix-0.2.4/superoptix/agents.backup/legal/contract_analyzer_playbook.yaml +109 -0
  514. superoptix-0.2.4/superoptix/agents.backup/legal/document_drafter_playbook.yaml +109 -0
  515. superoptix-0.2.4/superoptix/agents.backup/legal/legal_researcher_playbook.yaml +109 -0
  516. superoptix-0.2.4/superoptix/agents.backup/legal/patent_assistant_playbook.yaml +109 -0
  517. superoptix-0.2.4/superoptix/agents.backup/manufacturing/inventory_manager_playbook.yaml +109 -0
  518. superoptix-0.2.4/superoptix/agents.backup/manufacturing/maintenance_scheduler_playbook.yaml +110 -0
  519. superoptix-0.2.4/superoptix/agents.backup/manufacturing/production_planner_playbook.yaml +109 -0
  520. superoptix-0.2.4/superoptix/agents.backup/manufacturing/quality_inspector_playbook.yaml +109 -0
  521. superoptix-0.2.4/superoptix/agents.backup/manufacturing/safety_coordinator_playbook.yaml +110 -0
  522. superoptix-0.2.4/superoptix/agents.backup/marketing/campaign_strategist_playbook.yaml +109 -0
  523. superoptix-0.2.4/superoptix/agents.backup/marketing/content_creator_playbook.yaml +110 -0
  524. superoptix-0.2.4/superoptix/agents.backup/marketing/email_marketer_playbook.yaml +110 -0
  525. superoptix-0.2.4/superoptix/agents.backup/marketing/seo_specialist_playbook.yaml +110 -0
  526. superoptix-0.2.4/superoptix/agents.backup/marketing/social_media_manager_playbook.yaml +110 -0
  527. superoptix-0.2.4/superoptix/agents.backup/media_entertainment/audience_researcher_playbook.yaml +110 -0
  528. superoptix-0.2.4/superoptix/agents.backup/media_entertainment/content_strategist_playbook.yaml +110 -0
  529. superoptix-0.2.4/superoptix/agents.backup/media_entertainment/production_coordinator_playbook.yaml +110 -0
  530. superoptix-0.2.4/superoptix/agents.backup/media_entertainment/streaming_analyst_playbook.yaml +110 -0
  531. superoptix-0.2.4/superoptix/agents.backup/media_entertainment/talent_manager_playbook.yaml +110 -0
  532. superoptix-0.2.4/superoptix/agents.backup/mlx_demo/README.md +167 -0
  533. superoptix-0.2.4/superoptix/agents.backup/mlx_demo/playbook/mlx_demo_playbook.yaml +118 -0
  534. superoptix-0.2.4/superoptix/agents.backup/optimas/README.md +214 -0
  535. superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_autogen_playbook.yaml +103 -0
  536. superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_crewai_playbook.yaml +91 -0
  537. superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_dspy_playbook.yaml +93 -0
  538. superoptix-0.2.4/superoptix/agents.backup/optimas/optimas_openai_playbook.yaml +90 -0
  539. superoptix-0.2.4/superoptix/agents.backup/real_estate/appraisal_assistant_playbook.yaml +109 -0
  540. superoptix-0.2.4/superoptix/agents.backup/real_estate/listing_creator_playbook.yaml +108 -0
  541. superoptix-0.2.4/superoptix/agents.backup/real_estate/market_researcher_playbook.yaml +109 -0
  542. superoptix-0.2.4/superoptix/agents.backup/real_estate/property_analyzer_playbook.yaml +109 -0
  543. superoptix-0.2.4/superoptix/agents.backup/real_estate/rental_manager_playbook.yaml +109 -0
  544. superoptix-0.2.4/superoptix/agents.backup/retail/customer_service_playbook.yaml +216 -0
  545. superoptix-0.2.4/superoptix/agents.backup/retail/inventory_optimizer_playbook.yaml +109 -0
  546. superoptix-0.2.4/superoptix/agents.backup/retail/merchandising_planner_playbook.yaml +110 -0
  547. superoptix-0.2.4/superoptix/agents.backup/retail/pricing_analyst_playbook.yaml +110 -0
  548. superoptix-0.2.4/superoptix/agents.backup/retail/product_recommender_playbook.yaml +110 -0
  549. superoptix-0.2.4/superoptix/agents.backup/security/privacy_delegate_gepa_playbook.yaml +107 -0
  550. superoptix-0.2.4/superoptix/agents.backup/software/data_science_gepa_playbook.yaml +111 -0
  551. superoptix-0.2.4/superoptix/agents.backup/software/developer_playbook.yaml +89 -0
  552. superoptix-0.2.4/superoptix/agents.backup/software/developer_playbook_with_memory.yaml +272 -0
  553. superoptix-0.2.4/superoptix/agents.backup/software/devops_engineer_playbook.yaml +90 -0
  554. superoptix-0.2.4/superoptix/agents.backup/software/lightweight_developer_playbook.yaml +105 -0
  555. superoptix-0.2.4/superoptix/agents.backup/software/performance_engineer_playbook.yaml +89 -0
  556. superoptix-0.2.4/superoptix/agents.backup/software/product_owner_playbook.yaml +91 -0
  557. superoptix-0.2.4/superoptix/agents.backup/software/qa_engineer_playbook.yaml +215 -0
  558. superoptix-0.2.4/superoptix/agents.backup/software/scrum_master_playbook.yaml +90 -0
  559. superoptix-0.2.4/superoptix/agents.backup/software/security_analyzer_gepa_playbook.yaml +159 -0
  560. superoptix-0.2.4/superoptix/agents.backup/software/security_engineer_playbook.yaml +89 -0
  561. superoptix-0.2.4/superoptix/agents.backup/software/system_architect_playbook.yaml +90 -0
  562. superoptix-0.2.4/superoptix/agents.backup/software/technical_writer_playbook.yaml +98 -0
  563. superoptix-0.2.4/superoptix/agents.backup/testing/README.md +152 -0
  564. superoptix-0.2.4/superoptix/agents.backup/testing/lmstudio_demo_playbook.yaml +225 -0
  565. superoptix-0.2.4/superoptix/agents.backup/testing/local_test_agent_playbook.yaml +171 -0
  566. superoptix-0.2.4/superoptix/agents.backup/testing/mlx_test_agent_playbook.yaml +79 -0
  567. superoptix-0.2.4/superoptix/agents.backup/transportation/fleet_manager_playbook.yaml +111 -0
  568. superoptix-0.2.4/superoptix/agents.backup/transportation/logistics_coordinator_playbook.yaml +109 -0
  569. superoptix-0.2.4/superoptix/agents.backup/transportation/route_optimizer_playbook.yaml +110 -0
  570. superoptix-0.2.4/superoptix/agents.backup/transportation/supply_chain_analyst_playbook.yaml +110 -0
  571. superoptix-0.2.4/superoptix/agents.backup/transportation/warehouse_manager_playbook.yaml +111 -0
  572. superoptix-0.2.4/superoptix/benchmarks/stackone/__init__.py +18 -0
  573. superoptix-0.2.4/superoptix/benchmarks/stackone/ats_benchmark.py +55 -0
  574. superoptix-0.2.4/superoptix/benchmarks/stackone/base.py +58 -0
  575. superoptix-0.2.4/superoptix/benchmarks/stackone/crm_benchmark.py +51 -0
  576. superoptix-0.2.4/superoptix/benchmarks/stackone/hris_benchmark.py +45 -0
  577. superoptix-0.2.4/superoptix/cli/__init__.py +1 -0
  578. superoptix-0.2.4/superoptix/cli/auth/__init__.py +20 -0
  579. superoptix-0.2.4/superoptix/cli/auth/auth_helper.py +88 -0
  580. superoptix-0.2.4/superoptix/cli/auth/token_storage.py +192 -0
  581. superoptix-0.2.4/superoptix/cli/commands/__init__.py +5 -0
  582. superoptix-0.2.4/superoptix/cli/commands/agent.py +3818 -0
  583. superoptix-0.2.4/superoptix/cli/commands/chat_agent.py +316 -0
  584. superoptix-0.2.4/superoptix/cli/commands/chat_textbox.py +420 -0
  585. superoptix-0.2.4/superoptix/cli/commands/command_generator.py +255 -0
  586. superoptix-0.2.4/superoptix/cli/commands/conversational.py +611 -0
  587. superoptix-0.2.4/superoptix/cli/commands/dataset.py +295 -0
  588. superoptix-0.2.4/superoptix/cli/commands/dataset_marketplace.py +296 -0
  589. superoptix-0.2.4/superoptix/cli/commands/embedded_knowledge_access.py +534 -0
  590. superoptix-0.2.4/superoptix/cli/commands/init.py +415 -0
  591. superoptix-0.2.4/superoptix/cli/commands/intent_parser.py +463 -0
  592. superoptix-0.2.4/superoptix/cli/commands/marketplace.py +803 -0
  593. superoptix-0.2.4/superoptix/cli/commands/mcp_client.py +312 -0
  594. superoptix-0.2.4/superoptix/cli/commands/model.py +1697 -0
  595. superoptix-0.2.4/superoptix/cli/commands/multiline_input.py +299 -0
  596. superoptix-0.2.4/superoptix/cli/commands/observability.py +742 -0
  597. superoptix-0.2.4/superoptix/cli/commands/orchestra.py +998 -0
  598. superoptix-0.2.4/superoptix/cli/commands/playbook_registry.py +150 -0
  599. superoptix-0.2.4/superoptix/cli/commands/response_formatter.py +292 -0
  600. superoptix-0.2.4/superoptix/cli/commands/slash_commands.py +1269 -0
  601. superoptix-0.2.4/superoptix/cli/commands/superspec.py +818 -0
  602. superoptix-0.2.4/superoptix/cli/commands/thinking_animation.py +371 -0
  603. superoptix-0.2.4/superoptix/cli/main.py +2559 -0
  604. superoptix-0.2.4/superoptix/cli/telemetry.py +211 -0
  605. superoptix-0.2.4/superoptix/cli/utils.py +198 -0
  606. superoptix-0.2.4/superoptix/compiler/__init__.py +0 -0
  607. superoptix-0.2.4/superoptix/compiler/agent_compiler.py +616 -0
  608. superoptix-0.2.4/superoptix/compiler/dspy_generator.py +477 -0
  609. superoptix-0.2.4/superoptix/config/tiers.yaml +111 -0
  610. superoptix-0.2.4/superoptix/core/__init__.py +25 -0
  611. superoptix-0.2.4/superoptix/core/base_component.py +227 -0
  612. superoptix-0.2.4/superoptix/core/base_pipeline.py +438 -0
  613. superoptix-0.2.4/superoptix/core/optimizer_factory.py +946 -0
  614. superoptix-0.2.4/superoptix/core/pipeline_utils.py +2158 -0
  615. superoptix-0.2.4/superoptix/core/rag_mixin.py +833 -0
  616. superoptix-0.2.4/superoptix/core/validation.py +488 -0
  617. superoptix-0.2.4/superoptix/datasets/__init__.py +20 -0
  618. superoptix-0.2.4/superoptix/datasets/examples/README.md +218 -0
  619. superoptix-0.2.4/superoptix/datasets/examples/code_review_examples.csv +264 -0
  620. superoptix-0.2.4/superoptix/datasets/examples/qa_pairs.json +53 -0
  621. superoptix-0.2.4/superoptix/datasets/examples/sentiment_reviews.csv +32 -0
  622. superoptix-0.2.4/superoptix/datasets/examples/text_classification.jsonl +21 -0
  623. superoptix-0.2.4/superoptix/datasets/loader.py +319 -0
  624. superoptix-0.2.4/superoptix/datasets/validators.py +105 -0
  625. superoptix-0.2.4/superoptix/knowledge/code_review/best_practices/code_smells.md +200 -0
  626. superoptix-0.2.4/superoptix/knowledge/code_review/best_practices/solid_principles.md +232 -0
  627. superoptix-0.2.4/superoptix/knowledge/code_review/performance/time_complexity.md +123 -0
  628. superoptix-0.2.4/superoptix/knowledge/code_review/python/error_handling.md +103 -0
  629. superoptix-0.2.4/superoptix/knowledge/code_review/python/naming_conventions.md +127 -0
  630. superoptix-0.2.4/superoptix/knowledge/code_review/security/hardcoded_secrets.md +60 -0
  631. superoptix-0.2.4/superoptix/knowledge/code_review/security/sql_injection.md +48 -0
  632. superoptix-0.2.4/superoptix/knowledge/code_review/security/xss_prevention.md +50 -0
  633. superoptix-0.2.4/superoptix/memory/__init__.py +20 -0
  634. superoptix-0.2.4/superoptix/memory/agent_memory.py +615 -0
  635. superoptix-0.2.4/superoptix/memory/context_manager.py +316 -0
  636. superoptix-0.2.4/superoptix/memory/episodic_memory.py +575 -0
  637. superoptix-0.2.4/superoptix/memory/long_term_memory.py +527 -0
  638. superoptix-0.2.4/superoptix/memory/memory_backends.py +563 -0
  639. superoptix-0.2.4/superoptix/memory/short_term_memory.py +327 -0
  640. superoptix-0.2.4/superoptix/metaspecs/specs/tiers/genie_spec.yaml +194 -0
  641. superoptix-0.2.4/superoptix/metaspecs/specs/tiers/oracle_spec.yaml +70 -0
  642. superoptix-0.2.4/superoptix/models/__init__.py +98 -0
  643. superoptix-0.2.4/superoptix/models/backends/__init__.py +17 -0
  644. superoptix-0.2.4/superoptix/models/backends/base.py +168 -0
  645. superoptix-0.2.4/superoptix/models/backends/huggingface.py +808 -0
  646. superoptix-0.2.4/superoptix/models/backends/huggingface_server.py +237 -0
  647. superoptix-0.2.4/superoptix/models/backends/lmstudio.py +533 -0
  648. superoptix-0.2.4/superoptix/models/backends/mlx.py +568 -0
  649. superoptix-0.2.4/superoptix/models/backends/mlx_dspy_client.py +130 -0
  650. superoptix-0.2.4/superoptix/models/backends/ollama.py +434 -0
  651. superoptix-0.2.4/superoptix/models/base_models.py +297 -0
  652. superoptix-0.2.4/superoptix/models/config.py +326 -0
  653. superoptix-0.2.4/superoptix/models/manager.py +601 -0
  654. superoptix-0.2.4/superoptix/models/registry.py +515 -0
  655. superoptix-0.2.4/superoptix/models/tier_system.py +179 -0
  656. superoptix-0.2.4/superoptix/models/utils.py +295 -0
  657. superoptix-0.2.4/superoptix/observability/__init__.py +61 -0
  658. superoptix-0.2.4/superoptix/observability/callbacks.py +420 -0
  659. superoptix-0.2.4/superoptix/observability/dashboard.py +1225 -0
  660. superoptix-0.2.4/superoptix/observability/debugger.py +518 -0
  661. superoptix-0.2.4/superoptix/observability/enhanced_adapter.py +323 -0
  662. superoptix-0.2.4/superoptix/observability/enhanced_tracer.py +705 -0
  663. superoptix-0.2.4/superoptix/observability/local_storage.py +691 -0
  664. superoptix-0.2.4/superoptix/observability/simple_dashboard.py +407 -0
  665. superoptix-0.2.4/superoptix/observability/tracer.py +539 -0
  666. superoptix-0.2.4/superoptix/observability/unified_interface.py +357 -0
  667. superoptix-0.2.4/superoptix/optimizers/__init__.py +87 -0
  668. superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/README.md +552 -0
  669. superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/__init__.py +30 -0
  670. superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/mcp_adapter.py +666 -0
  671. superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/mcp_types.py +63 -0
  672. superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/simple_stdio_client.py +86 -0
  673. superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/sse_client.py +158 -0
  674. superoptix-0.2.4/superoptix/optimizers/gepa_mcp_adapter/streamable_http_client.py +164 -0
  675. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/GEPA_RAG.md +621 -0
  676. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/__init__.py +66 -0
  677. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/evaluation_metrics.py +249 -0
  678. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/generic_rag_adapter.py +531 -0
  679. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/rag_pipeline.py +289 -0
  680. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_store_interface.py +212 -0
  681. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/__init__.py +2 -0
  682. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/chroma_store.py +221 -0
  683. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/lancedb_store.py +445 -0
  684. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/milvus_store.py +437 -0
  685. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/qdrant_store.py +403 -0
  686. superoptix-0.2.4/superoptix/optimizers/gepa_rag_adapter/vector_stores/weaviate_store.py +457 -0
  687. superoptix-0.2.4/superoptix/optimizers/memory/__init__.py +11 -0
  688. superoptix-0.2.4/superoptix/optimizers/memory/context_optimizer.py +470 -0
  689. superoptix-0.2.4/superoptix/optimizers/memory/memory_ranker.py +172 -0
  690. superoptix-0.2.4/superoptix/optimizers/memory/memory_summarizer.py +159 -0
  691. superoptix-0.2.4/superoptix/optimizers/universal_gepa.py +628 -0
  692. superoptix-0.2.4/superoptix/protocols/__init__.py +17 -0
  693. superoptix-0.2.4/superoptix/protocols/base.py +178 -0
  694. superoptix-0.2.4/superoptix/protocols/mcp/__init__.py +14 -0
  695. superoptix-0.2.4/superoptix/protocols/mcp/client.py +363 -0
  696. superoptix-0.2.4/superoptix/protocols/mcp/client_realmcp.py +133 -0
  697. superoptix-0.2.4/superoptix/protocols/mcp/session.py +337 -0
  698. superoptix-0.2.4/superoptix/protocols/registry.py +159 -0
  699. superoptix-0.2.4/superoptix/runners/__init__.py +0 -0
  700. superoptix-0.2.4/superoptix/runners/dspy_runner.py +764 -0
  701. superoptix-0.2.4/superoptix/runners/orchestra_runner.py +851 -0
  702. superoptix-0.2.4/superoptix/superspec/README.md +384 -0
  703. superoptix-0.2.4/superoptix/superspec/__init__.py +18 -0
  704. superoptix-0.2.4/superoptix/superspec/dsl_extended.yaml +187 -0
  705. superoptix-0.2.4/superoptix/superspec/generator.py +1096 -0
  706. superoptix-0.2.4/superoptix/superspec/parser.py +622 -0
  707. superoptix-0.2.4/superoptix/superspec/schema.py +1025 -0
  708. superoptix-0.2.4/superoptix/superspec/superspec_dsl.yaml +812 -0
  709. superoptix-0.2.4/superoptix/superspec/superspec_dsl_extended.yaml +1370 -0
  710. superoptix-0.2.4/superoptix/superspec/validator.py +573 -0
  711. superoptix-0.2.4/superoptix/templates/orchestra/orchestra.yaml.jinja2 +115 -0
  712. superoptix-0.2.4/superoptix/templates/pipeline/crewai_pipeline.py.jinja2 +781 -0
  713. superoptix-0.2.4/superoptix/templates/pipeline/deepagents_pipeline.py.jinja2 +806 -0
  714. superoptix-0.2.4/superoptix/templates/pipeline/dspy_genies_mixin_pipeline.py.jinja2 +699 -0
  715. superoptix-0.2.4/superoptix/templates/pipeline/dspy_oracles_mixin_pipeline.py.jinja2 +500 -0
  716. superoptix-0.2.4/superoptix/templates/pipeline/dspy_pipeline_agenspy.py.jinja2 +687 -0
  717. superoptix-0.2.4/superoptix/templates/pipeline/dspy_pipeline_explicit.py.jinja2 +1942 -0
  718. superoptix-0.2.4/superoptix/templates/pipeline/google_adk_pipeline.py.jinja2 +700 -0
  719. superoptix-0.2.4/superoptix/templates/pipeline/microsoft_agent_pipeline.py.jinja2 +435 -0
  720. superoptix-0.2.4/superoptix/templates/pipeline/microsoft_pipeline.py.jinja2 +435 -0
  721. superoptix-0.2.4/superoptix/templates/pipeline/openai_agent_pipeline.py.jinja2 +327 -0
  722. superoptix-0.2.4/superoptix/templates/pipeline/openai_pipeline.py.jinja2 +690 -0
  723. superoptix-0.2.4/superoptix/templates/pipeline/optimas_autogen_pipeline.py.jinja2 +114 -0
  724. superoptix-0.2.4/superoptix/templates/pipeline/optimas_crewai_pipeline.py.jinja2 +136 -0
  725. superoptix-0.2.4/superoptix/templates/pipeline/optimas_dspy_pipeline.py.jinja2 +162 -0
  726. superoptix-0.2.4/superoptix/templates/pipeline/optimas_openai_pipeline.py.jinja2 +119 -0
  727. superoptix-0.2.4/superoptix/templates/pipeline/pydantic_ai_pipeline.py.jinja2 +1636 -0
  728. superoptix-0.2.4/superoptix/tools/__init__.py +252 -0
  729. superoptix-0.2.4/superoptix/tools/base.py +88 -0
  730. superoptix-0.2.4/superoptix/tools/builtin_tools.py +2973 -0
  731. superoptix-0.2.4/superoptix/tools/categories/__init__.py +75 -0
  732. superoptix-0.2.4/superoptix/tools/categories/agriculture.py +41 -0
  733. superoptix-0.2.4/superoptix/tools/categories/core.py +434 -0
  734. superoptix-0.2.4/superoptix/tools/categories/development.py +512 -0
  735. superoptix-0.2.4/superoptix/tools/categories/education.py +59 -0
  736. superoptix-0.2.4/superoptix/tools/categories/energy.py +37 -0
  737. superoptix-0.2.4/superoptix/tools/categories/finance.py +224 -0
  738. superoptix-0.2.4/superoptix/tools/categories/gaming_sports.py +9 -0
  739. superoptix-0.2.4/superoptix/tools/categories/healthcare.py +99 -0
  740. superoptix-0.2.4/superoptix/tools/categories/hospitality.py +9 -0
  741. superoptix-0.2.4/superoptix/tools/categories/human_resources.py +9 -0
  742. superoptix-0.2.4/superoptix/tools/categories/legal.py +59 -0
  743. superoptix-0.2.4/superoptix/tools/categories/manufacturing.py +53 -0
  744. superoptix-0.2.4/superoptix/tools/categories/marketing.py +71 -0
  745. superoptix-0.2.4/superoptix/tools/categories/real_estate.py +35 -0
  746. superoptix-0.2.4/superoptix/tools/categories/retail.py +14 -0
  747. superoptix-0.2.4/superoptix/tools/categories/transportation.py +41 -0
  748. superoptix-0.2.4/superoptix/tools/categories/utilities.py +384 -0
  749. superoptix-0.2.4/superoptix/tools/factories/__init__.py +29 -0
  750. superoptix-0.2.4/superoptix/tools/factories/tool_factory.py +330 -0
  751. superoptix-0.2.4/superoptix/tools/tool_registry.py +340 -0
  752. superoptix-0.2.4/superoptix/ui/__init__.py +1 -0
  753. superoptix-0.2.4/superoptix/ui/agent_designer.py +1302 -0
  754. superoptix-0.2.4/superoptix/ui/designer_factory.py +53 -0
  755. superoptix-0.2.4/superoptix/ui/launch.py +36 -0
  756. superoptix-0.2.4/superoptix/ui/oracles_designer.py +1214 -0
  757. superoptix-0.2.4/superoptix/validators/__init__.py +0 -0
  758. superoptix-0.2.4/superoptix/validators/oracles_playbook_validator.py +108 -0
  759. superoptix-0.2.4/superoptix/validators/playbook_linter.py +117 -0
  760. superoptix-0.2.4/superoptix/validators/validator_factory.py +19 -0
  761. superoptix-0.2.4/superoptix/vendor/__init__.py +1 -0
  762. superoptix-0.2.4/superoptix/vendor/deepagents/__init__.py +17 -0
  763. superoptix-0.2.4/superoptix/vendor/deepagents/backends/__init__.py +19 -0
  764. superoptix-0.2.4/superoptix/vendor/deepagents/backends/composite.py +232 -0
  765. superoptix-0.2.4/superoptix/vendor/deepagents/backends/filesystem.py +514 -0
  766. superoptix-0.2.4/superoptix/vendor/deepagents/backends/protocol.py +123 -0
  767. superoptix-0.2.4/superoptix/vendor/deepagents/backends/state.py +202 -0
  768. superoptix-0.2.4/superoptix/vendor/deepagents/backends/store.py +398 -0
  769. superoptix-0.2.4/superoptix/vendor/deepagents/backends/utils.py +449 -0
  770. superoptix-0.2.4/superoptix/vendor/deepagents/graph.py +158 -0
  771. superoptix-0.2.4/superoptix/vendor/deepagents/middleware/__init__.py +10 -0
  772. superoptix-0.2.4/superoptix/vendor/deepagents/middleware/filesystem.py +712 -0
  773. superoptix-0.2.4/superoptix/vendor/deepagents/middleware/patch_tool_calls.py +51 -0
  774. superoptix-0.2.4/superoptix/vendor/deepagents/middleware/subagents.py +516 -0
  775. superoptix-0.2.4/tests/__init__.py +0 -0
  776. superoptix-0.2.4/tests/adapters/test_crewai_adapter.py +71 -0
  777. superoptix-0.2.4/tests/adapters/test_deepagent_adapter.py +344 -0
  778. superoptix-0.2.4/tests/adapters/test_google_adk_adapter.py +71 -0
  779. superoptix-0.2.4/tests/adapters/test_microsoft_adapter.py +71 -0
  780. superoptix-0.2.4/tests/adapters/test_openai_adapter.py +71 -0
  781. superoptix-0.2.4/tests/adapters/test_universal_gepa.py +286 -0
  782. superoptix-0.2.4/tests/adapters/test_universal_gepa_deepagent.py +231 -0
  783. superoptix-0.2.4/tests/adapters/test_universal_gepa_simple.py +215 -0
  784. superoptix-0.2.4/tests/test_agenspy_protocols.py +270 -0
  785. superoptix-0.2.4/tests/test_cli.py +98 -0
  786. superoptix-0.2.4/tests/test_enhanced_observability.py +274 -0
  787. superoptix-0.2.4/tests/test_memory_system.py +420 -0
  788. superoptix-0.2.4/tests/test_optimizer_factory.py +217 -0
  789. superoptix-0.2.4/tests/test_pipeline_integration.py +298 -0
  790. superoptix-0.2.4/tox.ini +19 -0
  791. superoptix-0.2.4/uv.lock +9230 -0
  792. superoptix-0.2.4/uv.toml +1 -0
@@ -0,0 +1,94 @@
1
+ name: 🐛 Bug Report
2
+ description: Report a bug or unexpected behavior in SuperOptiX
3
+ title: "[Bug]: "
4
+ labels: ["bug", "needs-triage"]
5
+ assignees: []
6
+
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thanks for taking the time to fill out this bug report! 🙏
12
+
13
+ Before submitting, please search existing issues to avoid duplicates.
14
+
15
+ - type: textarea
16
+ id: description
17
+ attributes:
18
+ label: 🐛 Bug Description
19
+ description: A clear and concise description of what the bug is
20
+ placeholder: Describe the bug...
21
+ validations:
22
+ required: true
23
+
24
+ - type: textarea
25
+ id: reproduction
26
+ attributes:
27
+ label: 🔄 Steps to Reproduce
28
+ description: Steps to reproduce the behavior
29
+ placeholder: |
30
+ 1. Run command `sox init my_project`
31
+ 2. Navigate to the project
32
+ 3. Execute `sox agent create...`
33
+ 4. See error...
34
+ validations:
35
+ required: true
36
+
37
+ - type: textarea
38
+ id: expected
39
+ attributes:
40
+ label: ✅ Expected Behavior
41
+ description: What you expected to happen
42
+ placeholder: Describe what should have happened...
43
+ validations:
44
+ required: true
45
+
46
+ - type: textarea
47
+ id: actual
48
+ attributes:
49
+ label: ❌ Actual Behavior
50
+ description: What actually happened
51
+ placeholder: Describe what actually happened...
52
+ validations:
53
+ required: true
54
+
55
+ - type: textarea
56
+ id: environment
57
+ attributes:
58
+ label: 🌍 Environment
59
+ description: Please provide your environment details
60
+ placeholder: |
61
+ - OS: [e.g. macOS 14.0, Ubuntu 22.04, Windows 11]
62
+ - Python version: [e.g. 3.12.1]
63
+ - SuperOptiX version: [e.g. 0.1.0]
64
+ - DSPy version: [e.g. 3.0.0b1]
65
+ validations:
66
+ required: true
67
+
68
+ - type: textarea
69
+ id: logs
70
+ attributes:
71
+ label: 📋 Error Logs
72
+ description: Please copy and paste any relevant log output
73
+ render: shell
74
+ placeholder: Paste your error logs here...
75
+
76
+ - type: textarea
77
+ id: additional
78
+ attributes:
79
+ label: 📝 Additional Context
80
+ description: Add any other context about the problem here
81
+ placeholder: Any additional information that might help...
82
+
83
+ - type: checkboxes
84
+ id: checklist
85
+ attributes:
86
+ label: ✅ Checklist
87
+ description: Please confirm the following
88
+ options:
89
+ - label: I have searched existing issues and this is not a duplicate
90
+ required: true
91
+ - label: I have provided all the required information above
92
+ required: true
93
+ - label: This issue is related to SuperOptiX (not DSPy or other dependencies)
94
+ required: true
@@ -0,0 +1,122 @@
1
+ name: 🚀 Feature Request
2
+ description: Suggest a new feature or enhancement for SuperOptiX
3
+ title: "[Feature]: "
4
+ labels: ["enhancement", "needs-triage"]
5
+ assignees: []
6
+
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thanks for suggesting a new feature! 🚀
12
+
13
+ Before submitting, please search existing issues to see if this has been requested before.
14
+
15
+ - type: textarea
16
+ id: summary
17
+ attributes:
18
+ label: 🎯 Feature Summary
19
+ description: A clear and concise summary of the feature you'd like to see
20
+ placeholder: Briefly describe the feature...
21
+ validations:
22
+ required: true
23
+
24
+ - type: textarea
25
+ id: problem
26
+ attributes:
27
+ label: 🤔 Problem Statement
28
+ description: What problem does this feature solve? What's the current limitation?
29
+ placeholder: |
30
+ As a SuperOptiX user, I find it difficult to...
31
+ Currently, there's no way to...
32
+ This would help because...
33
+ validations:
34
+ required: true
35
+
36
+ - type: textarea
37
+ id: solution
38
+ attributes:
39
+ label: 💡 Proposed Solution
40
+ description: Describe the solution you'd like to see
41
+ placeholder: |
42
+ I would like SuperOptiX to support...
43
+ The feature should work by...
44
+ Users would interact with it by...
45
+ validations:
46
+ required: true
47
+
48
+ - type: textarea
49
+ id: alternatives
50
+ attributes:
51
+ label: 🔄 Alternatives Considered
52
+ description: Describe any alternative solutions or workarounds you've considered
53
+ placeholder: |
54
+ Alternative 1: ...
55
+ Alternative 2: ...
56
+ Current workaround: ...
57
+
58
+ - type: dropdown
59
+ id: feature_type
60
+ attributes:
61
+ label: 🏷️ Feature Type
62
+ description: What type of feature is this?
63
+ options:
64
+ - Agent Framework Enhancement
65
+ - DSPy Integration Improvement
66
+ - CLI Tool Enhancement
67
+ - Orchestration Feature
68
+ - Memory System Enhancement
69
+ - Observability/Debugging Tool
70
+ - Performance Optimization
71
+ - Documentation/Examples
72
+ - Other
73
+ validations:
74
+ required: true
75
+
76
+ - type: dropdown
77
+ id: priority
78
+ attributes:
79
+ label: 📊 Priority Level
80
+ description: How important is this feature to you?
81
+ options:
82
+ - Low - Nice to have
83
+ - Medium - Would be helpful
84
+ - High - Important for my use case
85
+ - Critical - Blocking my work
86
+ validations:
87
+ required: true
88
+
89
+ - type: textarea
90
+ id: usecase
91
+ attributes:
92
+ label: 🎭 Use Case Examples
93
+ description: Provide specific examples of how this feature would be used
94
+ placeholder: |
95
+ Example 1: When building a customer service agent...
96
+ Example 2: In a multi-agent orchestration scenario...
97
+ Example 3: For debugging complex agent behaviors...
98
+
99
+ - type: textarea
100
+ id: implementation
101
+ attributes:
102
+ label: 🛠️ Implementation Ideas
103
+ description: If you have ideas about how this could be implemented, share them here
104
+ placeholder: |
105
+ This could be implemented by...
106
+ It might involve changes to...
107
+ The API could look like...
108
+
109
+ - type: checkboxes
110
+ id: checklist
111
+ attributes:
112
+ label: ✅ Checklist
113
+ description: Please confirm the following
114
+ options:
115
+ - label: I have searched existing issues and this feature hasn't been requested
116
+ required: true
117
+ - label: This feature aligns with SuperOptiX's core mission of agentic AI orchestration
118
+ required: true
119
+ - label: I would be willing to help test this feature when available
120
+ required: false
121
+ - label: I would be interested in contributing to the implementation
122
+ required: false
@@ -0,0 +1,103 @@
1
+ name: ❓ Question / Help
2
+ description: Ask a question or get help with using SuperOptiX
3
+ title: "[Question]: "
4
+ labels: ["question", "help-wanted"]
5
+ assignees: []
6
+
7
+ body:
8
+ - type: markdown
9
+ attributes:
10
+ value: |
11
+ Thanks for reaching out! 🤝
12
+
13
+ Before asking, please check:
14
+ - [📚 Documentation](https://github.com/SuperagenticAI/superoptix/docs)
15
+ - [🔍 Existing Issues](https://github.com/SuperagenticAI/superoptix/issues)
16
+ - [💬 Discussions](https://github.com/SuperagenticAI/superoptix/discussions)
17
+
18
+ - type: dropdown
19
+ id: question_type
20
+ attributes:
21
+ label: 🏷️ Question Type
22
+ description: What type of help do you need?
23
+ options:
24
+ - Getting Started / Installation
25
+ - Agent Development
26
+ - DSPy Integration
27
+ - Orchestration & Multi-Agent
28
+ - Memory Systems
29
+ - CLI Usage
30
+ - Performance & Optimization
31
+ - Best Practices
32
+ - Troubleshooting
33
+ - Other
34
+ validations:
35
+ required: true
36
+
37
+ - type: textarea
38
+ id: question
39
+ attributes:
40
+ label: ❓ Your Question
41
+ description: What would you like to know?
42
+ placeholder: |
43
+ I'm trying to...
44
+ I'm confused about...
45
+ How do I...
46
+ validations:
47
+ required: true
48
+
49
+ - type: textarea
50
+ id: context
51
+ attributes:
52
+ label: 🔍 Context & Background
53
+ description: Provide context about what you're trying to achieve
54
+ placeholder: |
55
+ I'm building an agent that...
56
+ My use case involves...
57
+ I'm working on...
58
+
59
+ - type: textarea
60
+ id: attempted
61
+ attributes:
62
+ label: 🔧 What Have You Tried?
63
+ description: What approaches or solutions have you already attempted?
64
+ placeholder: |
65
+ I tried...
66
+ I looked at...
67
+ I followed the guide for...
68
+
69
+ - type: textarea
70
+ id: code
71
+ attributes:
72
+ label: 💻 Relevant Code
73
+ description: Share any relevant code, configuration, or playbooks
74
+ render: python
75
+ placeholder: |
76
+ # Your code here
77
+ from superoptix import Agent
78
+
79
+ agent = Agent(...)
80
+
81
+ - type: textarea
82
+ id: environment
83
+ attributes:
84
+ label: 🌍 Environment
85
+ description: Your environment details (if relevant)
86
+ placeholder: |
87
+ - OS: [e.g. macOS 14.0]
88
+ - Python version: [e.g. 3.12.1]
89
+ - SuperOptiX version: [e.g. 0.1.0]
90
+ - DSPy version: [e.g. 3.0.0b1]
91
+
92
+ - type: checkboxes
93
+ id: checklist
94
+ attributes:
95
+ label: ✅ Checklist
96
+ description: Please confirm the following
97
+ options:
98
+ - label: I have searched existing issues and discussions
99
+ required: true
100
+ - label: I have checked the documentation
101
+ required: true
102
+ - label: This is a question about SuperOptiX usage (not a bug report or feature request)
103
+ required: true
@@ -0,0 +1,100 @@
1
+ ## 🚀 Pull Request
2
+
3
+ ### 📋 Description
4
+ <!-- Provide a clear and concise description of your changes -->
5
+
6
+ ### 🔧 Type of Change
7
+ <!-- Mark the relevant option with an "x" -->
8
+ - [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
9
+ - [ ] ✨ New feature (non-breaking change which adds functionality)
10
+ - [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
11
+ - [ ] 📚 Documentation update
12
+ - [ ] 🧹 Code refactoring (no functional changes)
13
+ - [ ] ⚡ Performance improvement
14
+ - [ ] 🧪 Test coverage improvement
15
+ - [ ] 🎨 Style/formatting changes
16
+ - [ ] 🔧 Build/CI changes
17
+
18
+ ### 🎯 Related Issues
19
+ <!-- Link related issues using keywords: fixes #123, closes #456, relates to #789 -->
20
+ - Fixes #
21
+ - Closes #
22
+ - Relates to #
23
+
24
+ ### 🧪 Testing
25
+ <!-- Describe the testing you've performed -->
26
+ - [ ] Unit tests pass locally
27
+ - [ ] Integration tests pass locally
28
+ - [ ] Manual testing completed
29
+ - [ ] Added new tests for the changes
30
+ - [ ] Tested with different Python versions
31
+ - [ ] Tested with different operating systems
32
+
33
+ ### 📝 Testing Details
34
+ <!-- Provide details about your testing approach -->
35
+ ```bash
36
+ # Commands used for testing
37
+ pytest tests/
38
+ super init test_project
39
+ # etc.
40
+ ```
41
+
42
+ ### 📚 Documentation
43
+ <!-- Check all that apply -->
44
+ - [ ] Code is well-commented
45
+ - [ ] Documentation updated (if applicable)
46
+ - [ ] README updated (if applicable)
47
+ - [ ] Docstrings added/updated
48
+ - [ ] Examples added/updated
49
+
50
+ ### 🔒 Security Considerations
51
+ <!-- Consider security implications of your changes -->
52
+ - [ ] No sensitive data exposed
53
+ - [ ] Input validation implemented
54
+ - [ ] Authorization checks in place (if applicable)
55
+ - [ ] Dependencies are secure and up-to-date
56
+
57
+ ### 📋 Checklist
58
+ <!-- Ensure all items are completed before submitting -->
59
+ - [ ] My code follows the project's style guidelines
60
+ - [ ] I have performed a self-review of my own code
61
+ - [ ] I have commented my code, particularly in hard-to-understand areas
62
+ - [ ] I have made corresponding changes to the documentation
63
+ - [ ] My changes generate no new warnings
64
+ - [ ] I have added tests that prove my fix is effective or that my feature works
65
+ - [ ] New and existing unit tests pass locally with my changes
66
+ - [ ] Any dependent changes have been merged and published
67
+
68
+ ### 🖼️ Screenshots/GIFs
69
+ <!-- If applicable, add screenshots or GIFs to help explain your changes -->
70
+
71
+ ### 📈 Performance Impact
72
+ <!-- Describe any performance implications -->
73
+ - [ ] No performance impact
74
+ - [ ] Performance improved
75
+ - [ ] Performance regression (justified below)
76
+
77
+ **Performance Details:**
78
+ <!-- If there's a performance impact, explain it here -->
79
+
80
+ ### 🌍 Environment Tested
81
+ <!-- Specify the environments where you tested your changes -->
82
+ - **OS:**
83
+ - **Python Version:**
84
+ - **SuperOptiX Version:**
85
+ - **DSPy Version:**
86
+
87
+ ### 🤝 Additional Context
88
+ <!-- Add any other context, concerns, or notes about the PR here -->
89
+
90
+ ### 🎉 Ready for Review
91
+ <!-- Once you've completed all the above, mark this as ready -->
92
+ - [ ] This PR is ready for review
93
+
94
+ ---
95
+
96
+ **Thank you for contributing to SuperOptiX! 🙏**
97
+
98
+ Your contribution helps make the Kubernetes of Agentic AI even better. We appreciate your effort in building the future of autonomous agent orchestration.
99
+
100
+ For more information about contributing, see our [Contributing Guidelines](CONTRIBUTING.md).
@@ -0,0 +1,44 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ branches: [ main ]
5
+ pull_request:
6
+ branches: [ main ]
7
+
8
+ jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ python-version: ["3.11", "3.12"]
14
+
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+
18
+ - name: Setup uv
19
+ uses: astral-sh/setup-uv@v1
20
+ with:
21
+ version: "latest"
22
+
23
+ - name: Install dependencies
24
+ run: |
25
+ # Generate lock file (uv.toml handles pre-release)
26
+ uv lock
27
+ # Install with cross-platform compatible extras
28
+ uv sync --extra testing --extra vectordb --extra observability --extra web --extra ml-cross-platform
29
+ # Install dev dependencies explicitly
30
+ uv pip install pytest mypy black ruff pre-commit pytest-cov pytest-asyncio pytest-mock responses
31
+
32
+ - name: Run tests
33
+ run: |
34
+ uv run pytest tests/
35
+
36
+ - name: Run Ruff
37
+ run: |
38
+ uv run ruff check .
39
+ uv run ruff format --check .
40
+
41
+ - name: Run type checking
42
+ run: |
43
+ uv run mypy superoptix/ --no-error-summary || echo "Type checking completed with warnings"
44
+
@@ -0,0 +1,74 @@
1
+ name: Release to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
+
8
+ jobs:
9
+ build-and-release:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v4
20
+ with:
21
+ python-version: '3.11'
22
+
23
+ - name: Install build dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ pip install build twine cython numpy
27
+
28
+ - name: Install project dependencies
29
+ run: |
30
+ pip install --pre -e ".[dev]"
31
+
32
+ - name: Run tests
33
+ run: |
34
+ pytest tests/ -v
35
+
36
+ - name: Build protected package
37
+ run: |
38
+ python build_protected.py
39
+ env:
40
+ PYTHONPATH: ${{ github.workspace }}
41
+
42
+ - name: Upload to PyPI
43
+ run: |
44
+ twine upload dist/*
45
+ env:
46
+ TWINE_USERNAME: __token__
47
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
48
+
49
+ - name: Create GitHub Release
50
+ uses: actions/create-release@v1
51
+ env:
52
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
+ with:
54
+ tag_name: ${{ github.ref }}
55
+ release_name: Release ${{ github.ref }}
56
+ body: |
57
+ ## SuperOptiX ${{ github.ref_name }}
58
+
59
+ ### 🔒 Protected Release
60
+ This release includes compiled modules for enhanced security.
61
+
62
+ ### 📦 Installation
63
+ ```bash
64
+ pip install superoptix
65
+ ```
66
+
67
+ ### 🔗 Documentation
68
+ - [Documentation](https://docs.super-agentic.ai)
69
+ - [Support](https://support.super-agentic.ai)
70
+
71
+ ### 📄 License
72
+ This is open source software. See LICENCE file for details.
73
+ draft: false
74
+ prerelease: false
@@ -0,0 +1,29 @@
1
+ name: Ruff
2
+ on:
3
+ push:
4
+ branches: [ main ]
5
+ pull_request:
6
+ branches: [ main ]
7
+
8
+ jobs:
9
+ ruff:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+
14
+ - name: Setup uv
15
+ uses: astral-sh/setup-uv@v1
16
+ with:
17
+ version: "latest"
18
+
19
+ - name: Install dependencies
20
+ run: |
21
+ uv lock
22
+ uv sync --extra testing
23
+ # Install dev dependencies explicitly
24
+ uv pip install ruff
25
+
26
+ - name: Run Ruff
27
+ run: |
28
+ # Run Ruff with checks disabled for now (info mode)
29
+ uv run ruff check .
@@ -0,0 +1,82 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+ # corpus/
23
+
24
+ # Virtual Environments
25
+ .env
26
+ .venv
27
+ env/
28
+ venv/
29
+ ENV/
30
+
31
+
32
+
33
+ # IDE
34
+ .idea/
35
+ .vscode/
36
+ *.swp
37
+ *.swo
38
+ .claude-cache/
39
+ .claude
40
+
41
+ # Testing
42
+ .coverage
43
+ coverage.xml
44
+ htmlcov/
45
+ .pytest_cache/
46
+ .tox/
47
+
48
+ # Documentation
49
+ docs/_build/
50
+ site/
51
+
52
+ # Logs
53
+ *.log
54
+ logs/
55
+
56
+ # OS
57
+ .DS_Store
58
+ Thumbs.db
59
+
60
+ # Model files and finetuning outputs
61
+ *.safetensors
62
+ *.bin
63
+ *.pt
64
+ *.pth
65
+ *.ckpt
66
+ *.pkl
67
+ *_finetuned/
68
+ *_lora/
69
+ *_dora/
70
+ *_full/
71
+ training_data/
72
+ sample_training_data.jsonl
73
+
74
+ # Large files
75
+ *.zip
76
+ *.tar.gz
77
+ *.rar
78
+ *.7z
79
+
80
+ reference/
81
+ plan/
82
+ NoCode/
@@ -0,0 +1,15 @@
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v4.4.0
4
+ hooks:
5
+ - id: check-yaml
6
+ - id: end-of-file-fixer
7
+ - id: trailing-whitespace
8
+ - repo: https://github.com/psf/black
9
+ rev: 23.3.0
10
+ hooks:
11
+ - id: black
12
+ - repo: https://github.com/PyCQA/flake8
13
+ rev: 6.0.0
14
+ hooks:
15
+ - id: flake8
@@ -0,0 +1 @@
1
+ 3.11