agentforge-py 0.2.1__tar.gz → 0.2.2__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.
- agentforge_py-0.2.2/PKG-INFO +158 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/pyproject.toml +71 -67
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/__init__.py +2 -2
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/agent.py +4 -4
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/README.md +1 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/agentforge.yaml +1 -0
- {agentforge_py-0.2.1/src/agentforge/templates/patch-bot → agentforge_py-0.2.2/src/agentforge/templates/code-reviewer}/pyproject.toml +5 -3
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/src/{{project_slug.replace('-', '_')}}/main.py +5 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/README.md +1 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/agentforge.yaml +1 -0
- {agentforge_py-0.2.1/src/agentforge/templates/code-reviewer → agentforge_py-0.2.2/src/agentforge/templates/docs-qa}/pyproject.toml +5 -3
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/src/{{project_slug.replace('-', '_')}}/main.py +5 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/README.md +1 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/agentforge.yaml +1 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/pyproject.toml +5 -3
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/src/{{project_slug.replace('-', '_')}}/main.py +5 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/README.md +1 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/agentforge.yaml +1 -0
- {agentforge_py-0.2.1/src/agentforge/templates/docs-qa → agentforge_py-0.2.2/src/agentforge/templates/patch-bot}/pyproject.toml +5 -3
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/src/{{project_slug.replace('-', '_')}}/main.py +5 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/research/README.md +1 -1
- agentforge_py-0.2.2/src/agentforge/templates/research/pyproject.toml +20 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/research/src/{{project_slug.replace('-', '_')}}/main.py +5 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/triage/README.md +1 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/triage/agentforge.yaml +1 -0
- agentforge_py-0.2.2/src/agentforge/templates/triage/pyproject.toml +20 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/triage/src/{{project_slug.replace('-', '_')}}/main.py +5 -1
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_new_cmd.py +47 -1
- agentforge_py-0.2.1/PKG-INFO +0 -158
- agentforge_py-0.2.1/src/agentforge/templates/research/pyproject.toml +0 -18
- agentforge_py-0.2.1/src/agentforge/templates/triage/pyproject.toml +0 -18
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/.gitignore +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/LICENSE +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/README.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_testing/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_testing/fake_llm.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_testing/fake_tool.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_tools/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_tools/calculator.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_tools/decorator.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_tools/file_read.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_tools/shell.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/_tools/web_search.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/auth.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/_build.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/_scaffold_state.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/_shared_scaffold.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/config_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/db_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/debug_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/docs_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/eval_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/health_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/list_modules.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/main.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/manifest_apply.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/module_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/new_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/run_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/cli/upgrade_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/config/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/eval/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/eval/consistency.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/eval/coverage.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/eval/format_compliance.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/eval/regression.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/findings.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/guardrails/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/guardrails/allowlist.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/guardrails/capability_check.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/guardrails/engine.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/guardrails/pii_redact_basic.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/guardrails/prompt_injection_basic.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/memory/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/memory/in_memory.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/memory/in_memory_graph.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/memory/in_memory_vector.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/pipeline/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/pipeline/engine.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/pipeline/errors.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/pipeline/tool.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/py.typed +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/recording.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/renderers/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/renderers/_defaults.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/renderers/markdown.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/renderers/patch_applier.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/renderers/registry.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/renderers/scorecard.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/renderers/span_table.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/replay.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/resolver_register.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/retrieval.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/runtime.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/strategies/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/strategies/_base.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/strategies/_plan.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/strategies/multi_agent.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/strategies/plan_execute.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/strategies/react.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/strategies/tot.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/.cursorrules +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/.github/copilot-instructions.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/.gitkeep +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/AGENTS.md.tmpl +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/CLAUDE.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/01-set-up-new-agent.md.tmpl +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/02-add-a-tool.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/03-add-a-pipeline-task.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/04-pick-reasoning-strategy.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/05-write-prompts.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/06-test-your-agent.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/07-debug-a-run.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/08-add-memory.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/09-add-mcp.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/10-add-evaluators.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/11-add-safety-guardrails.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/12-add-observability.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/13-configure-multi-provider.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/14-deploy-your-agent.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/15-upgrade-your-agent.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/16-configuration-reference.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/17-add-reranker.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/18-add-hybrid-search.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/19-add-graphrag.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/20-apply-schema-migrations.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/21-use-streaming-guardrails.md +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/_shared/docs/runbooks/README.md.tmpl +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/.env.example +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/.gitignore +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/copier.yml +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/.env.example +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/.gitignore +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/copier.yml +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/.env.example +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/.gitignore +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/copier.yml +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/.env.example +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/.gitignore +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/copier.yml +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/research/.env.example +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/research/.gitignore +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/research/agentforge.yaml +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/research/copier.yml +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/research/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/triage/.env.example +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/triage/.gitignore +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/triage/copier.yml +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/triage/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/testing/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/testing/conformance.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/testing/factory.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/testing/fixtures.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/testing/llm.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/testing/recording.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/tools/__init__.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/conftest.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/integration/test_web_search_live.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/.gitkeep +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_agent.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_agent_evaluators.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_agent_fallback_chain.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_agent_graph_store.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_agent_hooks.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_agent_pipeline.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_agent_retriever.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_build_retriever.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_build.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_build_pipeline.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_config.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_db.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_debug.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_docs.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_eval.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_health.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_list_modules.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_cli_run.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_config.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_env_bearer_auth.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_eval_consistency.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_eval_coverage.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_eval_format_compliance.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_eval_regression.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_fake_tool.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_findings.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_graph_store_properties.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_guardrails_builtins.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_guardrails_conformance.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_guardrails_engine.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_in_memory_graph_store.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_in_memory_store.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_in_memory_vector_store.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_manifest_apply.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_module_cmd.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_multi_agent_stream.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_pipeline_engine.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_plan.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_plan_execute_stream.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_react_stream.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_recording.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_renderer_pipeline_findings.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_renderer_registry.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_renderers_builtin.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_replay.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_retrieval.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_retrieval_rerank.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_retriever_graphrag.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_retriever_hybrid.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_runtime.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_scaffold_state.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_shared_scaffold.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_strategies_base.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_strategies_budget_properties.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_strategies_dispatch_tool.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_strategies_multi_agent.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_strategies_plan_execute.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_strategies_react.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_strategies_tot.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_testing_factory.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_testing_fake_llm.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_testing_mock_llm.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_testing_recording.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_three_section_format.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_tool_decorator.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_tools_calculator.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_tools_file_read.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_tools_shell.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_tools_web_search.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_tot_stream.py +0 -0
- {agentforge_py-0.2.1 → agentforge_py-0.2.2}/tests/unit/test_vector_store_properties.py +0 -0
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentforge-py
|
|
3
|
+
Version: 0.2.2
|
|
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.2
|
|
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.2; extra == 'a2a'
|
|
30
|
+
Provides-Extra: all
|
|
31
|
+
Requires-Dist: agentforge-a2a~=0.2.2; extra == 'all'
|
|
32
|
+
Requires-Dist: agentforge-anthropic~=0.2.2; extra == 'all'
|
|
33
|
+
Requires-Dist: agentforge-bedrock~=0.2.2; extra == 'all'
|
|
34
|
+
Requires-Dist: agentforge-chat-history-postgres~=0.2.2; extra == 'all'
|
|
35
|
+
Requires-Dist: agentforge-chat-history-redis~=0.2.2; extra == 'all'
|
|
36
|
+
Requires-Dist: agentforge-chat-http~=0.2.2; extra == 'all'
|
|
37
|
+
Requires-Dist: agentforge-chat-slack~=0.2.2; extra == 'all'
|
|
38
|
+
Requires-Dist: agentforge-chat~=0.2.2; extra == 'all'
|
|
39
|
+
Requires-Dist: agentforge-eval-geval~=0.2.2; extra == 'all'
|
|
40
|
+
Requires-Dist: agentforge-evidently~=0.2.2; extra == 'all'
|
|
41
|
+
Requires-Dist: agentforge-guard-llamaguard~=0.2.2; extra == 'all'
|
|
42
|
+
Requires-Dist: agentforge-guard-llmguard~=0.2.2; extra == 'all'
|
|
43
|
+
Requires-Dist: agentforge-guard-nemo~=0.2.2; extra == 'all'
|
|
44
|
+
Requires-Dist: agentforge-guard-presidio~=0.2.2; extra == 'all'
|
|
45
|
+
Requires-Dist: agentforge-langfuse~=0.2.2; extra == 'all'
|
|
46
|
+
Requires-Dist: agentforge-litellm~=0.2.2; extra == 'all'
|
|
47
|
+
Requires-Dist: agentforge-mcp~=0.2.2; extra == 'all'
|
|
48
|
+
Requires-Dist: agentforge-memory-neo4j~=0.2.2; extra == 'all'
|
|
49
|
+
Requires-Dist: agentforge-memory-postgres~=0.2.2; extra == 'all'
|
|
50
|
+
Requires-Dist: agentforge-memory-sqlite~=0.2.2; extra == 'all'
|
|
51
|
+
Requires-Dist: agentforge-memory-surrealdb~=0.2.2; extra == 'all'
|
|
52
|
+
Requires-Dist: agentforge-ollama~=0.2.2; extra == 'all'
|
|
53
|
+
Requires-Dist: agentforge-openai~=0.2.2; extra == 'all'
|
|
54
|
+
Requires-Dist: agentforge-otel~=0.2.2; extra == 'all'
|
|
55
|
+
Requires-Dist: agentforge-phoenix~=0.2.2; extra == 'all'
|
|
56
|
+
Requires-Dist: agentforge-reranker-cohere~=0.2.2; extra == 'all'
|
|
57
|
+
Requires-Dist: agentforge-reranker-mixedbread~=0.2.2; extra == 'all'
|
|
58
|
+
Requires-Dist: agentforge-reranker-sentence-transformers~=0.2.2; extra == 'all'
|
|
59
|
+
Requires-Dist: agentforge-reranker-voyage~=0.2.2; extra == 'all'
|
|
60
|
+
Requires-Dist: agentforge-statsd~=0.2.2; extra == 'all'
|
|
61
|
+
Requires-Dist: agentforge-testing~=0.2.2; extra == 'all'
|
|
62
|
+
Requires-Dist: agentforge-voyage~=0.2.2; extra == 'all'
|
|
63
|
+
Provides-Extra: anthropic
|
|
64
|
+
Requires-Dist: agentforge-anthropic[anthropic]~=0.2.2; extra == 'anthropic'
|
|
65
|
+
Provides-Extra: bedrock
|
|
66
|
+
Requires-Dist: agentforge-bedrock[bedrock]~=0.2.2; extra == 'bedrock'
|
|
67
|
+
Provides-Extra: chat
|
|
68
|
+
Requires-Dist: agentforge-chat~=0.2.2; extra == 'chat'
|
|
69
|
+
Provides-Extra: chat-history-postgres
|
|
70
|
+
Requires-Dist: agentforge-chat-history-postgres~=0.2.2; extra == 'chat-history-postgres'
|
|
71
|
+
Provides-Extra: chat-history-redis
|
|
72
|
+
Requires-Dist: agentforge-chat-history-redis~=0.2.2; extra == 'chat-history-redis'
|
|
73
|
+
Provides-Extra: chat-http
|
|
74
|
+
Requires-Dist: agentforge-chat-http~=0.2.2; extra == 'chat-http'
|
|
75
|
+
Provides-Extra: chat-slack
|
|
76
|
+
Requires-Dist: agentforge-chat-slack~=0.2.2; extra == 'chat-slack'
|
|
77
|
+
Provides-Extra: eval
|
|
78
|
+
Requires-Dist: agentforge-eval-geval~=0.2.2; extra == 'eval'
|
|
79
|
+
Provides-Extra: evidently
|
|
80
|
+
Requires-Dist: agentforge-evidently~=0.2.2; extra == 'evidently'
|
|
81
|
+
Provides-Extra: guard-llamaguard
|
|
82
|
+
Requires-Dist: agentforge-guard-llamaguard~=0.2.2; extra == 'guard-llamaguard'
|
|
83
|
+
Provides-Extra: guard-llmguard
|
|
84
|
+
Requires-Dist: agentforge-guard-llmguard~=0.2.2; extra == 'guard-llmguard'
|
|
85
|
+
Provides-Extra: guard-nemo
|
|
86
|
+
Requires-Dist: agentforge-guard-nemo~=0.2.2; extra == 'guard-nemo'
|
|
87
|
+
Provides-Extra: guard-presidio
|
|
88
|
+
Requires-Dist: agentforge-guard-presidio~=0.2.2; extra == 'guard-presidio'
|
|
89
|
+
Provides-Extra: langfuse
|
|
90
|
+
Requires-Dist: agentforge-langfuse~=0.2.2; extra == 'langfuse'
|
|
91
|
+
Provides-Extra: litellm
|
|
92
|
+
Requires-Dist: agentforge-litellm~=0.2.2; extra == 'litellm'
|
|
93
|
+
Provides-Extra: mcp
|
|
94
|
+
Requires-Dist: agentforge-mcp~=0.2.2; extra == 'mcp'
|
|
95
|
+
Provides-Extra: memory-neo4j
|
|
96
|
+
Requires-Dist: agentforge-memory-neo4j~=0.2.2; extra == 'memory-neo4j'
|
|
97
|
+
Provides-Extra: memory-postgres
|
|
98
|
+
Requires-Dist: agentforge-memory-postgres~=0.2.2; extra == 'memory-postgres'
|
|
99
|
+
Provides-Extra: memory-sqlite
|
|
100
|
+
Requires-Dist: agentforge-memory-sqlite~=0.2.2; extra == 'memory-sqlite'
|
|
101
|
+
Provides-Extra: memory-surrealdb
|
|
102
|
+
Requires-Dist: agentforge-memory-surrealdb~=0.2.2; extra == 'memory-surrealdb'
|
|
103
|
+
Provides-Extra: ollama
|
|
104
|
+
Requires-Dist: agentforge-ollama~=0.2.2; extra == 'ollama'
|
|
105
|
+
Provides-Extra: openai
|
|
106
|
+
Requires-Dist: agentforge-openai[openai]~=0.2.2; extra == 'openai'
|
|
107
|
+
Provides-Extra: otel
|
|
108
|
+
Requires-Dist: agentforge-otel~=0.2.2; extra == 'otel'
|
|
109
|
+
Provides-Extra: phoenix
|
|
110
|
+
Requires-Dist: agentforge-phoenix~=0.2.2; extra == 'phoenix'
|
|
111
|
+
Provides-Extra: reranker-cohere
|
|
112
|
+
Requires-Dist: agentforge-reranker-cohere~=0.2.2; extra == 'reranker-cohere'
|
|
113
|
+
Provides-Extra: reranker-mixedbread
|
|
114
|
+
Requires-Dist: agentforge-reranker-mixedbread~=0.2.2; extra == 'reranker-mixedbread'
|
|
115
|
+
Provides-Extra: reranker-sentence-transformers
|
|
116
|
+
Requires-Dist: agentforge-reranker-sentence-transformers~=0.2.2; extra == 'reranker-sentence-transformers'
|
|
117
|
+
Provides-Extra: reranker-voyage
|
|
118
|
+
Requires-Dist: agentforge-reranker-voyage~=0.2.2; extra == 'reranker-voyage'
|
|
119
|
+
Provides-Extra: statsd
|
|
120
|
+
Requires-Dist: agentforge-statsd~=0.2.2; extra == 'statsd'
|
|
121
|
+
Provides-Extra: testing
|
|
122
|
+
Requires-Dist: agentforge-testing~=0.2.2; extra == 'testing'
|
|
123
|
+
Provides-Extra: voyage
|
|
124
|
+
Requires-Dist: agentforge-voyage~=0.2.2; 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.
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
[project]
|
|
16
16
|
name = "agentforge-py"
|
|
17
|
-
version = "0.2.
|
|
17
|
+
version = "0.2.2"
|
|
18
18
|
description = "AgentForge — open-source plug-and-play framework for production AI agents"
|
|
19
19
|
readme = "README.md"
|
|
20
20
|
requires-python = ">=3.13"
|
|
@@ -36,7 +36,7 @@ classifiers = [
|
|
|
36
36
|
]
|
|
37
37
|
|
|
38
38
|
dependencies = [
|
|
39
|
-
"agentforge-core ~= 0.2.
|
|
39
|
+
"agentforge-core ~= 0.2.2",
|
|
40
40
|
"pydantic>=2.10",
|
|
41
41
|
"pyyaml>=6.0",
|
|
42
42
|
"typer>=0.15",
|
|
@@ -55,94 +55,98 @@ dependencies = [
|
|
|
55
55
|
# resolves to `agentforge-py + agentforge-anthropic`, etc.
|
|
56
56
|
# Add a new entry here every time a new sister package ships.
|
|
57
57
|
|
|
58
|
-
# LLM providers
|
|
59
|
-
anthropic
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
58
|
+
# LLM providers — for providers with a vendor-SDK extra
|
|
59
|
+
# (anthropic / openai / bedrock), the extra is included so a single
|
|
60
|
+
# `pip install "agentforge-py[<provider>]"` lands both the framework
|
|
61
|
+
# wrapper AND the underlying SDK. ollama / litellm bundle their SDK
|
|
62
|
+
# as a hard dep, so no `[<sdk>]` extra is needed.
|
|
63
|
+
anthropic = ["agentforge-anthropic[anthropic] ~= 0.2.2"]
|
|
64
|
+
openai = ["agentforge-openai[openai] ~= 0.2.2"]
|
|
65
|
+
bedrock = ["agentforge-bedrock[bedrock] ~= 0.2.2"]
|
|
66
|
+
ollama = ["agentforge-ollama ~= 0.2.2"]
|
|
67
|
+
litellm = ["agentforge-litellm ~= 0.2.2"]
|
|
64
68
|
|
|
65
69
|
# Embeddings
|
|
66
|
-
voyage = ["agentforge-voyage ~= 0.2.
|
|
70
|
+
voyage = ["agentforge-voyage ~= 0.2.2"]
|
|
67
71
|
|
|
68
72
|
# Memory backends
|
|
69
|
-
memory-sqlite = ["agentforge-memory-sqlite ~= 0.2.
|
|
70
|
-
memory-postgres = ["agentforge-memory-postgres ~= 0.2.
|
|
71
|
-
memory-neo4j = ["agentforge-memory-neo4j ~= 0.2.
|
|
72
|
-
memory-surrealdb = ["agentforge-memory-surrealdb ~= 0.2.
|
|
73
|
+
memory-sqlite = ["agentforge-memory-sqlite ~= 0.2.2"]
|
|
74
|
+
memory-postgres = ["agentforge-memory-postgres ~= 0.2.2"]
|
|
75
|
+
memory-neo4j = ["agentforge-memory-neo4j ~= 0.2.2"]
|
|
76
|
+
memory-surrealdb = ["agentforge-memory-surrealdb ~= 0.2.2"]
|
|
73
77
|
|
|
74
78
|
# Chat surface
|
|
75
|
-
chat = ["agentforge-chat ~= 0.2.
|
|
76
|
-
chat-http = ["agentforge-chat-http ~= 0.2.
|
|
77
|
-
chat-slack = ["agentforge-chat-slack ~= 0.2.
|
|
78
|
-
chat-history-postgres = ["agentforge-chat-history-postgres ~= 0.2.
|
|
79
|
-
chat-history-redis = ["agentforge-chat-history-redis ~= 0.2.
|
|
79
|
+
chat = ["agentforge-chat ~= 0.2.2"]
|
|
80
|
+
chat-http = ["agentforge-chat-http ~= 0.2.2"]
|
|
81
|
+
chat-slack = ["agentforge-chat-slack ~= 0.2.2"]
|
|
82
|
+
chat-history-postgres = ["agentforge-chat-history-postgres ~= 0.2.2"]
|
|
83
|
+
chat-history-redis = ["agentforge-chat-history-redis ~= 0.2.2"]
|
|
80
84
|
|
|
81
85
|
# Rerankers
|
|
82
|
-
reranker-cohere = ["agentforge-reranker-cohere ~= 0.2.
|
|
83
|
-
reranker-voyage = ["agentforge-reranker-voyage ~= 0.2.
|
|
84
|
-
reranker-mixedbread = ["agentforge-reranker-mixedbread ~= 0.2.
|
|
85
|
-
reranker-sentence-transformers = ["agentforge-reranker-sentence-transformers ~= 0.2.
|
|
86
|
+
reranker-cohere = ["agentforge-reranker-cohere ~= 0.2.2"]
|
|
87
|
+
reranker-voyage = ["agentforge-reranker-voyage ~= 0.2.2"]
|
|
88
|
+
reranker-mixedbread = ["agentforge-reranker-mixedbread ~= 0.2.2"]
|
|
89
|
+
reranker-sentence-transformers = ["agentforge-reranker-sentence-transformers ~= 0.2.2"]
|
|
86
90
|
|
|
87
91
|
# Guardrails
|
|
88
|
-
guard-llmguard = ["agentforge-guard-llmguard ~= 0.2.
|
|
89
|
-
guard-presidio = ["agentforge-guard-presidio ~= 0.2.
|
|
90
|
-
guard-nemo = ["agentforge-guard-nemo ~= 0.2.
|
|
91
|
-
guard-llamaguard = ["agentforge-guard-llamaguard ~= 0.2.
|
|
92
|
+
guard-llmguard = ["agentforge-guard-llmguard ~= 0.2.2"]
|
|
93
|
+
guard-presidio = ["agentforge-guard-presidio ~= 0.2.2"]
|
|
94
|
+
guard-nemo = ["agentforge-guard-nemo ~= 0.2.2"]
|
|
95
|
+
guard-llamaguard = ["agentforge-guard-llamaguard ~= 0.2.2"]
|
|
92
96
|
|
|
93
97
|
# Observability
|
|
94
|
-
langfuse = ["agentforge-langfuse ~= 0.2.
|
|
95
|
-
phoenix = ["agentforge-phoenix ~= 0.2.
|
|
96
|
-
otel = ["agentforge-otel ~= 0.2.
|
|
97
|
-
statsd = ["agentforge-statsd ~= 0.2.
|
|
98
|
-
evidently = ["agentforge-evidently ~= 0.2.
|
|
98
|
+
langfuse = ["agentforge-langfuse ~= 0.2.2"]
|
|
99
|
+
phoenix = ["agentforge-phoenix ~= 0.2.2"]
|
|
100
|
+
otel = ["agentforge-otel ~= 0.2.2"]
|
|
101
|
+
statsd = ["agentforge-statsd ~= 0.2.2"]
|
|
102
|
+
evidently = ["agentforge-evidently ~= 0.2.2"]
|
|
99
103
|
|
|
100
104
|
# Protocols
|
|
101
|
-
mcp = ["agentforge-mcp ~= 0.2.
|
|
102
|
-
a2a = ["agentforge-a2a ~= 0.2.
|
|
105
|
+
mcp = ["agentforge-mcp ~= 0.2.2"]
|
|
106
|
+
a2a = ["agentforge-a2a ~= 0.2.2"]
|
|
103
107
|
|
|
104
108
|
# Eval
|
|
105
|
-
eval = ["agentforge-eval-geval ~= 0.2.
|
|
109
|
+
eval = ["agentforge-eval-geval ~= 0.2.2"]
|
|
106
110
|
|
|
107
111
|
# Testing
|
|
108
|
-
testing = ["agentforge-testing ~= 0.2.
|
|
112
|
+
testing = ["agentforge-testing ~= 0.2.2"]
|
|
109
113
|
|
|
110
114
|
# Everything (development / docs / smoke-test convenience — not
|
|
111
115
|
# recommended for production deploys; pick the actual integrations
|
|
112
116
|
# you use to keep the dependency tree small).
|
|
113
117
|
all = [
|
|
114
|
-
"agentforge-anthropic ~= 0.2.
|
|
115
|
-
"agentforge-openai ~= 0.2.
|
|
116
|
-
"agentforge-bedrock ~= 0.2.
|
|
117
|
-
"agentforge-ollama ~= 0.2.
|
|
118
|
-
"agentforge-litellm ~= 0.2.
|
|
119
|
-
"agentforge-voyage ~= 0.2.
|
|
120
|
-
"agentforge-memory-sqlite ~= 0.2.
|
|
121
|
-
"agentforge-memory-postgres ~= 0.2.
|
|
122
|
-
"agentforge-memory-neo4j ~= 0.2.
|
|
123
|
-
"agentforge-memory-surrealdb ~= 0.2.
|
|
124
|
-
"agentforge-chat ~= 0.2.
|
|
125
|
-
"agentforge-chat-http ~= 0.2.
|
|
126
|
-
"agentforge-chat-slack ~= 0.2.
|
|
127
|
-
"agentforge-chat-history-postgres ~= 0.2.
|
|
128
|
-
"agentforge-chat-history-redis ~= 0.2.
|
|
129
|
-
"agentforge-reranker-cohere ~= 0.2.
|
|
130
|
-
"agentforge-reranker-voyage ~= 0.2.
|
|
131
|
-
"agentforge-reranker-mixedbread ~= 0.2.
|
|
132
|
-
"agentforge-reranker-sentence-transformers ~= 0.2.
|
|
133
|
-
"agentforge-guard-llmguard ~= 0.2.
|
|
134
|
-
"agentforge-guard-presidio ~= 0.2.
|
|
135
|
-
"agentforge-guard-nemo ~= 0.2.
|
|
136
|
-
"agentforge-guard-llamaguard ~= 0.2.
|
|
137
|
-
"agentforge-langfuse ~= 0.2.
|
|
138
|
-
"agentforge-phoenix ~= 0.2.
|
|
139
|
-
"agentforge-otel ~= 0.2.
|
|
140
|
-
"agentforge-statsd ~= 0.2.
|
|
141
|
-
"agentforge-evidently ~= 0.2.
|
|
142
|
-
"agentforge-mcp ~= 0.2.
|
|
143
|
-
"agentforge-a2a ~= 0.2.
|
|
144
|
-
"agentforge-eval-geval ~= 0.2.
|
|
145
|
-
"agentforge-testing ~= 0.2.
|
|
118
|
+
"agentforge-anthropic ~= 0.2.2",
|
|
119
|
+
"agentforge-openai ~= 0.2.2",
|
|
120
|
+
"agentforge-bedrock ~= 0.2.2",
|
|
121
|
+
"agentforge-ollama ~= 0.2.2",
|
|
122
|
+
"agentforge-litellm ~= 0.2.2",
|
|
123
|
+
"agentforge-voyage ~= 0.2.2",
|
|
124
|
+
"agentforge-memory-sqlite ~= 0.2.2",
|
|
125
|
+
"agentforge-memory-postgres ~= 0.2.2",
|
|
126
|
+
"agentforge-memory-neo4j ~= 0.2.2",
|
|
127
|
+
"agentforge-memory-surrealdb ~= 0.2.2",
|
|
128
|
+
"agentforge-chat ~= 0.2.2",
|
|
129
|
+
"agentforge-chat-http ~= 0.2.2",
|
|
130
|
+
"agentforge-chat-slack ~= 0.2.2",
|
|
131
|
+
"agentforge-chat-history-postgres ~= 0.2.2",
|
|
132
|
+
"agentforge-chat-history-redis ~= 0.2.2",
|
|
133
|
+
"agentforge-reranker-cohere ~= 0.2.2",
|
|
134
|
+
"agentforge-reranker-voyage ~= 0.2.2",
|
|
135
|
+
"agentforge-reranker-mixedbread ~= 0.2.2",
|
|
136
|
+
"agentforge-reranker-sentence-transformers ~= 0.2.2",
|
|
137
|
+
"agentforge-guard-llmguard ~= 0.2.2",
|
|
138
|
+
"agentforge-guard-presidio ~= 0.2.2",
|
|
139
|
+
"agentforge-guard-nemo ~= 0.2.2",
|
|
140
|
+
"agentforge-guard-llamaguard ~= 0.2.2",
|
|
141
|
+
"agentforge-langfuse ~= 0.2.2",
|
|
142
|
+
"agentforge-phoenix ~= 0.2.2",
|
|
143
|
+
"agentforge-otel ~= 0.2.2",
|
|
144
|
+
"agentforge-statsd ~= 0.2.2",
|
|
145
|
+
"agentforge-evidently ~= 0.2.2",
|
|
146
|
+
"agentforge-mcp ~= 0.2.2",
|
|
147
|
+
"agentforge-a2a ~= 0.2.2",
|
|
148
|
+
"agentforge-eval-geval ~= 0.2.2",
|
|
149
|
+
"agentforge-testing ~= 0.2.2",
|
|
146
150
|
]
|
|
147
151
|
|
|
148
152
|
[project.scripts]
|
|
@@ -11,7 +11,7 @@ This package is the default runtime. It ships:
|
|
|
11
11
|
|
|
12
12
|
For provider clients, persistence drivers, MCP, observability backends,
|
|
13
13
|
and safety modules, install the corresponding `agentforge-<X>` packages
|
|
14
|
-
or use the `agentforge[<extra>]` install (per ADR-0003).
|
|
14
|
+
or use the `agentforge-py[<extra>]` install (per ADR-0003).
|
|
15
15
|
|
|
16
16
|
See the project docs at `docs/README.md` (in the design workspace) and
|
|
17
17
|
the per-feature specs under `docs/features/`.
|
|
@@ -69,7 +69,7 @@ from agentforge.strategies import (
|
|
|
69
69
|
get_runtime,
|
|
70
70
|
)
|
|
71
71
|
|
|
72
|
-
__version__ = "0.2.
|
|
72
|
+
__version__ = "0.2.2"
|
|
73
73
|
|
|
74
74
|
__all__ = [
|
|
75
75
|
"RUNTIME_KEY",
|
|
@@ -239,10 +239,10 @@ class Agent:
|
|
|
239
239
|
return strategy
|
|
240
240
|
if strategy is None:
|
|
241
241
|
raise ModuleError(
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
"
|
|
245
|
-
"Agent(strategy=...)
|
|
242
|
+
'No reasoning strategy provided. Set `agent.strategy: "react"` '
|
|
243
|
+
'in agentforge.yaml, pass `strategy="react"` to `Agent(...)`, '
|
|
244
|
+
"or pass a custom `ReasoningStrategy` instance via "
|
|
245
|
+
"`Agent(strategy=...)`."
|
|
246
246
|
)
|
|
247
247
|
# String name — look up in the resolver (feat-002 will register
|
|
248
248
|
# ReActLoop here when it ships).
|
{agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/README.md
RENAMED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
```bash
|
|
6
6
|
uv sync
|
|
7
7
|
cp .env.example .env
|
|
8
|
-
|
|
8
|
+
uv run {{ project_slug }} "review the diff at /path/to.patch"
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Drop in evaluator graders (faithfulness / correctness) once you
|
{agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/code-reviewer/agentforge.yaml
RENAMED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
agent:
|
|
2
2
|
name: "{{ project_slug }}"
|
|
3
3
|
model: "{% if llm_provider == 'bedrock' %}bedrock:us.anthropic.claude-sonnet-4-5-20250929{% elif llm_provider == 'anthropic' %}anthropic:claude-sonnet-4-5{% else %}openai:gpt-4o{% endif %}"
|
|
4
|
+
strategy: "react"
|
|
4
5
|
system_prompt: |
|
|
5
6
|
You are a careful code reviewer. For each issue, emit a
|
|
6
7
|
SimpleFinding with severity, category, file, line, and a
|
|
@@ -5,11 +5,13 @@ description = "{{ description }}"
|
|
|
5
5
|
requires-python = ">=3.13"
|
|
6
6
|
dependencies = [
|
|
7
7
|
"agentforge-py",
|
|
8
|
-
{
|
|
9
|
-
"
|
|
10
|
-
{%- endif %}
|
|
8
|
+
"agentforge-{{ llm_provider }}[{{ llm_provider }}]",
|
|
9
|
+
"python-dotenv>=1.0",
|
|
11
10
|
]
|
|
12
11
|
|
|
12
|
+
[project.scripts]
|
|
13
|
+
{{ project_slug }} = "{{ project_slug | replace('-', '_') }}.main:main"
|
|
14
|
+
|
|
13
15
|
[build-system]
|
|
14
16
|
requires = ["hatchling>=1.27"]
|
|
15
17
|
build-backend = "hatchling.build"
|
|
@@ -10,9 +10,13 @@ from __future__ import annotations
|
|
|
10
10
|
import asyncio
|
|
11
11
|
import sys
|
|
12
12
|
|
|
13
|
+
from dotenv import load_dotenv
|
|
14
|
+
|
|
13
15
|
from agentforge import Agent
|
|
14
16
|
from agentforge.tools import file_read
|
|
15
17
|
|
|
18
|
+
load_dotenv()
|
|
19
|
+
|
|
16
20
|
|
|
17
21
|
async def run_agent(task: str) -> str:
|
|
18
22
|
async with Agent(tools=[file_read]) as agent:
|
|
@@ -22,7 +26,7 @@ async def run_agent(task: str) -> str:
|
|
|
22
26
|
|
|
23
27
|
def main() -> None:
|
|
24
28
|
if len(sys.argv) < 2:
|
|
25
|
-
print('Usage:
|
|
29
|
+
print('Usage: {{ project_slug }} "<task>"')
|
|
26
30
|
sys.exit(1)
|
|
27
31
|
output = asyncio.run(run_agent(" ".join(sys.argv[1:])))
|
|
28
32
|
print(output)
|
|
@@ -6,7 +6,7 @@ Outputs `NarrativeFinding`s — markdown prose with citations.
|
|
|
6
6
|
```bash
|
|
7
7
|
uv sync
|
|
8
8
|
cp .env.example .env
|
|
9
|
-
|
|
9
|
+
uv run {{ project_slug }} "how does the auth flow work?"
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
For real RAG, install `agentforge-memory-sqlite` (or postgres),
|
{agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/docs-qa/agentforge.yaml
RENAMED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
agent:
|
|
2
2
|
name: "{{ project_slug }}"
|
|
3
3
|
model: "{% if llm_provider == 'bedrock' %}bedrock:us.anthropic.claude-sonnet-4-5-20250929{% elif llm_provider == 'anthropic' %}anthropic:claude-sonnet-4-5{% else %}openai:gpt-4o{% endif %}"
|
|
4
|
+
strategy: "react"
|
|
4
5
|
system_prompt: |
|
|
5
6
|
You answer questions using only the supplied documentation /
|
|
6
7
|
source. Emit a `NarrativeFinding` with the answer as `body`
|
|
@@ -5,11 +5,13 @@ description = "{{ description }}"
|
|
|
5
5
|
requires-python = ">=3.13"
|
|
6
6
|
dependencies = [
|
|
7
7
|
"agentforge-py",
|
|
8
|
-
{
|
|
9
|
-
"
|
|
10
|
-
{%- endif %}
|
|
8
|
+
"agentforge-{{ llm_provider }}[{{ llm_provider }}]",
|
|
9
|
+
"python-dotenv>=1.0",
|
|
11
10
|
]
|
|
12
11
|
|
|
12
|
+
[project.scripts]
|
|
13
|
+
{{ project_slug }} = "{{ project_slug | replace('-', '_') }}.main:main"
|
|
14
|
+
|
|
13
15
|
[build-system]
|
|
14
16
|
requires = ["hatchling>=1.27"]
|
|
15
17
|
build-backend = "hatchling.build"
|
|
@@ -10,9 +10,13 @@ from __future__ import annotations
|
|
|
10
10
|
import asyncio
|
|
11
11
|
import sys
|
|
12
12
|
|
|
13
|
+
from dotenv import load_dotenv
|
|
14
|
+
|
|
13
15
|
from agentforge import Agent
|
|
14
16
|
from agentforge.tools import file_read, web_search
|
|
15
17
|
|
|
18
|
+
load_dotenv()
|
|
19
|
+
|
|
16
20
|
|
|
17
21
|
async def run_agent(task: str) -> str:
|
|
18
22
|
async with Agent(tools=[file_read, web_search]) as agent:
|
|
@@ -22,7 +26,7 @@ async def run_agent(task: str) -> str:
|
|
|
22
26
|
|
|
23
27
|
def main() -> None:
|
|
24
28
|
if len(sys.argv) < 2:
|
|
25
|
-
print('Usage:
|
|
29
|
+
print('Usage: {{ project_slug }} "<question>"')
|
|
26
30
|
sys.exit(1)
|
|
27
31
|
output = asyncio.run(run_agent(" ".join(sys.argv[1:])))
|
|
28
32
|
print(output)
|
{agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/minimal/agentforge.yaml
RENAMED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
agent:
|
|
2
2
|
name: "{{ project_slug }}"
|
|
3
3
|
model: "{% if llm_provider == 'bedrock' %}bedrock:us.anthropic.claude-sonnet-4-5-20250929{% elif llm_provider == 'anthropic' %}anthropic:claude-sonnet-4-5{% else %}openai:gpt-4o{% endif %}"
|
|
4
|
+
strategy: "react"
|
|
4
5
|
budget:
|
|
5
6
|
usd: 2.0
|
|
6
7
|
max_iterations: 25
|
|
@@ -5,11 +5,13 @@ description = "{{ description }}"
|
|
|
5
5
|
requires-python = ">=3.13"
|
|
6
6
|
dependencies = [
|
|
7
7
|
"agentforge-py",
|
|
8
|
-
{
|
|
9
|
-
"
|
|
10
|
-
{%- endif %}
|
|
8
|
+
"agentforge-{{ llm_provider }}[{{ llm_provider }}]",
|
|
9
|
+
"python-dotenv>=1.0",
|
|
11
10
|
]
|
|
12
11
|
|
|
12
|
+
[project.scripts]
|
|
13
|
+
{{ project_slug }} = "{{ project_slug | replace('-', '_') }}.main:main"
|
|
14
|
+
|
|
13
15
|
[build-system]
|
|
14
16
|
requires = ["hatchling>=1.27"]
|
|
15
17
|
build-backend = "hatchling.build"
|
|
@@ -11,8 +11,12 @@ from __future__ import annotations
|
|
|
11
11
|
import asyncio
|
|
12
12
|
import sys
|
|
13
13
|
|
|
14
|
+
from dotenv import load_dotenv
|
|
15
|
+
|
|
14
16
|
from agentforge import Agent
|
|
15
17
|
|
|
18
|
+
load_dotenv()
|
|
19
|
+
|
|
16
20
|
|
|
17
21
|
async def run_agent(task: str) -> str:
|
|
18
22
|
"""Run the agent against `task` and return its output."""
|
|
@@ -23,7 +27,7 @@ async def run_agent(task: str) -> str:
|
|
|
23
27
|
|
|
24
28
|
def main() -> None:
|
|
25
29
|
if len(sys.argv) < 2:
|
|
26
|
-
print('Usage:
|
|
30
|
+
print('Usage: {{ project_slug }} "<task>"')
|
|
27
31
|
sys.exit(1)
|
|
28
32
|
task = " ".join(sys.argv[1:])
|
|
29
33
|
output = asyncio.run(run_agent(task))
|
|
@@ -6,7 +6,7 @@ with rationale + confidence — for downstream consumers to apply.
|
|
|
6
6
|
```bash
|
|
7
7
|
uv sync
|
|
8
8
|
cp .env.example .env
|
|
9
|
-
|
|
9
|
+
uv run {{ project_slug }} "replace deprecated time.clock() in src/"
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
The agent does NOT apply the patches itself — the consumer (CI
|
{agentforge_py-0.2.1 → agentforge_py-0.2.2}/src/agentforge/templates/patch-bot/agentforge.yaml
RENAMED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
agent:
|
|
2
2
|
name: "{{ project_slug }}"
|
|
3
3
|
model: "{% if llm_provider == 'bedrock' %}bedrock:us.anthropic.claude-sonnet-4-5-20250929{% elif llm_provider == 'anthropic' %}anthropic:claude-sonnet-4-5{% else %}openai:gpt-4o{% endif %}"
|
|
4
|
+
strategy: "react"
|
|
4
5
|
system_prompt: |
|
|
5
6
|
You generate patches. For each fix, emit a `PatchFinding` with
|
|
6
7
|
a unified-diff `patch`, a one-line `rationale`, and a
|
|
@@ -5,11 +5,13 @@ description = "{{ description }}"
|
|
|
5
5
|
requires-python = ">=3.13"
|
|
6
6
|
dependencies = [
|
|
7
7
|
"agentforge-py",
|
|
8
|
-
{
|
|
9
|
-
"
|
|
10
|
-
{%- endif %}
|
|
8
|
+
"agentforge-{{ llm_provider }}[{{ llm_provider }}]",
|
|
9
|
+
"python-dotenv>=1.0",
|
|
11
10
|
]
|
|
12
11
|
|
|
12
|
+
[project.scripts]
|
|
13
|
+
{{ project_slug }} = "{{ project_slug | replace('-', '_') }}.main:main"
|
|
14
|
+
|
|
13
15
|
[build-system]
|
|
14
16
|
requires = ["hatchling>=1.27"]
|
|
15
17
|
build-backend = "hatchling.build"
|
|
@@ -10,9 +10,13 @@ from __future__ import annotations
|
|
|
10
10
|
import asyncio
|
|
11
11
|
import sys
|
|
12
12
|
|
|
13
|
+
from dotenv import load_dotenv
|
|
14
|
+
|
|
13
15
|
from agentforge import Agent
|
|
14
16
|
from agentforge.tools import file_read
|
|
15
17
|
|
|
18
|
+
load_dotenv()
|
|
19
|
+
|
|
16
20
|
|
|
17
21
|
async def run_agent(task: str) -> str:
|
|
18
22
|
async with Agent(tools=[file_read]) as agent:
|
|
@@ -22,7 +26,7 @@ async def run_agent(task: str) -> str:
|
|
|
22
26
|
|
|
23
27
|
def main() -> None:
|
|
24
28
|
if len(sys.argv) < 2:
|
|
25
|
-
print('Usage:
|
|
29
|
+
print('Usage: {{ project_slug }} "<task>"')
|
|
26
30
|
sys.exit(1)
|
|
27
31
|
output = asyncio.run(run_agent(" ".join(sys.argv[1:])))
|
|
28
32
|
print(output)
|
|
@@ -7,7 +7,7 @@ into sub-tasks, then synthesises a `NarrativeFinding`.
|
|
|
7
7
|
```bash
|
|
8
8
|
uv sync
|
|
9
9
|
cp .env.example .env
|
|
10
|
-
|
|
10
|
+
uv run {{ project_slug }} "what changed in claude-sonnet 4.5 vs 4.7?"
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Defaults to `web_search` (DuckDuckGo HTML scrape). Replace with a
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "{{ project_slug }}"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "{{ description }}"
|
|
5
|
+
requires-python = ">=3.13"
|
|
6
|
+
dependencies = [
|
|
7
|
+
"agentforge-py",
|
|
8
|
+
"agentforge-{{ llm_provider }}[{{ llm_provider }}]",
|
|
9
|
+
"python-dotenv>=1.0",
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
[project.scripts]
|
|
13
|
+
{{ project_slug }} = "{{ project_slug | replace('-', '_') }}.main:main"
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["hatchling>=1.27"]
|
|
17
|
+
build-backend = "hatchling.build"
|
|
18
|
+
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
packages = ["src/{{ project_slug | replace('-', '_') }}"]
|