agentforge-py 0.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 (232) hide show
  1. agentforge_py-0.2.1/.gitignore +49 -0
  2. agentforge_py-0.2.1/LICENSE +202 -0
  3. agentforge_py-0.2.1/PKG-INFO +158 -0
  4. agentforge_py-0.2.1/README.md +32 -0
  5. agentforge_py-0.2.1/pyproject.toml +183 -0
  6. agentforge_py-0.2.1/src/agentforge/__init__.py +114 -0
  7. agentforge_py-0.2.1/src/agentforge/_testing/__init__.py +19 -0
  8. agentforge_py-0.2.1/src/agentforge/_testing/fake_llm.py +126 -0
  9. agentforge_py-0.2.1/src/agentforge/_testing/fake_tool.py +122 -0
  10. agentforge_py-0.2.1/src/agentforge/_tools/__init__.py +14 -0
  11. agentforge_py-0.2.1/src/agentforge/_tools/calculator.py +102 -0
  12. agentforge_py-0.2.1/src/agentforge/_tools/decorator.py +300 -0
  13. agentforge_py-0.2.1/src/agentforge/_tools/file_read.py +112 -0
  14. agentforge_py-0.2.1/src/agentforge/_tools/shell.py +134 -0
  15. agentforge_py-0.2.1/src/agentforge/_tools/web_search.py +207 -0
  16. agentforge_py-0.2.1/src/agentforge/agent.py +817 -0
  17. agentforge_py-0.2.1/src/agentforge/auth.py +42 -0
  18. agentforge_py-0.2.1/src/agentforge/cli/__init__.py +18 -0
  19. agentforge_py-0.2.1/src/agentforge/cli/_build.py +323 -0
  20. agentforge_py-0.2.1/src/agentforge/cli/_scaffold_state.py +250 -0
  21. agentforge_py-0.2.1/src/agentforge/cli/_shared_scaffold.py +174 -0
  22. agentforge_py-0.2.1/src/agentforge/cli/config_cmd.py +174 -0
  23. agentforge_py-0.2.1/src/agentforge/cli/db_cmd.py +262 -0
  24. agentforge_py-0.2.1/src/agentforge/cli/debug_cmd.py +168 -0
  25. agentforge_py-0.2.1/src/agentforge/cli/docs_cmd.py +217 -0
  26. agentforge_py-0.2.1/src/agentforge/cli/eval_cmd.py +181 -0
  27. agentforge_py-0.2.1/src/agentforge/cli/health_cmd.py +139 -0
  28. agentforge_py-0.2.1/src/agentforge/cli/list_modules.py +85 -0
  29. agentforge_py-0.2.1/src/agentforge/cli/main.py +81 -0
  30. agentforge_py-0.2.1/src/agentforge/cli/manifest_apply.py +368 -0
  31. agentforge_py-0.2.1/src/agentforge/cli/module_cmd.py +247 -0
  32. agentforge_py-0.2.1/src/agentforge/cli/new_cmd.py +171 -0
  33. agentforge_py-0.2.1/src/agentforge/cli/run_cmd.py +234 -0
  34. agentforge_py-0.2.1/src/agentforge/cli/upgrade_cmd.py +230 -0
  35. agentforge_py-0.2.1/src/agentforge/config/__init__.py +45 -0
  36. agentforge_py-0.2.1/src/agentforge/eval/__init__.py +18 -0
  37. agentforge_py-0.2.1/src/agentforge/eval/consistency.py +107 -0
  38. agentforge_py-0.2.1/src/agentforge/eval/coverage.py +100 -0
  39. agentforge_py-0.2.1/src/agentforge/eval/format_compliance.py +107 -0
  40. agentforge_py-0.2.1/src/agentforge/eval/regression.py +143 -0
  41. agentforge_py-0.2.1/src/agentforge/findings.py +166 -0
  42. agentforge_py-0.2.1/src/agentforge/guardrails/__init__.py +32 -0
  43. agentforge_py-0.2.1/src/agentforge/guardrails/allowlist.py +49 -0
  44. agentforge_py-0.2.1/src/agentforge/guardrails/capability_check.py +58 -0
  45. agentforge_py-0.2.1/src/agentforge/guardrails/engine.py +289 -0
  46. agentforge_py-0.2.1/src/agentforge/guardrails/pii_redact_basic.py +61 -0
  47. agentforge_py-0.2.1/src/agentforge/guardrails/prompt_injection_basic.py +90 -0
  48. agentforge_py-0.2.1/src/agentforge/memory/__init__.py +16 -0
  49. agentforge_py-0.2.1/src/agentforge/memory/in_memory.py +130 -0
  50. agentforge_py-0.2.1/src/agentforge/memory/in_memory_graph.py +262 -0
  51. agentforge_py-0.2.1/src/agentforge/memory/in_memory_vector.py +167 -0
  52. agentforge_py-0.2.1/src/agentforge/pipeline/__init__.py +26 -0
  53. agentforge_py-0.2.1/src/agentforge/pipeline/engine.py +189 -0
  54. agentforge_py-0.2.1/src/agentforge/pipeline/errors.py +19 -0
  55. agentforge_py-0.2.1/src/agentforge/pipeline/tool.py +93 -0
  56. agentforge_py-0.2.1/src/agentforge/py.typed +0 -0
  57. agentforge_py-0.2.1/src/agentforge/recording.py +189 -0
  58. agentforge_py-0.2.1/src/agentforge/renderers/__init__.py +28 -0
  59. agentforge_py-0.2.1/src/agentforge/renderers/_defaults.py +32 -0
  60. agentforge_py-0.2.1/src/agentforge/renderers/markdown.py +44 -0
  61. agentforge_py-0.2.1/src/agentforge/renderers/patch_applier.py +46 -0
  62. agentforge_py-0.2.1/src/agentforge/renderers/registry.py +108 -0
  63. agentforge_py-0.2.1/src/agentforge/renderers/scorecard.py +59 -0
  64. agentforge_py-0.2.1/src/agentforge/renderers/span_table.py +71 -0
  65. agentforge_py-0.2.1/src/agentforge/replay.py +260 -0
  66. agentforge_py-0.2.1/src/agentforge/resolver_register.py +41 -0
  67. agentforge_py-0.2.1/src/agentforge/retrieval.py +410 -0
  68. agentforge_py-0.2.1/src/agentforge/runtime.py +63 -0
  69. agentforge_py-0.2.1/src/agentforge/strategies/__init__.py +27 -0
  70. agentforge_py-0.2.1/src/agentforge/strategies/_base.py +280 -0
  71. agentforge_py-0.2.1/src/agentforge/strategies/_plan.py +93 -0
  72. agentforge_py-0.2.1/src/agentforge/strategies/multi_agent.py +541 -0
  73. agentforge_py-0.2.1/src/agentforge/strategies/plan_execute.py +506 -0
  74. agentforge_py-0.2.1/src/agentforge/strategies/react.py +237 -0
  75. agentforge_py-0.2.1/src/agentforge/strategies/tot.py +472 -0
  76. agentforge_py-0.2.1/src/agentforge/templates/_shared/.cursorrules +12 -0
  77. agentforge_py-0.2.1/src/agentforge/templates/_shared/.github/copilot-instructions.md +13 -0
  78. agentforge_py-0.2.1/src/agentforge/templates/_shared/.gitkeep +0 -0
  79. agentforge_py-0.2.1/src/agentforge/templates/_shared/AGENTS.md.tmpl +123 -0
  80. agentforge_py-0.2.1/src/agentforge/templates/_shared/CLAUDE.md +13 -0
  81. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/01-set-up-new-agent.md.tmpl +67 -0
  82. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/02-add-a-tool.md +67 -0
  83. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/03-add-a-pipeline-task.md +69 -0
  84. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/04-pick-reasoning-strategy.md +67 -0
  85. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/05-write-prompts.md +75 -0
  86. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/06-test-your-agent.md +75 -0
  87. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/07-debug-a-run.md +70 -0
  88. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/08-add-memory.md +75 -0
  89. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/09-add-mcp.md +78 -0
  90. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/10-add-evaluators.md +76 -0
  91. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/11-add-safety-guardrails.md +83 -0
  92. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/12-add-observability.md +77 -0
  93. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/13-configure-multi-provider.md +91 -0
  94. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/14-deploy-your-agent.md +70 -0
  95. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/15-upgrade-your-agent.md +67 -0
  96. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/16-configuration-reference.md +81 -0
  97. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/17-add-reranker.md +78 -0
  98. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/18-add-hybrid-search.md +78 -0
  99. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/19-add-graphrag.md +83 -0
  100. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/20-apply-schema-migrations.md +92 -0
  101. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/21-use-streaming-guardrails.md +82 -0
  102. agentforge_py-0.2.1/src/agentforge/templates/_shared/docs/runbooks/README.md.tmpl +68 -0
  103. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/.env.example +8 -0
  104. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/.gitignore +7 -0
  105. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/README.md +12 -0
  106. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/agentforge.yaml +23 -0
  107. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/copier.yml +34 -0
  108. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/pyproject.toml +18 -0
  109. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/src/{{project_slug.replace('-', '_')}}/__init__.py +5 -0
  110. agentforge_py-0.2.1/src/agentforge/templates/code-reviewer/src/{{project_slug.replace('-', '_')}}/main.py +32 -0
  111. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/.env.example +8 -0
  112. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/.gitignore +7 -0
  113. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/README.md +14 -0
  114. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/agentforge.yaml +19 -0
  115. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/copier.yml +31 -0
  116. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/pyproject.toml +18 -0
  117. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/src/{{project_slug.replace('-', '_')}}/__init__.py +5 -0
  118. agentforge_py-0.2.1/src/agentforge/templates/docs-qa/src/{{project_slug.replace('-', '_')}}/main.py +32 -0
  119. agentforge_py-0.2.1/src/agentforge/templates/minimal/.env.example +11 -0
  120. agentforge_py-0.2.1/src/agentforge/templates/minimal/.gitignore +10 -0
  121. agentforge_py-0.2.1/src/agentforge/templates/minimal/README.md +28 -0
  122. agentforge_py-0.2.1/src/agentforge/templates/minimal/agentforge.yaml +10 -0
  123. agentforge_py-0.2.1/src/agentforge/templates/minimal/copier.yml +52 -0
  124. agentforge_py-0.2.1/src/agentforge/templates/minimal/pyproject.toml +18 -0
  125. agentforge_py-0.2.1/src/agentforge/templates/minimal/src/{{project_slug.replace('-', '_')}}/__init__.py +5 -0
  126. agentforge_py-0.2.1/src/agentforge/templates/minimal/src/{{project_slug.replace('-', '_')}}/main.py +34 -0
  127. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/.env.example +8 -0
  128. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/.gitignore +7 -0
  129. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/README.md +13 -0
  130. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/agentforge.yaml +15 -0
  131. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/copier.yml +31 -0
  132. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/pyproject.toml +18 -0
  133. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/src/{{project_slug.replace('-', '_')}}/__init__.py +5 -0
  134. agentforge_py-0.2.1/src/agentforge/templates/patch-bot/src/{{project_slug.replace('-', '_')}}/main.py +32 -0
  135. agentforge_py-0.2.1/src/agentforge/templates/research/.env.example +8 -0
  136. agentforge_py-0.2.1/src/agentforge/templates/research/.gitignore +7 -0
  137. agentforge_py-0.2.1/src/agentforge/templates/research/README.md +14 -0
  138. agentforge_py-0.2.1/src/agentforge/templates/research/agentforge.yaml +17 -0
  139. agentforge_py-0.2.1/src/agentforge/templates/research/copier.yml +31 -0
  140. agentforge_py-0.2.1/src/agentforge/templates/research/pyproject.toml +18 -0
  141. agentforge_py-0.2.1/src/agentforge/templates/research/src/{{project_slug.replace('-', '_')}}/__init__.py +5 -0
  142. agentforge_py-0.2.1/src/agentforge/templates/research/src/{{project_slug.replace('-', '_')}}/main.py +31 -0
  143. agentforge_py-0.2.1/src/agentforge/templates/triage/.env.example +8 -0
  144. agentforge_py-0.2.1/src/agentforge/templates/triage/.gitignore +7 -0
  145. agentforge_py-0.2.1/src/agentforge/templates/triage/README.md +14 -0
  146. agentforge_py-0.2.1/src/agentforge/templates/triage/agentforge.yaml +25 -0
  147. agentforge_py-0.2.1/src/agentforge/templates/triage/copier.yml +31 -0
  148. agentforge_py-0.2.1/src/agentforge/templates/triage/pyproject.toml +18 -0
  149. agentforge_py-0.2.1/src/agentforge/templates/triage/src/{{project_slug.replace('-', '_')}}/__init__.py +5 -0
  150. agentforge_py-0.2.1/src/agentforge/templates/triage/src/{{project_slug.replace('-', '_')}}/main.py +30 -0
  151. agentforge_py-0.2.1/src/agentforge/testing/__init__.py +69 -0
  152. agentforge_py-0.2.1/src/agentforge/testing/conformance.py +40 -0
  153. agentforge_py-0.2.1/src/agentforge/testing/factory.py +89 -0
  154. agentforge_py-0.2.1/src/agentforge/testing/fixtures.py +42 -0
  155. agentforge_py-0.2.1/src/agentforge/testing/llm.py +235 -0
  156. agentforge_py-0.2.1/src/agentforge/testing/recording.py +177 -0
  157. agentforge_py-0.2.1/src/agentforge/tools/__init__.py +41 -0
  158. agentforge_py-0.2.1/tests/conftest.py +3 -0
  159. agentforge_py-0.2.1/tests/integration/test_web_search_live.py +42 -0
  160. agentforge_py-0.2.1/tests/unit/.gitkeep +0 -0
  161. agentforge_py-0.2.1/tests/unit/test_agent.py +193 -0
  162. agentforge_py-0.2.1/tests/unit/test_agent_evaluators.py +155 -0
  163. agentforge_py-0.2.1/tests/unit/test_agent_fallback_chain.py +101 -0
  164. agentforge_py-0.2.1/tests/unit/test_agent_graph_store.py +101 -0
  165. agentforge_py-0.2.1/tests/unit/test_agent_hooks.py +198 -0
  166. agentforge_py-0.2.1/tests/unit/test_agent_pipeline.py +216 -0
  167. agentforge_py-0.2.1/tests/unit/test_agent_retriever.py +183 -0
  168. agentforge_py-0.2.1/tests/unit/test_build_retriever.py +184 -0
  169. agentforge_py-0.2.1/tests/unit/test_cli_build.py +227 -0
  170. agentforge_py-0.2.1/tests/unit/test_cli_build_pipeline.py +85 -0
  171. agentforge_py-0.2.1/tests/unit/test_cli_config.py +191 -0
  172. agentforge_py-0.2.1/tests/unit/test_cli_db.py +164 -0
  173. agentforge_py-0.2.1/tests/unit/test_cli_debug.py +64 -0
  174. agentforge_py-0.2.1/tests/unit/test_cli_docs.py +157 -0
  175. agentforge_py-0.2.1/tests/unit/test_cli_eval.py +99 -0
  176. agentforge_py-0.2.1/tests/unit/test_cli_health.py +52 -0
  177. agentforge_py-0.2.1/tests/unit/test_cli_list_modules.py +162 -0
  178. agentforge_py-0.2.1/tests/unit/test_cli_run.py +114 -0
  179. agentforge_py-0.2.1/tests/unit/test_config.py +109 -0
  180. agentforge_py-0.2.1/tests/unit/test_env_bearer_auth.py +38 -0
  181. agentforge_py-0.2.1/tests/unit/test_eval_consistency.py +136 -0
  182. agentforge_py-0.2.1/tests/unit/test_eval_coverage.py +88 -0
  183. agentforge_py-0.2.1/tests/unit/test_eval_format_compliance.py +144 -0
  184. agentforge_py-0.2.1/tests/unit/test_eval_regression.py +150 -0
  185. agentforge_py-0.2.1/tests/unit/test_fake_tool.py +89 -0
  186. agentforge_py-0.2.1/tests/unit/test_findings.py +232 -0
  187. agentforge_py-0.2.1/tests/unit/test_graph_store_properties.py +155 -0
  188. agentforge_py-0.2.1/tests/unit/test_guardrails_builtins.py +162 -0
  189. agentforge_py-0.2.1/tests/unit/test_guardrails_conformance.py +87 -0
  190. agentforge_py-0.2.1/tests/unit/test_guardrails_engine.py +244 -0
  191. agentforge_py-0.2.1/tests/unit/test_in_memory_graph_store.py +312 -0
  192. agentforge_py-0.2.1/tests/unit/test_in_memory_store.py +162 -0
  193. agentforge_py-0.2.1/tests/unit/test_in_memory_vector_store.py +282 -0
  194. agentforge_py-0.2.1/tests/unit/test_manifest_apply.py +296 -0
  195. agentforge_py-0.2.1/tests/unit/test_module_cmd.py +327 -0
  196. agentforge_py-0.2.1/tests/unit/test_multi_agent_stream.py +117 -0
  197. agentforge_py-0.2.1/tests/unit/test_new_cmd.py +171 -0
  198. agentforge_py-0.2.1/tests/unit/test_pipeline_engine.py +207 -0
  199. agentforge_py-0.2.1/tests/unit/test_plan.py +146 -0
  200. agentforge_py-0.2.1/tests/unit/test_plan_execute_stream.py +124 -0
  201. agentforge_py-0.2.1/tests/unit/test_react_stream.py +128 -0
  202. agentforge_py-0.2.1/tests/unit/test_recording.py +106 -0
  203. agentforge_py-0.2.1/tests/unit/test_renderer_pipeline_findings.py +40 -0
  204. agentforge_py-0.2.1/tests/unit/test_renderer_registry.py +165 -0
  205. agentforge_py-0.2.1/tests/unit/test_renderers_builtin.py +294 -0
  206. agentforge_py-0.2.1/tests/unit/test_replay.py +123 -0
  207. agentforge_py-0.2.1/tests/unit/test_retrieval.py +255 -0
  208. agentforge_py-0.2.1/tests/unit/test_retrieval_rerank.py +203 -0
  209. agentforge_py-0.2.1/tests/unit/test_retriever_graphrag.py +320 -0
  210. agentforge_py-0.2.1/tests/unit/test_retriever_hybrid.py +244 -0
  211. agentforge_py-0.2.1/tests/unit/test_runtime.py +57 -0
  212. agentforge_py-0.2.1/tests/unit/test_scaffold_state.py +332 -0
  213. agentforge_py-0.2.1/tests/unit/test_shared_scaffold.py +92 -0
  214. agentforge_py-0.2.1/tests/unit/test_strategies_base.py +131 -0
  215. agentforge_py-0.2.1/tests/unit/test_strategies_budget_properties.py +185 -0
  216. agentforge_py-0.2.1/tests/unit/test_strategies_dispatch_tool.py +135 -0
  217. agentforge_py-0.2.1/tests/unit/test_strategies_multi_agent.py +361 -0
  218. agentforge_py-0.2.1/tests/unit/test_strategies_plan_execute.py +269 -0
  219. agentforge_py-0.2.1/tests/unit/test_strategies_react.py +279 -0
  220. agentforge_py-0.2.1/tests/unit/test_strategies_tot.py +238 -0
  221. agentforge_py-0.2.1/tests/unit/test_testing_factory.py +56 -0
  222. agentforge_py-0.2.1/tests/unit/test_testing_fake_llm.py +94 -0
  223. agentforge_py-0.2.1/tests/unit/test_testing_mock_llm.py +75 -0
  224. agentforge_py-0.2.1/tests/unit/test_testing_recording.py +77 -0
  225. agentforge_py-0.2.1/tests/unit/test_three_section_format.py +66 -0
  226. agentforge_py-0.2.1/tests/unit/test_tool_decorator.py +313 -0
  227. agentforge_py-0.2.1/tests/unit/test_tools_calculator.py +150 -0
  228. agentforge_py-0.2.1/tests/unit/test_tools_file_read.py +104 -0
  229. agentforge_py-0.2.1/tests/unit/test_tools_shell.py +126 -0
  230. agentforge_py-0.2.1/tests/unit/test_tools_web_search.py +146 -0
  231. agentforge_py-0.2.1/tests/unit/test_tot_stream.py +114 -0
  232. agentforge_py-0.2.1/tests/unit/test_vector_store_properties.py +183 -0
