opendde-harness 0.0.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.
- opendde_harness-0.0.1/.gitignore +55 -0
- opendde_harness-0.0.1/CHANGELOG.md +37 -0
- opendde_harness-0.0.1/LICENSE +176 -0
- opendde_harness-0.0.1/LICENSES/MIT-hermes-agent.txt +21 -0
- opendde_harness-0.0.1/LICENSES/MIT-ink.txt +10 -0
- opendde_harness-0.0.1/LICENSES/MIT-nanobot.txt +21 -0
- opendde_harness-0.0.1/LICENSES/README.md +15 -0
- opendde_harness-0.0.1/PKG-INFO +222 -0
- opendde_harness-0.0.1/README.md +172 -0
- opendde_harness-0.0.1/docker/ESM-LICENSE.txt +21 -0
- opendde_harness-0.0.1/docker/README.md +156 -0
- opendde_harness-0.0.1/docker/environment.json +105 -0
- opendde_harness-0.0.1/docker/model-checksums.sha256 +6 -0
- opendde_harness-0.0.1/docker/versions.env +4 -0
- opendde_harness-0.0.1/docs/examples/cacng1_quickstart.yaml +78 -0
- opendde_harness-0.0.1/docs/examples/crlf2_quickstart.yaml +61 -0
- opendde_harness-0.0.1/hatch_build.py +69 -0
- opendde_harness-0.0.1/opendde_harness/__init__.py +50 -0
- opendde_harness-0.0.1/opendde_harness/__main__.py +8 -0
- opendde_harness-0.0.1/opendde_harness/agent/__init__.py +31 -0
- opendde_harness-0.0.1/opendde_harness/agent/context/__init__.py +12 -0
- opendde_harness-0.0.1/opendde_harness/agent/context/builder.py +246 -0
- opendde_harness-0.0.1/opendde_harness/agent/hook/__init__.py +22 -0
- opendde_harness-0.0.1/opendde_harness/agent/hook/base.py +216 -0
- opendde_harness-0.0.1/opendde_harness/agent/hook/composite.py +125 -0
- opendde_harness-0.0.1/opendde_harness/agent/loop/__init__.py +16 -0
- opendde_harness-0.0.1/opendde_harness/agent/loop/checkpoint.py +305 -0
- opendde_harness-0.0.1/opendde_harness/agent/loop/factory.py +115 -0
- opendde_harness-0.0.1/opendde_harness/agent/loop/failure_streak.py +112 -0
- opendde_harness-0.0.1/opendde_harness/agent/loop/main.py +2744 -0
- opendde_harness-0.0.1/opendde_harness/agent/loop/recovery.py +164 -0
- opendde_harness-0.0.1/opendde_harness/agent/spine_runner.py +33 -0
- opendde_harness-0.0.1/opendde_harness/agent/subagent/__init__.py +12 -0
- opendde_harness-0.0.1/opendde_harness/agent/subagent/manager.py +387 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/__init__.py +6 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/ask_user.py +154 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/base.py +307 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/file_search.py +438 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/filesystem.py +480 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/mcp.py +171 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/media.py +184 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/registry.py +177 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/shell.py +312 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/shell_policy.py +234 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/spawn.py +82 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/tool_index.py +154 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/tool_search.py +257 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/use_skill.py +98 -0
- opendde_harness-0.0.1/opendde_harness/agent/tools/web.py +156 -0
- opendde_harness-0.0.1/opendde_harness/cli/__init__.py +1 -0
- opendde_harness-0.0.1/opendde_harness/cli/_download.py +163 -0
- opendde_harness-0.0.1/opendde_harness/cli/_exit.py +34 -0
- opendde_harness-0.0.1/opendde_harness/cli/_helpers.py +330 -0
- opendde_harness-0.0.1/opendde_harness/cli/_log_file.py +150 -0
- opendde_harness-0.0.1/opendde_harness/cli/_log_silence.py +32 -0
- opendde_harness-0.0.1/opendde_harness/cli/_plugin_stack.py +275 -0
- opendde_harness-0.0.1/opendde_harness/cli/_styles.py +20 -0
- opendde_harness-0.0.1/opendde_harness/cli/_theme.py +228 -0
- opendde_harness-0.0.1/opendde_harness/cli/_tty_guard.py +34 -0
- opendde_harness-0.0.1/opendde_harness/cli/commands.py +185 -0
- opendde_harness-0.0.1/opendde_harness/cli/compute_assets.py +526 -0
- opendde_harness-0.0.1/opendde_harness/cli/compute_code.py +369 -0
- opendde_harness-0.0.1/opendde_harness/cli/compute_commands.py +152 -0
- opendde_harness-0.0.1/opendde_harness/cli/compute_environment.py +110 -0
- opendde_harness-0.0.1/opendde_harness/cli/doctor_commands.py +615 -0
- opendde_harness-0.0.1/opendde_harness/cli/node_runtime.py +158 -0
- opendde_harness-0.0.1/opendde_harness/cli/onboard_commands.py +2364 -0
- opendde_harness-0.0.1/opendde_harness/cli/onboard_compute.py +999 -0
- opendde_harness-0.0.1/opendde_harness/cli/onboard_memory.py +2336 -0
- opendde_harness-0.0.1/opendde_harness/cli/onboard_protein_design.py +319 -0
- opendde_harness-0.0.1/opendde_harness/cli/plugin_commands.py +210 -0
- opendde_harness-0.0.1/opendde_harness/cli/protein_design_commands.py +201 -0
- opendde_harness-0.0.1/opendde_harness/cli/provider_commands.py +826 -0
- opendde_harness-0.0.1/opendde_harness/cli/session_commands.py +294 -0
- opendde_harness-0.0.1/opendde_harness/cli/skill_commands.py +131 -0
- opendde_harness-0.0.1/opendde_harness/cli/status_commands.py +95 -0
- opendde_harness-0.0.1/opendde_harness/cli/tracing_commands.py +302 -0
- opendde_harness-0.0.1/opendde_harness/cli/tui_commands.py +1100 -0
- opendde_harness-0.0.1/opendde_harness/cli/update_notice.py +189 -0
- opendde_harness-0.0.1/opendde_harness/cli/upgrade_commands.py +599 -0
- opendde_harness-0.0.1/opendde_harness/config/__init__.py +38 -0
- opendde_harness-0.0.1/opendde_harness/config/_fields.py +217 -0
- opendde_harness-0.0.1/opendde_harness/config/features.py +552 -0
- opendde_harness-0.0.1/opendde_harness/config/loader.py +199 -0
- opendde_harness-0.0.1/opendde_harness/config/opendde_harness.py +37 -0
- opendde_harness-0.0.1/opendde_harness/config/paths.py +79 -0
- opendde_harness-0.0.1/opendde_harness/config/schema.py +632 -0
- opendde_harness-0.0.1/opendde_harness/config/update.py +246 -0
- opendde_harness-0.0.1/opendde_harness/config/update_memory.py +333 -0
- opendde_harness-0.0.1/opendde_harness/config/update_providers.py +1330 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/__init__.py +31 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/assembler.py +216 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/base.py +201 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/curator.py +894 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/factory.py +233 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/history_trimmer.py +265 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/__init__.py +21 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/active_skills.py +49 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/bootstrap.py +22 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/curator.py +343 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/identity.py +20 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/memory.py +62 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/render.py +407 -0
- opendde_harness-0.0.1/opendde_harness/context_engine/segments/skills.py +165 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/__init__.py +62 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/backend.py +183 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/base.py +68 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/consolidate/__init__.py +14 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/consolidate/consolidator.py +1833 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/contract_test.py +169 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/__init__.py +47 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/catalog.py +503 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/fusion.py +115 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/gate.py +278 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/local_source.py +100 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/memory_source.py +119 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/refs.py +95 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/rewriter.py +147 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/router.py +95 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_forge/types.py +123 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_local/__init__.py +32 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_local/local_pool.py +128 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_local/registry.py +609 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_local/types.py +64 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skill_local/watcher.py +182 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skills/README.md +14 -0
- opendde_harness-0.0.1/opendde_harness/memory_engine/skills/weather/SKILL.md +49 -0
- opendde_harness-0.0.1/opendde_harness/plugin/__init__.py +66 -0
- opendde_harness-0.0.1/opendde_harness/plugin/active.py +49 -0
- opendde_harness-0.0.1/opendde_harness/plugin/bootstrap.py +63 -0
- opendde_harness-0.0.1/opendde_harness/plugin/context.py +80 -0
- opendde_harness-0.0.1/opendde_harness/plugin/discover.py +227 -0
- opendde_harness-0.0.1/opendde_harness/plugin/manifest.py +217 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/__init__.py +8 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/__init__.py +18 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/_discover.py +179 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/_health.py +138 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/_library.py +106 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/_responses_llm.py +93 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/_server.py +731 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/_server_runner.py +39 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/backend.py +1217 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/multimodal.py +203 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/opendde-harness-plugin.toml +29 -0
- opendde_harness-0.0.1/opendde_harness/plugin/memory/longterm/tools.py +148 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/__init__.py +6 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/__init__.py +1 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/phases.py +603 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/profiles.py +121 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/proposals.py +361 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/reflection.py +184 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/router.py +162 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/session.py +518 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/agents/skills.py +144 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/__init__.py +5 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/asset_paths.py +49 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/constants.py +28 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/contracts.py +410 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/design_cases.py +529 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/detached.py +388 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/external.py +179 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/gate.py +337 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/memory.py +190 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/orchestrator.py +1796 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/population.py +320 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/post_mpnn.py +117 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/preparation.py +188 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/progress.py +151 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/runtime.py +694 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/search_history.py +183 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/tracing.py +220 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/core/validation.py +121 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/opendde-harness-plugin.toml +52 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/__init__.py +28 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/analyze.py +73 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/design.py +119 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/identity.py +29 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/parent_selection.py +32 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/post_filter.py +16 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/quality_check.py +34 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/prompts/reflect.py +85 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/readiness.py +10 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/__init__.py +1 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/api.py +623 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/__init__.py +1 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/developability_filter.py +19 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/epitope_analysis.py +530 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/epitope_batch.py +200 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/esm_backend.py +424 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/evolution_analysis.py +257 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/fold.py +1607 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/foldmason.py +485 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/ipsae.py +397 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/lineage_analysis.py +149 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/loss_confidence_scorer.py +390 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/loss_objective.py +110 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/msa.py +195 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/opendde_api.py +210 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/persistent_inference_worker.py +185 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/plip_parser.py +199 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/plip_runner.py +352 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/protrek.py +550 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/soluble_mpnn.py +272 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/structure_analysis.py +198 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/backends/structure_contacts.py +131 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/client.py +224 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/compute_pool.py +266 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/harness.py +1490 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/leases.py +142 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/local_service.py +237 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/servers/worker.py +181 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/antibody-inverse-folding/SKILL.md +83 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/antibody-inverse-folding/agents/openai.yaml +4 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/cdr-full-redesign/SKILL.md +61 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/cdr-full-redesign/agents/openai.yaml +4 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/cdr-point-mutation/SKILL.md +52 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/cdr-point-mutation/agents/openai.yaml +4 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/developability-filter/SKILL.md +110 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/epitope-analysis/SKILL.md +356 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/esm2-guided-mutation/SKILL.md +45 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/esm2-guided-mutation/agents/openai.yaml +4 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/evolutionary-analysis/SKILL.md +76 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/post-filter/SKILL.md +42 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/protein-design/SKILL.md +85 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/protein-design/references/antibody-frameworks.md +93 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/protein-design/references/yaml-configuration.md +358 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/skills/structure-analysis/SKILL.md +71 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/tools/__init__.py +1 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/tools/agent.py +283 -0
- opendde_harness-0.0.1/opendde_harness/plugin/protein_design/tools/control.py +372 -0
- opendde_harness-0.0.1/opendde_harness/plugin/registry.py +386 -0
- opendde_harness-0.0.1/opendde_harness/providers/__init__.py +34 -0
- opendde_harness-0.0.1/opendde_harness/providers/auth.py +400 -0
- opendde_harness-0.0.1/opendde_harness/providers/azure_openai_provider.py +274 -0
- opendde_harness-0.0.1/opendde_harness/providers/base.py +994 -0
- opendde_harness-0.0.1/opendde_harness/providers/capabilities.py +347 -0
- opendde_harness-0.0.1/opendde_harness/providers/catalog.py +186 -0
- opendde_harness-0.0.1/opendde_harness/providers/chatgpt_token.py +127 -0
- opendde_harness-0.0.1/opendde_harness/providers/codex_catalog.py +135 -0
- opendde_harness-0.0.1/opendde_harness/providers/common_models.py +246 -0
- opendde_harness-0.0.1/opendde_harness/providers/data/models_dev.json +1 -0
- opendde_harness-0.0.1/opendde_harness/providers/endpoint_rotor.py +381 -0
- opendde_harness-0.0.1/opendde_harness/providers/endpoints.py +102 -0
- opendde_harness-0.0.1/opendde_harness/providers/lazy.py +152 -0
- opendde_harness-0.0.1/opendde_harness/providers/litellm_provider.py +1472 -0
- opendde_harness-0.0.1/opendde_harness/providers/litellm_provider_names.py +157 -0
- opendde_harness-0.0.1/opendde_harness/providers/litellm_setup.py +128 -0
- opendde_harness-0.0.1/opendde_harness/providers/minimax_oauth.py +355 -0
- opendde_harness-0.0.1/opendde_harness/providers/minimax_oauth_provider.py +68 -0
- opendde_harness-0.0.1/opendde_harness/providers/model_catalog_cache.py +95 -0
- opendde_harness-0.0.1/opendde_harness/providers/openai_codex_provider.py +481 -0
- opendde_harness-0.0.1/opendde_harness/providers/per_model_provider.py +157 -0
- opendde_harness-0.0.1/opendde_harness/providers/pin.py +113 -0
- opendde_harness-0.0.1/opendde_harness/providers/prompt_cache.py +228 -0
- opendde_harness-0.0.1/opendde_harness/providers/rates.py +724 -0
- opendde_harness-0.0.1/opendde_harness/providers/reasoning.py +76 -0
- opendde_harness-0.0.1/opendde_harness/providers/registry.py +849 -0
- opendde_harness-0.0.1/opendde_harness/providers/responses_api.py +323 -0
- opendde_harness-0.0.1/opendde_harness/providers/transcription.py +59 -0
- opendde_harness-0.0.1/opendde_harness/providers/truncation.py +96 -0
- opendde_harness-0.0.1/opendde_harness/providers/wire.py +243 -0
- opendde_harness-0.0.1/opendde_harness/sandbox/__init__.py +20 -0
- opendde_harness-0.0.1/opendde_harness/sandbox/direct_executor.py +124 -0
- opendde_harness-0.0.1/opendde_harness/sandbox/interfaces.py +119 -0
- opendde_harness-0.0.1/opendde_harness/security/__init__.py +0 -0
- opendde_harness-0.0.1/opendde_harness/security/network.py +94 -0
- opendde_harness-0.0.1/opendde_harness/security/trust.py +70 -0
- opendde_harness-0.0.1/opendde_harness/session/__init__.py +5 -0
- opendde_harness-0.0.1/opendde_harness/session/export.py +145 -0
- opendde_harness-0.0.1/opendde_harness/session/manager.py +548 -0
- opendde_harness-0.0.1/opendde_harness/spine/__init__.py +60 -0
- opendde_harness-0.0.1/opendde_harness/spine/delivery.py +252 -0
- opendde_harness-0.0.1/opendde_harness/spine/events.py +129 -0
- opendde_harness-0.0.1/opendde_harness/spine/message.py +36 -0
- opendde_harness-0.0.1/opendde_harness/spine/runner.py +37 -0
- opendde_harness-0.0.1/opendde_harness/spine/scheduler.py +435 -0
- opendde_harness-0.0.1/opendde_harness/spine/turn.py +44 -0
- opendde_harness-0.0.1/opendde_harness/templates/AGENTS.md +12 -0
- opendde_harness-0.0.1/opendde_harness/templates/SOUL.md +7 -0
- opendde_harness-0.0.1/opendde_harness/templates/TOOLS.md +17 -0
- opendde_harness-0.0.1/opendde_harness/templates/USER.md +24 -0
- opendde_harness-0.0.1/opendde_harness/templates/__init__.py +0 -0
- opendde_harness-0.0.1/opendde_harness/token_wise/__init__.py +19 -0
- opendde_harness-0.0.1/opendde_harness/token_wise/base.py +80 -0
- opendde_harness-0.0.1/opendde_harness/token_wise/pricing.py +73 -0
- opendde_harness-0.0.1/opendde_harness/token_wise/registry.py +82 -0
- opendde_harness-0.0.1/opendde_harness/token_wise/usage_tracker.py +151 -0
- opendde_harness-0.0.1/opendde_harness/tracing/__init__.py +22 -0
- opendde_harness-0.0.1/opendde_harness/tracing/config.py +84 -0
- opendde_harness-0.0.1/opendde_harness/tracing/context.py +117 -0
- opendde_harness-0.0.1/opendde_harness/tracing/semconv.py +685 -0
- opendde_harness-0.0.1/opendde_harness/tracing/spans.py +95 -0
- opendde_harness-0.0.1/opendde_harness/tracing/store.py +177 -0
- opendde_harness-0.0.1/opendde_harness/tracing/trace.py +414 -0
- opendde_harness-0.0.1/opendde_harness/tracing/usage.py +47 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/descriptors/opendde_harness.json +29 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/log-store.js +164 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/memory-deposits.js +183 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/protein-design-store.js +579 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/server.js +1105 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/state-dir.js +55 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/test/protein-design-api.test.js +195 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/test/protein-design-candidates.test.js +410 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/test/protein-design-store.test.js +518 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/test/protein-design-ui.test.js +457 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/app.css +3908 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/app.js +3054 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/protein-design-candidates.js +1754 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/protein-design.css +1934 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/protein-design.js +1114 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/shell.js +109 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/vendor/3Dmol-LICENSE.txt +90 -0
- opendde_harness-0.0.1/opendde_harness/tracing/viewer/ui/vendor/3Dmol-min.js +2 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/__init__.py +7 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/_ansi_filter.py +79 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/_confirm_injection.py +65 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/_console_injection.py +57 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/approval_broker.py +157 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/confirm_broker.py +98 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/dispatcher.py +168 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/errors.py +215 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/__init__.py +175 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/_typer_reflect.py +59 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/approval.py +54 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/cli_dispatch.py +344 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/commands.py +306 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/config.py +388 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/confirm.py +44 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/model.py +478 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/question.py +48 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/reload.py +31 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/session.py +674 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/setup.py +142 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/slash_routing.py +230 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/system.py +121 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/terminal.py +84 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/methods/turn.py +366 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/models.py +1011 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/question_broker.py +147 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/server.py +285 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/spine.py +287 -0
- opendde_harness-0.0.1/opendde_harness/tui_rpc/subscriptions.py +251 -0
- opendde_harness-0.0.1/opendde_harness/utils/__init__.py +5 -0
- opendde_harness-0.0.1/opendde_harness/utils/atomic_io.py +52 -0
- opendde_harness-0.0.1/opendde_harness/utils/bm25.py +74 -0
- opendde_harness-0.0.1/opendde_harness/utils/helpers.py +443 -0
- opendde_harness-0.0.1/opendde_harness/utils/portable_lock.py +55 -0
- opendde_harness-0.0.1/opendde_harness/utils/text.py +64 -0
- opendde_harness-0.0.1/opendde_harness/utils/win_fcntl_shim.py +104 -0
- opendde_harness-0.0.1/pyproject.toml +213 -0
- opendde_harness-0.0.1/ui-tui/README.md +45 -0
- opendde_harness-0.0.1/ui-tui/dist/entry.js +57850 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.worktrees/
|
|
2
|
+
.assets
|
|
3
|
+
.env
|
|
4
|
+
node_modules/
|
|
5
|
+
ui-tui/node_modules
|
|
6
|
+
docs/bin/
|
|
7
|
+
scripts/bin/
|
|
8
|
+
external/
|
|
9
|
+
deploy/protein_design/weights/
|
|
10
|
+
# Generated architecture/diagram SVGs at repo root (not source)
|
|
11
|
+
/*.svg
|
|
12
|
+
|
|
13
|
+
# Engineering working notes — plan + process records, never committed
|
|
14
|
+
revice_notes/
|
|
15
|
+
*.pyc
|
|
16
|
+
dist/
|
|
17
|
+
build/
|
|
18
|
+
*.egg-info/
|
|
19
|
+
*.egg
|
|
20
|
+
*.pyc
|
|
21
|
+
*.pyo
|
|
22
|
+
*.pyd
|
|
23
|
+
*.pyw
|
|
24
|
+
*.pyz
|
|
25
|
+
*.pywz
|
|
26
|
+
*.pyzz
|
|
27
|
+
.venv/
|
|
28
|
+
venv/
|
|
29
|
+
__pycache__/
|
|
30
|
+
poetry.lock
|
|
31
|
+
.pytest_cache/
|
|
32
|
+
.coverage
|
|
33
|
+
.coverage.*
|
|
34
|
+
coverage.xml
|
|
35
|
+
htmlcov/
|
|
36
|
+
botpy.log
|
|
37
|
+
nano.*.save
|
|
38
|
+
swebench_jobs/
|
|
39
|
+
*.env
|
|
40
|
+
!docker/versions.env
|
|
41
|
+
key.env
|
|
42
|
+
sty_readme.md
|
|
43
|
+
CLAUDE.local.md
|
|
44
|
+
logs/
|
|
45
|
+
.DS_Store
|
|
46
|
+
.claude/
|
|
47
|
+
tmp.sh
|
|
48
|
+
.work_context/
|
|
49
|
+
# Runtime-discipline shadow checkpoint repo (Bug2) — never commit snapshots
|
|
50
|
+
.opendde_harness/
|
|
51
|
+
|
|
52
|
+
# SkillForge dense retrieval cache (auto-built per-deployment, never tracked)
|
|
53
|
+
.skill_index/
|
|
54
|
+
.cache/skill_index/
|
|
55
|
+
.ruff_cache/
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
User-facing changes to OpenDDE Harness are documented here.
|
|
4
|
+
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
No changes yet.
|
|
8
|
+
|
|
9
|
+
## [0.0.1] - 2026-09-09
|
|
10
|
+
|
|
11
|
+
**Introducing OpenDDE Harness - our first public preview!**
|
|
12
|
+
|
|
13
|
+
We're excited to share OpenDDE Harness, an open-source tool for agentic antibody
|
|
14
|
+
design. It brings LLM-guided sequence design and OpenDDE structure prediction into
|
|
15
|
+
one workflow, from preparing a target to reviewing candidate sequences and structures.
|
|
16
|
+
|
|
17
|
+
Describe your design task in natural language, review the plan, and follow the
|
|
18
|
+
results as the agent proposes, evaluates, and refines candidates. This first release
|
|
19
|
+
supports VHH, scFv, and paired VH/VL binders while preserving configured fixed residues.
|
|
20
|
+
A terminal UI guides setup and design, and a tracing dashboard lets you inspect
|
|
21
|
+
candidate structures, scores, and progress across iterations.
|
|
22
|
+
|
|
23
|
+
Alongside this release, we're sharing a
|
|
24
|
+
[technical report](https://github.com/aurekaresearch/OpenDDE-Harness/blob/v0.0.1/docs/assets/OpenDDE_harness_tech_report.pdf)
|
|
25
|
+
and [design examples](https://github.com/aurekaresearch/OpenDDE-Harness/tree/v0.0.1/docs/examples)
|
|
26
|
+
to introduce the approach and help you get started. Install from PyPI or source
|
|
27
|
+
using the [installation guide](https://github.com/aurekaresearch/OpenDDE-Harness/blob/v0.0.1/README.md#installation),
|
|
28
|
+
then follow the [onboarding guide](https://github.com/aurekaresearch/OpenDDE-Harness/blob/v0.0.1/docs/onboarding.md)
|
|
29
|
+
to connect your LLM provider and compute service.
|
|
30
|
+
|
|
31
|
+
This is an early preview, and you may encounter bugs. Please
|
|
32
|
+
[open an issue](https://github.com/aurekaresearch/OpenDDE-Harness/issues) with your
|
|
33
|
+
feedback, reproduction steps, and `ddeharness doctor --json` output when relevant.
|
|
34
|
+
Thank you for trying OpenDDE Harness and helping us make it better!
|
|
35
|
+
|
|
36
|
+
[Unreleased]: https://github.com/aurekaresearch/OpenDDE-Harness/compare/v0.0.1...HEAD
|
|
37
|
+
[0.0.1]: https://github.com/aurekaresearch/OpenDDE-Harness/releases/tag/v0.0.1
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Nous Research
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Vadym Demedes <vadimdemedes@hey.com> (https://github.com/vadimdemedes)
|
|
4
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
7
|
+
|
|
8
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
9
|
+
|
|
10
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025-present Xubin Ren and the nanobot contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Third-Party License Notices
|
|
2
|
+
|
|
3
|
+
This directory keeps license texts for upstream projects and libraries whose
|
|
4
|
+
notices OpenDDE Harness preserves.
|
|
5
|
+
|
|
6
|
+
OpenDDE Harness itself is licensed under Apache-2.0. Some imported code, references, and
|
|
7
|
+
design influences originated from MIT-licensed projects; those notices remain
|
|
8
|
+
here so downstream users can audit attribution without searching through the
|
|
9
|
+
history.
|
|
10
|
+
|
|
11
|
+
## Files
|
|
12
|
+
|
|
13
|
+
- `MIT-hermes-agent.txt` - Hermes Agent license notice.
|
|
14
|
+
- `MIT-ink.txt` - Ink license notice.
|
|
15
|
+
- `MIT-nanobot.txt` - Nanobot license notice.
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: opendde-harness
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: OpenDDE Harness - antibody design harness: agent runtime, protein-design plugin, and compute service
|
|
5
|
+
Author: OpenDDE
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
License-File: LICENSES/MIT-hermes-agent.txt
|
|
9
|
+
License-File: LICENSES/MIT-ink.txt
|
|
10
|
+
License-File: LICENSES/MIT-nanobot.txt
|
|
11
|
+
Keywords: agent,antibody-design,bioinformatics,cli,protein-design
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Requires-Python: >=3.12
|
|
17
|
+
Requires-Dist: everos[multimodal]==1.2.2
|
|
18
|
+
Requires-Dist: httpx<1.0.0,>=0.28.0
|
|
19
|
+
Requires-Dist: json-repair>=0.30.0
|
|
20
|
+
Requires-Dist: litellm<2.0.0,>=1.82.1
|
|
21
|
+
Requires-Dist: loguru<1.0.0,>=0.7.3
|
|
22
|
+
Requires-Dist: mcp>=1.27.0
|
|
23
|
+
Requires-Dist: numpy<3.0,>=2.0
|
|
24
|
+
Requires-Dist: orjson<4.0,>=3.11.6
|
|
25
|
+
Requires-Dist: pillow>=10.0.0
|
|
26
|
+
Requires-Dist: portalocker>=3.2.0
|
|
27
|
+
Requires-Dist: prompt-toolkit>=3.0.0
|
|
28
|
+
Requires-Dist: pydantic-settings<3.0.0,>=2.14.2
|
|
29
|
+
Requires-Dist: pydantic<3.0.0,>=2.12.0
|
|
30
|
+
Requires-Dist: pyyaml>=6.0
|
|
31
|
+
Requires-Dist: questionary<3.0.0,>=2.0.0
|
|
32
|
+
Requires-Dist: rich<15.0.0,>=14.0.0
|
|
33
|
+
Requires-Dist: tiktoken<1.0.0,>=0.7.0
|
|
34
|
+
Requires-Dist: tomli-w>=1.2.0
|
|
35
|
+
Requires-Dist: typer<1.0.0,>=0.20.0
|
|
36
|
+
Requires-Dist: watchfiles<2.0,>=0.21
|
|
37
|
+
Provides-Extra: dev
|
|
38
|
+
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
|
|
39
|
+
Requires-Dist: pytest<10.0,>=8.0; extra == 'dev'
|
|
40
|
+
Requires-Dist: ruff>=0.6.0; extra == 'dev'
|
|
41
|
+
Provides-Extra: protein-design
|
|
42
|
+
Requires-Dist: biotite<2.0,>=1.2; extra == 'protein-design'
|
|
43
|
+
Requires-Dist: fastapi<1.0,>=0.116; extra == 'protein-design'
|
|
44
|
+
Requires-Dist: gradio-client>=0.10.0; extra == 'protein-design'
|
|
45
|
+
Requires-Dist: scipy>=1.10.0; extra == 'protein-design'
|
|
46
|
+
Requires-Dist: torch<2.8.0,>=2.3.0; extra == 'protein-design'
|
|
47
|
+
Requires-Dist: transformers>=4.30.0; extra == 'protein-design'
|
|
48
|
+
Requires-Dist: uvicorn<1.0,>=0.35; extra == 'protein-design'
|
|
49
|
+
Description-Content-Type: text/markdown
|
|
50
|
+
|
|
51
|
+
# OpenDDE Harness
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
[](pyproject.toml)
|
|
55
|
+
[](LICENSE)
|
|
56
|
+

|
|
57
|
+
[](https://pypi.org/project/opendde-harness/)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+

|
|
61
|
+
|
|
62
|
+
Harness for agentic antibody design: prepare targets, optimize CDR sequences, predict structures with OpenDDE, and inspect results. Supports VHH, scFv and paired VH/VL binders while preserving configured fixed residues.
|
|
63
|
+
|
|
64
|
+
- Guided setup and reviewed design plans in natural language.
|
|
65
|
+
- Generate antibody sequences through LLM reasoning and structural verification.
|
|
66
|
+
- Agentic evolutional discovery for antibody design.
|
|
67
|
+
|
|
68
|
+
> [!NOTE]
|
|
69
|
+
> OpenDDE Harness is an early preview, and you may encounter bugs. If something
|
|
70
|
+
> goes wrong, please [open an issue](https://github.com/aurekaresearch/OpenDDE-Harness/issues)
|
|
71
|
+
> with steps to reproduce it and your `ddeharness doctor --json` output.
|
|
72
|
+
> Your feedback helps us fix problems and improve the tool together.
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
## News
|
|
76
|
+
|
|
77
|
+
- **2026-09-09: Introducing OpenDDE Harness (preview) for agentic antibody design! Read the [technical report](docs/assets/OpenDDE_harness_tech_report.pdf).**
|
|
78
|
+
- Design VHH, scFv, and paired VH/VL binders with LLM-guided sequence optimization and OpenDDE structure prediction.
|
|
79
|
+
- Get started with the [installation guide](docs/installation.md), [onboarding](docs/onboarding.md), and [design examples](docs/examples/).
|
|
80
|
+
- Inspect candidate sequences, structures, and design progress in the [tracing dashboard](docs/tracing-board.md).
|
|
81
|
+
|
|
82
|
+
See the [changelog](CHANGELOG.md) for release details.
|
|
83
|
+
|
|
84
|
+
## Installation
|
|
85
|
+
|
|
86
|
+
Use a Linux or macOS client with Python 3.12 or newer. Native Windows is not
|
|
87
|
+
currently supported. Use
|
|
88
|
+
[`uv`](https://docs.astral.sh/uv/getting-started/installation/) to install the
|
|
89
|
+
`opendde-harness` package and its `ddeharness` command in an isolated environment.
|
|
90
|
+
Choose one of the following methods; no environment activation is needed.
|
|
91
|
+
|
|
92
|
+
### Install from PyPI
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
uv tool install --python 3.12 opendde-harness
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
The release wheel includes the built terminal UI.
|
|
99
|
+
|
|
100
|
+
To update a PyPI installation, close the TUI and run:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
uv tool upgrade opendde-harness
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Install from source
|
|
107
|
+
|
|
108
|
+
Install Git, uv, and Node.js 22 or newer with npm, then run:
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
git clone https://github.com/aurekaresearch/OpenDDE-Harness.git
|
|
112
|
+
cd OpenDDE-Harness
|
|
113
|
+
uv tool install --python 3.12 .
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
The package build compiles and includes the terminal UI automatically. To update,
|
|
117
|
+
close the TUI, preserve any local edits, and run from the checkout:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
git pull --ff-only
|
|
121
|
+
uv tool install --python 3.12 --reinstall .
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### After installation
|
|
125
|
+
|
|
126
|
+
After either installation, verify the client:
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
ddeharness --version
|
|
130
|
+
ddeharness --help
|
|
131
|
+
ddeharness tui --check
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
If the command is not found, run `uv tool update-shell` and open a new terminal.
|
|
135
|
+
Updates preserve configuration, results, and model data. Running compute
|
|
136
|
+
containers keep their current code until they exit; later starts use the updated
|
|
137
|
+
code. See the [installation guide](docs/installation.md) for runtime overrides,
|
|
138
|
+
compute environments, and model download options.
|
|
139
|
+
|
|
140
|
+
### Uninstall
|
|
141
|
+
|
|
142
|
+
Close the TUI and remove the client with:
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
uv tool uninstall opendde-harness
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Configuration, results, model data, and compute services are retained.
|
|
149
|
+
|
|
150
|
+
## Quick Start
|
|
151
|
+
|
|
152
|
+
### 1. Configure the client and compute
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
ddeharness onboard
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
Follow the wizard to configure your LLM provider, optional memory, and a local
|
|
159
|
+
Docker environment or existing Linux compute service. Choose API or local OpenDDE
|
|
160
|
+
folding; both use the Harness compute service.
|
|
161
|
+
|
|
162
|
+
Local compute requires Linux x86-64 and Docker; CUDA also requires NVIDIA drivers
|
|
163
|
+
and NVIDIA Container Toolkit. See [onboarding](docs/onboarding.md) for setup and
|
|
164
|
+
model preparation details.
|
|
165
|
+
|
|
166
|
+
After setup, check your configuration, memory service, and compute readiness:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
ddeharness doctor
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Use `ddeharness doctor --probe` to send a test message to your LLM, or
|
|
173
|
+
`ddeharness doctor --compute-only` to check just the compute service. When
|
|
174
|
+
reporting a problem, include `ddeharness doctor --json` output and your command
|
|
175
|
+
or design request. See [troubleshooting](docs/troubleshooting.md) for common issues.
|
|
176
|
+
|
|
177
|
+
### 2. Start a design
|
|
178
|
+
|
|
179
|
+
Launch the terminal UI:
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
ddeharness
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
Then describe your task:
|
|
186
|
+
|
|
187
|
+
> Design a VHH against human CRLF2. Verify the target and epitope, keep the framework fixed, and design CDRs. Show the plan and start only after I confirm.
|
|
188
|
+
|
|
189
|
+
CLI-based design workflows are also supported. See the [CLI usage guide](docs/cli.md).
|
|
190
|
+
|
|
191
|
+
### 3. Inspect results
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
ddeharness tracing
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
Open the printed URL and select **Protein design** to inspect sequences, structures, metrics and agent activity.
|
|
198
|
+
|
|
199
|
+

|
|
200
|
+
|
|
201
|
+

|
|
202
|
+
|
|
203
|
+
Started design tasks run in background processes and continue after the TUI
|
|
204
|
+
closes while the client host remains running. Task state and worker logs default
|
|
205
|
+
to `~/.opendde_harness/protein_design/<task_id>/`; set
|
|
206
|
+
`OPENDDE_HARNESS_PROTEIN_DESIGN_ROOT` to change the task root. With remote compute,
|
|
207
|
+
original structure files are stored on the compute host, and the dashboard uses
|
|
208
|
+
structures captured in the client's tracing data. See the [dashboard guide](docs/tracing-board.md).
|
|
209
|
+
|
|
210
|
+
## Development & License
|
|
211
|
+
|
|
212
|
+
See the [repository rules](AGENTS.md) and [compute image build instructions](docker/README.md). Ordinary users consume a prebuilt image; Dockerfiles remain available for publishers and customization. Licensed under [Apache-2.0](LICENSE); see [third-party notices](LICENSES/README.md). TUI and memory foundations are adapted from Raven, and long-term memory is served by EverOS. Models may have separate terms. Computational results require experimental validation. Model calls and compute may incur costs.
|
|
213
|
+
|
|
214
|
+
## Citation and Acknowledgements
|
|
215
|
+
|
|
216
|
+
If you use OpenDDE Harness in your work, please cite this software and the technical report linked above. When using OpenDDE for structure prediction, also cite the [OpenDDE technical report](https://arxiv.org/abs/2607.03787) and follow its citation and acknowledgement guidance. Cite the original methods for other models and tools used in your experiments, including SolubleMPNN and ESM2 when applicable.
|
|
217
|
+
|
|
218
|
+
We acknowledge Raven, EverOS, and the upstream projects listed in the [third-party notices](LICENSES/README.md). Their software and model licenses continue to apply.
|
|
219
|
+
|
|
220
|
+
## Partnership and Collaboration
|
|
221
|
+
|
|
222
|
+

|