@@ -0,0 +1,49 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+
7
+ # Distribution / packaging
8
+ .Python
9
+ build/
10
+ dist/
11
+ *.egg-info/
12
+ *.egg
13
+ wheels/
14
+ sdist/
15
+ share/python-wheels/
16
+
17
+ # uv
18
+ .venv/
19
+ uv-cache/
20
+
21
+ # Testing
22
+ .pytest_cache/
23
+ .coverage
24
+ .coverage.*
25
+ htmlcov/
26
+ coverage.xml
27
+ .tox/
28
+ .mypy_cache/
29
+ .ruff_cache/
30
+ .hypothesis/
31
+
32
+ # Environment
33
+ .env
34
+ .envrc
35
+
36
+ # Editors
37
+ .vscode/
38
+ .idea/
39
+ *.swp
40
+ *.swo
41
+ *~
42
+
43
+ # OS
44
+ .DS_Store
45
+ Thumbs.db
46
+
47
+ # Project-local
48
+ *.local
49
+ .agentforge-state/.session-cache
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,158 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentforge-py
3
+ Version: 0.2.1
4
+ Summary: AgentForge — open-source plug-and-play framework for production AI agents
5
+ Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
6
+ Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
7
+ Project-URL: Documentation, https://github.com/Scaffoldic/agentforge-py
8
+ Project-URL: Changelog, https://github.com/Scaffoldic/agentforge-py/blob/main/CHANGELOG.md
9
+ Project-URL: Issues, https://github.com/Scaffoldic/agentforge-py/issues
10
+ Author: The AgentForge Authors
11
+ License-Expression: Apache-2.0
12
+ License-File: LICENSE
13
+ Keywords: agent,agentic,ai,framework,llm,react,tools
14
+ Classifier: Development Status :: 2 - Pre-Alpha
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Classifier: Typing :: Typed
22
+ Requires-Python: >=3.13
23
+ Requires-Dist: agentforge-core~=0.2.1
24
+ Requires-Dist: copier>=9.4
25
+ Requires-Dist: pydantic>=2.10
26
+ Requires-Dist: pyyaml>=6.0
27
+ Requires-Dist: typer>=0.15
28
+ Provides-Extra: a2a
29
+ Requires-Dist: agentforge-a2a~=0.2.1; extra == 'a2a'
30
+ Provides-Extra: all
31
+ Requires-Dist: agentforge-a2a~=0.2.1; extra == 'all'
32
+ Requires-Dist: agentforge-anthropic~=0.2.1; extra == 'all'
33
+ Requires-Dist: agentforge-bedrock~=0.2.1; extra == 'all'
34
+ Requires-Dist: agentforge-chat-history-postgres~=0.2.1; extra == 'all'
35
+ Requires-Dist: agentforge-chat-history-redis~=0.2.1; extra == 'all'
36
+ Requires-Dist: agentforge-chat-http~=0.2.1; extra == 'all'
37
+ Requires-Dist: agentforge-chat-slack~=0.2.1; extra == 'all'
38
+ Requires-Dist: agentforge-chat~=0.2.1; extra == 'all'
39
+ Requires-Dist: agentforge-eval-geval~=0.2.1; extra == 'all'
40
+ Requires-Dist: agentforge-evidently~=0.2.1; extra == 'all'
41
+ Requires-Dist: agentforge-guard-llamaguard~=0.2.1; extra == 'all'
42
+ Requires-Dist: agentforge-guard-llmguard~=0.2.1; extra == 'all'
43
+ Requires-Dist: agentforge-guard-nemo~=0.2.1; extra == 'all'
44
+ Requires-Dist: agentforge-guard-presidio~=0.2.1; extra == 'all'
45
+ Requires-Dist: agentforge-langfuse~=0.2.1; extra == 'all'
46
+ Requires-Dist: agentforge-litellm~=0.2.1; extra == 'all'
47
+ Requires-Dist: agentforge-mcp~=0.2.1; extra == 'all'
48
+ Requires-Dist: agentforge-memory-neo4j~=0.2.1; extra == 'all'
49
+ Requires-Dist: agentforge-memory-postgres~=0.2.1; extra == 'all'
50
+ Requires-Dist: agentforge-memory-sqlite~=0.2.1; extra == 'all'
51
+ Requires-Dist: agentforge-memory-surrealdb~=0.2.1; extra == 'all'
52
+ Requires-Dist: agentforge-ollama~=0.2.1; extra == 'all'
53
+ Requires-Dist: agentforge-openai~=0.2.1; extra == 'all'
54
+ Requires-Dist: agentforge-otel~=0.2.1; extra == 'all'
55
+ Requires-Dist: agentforge-phoenix~=0.2.1; extra == 'all'
56
+ Requires-Dist: agentforge-reranker-cohere~=0.2.1; extra == 'all'
57
+ Requires-Dist: agentforge-reranker-mixedbread~=0.2.1; extra == 'all'
58
+ Requires-Dist: agentforge-reranker-sentence-transformers~=0.2.1; extra == 'all'
59
+ Requires-Dist: agentforge-reranker-voyage~=0.2.1; extra == 'all'
60
+ Requires-Dist: agentforge-statsd~=0.2.1; extra == 'all'
61
+ Requires-Dist: agentforge-testing~=0.2.1; extra == 'all'
62
+ Requires-Dist: agentforge-voyage~=0.2.1; extra == 'all'
63
+ Provides-Extra: anthropic
64
+ Requires-Dist: agentforge-anthropic~=0.2.1; extra == 'anthropic'
65
+ Provides-Extra: bedrock
66
+ Requires-Dist: agentforge-bedrock~=0.2.1; extra == 'bedrock'
67
+ Provides-Extra: chat
68
+ Requires-Dist: agentforge-chat~=0.2.1; extra == 'chat'
69
+ Provides-Extra: chat-history-postgres
70
+ Requires-Dist: agentforge-chat-history-postgres~=0.2.1; extra == 'chat-history-postgres'
71
+ Provides-Extra: chat-history-redis
72
+ Requires-Dist: agentforge-chat-history-redis~=0.2.1; extra == 'chat-history-redis'
73
+ Provides-Extra: chat-http
74
+ Requires-Dist: agentforge-chat-http~=0.2.1; extra == 'chat-http'
75
+ Provides-Extra: chat-slack
76
+ Requires-Dist: agentforge-chat-slack~=0.2.1; extra == 'chat-slack'
77
+ Provides-Extra: eval
78
+ Requires-Dist: agentforge-eval-geval~=0.2.1; extra == 'eval'
79
+ Provides-Extra: evidently
80
+ Requires-Dist: agentforge-evidently~=0.2.1; extra == 'evidently'
81
+ Provides-Extra: guard-llamaguard
82
+ Requires-Dist: agentforge-guard-llamaguard~=0.2.1; extra == 'guard-llamaguard'
83
+ Provides-Extra: guard-llmguard
84
+ Requires-Dist: agentforge-guard-llmguard~=0.2.1; extra == 'guard-llmguard'
85
+ Provides-Extra: guard-nemo
86
+ Requires-Dist: agentforge-guard-nemo~=0.2.1; extra == 'guard-nemo'
87
+ Provides-Extra: guard-presidio
88
+ Requires-Dist: agentforge-guard-presidio~=0.2.1; extra == 'guard-presidio'
89
+ Provides-Extra: langfuse
90
+ Requires-Dist: agentforge-langfuse~=0.2.1; extra == 'langfuse'
91
+ Provides-Extra: litellm
92
+ Requires-Dist: agentforge-litellm~=0.2.1; extra == 'litellm'
93
+ Provides-Extra: mcp
94
+ Requires-Dist: agentforge-mcp~=0.2.1; extra == 'mcp'
95
+ Provides-Extra: memory-neo4j
96
+ Requires-Dist: agentforge-memory-neo4j~=0.2.1; extra == 'memory-neo4j'
97
+ Provides-Extra: memory-postgres
98
+ Requires-Dist: agentforge-memory-postgres~=0.2.1; extra == 'memory-postgres'
99
+ Provides-Extra: memory-sqlite
100
+ Requires-Dist: agentforge-memory-sqlite~=0.2.1; extra == 'memory-sqlite'
101
+ Provides-Extra: memory-surrealdb
102
+ Requires-Dist: agentforge-memory-surrealdb~=0.2.1; extra == 'memory-surrealdb'
103
+ Provides-Extra: ollama
104
+ Requires-Dist: agentforge-ollama~=0.2.1; extra == 'ollama'
105
+ Provides-Extra: openai
106
+ Requires-Dist: agentforge-openai~=0.2.1; extra == 'openai'
107
+ Provides-Extra: otel
108
+ Requires-Dist: agentforge-otel~=0.2.1; extra == 'otel'
109
+ Provides-Extra: phoenix
110
+ Requires-Dist: agentforge-phoenix~=0.2.1; extra == 'phoenix'
111
+ Provides-Extra: reranker-cohere
112
+ Requires-Dist: agentforge-reranker-cohere~=0.2.1; extra == 'reranker-cohere'
113
+ Provides-Extra: reranker-mixedbread
114
+ Requires-Dist: agentforge-reranker-mixedbread~=0.2.1; extra == 'reranker-mixedbread'
115
+ Provides-Extra: reranker-sentence-transformers
116
+ Requires-Dist: agentforge-reranker-sentence-transformers~=0.2.1; extra == 'reranker-sentence-transformers'
117
+ Provides-Extra: reranker-voyage
118
+ Requires-Dist: agentforge-reranker-voyage~=0.2.1; extra == 'reranker-voyage'
119
+ Provides-Extra: statsd
120
+ Requires-Dist: agentforge-statsd~=0.2.1; extra == 'statsd'
121
+ Provides-Extra: testing
122
+ Requires-Dist: agentforge-testing~=0.2.1; extra == 'testing'
123
+ Provides-Extra: voyage
124
+ Requires-Dist: agentforge-voyage~=0.2.1; extra == 'voyage'
125
+ Description-Content-Type: text/markdown
126
+
127
+ # agentforge
128
+
129
+ The default runtime for the AgentForge framework — `Agent`, `ReActLoop`,
130
+ default tools, `SimpleFinding`, in-memory store, basic safety defaults,
131
+ `BudgetPolicy`. Most users install this package and add module extras
132
+ as needed.
133
+
134
+ ## Three-line agent (once feat-001 lands)
135
+
136
+ ```python
137
+ from agentforge import Agent
138
+
139
+ agent = Agent(model="anthropic:claude-sonnet-4.7")
140
+ result = await agent.run("Say hello in three words.")
141
+ ```
142
+
143
+ ## Install
144
+
145
+ ```bash
146
+ pip install agentforge-py # core runtime
147
+ pip install "agentforge-py[anthropic]" # + Anthropic provider
148
+ pip install "agentforge-py[anthropic,memory-postgres]" # + persistence
149
+ ```
150
+
151
+ ## Status
152
+
153
+ v0.0 — pre-alpha. Repo bootstrapped; feat-001 (Core contracts &
154
+ `Agent` orchestrator) is the next milestone.
155
+
156
+ ## License
157
+
158
+ Apache 2.0.
@@ -0,0 +1,32 @@
1
+ # agentforge
2
+
3
+ The default runtime for the AgentForge framework — `Agent`, `ReActLoop`,
4
+ default tools, `SimpleFinding`, in-memory store, basic safety defaults,
5
+ `BudgetPolicy`. Most users install this package and add module extras
6
+ as needed.
7
+
8
+ ## Three-line agent (once feat-001 lands)
9
+
10
+ ```python
11
+ from agentforge import Agent
12
+
13
+ agent = Agent(model="anthropic:claude-sonnet-4.7")
14
+ result = await agent.run("Say hello in three words.")
15
+ ```
16
+
17
+ ## Install
18
+
19
+ ```bash
20
+ pip install agentforge-py # core runtime
21
+ pip install "agentforge-py[anthropic]" # + Anthropic provider
22
+ pip install "agentforge-py[anthropic,memory-postgres]" # + persistence
23
+ ```
24
+
25
+ ## Status
26
+
27
+ v0.0 — pre-alpha. Repo bootstrapped; feat-001 (Core contracts &
28
+ `Agent` orchestrator) is the next milestone.
29
+
30
+ ## License
31
+
32
+ Apache 2.0.
@@ -0,0 +1,183 @@
1
+ # agentforge — default runtime + prebuilt for the AgentForge framework.
2
+ #
3
+ # This package ships the sane defaults a developer expects on a fresh
4
+ # install: the `Agent` orchestrator, `ReActLoop` (stable reasoning
5
+ # strategy), the four built-in tools, the `SimpleFinding` variant +
6
+ # scorecard renderer, the in-memory MemoryStore, the basic safety
7
+ # defaults, and the BudgetPolicy.
8
+ #
9
+ # This package depends on `agentforge-core` (locked contracts) and
10
+ # nothing else from the AgentForge family. Optional extras pull in
11
+ # specific provider/persistence/observability modules.
12
+ #
13
+ # Per ADR-0003 (three-tier package model — this is Tier 2).
14
+
15
+ [project]
16
+ name = "agentforge-py"
17
+ version = "0.2.1"
18
+ description = "AgentForge — open-source plug-and-play framework for production AI agents"
19
+ readme = "README.md"
20
+ requires-python = ">=3.13"
21
+ license = "Apache-2.0"
22
+ license-files = ["LICENSE"]
23
+ authors = [
24
+ {name = "The AgentForge Authors"},
25
+ ]
26
+ keywords = ["ai", "agent", "llm", "framework", "agentic", "react", "tools"]
27
+ classifiers = [
28
+ "Development Status :: 2 - Pre-Alpha",
29
+ "Intended Audience :: Developers",
30
+ "License :: OSI Approved :: Apache Software License",
31
+ "Programming Language :: Python :: 3",
32
+ "Programming Language :: Python :: 3.13",
33
+ "Topic :: Software Development :: Libraries :: Python Modules",
34
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
35
+ "Typing :: Typed",
36
+ ]
37
+
38
+ dependencies = [
39
+ "agentforge-core ~= 0.2.1",
40
+ "pydantic>=2.10",
41
+ "pyyaml>=6.0",
42
+ "typer>=0.15",
43
+ # feat-011: Copier is the scaffolding + three-way-merge engine
44
+ # (ADR-0005). Used by `agentforge new` / `agentforge upgrade`.
45
+ "copier>=9.4",
46
+ ]
47
+
48
+ # Optional extras — names match the underlying provider/module package.
49
+ # Adding a module via `pip install "agentforge[<name>]"` pulls the
50
+ # corresponding package onto the path; entry-point discovery does the
51
+ # rest (per ADR-0004).
52
+ [project.optional-dependencies]
53
+ # Each extra installs one sister package at the matching coordinated
54
+ # release-train version. `pip install agentforge-py[anthropic]`
55
+ # resolves to `agentforge-py + agentforge-anthropic`, etc.
56
+ # Add a new entry here every time a new sister package ships.
57
+
58
+ # LLM providers
59
+ anthropic = ["agentforge-anthropic ~= 0.2.1"]
60
+ openai = ["agentforge-openai ~= 0.2.1"]
61
+ bedrock = ["agentforge-bedrock ~= 0.2.1"]
62
+ ollama = ["agentforge-ollama ~= 0.2.1"]
63
+ litellm = ["agentforge-litellm ~= 0.2.1"]
64
+
65
+ # Embeddings
66
+ voyage = ["agentforge-voyage ~= 0.2.1"]
67
+
68
+ # Memory backends
69
+ memory-sqlite = ["agentforge-memory-sqlite ~= 0.2.1"]
70
+ memory-postgres = ["agentforge-memory-postgres ~= 0.2.1"]
71
+ memory-neo4j = ["agentforge-memory-neo4j ~= 0.2.1"]
72
+ memory-surrealdb = ["agentforge-memory-surrealdb ~= 0.2.1"]
73
+
74
+ # Chat surface
75
+ chat = ["agentforge-chat ~= 0.2.1"]
76
+ chat-http = ["agentforge-chat-http ~= 0.2.1"]
77
+ chat-slack = ["agentforge-chat-slack ~= 0.2.1"]
78
+ chat-history-postgres = ["agentforge-chat-history-postgres ~= 0.2.1"]
79
+ chat-history-redis = ["agentforge-chat-history-redis ~= 0.2.1"]
80
+
81
+ # Rerankers
82
+ reranker-cohere = ["agentforge-reranker-cohere ~= 0.2.1"]
83
+ reranker-voyage = ["agentforge-reranker-voyage ~= 0.2.1"]
84
+ reranker-mixedbread = ["agentforge-reranker-mixedbread ~= 0.2.1"]
85
+ reranker-sentence-transformers = ["agentforge-reranker-sentence-transformers ~= 0.2.1"]
86
+
87
+ # Guardrails
88
+ guard-llmguard = ["agentforge-guard-llmguard ~= 0.2.1"]
89
+ guard-presidio = ["agentforge-guard-presidio ~= 0.2.1"]
90
+ guard-nemo = ["agentforge-guard-nemo ~= 0.2.1"]
91
+ guard-llamaguard = ["agentforge-guard-llamaguard ~= 0.2.1"]
92
+
93
+ # Observability
94
+ langfuse = ["agentforge-langfuse ~= 0.2.1"]
95
+ phoenix = ["agentforge-phoenix ~= 0.2.1"]
96
+ otel = ["agentforge-otel ~= 0.2.1"]
97
+ statsd = ["agentforge-statsd ~= 0.2.1"]
98
+ evidently = ["agentforge-evidently ~= 0.2.1"]
99
+
100
+ # Protocols
101
+ mcp = ["agentforge-mcp ~= 0.2.1"]
102
+ a2a = ["agentforge-a2a ~= 0.2.1"]
103
+
104
+ # Eval
105
+ eval = ["agentforge-eval-geval ~= 0.2.1"]
106
+
107
+ # Testing
108
+ testing = ["agentforge-testing ~= 0.2.1"]
109
+
110
+ # Everything (development / docs / smoke-test convenience — not
111
+ # recommended for production deploys; pick the actual integrations
112
+ # you use to keep the dependency tree small).
113
+ all = [
114
+ "agentforge-anthropic ~= 0.2.1",
115
+ "agentforge-openai ~= 0.2.1",
116
+ "agentforge-bedrock ~= 0.2.1",
117
+ "agentforge-ollama ~= 0.2.1",
118
+ "agentforge-litellm ~= 0.2.1",
119
+ "agentforge-voyage ~= 0.2.1",
120
+ "agentforge-memory-sqlite ~= 0.2.1",
121
+ "agentforge-memory-postgres ~= 0.2.1",
122
+ "agentforge-memory-neo4j ~= 0.2.1",
123
+ "agentforge-memory-surrealdb ~= 0.2.1",
124
+ "agentforge-chat ~= 0.2.1",
125
+ "agentforge-chat-http ~= 0.2.1",
126
+ "agentforge-chat-slack ~= 0.2.1",
127
+ "agentforge-chat-history-postgres ~= 0.2.1",
128
+ "agentforge-chat-history-redis ~= 0.2.1",
129
+ "agentforge-reranker-cohere ~= 0.2.1",
130
+ "agentforge-reranker-voyage ~= 0.2.1",
131
+ "agentforge-reranker-mixedbread ~= 0.2.1",
132
+ "agentforge-reranker-sentence-transformers ~= 0.2.1",
133
+ "agentforge-guard-llmguard ~= 0.2.1",
134
+ "agentforge-guard-presidio ~= 0.2.1",
135
+ "agentforge-guard-nemo ~= 0.2.1",
136
+ "agentforge-guard-llamaguard ~= 0.2.1",
137
+ "agentforge-langfuse ~= 0.2.1",
138
+ "agentforge-phoenix ~= 0.2.1",
139
+ "agentforge-otel ~= 0.2.1",
140
+ "agentforge-statsd ~= 0.2.1",
141
+ "agentforge-evidently ~= 0.2.1",
142
+ "agentforge-mcp ~= 0.2.1",
143
+ "agentforge-a2a ~= 0.2.1",
144
+ "agentforge-eval-geval ~= 0.2.1",
145
+ "agentforge-testing ~= 0.2.1",
146
+ ]
147
+
148
+ [project.scripts]
149
+ # feat-010 ships the read-only `list` command. Destructive commands
150
+ # (`add`, `swap`, `remove`) ship in a follow-up sub-feat alongside
151
+ # feat-012 (Configuration system).
152
+ agentforge = "agentforge.cli.main:main"
153
+
154
+ [project.urls]
155
+ Homepage = "https://github.com/Scaffoldic/agentforge-py"
156
+ Repository = "https://github.com/Scaffoldic/agentforge-py"
157
+ Documentation = "https://github.com/Scaffoldic/agentforge-py"
158
+ Changelog = "https://github.com/Scaffoldic/agentforge-py/blob/main/CHANGELOG.md"
159
+ Issues = "https://github.com/Scaffoldic/agentforge-py/issues"
160
+
161
+ [tool.uv.sources]
162
+ agentforge-core = { workspace = true }
163
+
164
+ [build-system]
165
+ requires = ["hatchling>=1.27"]
166
+ build-backend = "hatchling.build"
167
+
168
+ [tool.hatch.build.targets.wheel]
169
+ packages = ["src/agentforge"]
170
+ # feat-011: ship Copier templates inside the wheel. The
171
+ # `{{project_slug}}/` subdir is auto-included via the `packages`
172
+ # directive — hatchling walks all files under src/agentforge,
173
+ # including the Jinja2-named subdirs. Do NOT add a force-include
174
+ # for templates: it duplicates every entry and PyPI rejects the
175
+ # wheel with "Duplicate filename in local headers".
176
+
177
+ [tool.hatch.build.targets.sdist]
178
+ include = [
179
+ "src/agentforge",
180
+ "tests",
181
+ "README.md",
182
+ "LICENSE",
183
+ ]