awdk 3.6.0__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.
- awdk-3.6.0/.audit-tmp/wheelout/aither_adk-2.22.0-py3-none-any.whl +0 -0
- awdk-3.6.0/.dockerignore +20 -0
- awdk-3.6.0/.env.example +61 -0
- awdk-3.6.0/.github/workflows/docker-publish.yml +61 -0
- awdk-3.6.0/.github/workflows/pypi-publish.yml +57 -0
- awdk-3.6.0/.github/workflows/release-shell-cli.yml +238 -0
- awdk-3.6.0/.gitignore +14 -0
- awdk-3.6.0/CHANGELOG.md +1902 -0
- awdk-3.6.0/Dockerfile +39 -0
- awdk-3.6.0/LICENSE +81 -0
- awdk-3.6.0/PKG-INFO +1113 -0
- awdk-3.6.0/PRIVATE_COMPANION.md +255 -0
- awdk-3.6.0/QUICKSTART_SELF_HOSTED.md +96 -0
- awdk-3.6.0/README.md +890 -0
- awdk-3.6.0/adk/AGENT_PROMPT.md +236 -0
- awdk-3.6.0/adk/LANDMARK_MAP_INTEGRATION.md +286 -0
- awdk-3.6.0/adk/__init__.py +464 -0
- awdk-3.6.0/adk/__main__.py +10 -0
- awdk-3.6.0/adk/_tls.py +96 -0
- awdk-3.6.0/adk/a2a.py +819 -0
- awdk-3.6.0/adk/a2a_adapter.py +408 -0
- awdk-3.6.0/adk/a2a_client.py +498 -0
- awdk-3.6.0/adk/a2a_dispatch.py +323 -0
- awdk-3.6.0/adk/a2a_identity.py +141 -0
- awdk-3.6.0/adk/a2a_trust.py +323 -0
- awdk-3.6.0/adk/acp.py +963 -0
- awdk-3.6.0/adk/acp_common.py +385 -0
- awdk-3.6.0/adk/acp_server.py +833 -0
- awdk-3.6.0/adk/addon_compose.py +314 -0
- awdk-3.6.0/adk/addon_docker.py +149 -0
- awdk-3.6.0/adk/addon_manager.py +468 -0
- awdk-3.6.0/adk/addon_quadlet.py +203 -0
- awdk-3.6.0/adk/admin_api.py +1113 -0
- awdk-3.6.0/adk/admin_factory.py +149 -0
- awdk-3.6.0/adk/aeon.py +482 -0
- awdk-3.6.0/adk/agent.py +3052 -0
- awdk-3.6.0/adk/agent_daemon.py +370 -0
- awdk-3.6.0/adk/agent_pack.py +487 -0
- awdk-3.6.0/adk/agent_prompt.py +41 -0
- awdk-3.6.0/adk/agent_registry.py +193 -0
- awdk-3.6.0/adk/agentdoc/NOTICE +19 -0
- awdk-3.6.0/adk/agentdoc/__init__.py +185 -0
- awdk-3.6.0/adk/agentdoc/_discover.py +361 -0
- awdk-3.6.0/adk/agentdoc/_docs.py +270 -0
- awdk-3.6.0/adk/agentdoc/_info.py +70 -0
- awdk-3.6.0/adk/agentdoc/_metadata.py +63 -0
- awdk-3.6.0/adk/agentdoc/_pformat.py +1977 -0
- awdk-3.6.0/adk/agentdoc/_structured.py +1685 -0
- awdk-3.6.0/adk/agentdoc/_truncating_stream.py +261 -0
- awdk-3.6.0/adk/agentdoc/_visibility.py +304 -0
- awdk-3.6.0/adk/agentdoc/core.py +478 -0
- awdk-3.6.0/adk/agentdoc/doc_config.py +38 -0
- awdk-3.6.0/adk/agentdoc/ext.py +88 -0
- awdk-3.6.0/adk/agentdoc/format.py +60 -0
- awdk-3.6.0/adk/agentdoc/introspect.py +31 -0
- awdk-3.6.0/adk/agentdoc/protocols.py +107 -0
- awdk-3.6.0/adk/agentdoc/registry.py +192 -0
- awdk-3.6.0/adk/agentdoc/tests/test_builtins_structured_instance.py +88 -0
- awdk-3.6.0/adk/agentdoc/tests/test_event_max_string_override.py +88 -0
- awdk-3.6.0/adk/agentdoc/visibility.py +41 -0
- awdk-3.6.0/adk/aither_bridge.py +506 -0
- awdk-3.6.0/adk/aither_events_generated.py +214 -0
- awdk-3.6.0/adk/ambient.py +326 -0
- awdk-3.6.0/adk/app_proxy_tools.py +182 -0
- awdk-3.6.0/adk/approval.py +146 -0
- awdk-3.6.0/adk/artifacts.py +142 -0
- awdk-3.6.0/adk/auth.py +649 -0
- awdk-3.6.0/adk/authmd/__init__.py +46 -0
- awdk-3.6.0/adk/authmd/client.py +596 -0
- awdk-3.6.0/adk/authmd/consent.py +224 -0
- awdk-3.6.0/adk/authmd/store.py +228 -0
- awdk-3.6.0/adk/bootstrap/__init__.py +12 -0
- awdk-3.6.0/adk/bootstrap/generic_agent.py +172 -0
- awdk-3.6.0/adk/bootstrap_cli.py +214 -0
- awdk-3.6.0/adk/bugreport.py +194 -0
- awdk-3.6.0/adk/builtin_tools.py +2329 -0
- awdk-3.6.0/adk/builtin_tools_voice.py +222 -0
- awdk-3.6.0/adk/channel_auth.py +63 -0
- awdk-3.6.0/adk/channels.py +401 -0
- awdk-3.6.0/adk/chat.py +1635 -0
- awdk-3.6.0/adk/chronicle.py +386 -0
- awdk-3.6.0/adk/claude_account_usage.py +398 -0
- awdk-3.6.0/adk/claude_accounts.py +650 -0
- awdk-3.6.0/adk/claude_model.py +392 -0
- awdk-3.6.0/adk/claude_runner.py +1997 -0
- awdk-3.6.0/adk/cli.py +14963 -0
- awdk-3.6.0/adk/client/__init__.py +65 -0
- awdk-3.6.0/adk/client/_base.py +53 -0
- awdk-3.6.0/adk/client/_client.py +609 -0
- awdk-3.6.0/adk/client/_gateway.py +178 -0
- awdk-3.6.0/adk/client/_gateway_mcp.py +380 -0
- awdk-3.6.0/adk/client/_models.py +100 -0
- awdk-3.6.0/adk/client/services/__init__.py +21 -0
- awdk-3.6.0/adk/client/services/a2a.py +74 -0
- awdk-3.6.0/adk/client/services/capabilities.py +80 -0
- awdk-3.6.0/adk/client/services/context.py +76 -0
- awdk-3.6.0/adk/client/services/conversations.py +80 -0
- awdk-3.6.0/adk/client/services/data_plane.py +60 -0
- awdk-3.6.0/adk/client/services/expeditions.py +58 -0
- awdk-3.6.0/adk/client/services/strata.py +66 -0
- awdk-3.6.0/adk/client/services/voice.py +32 -0
- awdk-3.6.0/adk/code_locator.py +229 -0
- awdk-3.6.0/adk/coherence.py +169 -0
- awdk-3.6.0/adk/commands/approvals.py +172 -0
- awdk-3.6.0/adk/commands/join.py +432 -0
- awdk-3.6.0/adk/commands/wm.py +299 -0
- awdk-3.6.0/adk/compliance/__init__.py +30 -0
- awdk-3.6.0/adk/compliance/air_gap.py +373 -0
- awdk-3.6.0/adk/compliance/attestation.py +273 -0
- awdk-3.6.0/adk/compliance/model_licenses.py +161 -0
- awdk-3.6.0/adk/compliance/pdf_report.py +205 -0
- awdk-3.6.0/adk/compression.py +109 -0
- awdk-3.6.0/adk/config.py +609 -0
- awdk-3.6.0/adk/connect/__init__.py +65 -0
- awdk-3.6.0/adk/connect/templates/deer_flow.yaml.tmpl +21 -0
- awdk-3.6.0/adk/connect/templates/hermes.yaml.tmpl +22 -0
- awdk-3.6.0/adk/connect/templates/nooa.yaml.tmpl +16 -0
- awdk-3.6.0/adk/connect/templates/openclaw.yaml.tmpl +17 -0
- awdk-3.6.0/adk/context.py +200 -0
- awdk-3.6.0/adk/context_budget.py +612 -0
- awdk-3.6.0/adk/conversations.py +643 -0
- awdk-3.6.0/adk/core/VALIDATOR_NOTICE +28 -0
- awdk-3.6.0/adk/core/__init__.py +156 -0
- awdk-3.6.0/adk/core/agent.py +605 -0
- awdk-3.6.0/adk/core/backends/__init__.py +25 -0
- awdk-3.6.0/adk/core/backends/anthropic.py +142 -0
- awdk-3.6.0/adk/core/backends/ollama.py +88 -0
- awdk-3.6.0/adk/core/backends/openai_compat.py +146 -0
- awdk-3.6.0/adk/core/capability.py +137 -0
- awdk-3.6.0/adk/core/cell_executors.py +207 -0
- awdk-3.6.0/adk/core/codeact.py +667 -0
- awdk-3.6.0/adk/core/loader.py +239 -0
- awdk-3.6.0/adk/core/logging.py +72 -0
- awdk-3.6.0/adk/core/mcp.py +179 -0
- awdk-3.6.0/adk/core/memory.py +88 -0
- awdk-3.6.0/adk/core/model.py +184 -0
- awdk-3.6.0/adk/core/oo.py +415 -0
- awdk-3.6.0/adk/core/otel.py +188 -0
- awdk-3.6.0/adk/core/persistence.py +124 -0
- awdk-3.6.0/adk/core/sandbox.py +229 -0
- awdk-3.6.0/adk/core/scaffold.py +282 -0
- awdk-3.6.0/adk/core/secrets.py +263 -0
- awdk-3.6.0/adk/core/server.py +191 -0
- awdk-3.6.0/adk/core/spawn.py +149 -0
- awdk-3.6.0/adk/core/tool.py +186 -0
- awdk-3.6.0/adk/core/trace.py +123 -0
- awdk-3.6.0/adk/core/typed_memory.py +634 -0
- awdk-3.6.0/adk/core/validator.py +295 -0
- awdk-3.6.0/adk/core/vector_memory.py +274 -0
- awdk-3.6.0/adk/cron.py +305 -0
- awdk-3.6.0/adk/daemon_endpoint.py +145 -0
- awdk-3.6.0/adk/data/model_licenses.yaml +144 -0
- awdk-3.6.0/adk/data/packs_catalog.json +1093 -0
- awdk-3.6.0/adk/decisions/__init__.py +55 -0
- awdk-3.6.0/adk/decisions/agent_tools.py +449 -0
- awdk-3.6.0/adk/decisions/channels.py +567 -0
- awdk-3.6.0/adk/decisions/cli.py +699 -0
- awdk-3.6.0/adk/decisions/context.py +499 -0
- awdk-3.6.0/adk/decisions/notify.py +372 -0
- awdk-3.6.0/adk/decisions/popup.py +1707 -0
- awdk-3.6.0/adk/decisions/render.py +301 -0
- awdk-3.6.0/adk/decisions/steerback.py +217 -0
- awdk-3.6.0/adk/decisions/store.py +800 -0
- awdk-3.6.0/adk/decisions/terminal.py +518 -0
- awdk-3.6.0/adk/decisions/winproc.py +363 -0
- awdk-3.6.0/adk/deploy.py +3753 -0
- awdk-3.6.0/adk/dispatch.py +447 -0
- awdk-3.6.0/adk/doc.py +413 -0
- awdk-3.6.0/adk/doctor.py +449 -0
- awdk-3.6.0/adk/ellipsis.py +167 -0
- awdk-3.6.0/adk/elysium.py +544 -0
- awdk-3.6.0/adk/elysium_connect.py +377 -0
- awdk-3.6.0/adk/embeddings.py +561 -0
- awdk-3.6.0/adk/enrollment.py +316 -0
- awdk-3.6.0/adk/evalharness/__init__.py +47 -0
- awdk-3.6.0/adk/evalharness/classify.py +139 -0
- awdk-3.6.0/adk/evalharness/cli.py +372 -0
- awdk-3.6.0/adk/evalharness/enumerate.py +140 -0
- awdk-3.6.0/adk/evalharness/invoke.py +175 -0
- awdk-3.6.0/adk/evalharness/report.py +252 -0
- awdk-3.6.0/adk/events.py +191 -0
- awdk-3.6.0/adk/faculties/__init__.py +44 -0
- awdk-3.6.0/adk/faculties/base.py +276 -0
- awdk-3.6.0/adk/faculties/code_graph.py +193 -0
- awdk-3.6.0/adk/faculties/embeddings.py +252 -0
- awdk-3.6.0/adk/federation.py +767 -0
- awdk-3.6.0/adk/federation_lite.py +254 -0
- awdk-3.6.0/adk/fleet.py +212 -0
- awdk-3.6.0/adk/fleet_enroll.py +695 -0
- awdk-3.6.0/adk/fleet_manager.py +534 -0
- awdk-3.6.0/adk/forge.py +354 -0
- awdk-3.6.0/adk/forkd_client.py +378 -0
- awdk-3.6.0/adk/gate.py +310 -0
- awdk-3.6.0/adk/gateway_process.py +136 -0
- awdk-3.6.0/adk/graph_memory.py +2340 -0
- awdk-3.6.0/adk/graph_rag/README.md +194 -0
- awdk-3.6.0/adk/graph_rag/__init__.py +116 -0
- awdk-3.6.0/adk/graph_rag/activation_scoring.py +455 -0
- awdk-3.6.0/adk/graph_rag/bounded_retriever.py +145 -0
- awdk-3.6.0/adk/graph_rag/config.py +85 -0
- awdk-3.6.0/adk/graph_rag/corpus_loader.py +66 -0
- awdk-3.6.0/adk/graph_rag/governance.py +444 -0
- awdk-3.6.0/adk/graph_rag/graph_builder.py +135 -0
- awdk-3.6.0/adk/graph_rag/graph_store.py +104 -0
- awdk-3.6.0/adk/graph_rag/parsers/__init__.py +72 -0
- awdk-3.6.0/adk/graph_rag/parsers/markdown_parser.py +178 -0
- awdk-3.6.0/adk/graph_rag/parsers/sql_parser.py +125 -0
- awdk-3.6.0/adk/graph_rag/parsers/symbol_extractor.py +44 -0
- awdk-3.6.0/adk/graph_rag/parsers/typescript_parser.py +66 -0
- awdk-3.6.0/adk/graph_retriever.py +230 -0
- awdk-3.6.0/adk/grounding.py +120 -0
- awdk-3.6.0/adk/hardware_probe.py +249 -0
- awdk-3.6.0/adk/harness.py +322 -0
- awdk-3.6.0/adk/harnesses/__init__.py +41 -0
- awdk-3.6.0/adk/harnesses/adapters.py +208 -0
- awdk-3.6.0/adk/harnesses/agents.py +405 -0
- awdk-3.6.0/adk/harnesses/cli.py +268 -0
- awdk-3.6.0/adk/harnesses/daemon.py +1288 -0
- awdk-3.6.0/adk/harnesses/discovery.py +283 -0
- awdk-3.6.0/adk/harnesses/events.py +143 -0
- awdk-3.6.0/adk/harnesses/fs.py +198 -0
- awdk-3.6.0/adk/harnesses/manager.py +193 -0
- awdk-3.6.0/adk/harnesses/models.py +249 -0
- awdk-3.6.0/adk/harnesses/pty_session.py +335 -0
- awdk-3.6.0/adk/harnesses/registry.py +382 -0
- awdk-3.6.0/adk/harnesses/rooms.py +392 -0
- awdk-3.6.0/adk/harnesses/sandbox.py +155 -0
- awdk-3.6.0/adk/harnesses/session.py +623 -0
- awdk-3.6.0/adk/harnesses/session_directory.py +403 -0
- awdk-3.6.0/adk/harnesses/spool.py +189 -0
- awdk-3.6.0/adk/harnesses/transcript_bridge.py +292 -0
- awdk-3.6.0/adk/harnesses/well.py +540 -0
- awdk-3.6.0/adk/harnesses/wrap.py +343 -0
- awdk-3.6.0/adk/identities/aither.yaml +53 -0
- awdk-3.6.0/adk/identity.py +570 -0
- awdk-3.6.0/adk/importers/__init__.py +10 -0
- awdk-3.6.0/adk/importers/eve.py +431 -0
- awdk-3.6.0/adk/ingest.py +564 -0
- awdk-3.6.0/adk/intent.py +241 -0
- awdk-3.6.0/adk/kimi_coordinator.py +361 -0
- awdk-3.6.0/adk/license_startup.py +120 -0
- awdk-3.6.0/adk/licensing.py +424 -0
- awdk-3.6.0/adk/llamacpp_setup.py +1014 -0
- awdk-3.6.0/adk/llm/__init__.py +1406 -0
- awdk-3.6.0/adk/llm/acp_provider.py +213 -0
- awdk-3.6.0/adk/llm/advisor.py +192 -0
- awdk-3.6.0/adk/llm/anthropic.py +564 -0
- awdk-3.6.0/adk/llm/base.py +517 -0
- awdk-3.6.0/adk/llm/batch_runner.py +139 -0
- awdk-3.6.0/adk/llm/cache.py +271 -0
- awdk-3.6.0/adk/llm/continuation.py +170 -0
- awdk-3.6.0/adk/llm/gemini.py +364 -0
- awdk-3.6.0/adk/llm/multimodal.py +81 -0
- awdk-3.6.0/adk/llm/ollama.py +209 -0
- awdk-3.6.0/adk/llm/onboarding.py +236 -0
- awdk-3.6.0/adk/llm/openai_compat.py +584 -0
- awdk-3.6.0/adk/llm/picolm.py +242 -0
- awdk-3.6.0/adk/llmfit.py +764 -0
- awdk-3.6.0/adk/local_backends.py +137 -0
- awdk-3.6.0/adk/local_jobs.py +424 -0
- awdk-3.6.0/adk/loop_guard.py +312 -0
- awdk-3.6.0/adk/managed_identity.py +520 -0
- awdk-3.6.0/adk/mcp.py +773 -0
- awdk-3.6.0/adk/mcp_endpoint_tools.py +149 -0
- awdk-3.6.0/adk/mcp_server.py +324 -0
- awdk-3.6.0/adk/mcp_setup.py +348 -0
- awdk-3.6.0/adk/mcp_stdio.py +164 -0
- awdk-3.6.0/adk/memory.py +653 -0
- awdk-3.6.0/adk/memory_wiki.py +860 -0
- awdk-3.6.0/adk/mesh.py +574 -0
- awdk-3.6.0/adk/mesh_discovery.py +262 -0
- awdk-3.6.0/adk/mesh_provider.py +873 -0
- awdk-3.6.0/adk/mesh_serve.py +313 -0
- awdk-3.6.0/adk/metering.py +447 -0
- awdk-3.6.0/adk/metrics.py +288 -0
- awdk-3.6.0/adk/microscheduler_heartbeat.py +272 -0
- awdk-3.6.0/adk/model_capabilities.py +346 -0
- awdk-3.6.0/adk/neurons.py +509 -0
- awdk-3.6.0/adk/node/__init__.py +16 -0
- awdk-3.6.0/adk/node/local_tools.py +445 -0
- awdk-3.6.0/adk/node/server.py +344 -0
- awdk-3.6.0/adk/node_pairing.py +117 -0
- awdk-3.6.0/adk/notebook_tools.py +268 -0
- awdk-3.6.0/adk/object_registry.py +313 -0
- awdk-3.6.0/adk/ods/.gitattributes +14 -0
- awdk-3.6.0/adk/ods/LICENSE.apache2.txt +86 -0
- awdk-3.6.0/adk/ods/NOTICE +137 -0
- awdk-3.6.0/adk/ods/README.md +519 -0
- awdk-3.6.0/adk/ods/__init__.py +84 -0
- awdk-3.6.0/adk/ods/_upstream_classify.sh +241 -0
- awdk-3.6.0/adk/ods/_upstream_select.py +562 -0
- awdk-3.6.0/adk/ods/adk_integration.md +461 -0
- awdk-3.6.0/adk/ods/data.py +300 -0
- awdk-3.6.0/adk/ods/gpu-database.json +505 -0
- awdk-3.6.0/adk/ods/hardware-classes.json +246 -0
- awdk-3.6.0/adk/ods/hardware.py +371 -0
- awdk-3.6.0/adk/ods/model-library.json +1700 -0
- awdk-3.6.0/adk/ods/model_types.py +133 -0
- awdk-3.6.0/adk/ods/resolver.py +497 -0
- awdk-3.6.0/adk/ods/tests/__init__.py +1 -0
- awdk-3.6.0/adk/ods/tests/conftest.py +242 -0
- awdk-3.6.0/adk/ods/tests/test_classify_differential.py +188 -0
- awdk-3.6.0/adk/ods/tests/test_differential.py +97 -0
- awdk-3.6.0/adk/ods/tests/test_hardware_and_roles.py +334 -0
- awdk-3.6.0/adk/ods/tests/test_integration.py +491 -0
- awdk-3.6.0/adk/ods/tests/test_resolver.py +607 -0
- awdk-3.6.0/adk/ods/tools/__init__.py +1 -0
- awdk-3.6.0/adk/ods/tools/sweep_differential.py +194 -0
- awdk-3.6.0/adk/ods/tools/validate_catalog.py +348 -0
- awdk-3.6.0/adk/ollama_setup.py +272 -0
- awdk-3.6.0/adk/onboard_discord.py +283 -0
- awdk-3.6.0/adk/oo_bridge.py +146 -0
- awdk-3.6.0/adk/pack_credentials.py +433 -0
- awdk-3.6.0/adk/pack_discovery.py +334 -0
- awdk-3.6.0/adk/pack_drivers.py +535 -0
- awdk-3.6.0/adk/pack_registry.py +667 -0
- awdk-3.6.0/adk/pack_scope.py +79 -0
- awdk-3.6.0/adk/pack_verifier.py +147 -0
- awdk-3.6.0/adk/packs/__init__.py +12 -0
- awdk-3.6.0/adk/packs/activator.py +102 -0
- awdk-3.6.0/adk/packs/aither/brain_pack.yaml +82 -0
- awdk-3.6.0/adk/packs/aither/skills/coordination.md +28 -0
- awdk-3.6.0/adk/packs/aither/skills/memory-recall.md +85 -0
- awdk-3.6.0/adk/packs/analyst/agent.yaml +33 -0
- awdk-3.6.0/adk/packs/analyst/brain_pack.yaml +88 -0
- awdk-3.6.0/adk/packs/analyst/skills/anomaly-detection.md +60 -0
- awdk-3.6.0/adk/packs/analyst/skills/structured-inference.md +56 -0
- awdk-3.6.0/adk/packs/arc_world/__init__.py +27 -0
- awdk-3.6.0/adk/packs/arc_world/adapter.py +267 -0
- awdk-3.6.0/adk/packs/arc_world/measure_policy.py +215 -0
- awdk-3.6.0/adk/packs/arc_world/smart_policy.py +219 -0
- awdk-3.6.0/adk/packs/arc_world/test_smart_policy.py +178 -0
- awdk-3.6.0/adk/packs/claude-code/agent.yaml +31 -0
- awdk-3.6.0/adk/packs/claude-code/brain_pack.yaml +79 -0
- awdk-3.6.0/adk/packs/claude-code/skills/debugging.md +63 -0
- awdk-3.6.0/adk/packs/claude-code/skills/feature-development.md +66 -0
- awdk-3.6.0/adk/packs/code-discipline/tools/check_checker_hygiene.py +941 -0
- awdk-3.6.0/adk/packs/code-discipline/tools/next_debt_id.py +262 -0
- awdk-3.6.0/adk/packs/deepseek_coder/NOTICE +46 -0
- awdk-3.6.0/adk/packs/deepseek_coder/__init__.py +311 -0
- awdk-3.6.0/adk/packs/deepseek_coder/formats.py +347 -0
- awdk-3.6.0/adk/packs/hermes/agent.yaml +32 -0
- awdk-3.6.0/adk/packs/hermes/brain_pack.yaml +79 -0
- awdk-3.6.0/adk/packs/hermes/skills/architecture-review.md +47 -0
- awdk-3.6.0/adk/packs/hermes/skills/trade-off-analysis.md +49 -0
- awdk-3.6.0/adk/packs/iris/brain_pack.yaml +88 -0
- awdk-3.6.0/adk/packs/iris/skills/character-consistency.md +89 -0
- awdk-3.6.0/adk/packs/iris/skills/deploy-image-gen.md +122 -0
- awdk-3.6.0/adk/packs/iris/skills/image-generation.md +89 -0
- awdk-3.6.0/adk/packs/omp_interop/NOTICE +23 -0
- awdk-3.6.0/adk/packs/omp_interop/__init__.py +270 -0
- awdk-3.6.0/adk/packs/omp_thinking/NOTICE +28 -0
- awdk-3.6.0/adk/packs/omp_thinking/__init__.py +264 -0
- awdk-3.6.0/adk/packs/openclaw/agent.yaml +30 -0
- awdk-3.6.0/adk/packs/openclaw/brain_pack.yaml +99 -0
- awdk-3.6.0/adk/packs/openclaw/skills/source-verification.md +48 -0
- awdk-3.6.0/adk/packs/openclaw/skills/web-research.md +45 -0
- awdk-3.6.0/adk/packs/world_model/.toolpack.yaml +40 -0
- awdk-3.6.0/adk/packs/world_model/__init__.py +65 -0
- awdk-3.6.0/adk/packs/world_model/env_enroll.py +178 -0
- awdk-3.6.0/adk/packs/world_model/safe_explore.py +286 -0
- awdk-3.6.0/adk/packs/world_model/tools.py +490 -0
- awdk-3.6.0/adk/pairing.py +435 -0
- awdk-3.6.0/adk/persona.py +192 -0
- awdk-3.6.0/adk/portal.py +290 -0
- awdk-3.6.0/adk/ports.py +90 -0
- awdk-3.6.0/adk/preflight/__init__.py +193 -0
- awdk-3.6.0/adk/preflight/policy.py +55 -0
- awdk-3.6.0/adk/preflight/probe.py +496 -0
- awdk-3.6.0/adk/preflight/report.py +185 -0
- awdk-3.6.0/adk/private_companion.py +713 -0
- awdk-3.6.0/adk/process_supervisor.py +378 -0
- awdk-3.6.0/adk/prompts/__init__.py +13 -0
- awdk-3.6.0/adk/prompts/bridge.py +125 -0
- awdk-3.6.0/adk/proton_setup.py +189 -0
- awdk-3.6.0/adk/pulse.py +294 -0
- awdk-3.6.0/adk/reasoning/__init__.py +69 -0
- awdk-3.6.0/adk/reasoning/cem.py +315 -0
- awdk-3.6.0/adk/reasoning/mcts/__init__.py +46 -0
- awdk-3.6.0/adk/reasoning/mcts/adapters/__init__.py +7 -0
- awdk-3.6.0/adk/reasoning/mcts/adapters/observed_transition.py +155 -0
- awdk-3.6.0/adk/reasoning/mcts/core.py +955 -0
- awdk-3.6.0/adk/reasoning/mcts/env.py +55 -0
- awdk-3.6.0/adk/reasoning/mcts/loop.py +145 -0
- awdk-3.6.0/adk/reasoning/mcts/models.py +70 -0
- awdk-3.6.0/adk/reasoning/planner.py +408 -0
- awdk-3.6.0/adk/reasoning/speculative.py +256 -0
- awdk-3.6.0/adk/reasoning/tiers.py +392 -0
- awdk-3.6.0/adk/reasoning_session.py +287 -0
- awdk-3.6.0/adk/registration.py +190 -0
- awdk-3.6.0/adk/registry.py +113 -0
- awdk-3.6.0/adk/relay.py +860 -0
- awdk-3.6.0/adk/relay_client.py +279 -0
- awdk-3.6.0/adk/responder.py +360 -0
- awdk-3.6.0/adk/room_launcher.py +377 -0
- awdk-3.6.0/adk/routines.py +514 -0
- awdk-3.6.0/adk/safety.py +351 -0
- awdk-3.6.0/adk/sandbox.py +451 -0
- awdk-3.6.0/adk/selfgraph/__init__.py +105 -0
- awdk-3.6.0/adk/selfgraph/cli.py +528 -0
- awdk-3.6.0/adk/selfgraph/drainer.py +282 -0
- awdk-3.6.0/adk/selfgraph/publisher.py +546 -0
- awdk-3.6.0/adk/selfgraph/recorder.py +976 -0
- awdk-3.6.0/adk/selfgraph/schema.py +332 -0
- awdk-3.6.0/adk/selfgraph/spool.py +612 -0
- awdk-3.6.0/adk/server.py +5327 -0
- awdk-3.6.0/adk/services.py +318 -0
- awdk-3.6.0/adk/setup.py +1096 -0
- awdk-3.6.0/adk/setup_cli.py +1818 -0
- awdk-3.6.0/adk/shell/__init__.py +77 -0
- awdk-3.6.0/adk/shell/__main__.py +3 -0
- awdk-3.6.0/adk/shell/_repo_roots.py +94 -0
- awdk-3.6.0/adk/shell/assistant.py +228 -0
- awdk-3.6.0/adk/shell/assistant_ext.py +224 -0
- awdk-3.6.0/adk/shell/auth.py +321 -0
- awdk-3.6.0/adk/shell/claude_ingest.py +295 -0
- awdk-3.6.0/adk/shell/claude_sessions.py +810 -0
- awdk-3.6.0/adk/shell/cli.py +5407 -0
- awdk-3.6.0/adk/shell/command_center/__init__.py +4 -0
- awdk-3.6.0/adk/shell/command_center/agents_console.py +210 -0
- awdk-3.6.0/adk/shell/command_center/brief.py +73 -0
- awdk-3.6.0/adk/shell/command_center/fleet_client.py +299 -0
- awdk-3.6.0/adk/shell/command_center/hq.py +322 -0
- awdk-3.6.0/adk/shell/command_center/inbox.py +230 -0
- awdk-3.6.0/adk/shell/command_center/palette.py +234 -0
- awdk-3.6.0/adk/shell/command_center/watchtower.py +117 -0
- awdk-3.6.0/adk/shell/commands.py +524 -0
- awdk-3.6.0/adk/shell/completions.py +109 -0
- awdk-3.6.0/adk/shell/config.py +263 -0
- awdk-3.6.0/adk/shell/crash_reporter.py +228 -0
- awdk-3.6.0/adk/shell/data/__init__.py +2 -0
- awdk-3.6.0/adk/shell/data/deploy_profiles.yaml +144 -0
- awdk-3.6.0/adk/shell/data/image_map.yaml +231 -0
- awdk-3.6.0/adk/shell/deployer.py +879 -0
- awdk-3.6.0/adk/shell/entitlement.py +498 -0
- awdk-3.6.0/adk/shell/events.py +554 -0
- awdk-3.6.0/adk/shell/genesis_client.py +412 -0
- awdk-3.6.0/adk/shell/gui_wizard.py +614 -0
- awdk-3.6.0/adk/shell/heartbeat.py +114 -0
- awdk-3.6.0/adk/shell/image_setup.py +372 -0
- awdk-3.6.0/adk/shell/llm_client.py +227 -0
- awdk-3.6.0/adk/shell/mcp_bridge.py +396 -0
- awdk-3.6.0/adk/shell/mcp_setup.py +349 -0
- awdk-3.6.0/adk/shell/metrics.py +419 -0
- awdk-3.6.0/adk/shell/node/__init__.py +16 -0
- awdk-3.6.0/adk/shell/node/local_tools.py +445 -0
- awdk-3.6.0/adk/shell/node/server.py +344 -0
- awdk-3.6.0/adk/shell/onboarding.py +766 -0
- awdk-3.6.0/adk/shell/output.py +70 -0
- awdk-3.6.0/adk/shell/plugins/__init__.py +220 -0
- awdk-3.6.0/adk/shell/plugins/builtins/__init__.py +1 -0
- awdk-3.6.0/adk/shell/plugins/builtins/addon.py +301 -0
- awdk-3.6.0/adk/shell/plugins/builtins/admin.py +351 -0
- awdk-3.6.0/adk/shell/plugins/builtins/agents.py +756 -0
- awdk-3.6.0/adk/shell/plugins/builtins/aitherzero.py +283 -0
- awdk-3.6.0/adk/shell/plugins/builtins/app.py +838 -0
- awdk-3.6.0/adk/shell/plugins/builtins/appforge.py +320 -0
- awdk-3.6.0/adk/shell/plugins/builtins/bundle.py +339 -0
- awdk-3.6.0/adk/shell/plugins/builtins/capture.py +249 -0
- awdk-3.6.0/adk/shell/plugins/builtins/cloud.py +416 -0
- awdk-3.6.0/adk/shell/plugins/builtins/commerce.py +356 -0
- awdk-3.6.0/adk/shell/plugins/builtins/companion.py +550 -0
- awdk-3.6.0/adk/shell/plugins/builtins/decisions.py +131 -0
- awdk-3.6.0/adk/shell/plugins/builtins/deploy.py +390 -0
- awdk-3.6.0/adk/shell/plugins/builtins/durability.py +143 -0
- awdk-3.6.0/adk/shell/plugins/builtins/enroll.py +143 -0
- awdk-3.6.0/adk/shell/plugins/builtins/escalation.py +199 -0
- awdk-3.6.0/adk/shell/plugins/builtins/expedition.py +418 -0
- awdk-3.6.0/adk/shell/plugins/builtins/finetune.py +201 -0
- awdk-3.6.0/adk/shell/plugins/builtins/gaming.py +231 -0
- awdk-3.6.0/adk/shell/plugins/builtins/github_app.py +373 -0
- awdk-3.6.0/adk/shell/plugins/builtins/graph.py +421 -0
- awdk-3.6.0/adk/shell/plugins/builtins/inference.py +557 -0
- awdk-3.6.0/adk/shell/plugins/builtins/knowledge.py +296 -0
- awdk-3.6.0/adk/shell/plugins/builtins/marketplace.py +311 -0
- awdk-3.6.0/adk/shell/plugins/builtins/mcp_workstation.py +159 -0
- awdk-3.6.0/adk/shell/plugins/builtins/onboard_flow.py +218 -0
- awdk-3.6.0/adk/shell/plugins/builtins/pack_customize.py +203 -0
- awdk-3.6.0/adk/shell/plugins/builtins/packs.py +909 -0
- awdk-3.6.0/adk/shell/plugins/builtins/project.py +652 -0
- awdk-3.6.0/adk/shell/plugins/builtins/quiesce.py +130 -0
- awdk-3.6.0/adk/shell/plugins/builtins/saga.py +1098 -0
- awdk-3.6.0/adk/shell/plugins/builtins/scope.py +433 -0
- awdk-3.6.0/adk/shell/plugins/builtins/secret.py +313 -0
- awdk-3.6.0/adk/shell/plugins/builtins/setup.py +909 -0
- awdk-3.6.0/adk/shell/plugins/builtins/sprite.py +304 -0
- awdk-3.6.0/adk/shell/plugins/builtins/storefront.py +198 -0
- awdk-3.6.0/adk/shell/plugins/builtins/sync.py +190 -0
- awdk-3.6.0/adk/shell/plugins/builtins/test_secret.py +70 -0
- awdk-3.6.0/adk/shell/plugins/builtins/tunnel.py +328 -0
- awdk-3.6.0/adk/shell/plugins/builtins/wiki.py +295 -0
- awdk-3.6.0/adk/shell/plugins.py +445 -0
- awdk-3.6.0/adk/shell/registry_auth.py +148 -0
- awdk-3.6.0/adk/shell/repl.py +596 -0
- awdk-3.6.0/adk/shell/script.py +280 -0
- awdk-3.6.0/adk/shell/session_browser.py +365 -0
- awdk-3.6.0/adk/shell/shell_integration.py +213 -0
- awdk-3.6.0/adk/shell/telemetry/__init__.py +1 -0
- awdk-3.6.0/adk/shell/telemetry/config.py +272 -0
- awdk-3.6.0/adk/shell/telemetry/examples.py +398 -0
- awdk-3.6.0/adk/shell/telemetry/test_telemetry.py +557 -0
- awdk-3.6.0/adk/shell/tui/__init__.py +1 -0
- awdk-3.6.0/adk/shell/tui/saga_writer.py +560 -0
- awdk-3.6.0/adk/shell/update_check.py +138 -0
- awdk-3.6.0/adk/shell/usage.py +106 -0
- awdk-3.6.0/adk/shell_launcher.py +529 -0
- awdk-3.6.0/adk/skills.py +365 -0
- awdk-3.6.0/adk/smtp.py +832 -0
- awdk-3.6.0/adk/stdio_compat.py +50 -0
- awdk-3.6.0/adk/steering.py +189 -0
- awdk-3.6.0/adk/strata.py +936 -0
- awdk-3.6.0/adk/supervisor.py +199 -0
- awdk-3.6.0/adk/sync/__init__.py +28 -0
- awdk-3.6.0/adk/sync/adk_sync_engine.py +384 -0
- awdk-3.6.0/adk/sync/brain.py +384 -0
- awdk-3.6.0/adk/sync/device_identity.py +107 -0
- awdk-3.6.0/adk/sync/drive_client.py +243 -0
- awdk-3.6.0/adk/sync/files.py +540 -0
- awdk-3.6.0/adk/sync/lockbox.py +510 -0
- awdk-3.6.0/adk/sync/secrets.py +301 -0
- awdk-3.6.0/adk/sync/sessions.py +599 -0
- awdk-3.6.0/adk/sync/settings.py +274 -0
- awdk-3.6.0/adk/sync/test_brain_sync.py +352 -0
- awdk-3.6.0/adk/sync/watermark.py +226 -0
- awdk-3.6.0/adk/templates/agent-package/agent.yaml +41 -0
- awdk-3.6.0/adk/templates/agent-package/identity.yaml +13 -0
- awdk-3.6.0/adk/templates/deep-research/.env.example +27 -0
- awdk-3.6.0/adk/templates/deep-research/engine/__init__.py +1 -0
- awdk-3.6.0/adk/templates/deep-research/engine/aithersearch.py +131 -0
- awdk-3.6.0/adk/templates/deep-research/engine/codex_oauth.py +119 -0
- awdk-3.6.0/adk/templates/deep-research/engine/ledger.py +214 -0
- awdk-3.6.0/adk/templates/deep-research/engine/tools.py +472 -0
- awdk-3.6.0/adk/templates/deep-research/pack/deep-research/agent.yaml +27 -0
- awdk-3.6.0/adk/templates/deep-research/pack/deep-research/brain_pack.yaml +105 -0
- awdk-3.6.0/adk/templates/deep-research/pack/deep-research/skills/deep-research.md +33 -0
- awdk-3.6.0/adk/templates/deep-research/pack/deep-research/skills/mirror-website.md +49 -0
- awdk-3.6.0/adk/templates/deep-research/pack/deep-research/skills/report-writing.md +29 -0
- awdk-3.6.0/adk/templates/deep-research/requirements.txt +21 -0
- awdk-3.6.0/adk/templates/deep-research/serve.py +485 -0
- awdk-3.6.0/adk/templates/deep-research/web/index.html +333 -0
- awdk-3.6.0/adk/templates/site-ingest/.env.example +27 -0
- awdk-3.6.0/adk/templates/site-ingest/README.md +276 -0
- awdk-3.6.0/adk/templates/site-ingest/engine/__init__.py +1 -0
- awdk-3.6.0/adk/templates/site-ingest/engine/tools.py +448 -0
- awdk-3.6.0/adk/templates/site-ingest/pack/site-ingest/agent.yaml +26 -0
- awdk-3.6.0/adk/templates/site-ingest/pack/site-ingest/brain_pack.yaml +139 -0
- awdk-3.6.0/adk/templates/site-ingest/pack/site-ingest/skills/site-ingest.md +75 -0
- awdk-3.6.0/adk/templates/site-ingest/requirements.txt +7 -0
- awdk-3.6.0/adk/templates/site-ingest/serve.py +486 -0
- awdk-3.6.0/adk/templates/site-ingest/tests/test_tools.py +170 -0
- awdk-3.6.0/adk/templates/site-ingest/web/index.html +65 -0
- awdk-3.6.0/adk/templates/sovereign/.env.example.j2 +40 -0
- awdk-3.6.0/adk/templates/sovereign/Caddyfile.j2 +6 -0
- awdk-3.6.0/adk/templates/sovereign/agent.yaml.j2 +49 -0
- awdk-3.6.0/adk/templates/sovereign/backend/Dockerfile.j2 +15 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/__init__.py +0 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/__init__.py +74 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/admin.py +142 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/bridge.py +197 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/client.py +209 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/consolidation.py +110 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/eviction.py +110 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/integration.py +116 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/migrations/0001_memory_tables.sql +48 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/pillars.py +294 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/reinforcement.py +156 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/store.py +354 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/tests/__init__.py +0 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/tests/conftest.py +41 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/tests/test_smoke.py +226 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_core/tiers.py +100 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/agent_memory.py.j2 +129 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/auth.py +41 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/brain_pack.py +155 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/config.py.j2 +133 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/database.py +24 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/main.py.j2 +187 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/models.py +109 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/packs/__init__.py +0 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/routers/__init__.py +0 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/routers/auth.py.j2 +64 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/routers/chat.py.j2 +187 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/routers/documents.py.j2 +134 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/routers/feedback.py +55 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/services/__init__.py +0 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/services/llm.py.j2 +184 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/services/portal_registration.py.j2 +173 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/services/rag.py.j2 +184 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/tools/__init__.py +0 -0
- awdk-3.6.0/adk/templates/sovereign/backend/app/tools/custom_tools.py.j2 +11 -0
- awdk-3.6.0/adk/templates/sovereign/backend/requirements.txt +18 -0
- awdk-3.6.0/adk/templates/sovereign/brain_pack.yaml.j2 +81 -0
- awdk-3.6.0/adk/templates/sovereign/docker-compose.aitheros.yml.j2 +26 -0
- awdk-3.6.0/adk/templates/sovereign/docker-compose.yml.j2 +100 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/index.html +12 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/package.json.j2 +22 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/App.tsx +93 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/components/ChatPanel.tsx +91 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/components/DocumentPanel.tsx +88 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/components/LoginPage.tsx +27 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/hooks/useAuth.ts +55 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/hooks/useConfig.ts +34 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/index.css +43 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/main.tsx +10 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/src/vite-env.d.ts +1 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/tsconfig.json +20 -0
- awdk-3.6.0/adk/templates/sovereign/frontend/vite.config.ts.j2 +15 -0
- awdk-3.6.0/adk/templates/sovereign/manifest.yaml.j2 +45 -0
- awdk-3.6.0/adk/tests/test_a2a_durability.py +223 -0
- awdk-3.6.0/adk/tests/test_a2a_trust.py +382 -0
- awdk-3.6.0/adk/tests/test_a2a_trust_registry.py +98 -0
- awdk-3.6.0/adk/tests/test_bonsai_local_backend.py +88 -0
- awdk-3.6.0/adk/tests/test_enrollment_cert.py +186 -0
- awdk-3.6.0/adk/tests/test_fleet_enroll_gateway_key.py +319 -0
- awdk-3.6.0/adk/tests/test_gateway_mcp_client.py +492 -0
- awdk-3.6.0/adk/tests/test_harness_daemon.py +219 -0
- awdk-3.6.0/adk/tests/test_harness_fs.py +144 -0
- awdk-3.6.0/adk/tests/test_harnesses.py +355 -0
- awdk-3.6.0/adk/tests/test_kimi_coordinator.py +391 -0
- awdk-3.6.0/adk/tests/test_mesh_cli.py +191 -0
- awdk-3.6.0/adk/tests/test_mesh_serve.py +239 -0
- awdk-3.6.0/adk/tests/test_planb_ledger.py +363 -0
- awdk-3.6.0/adk/tests/test_session_discovery.py +647 -0
- awdk-3.6.0/adk/tests/test_session_sync_pull.py +504 -0
- awdk-3.6.0/adk/tests/test_structured_ml_tools.py +178 -0
- awdk-3.6.0/adk/tests/test_sync_adk_engine.py +355 -0
- awdk-3.6.0/adk/tests/test_sync_device_identity.py +116 -0
- awdk-3.6.0/adk/tests/test_sync_drive_client.py +199 -0
- awdk-3.6.0/adk/tests/test_unsloth_gguf_download.py +361 -0
- awdk-3.6.0/adk/tests/test_unsloth_llamacpp_setup.py +339 -0
- awdk-3.6.0/adk/tool_guards.py +243 -0
- awdk-3.6.0/adk/tool_pack_loader.py +418 -0
- awdk-3.6.0/adk/tool_readiness.py +188 -0
- awdk-3.6.0/adk/toolpacks/acp/.toolpack.yaml +37 -0
- awdk-3.6.0/adk/toolpacks/acp/__init__.py +212 -0
- awdk-3.6.0/adk/toolpacks/acp/agents/awdk.yaml +23 -0
- awdk-3.6.0/adk/toolpacks/acp/agents/claude-agent-acp.yaml +20 -0
- awdk-3.6.0/adk/toolpacks/acp/agents/codex-acp.yaml +20 -0
- awdk-3.6.0/adk/toolpacks/acp/agents/gemini-cli.yaml +21 -0
- awdk-3.6.0/adk/toolpacks/acp/ui/index.html +77 -0
- awdk-3.6.0/adk/toolpacks/aitherbench/.toolpack.yaml +55 -0
- awdk-3.6.0/adk/toolpacks/aitherbench/bench.py +1128 -0
- awdk-3.6.0/adk/toolpacks/aitherzero/.toolpack.yaml +42 -0
- awdk-3.6.0/adk/toolpacks/aitherzero/__init__.py +52 -0
- awdk-3.6.0/adk/toolpacks/aitherzero/__main__.py +79 -0
- awdk-3.6.0/adk/toolpacks/aitherzero/tools.py +649 -0
- awdk-3.6.0/adk/toolpacks/arc-brainpack/.toolpack.yaml +60 -0
- awdk-3.6.0/adk/toolpacks/arc-brainpack/README.md +70 -0
- awdk-3.6.0/adk/toolpacks/arc-brainpack/__init__.py +64 -0
- awdk-3.6.0/adk/toolpacks/arc-brainpack/agent.yaml +72 -0
- awdk-3.6.0/adk/toolpacks/arc-brainpack/tools.py +622 -0
- awdk-3.6.0/adk/toolpacks/arc-brainpack/ui/index.html +146 -0
- awdk-3.6.0/adk/toolpacks/box-master/.toolpack.yaml +32 -0
- awdk-3.6.0/adk/toolpacks/box-master/__init__.py +56 -0
- awdk-3.6.0/adk/toolpacks/box-master/tools.py +394 -0
- awdk-3.6.0/adk/toolpacks/cloudflare/.toolpack.yaml +56 -0
- awdk-3.6.0/adk/toolpacks/cloudflare/__init__.py +58 -0
- awdk-3.6.0/adk/toolpacks/cloudflare/config.py +215 -0
- awdk-3.6.0/adk/toolpacks/cloudflare/tools.py +797 -0
- awdk-3.6.0/adk/toolpacks/deep_research/.toolpack.yaml +44 -0
- awdk-3.6.0/adk/toolpacks/deep_research/__init__.py +99 -0
- awdk-3.6.0/adk/toolpacks/deep_research/ui/index.html +157 -0
- awdk-3.6.0/adk/toolpacks/finetune/.toolpack.yaml +65 -0
- awdk-3.6.0/adk/toolpacks/github_runners/.toolpack.yaml +37 -0
- awdk-3.6.0/adk/toolpacks/github_runners/__init__.py +65 -0
- awdk-3.6.0/adk/toolpacks/github_runners/tools.py +272 -0
- awdk-3.6.0/adk/toolpacks/graphrag/.toolpack.yaml +35 -0
- awdk-3.6.0/adk/toolpacks/graphrag/__init__.py +46 -0
- awdk-3.6.0/adk/toolpacks/graphrag/__main__.py +69 -0
- awdk-3.6.0/adk/toolpacks/graphrag/recipes/coderank-embed.yaml +44 -0
- awdk-3.6.0/adk/toolpacks/graphrag/recipes/nomic-text-embed.yaml +48 -0
- awdk-3.6.0/adk/toolpacks/graphrag/recipes.py +49 -0
- awdk-3.6.0/adk/toolpacks/graphrag/tools.py +372 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/.toolpack.yaml +43 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/__init__.py +53 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/__main__.py +158 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/cloud-burst-vast.yaml +76 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/cpu-sdxl-turbo.yaml +75 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/cuda-bonsai-image.yaml +86 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/cuda-comfyui-12gb.yaml +71 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/cuda-comfyui-24gb.yaml +76 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/cuda-comfyui-6gb.yaml +64 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/cuda-sana-sprint.yaml +76 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes/metal-comfyui.yaml +68 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/recipes.py +286 -0
- awdk-3.6.0/adk/toolpacks/image_bootstrap/tools.py +871 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/.toolpack.yaml +36 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/__init__.py +48 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/__main__.py +87 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/quant.py +163 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/recipes/deepseek-r1-14b.yaml +46 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/recipes/gemma4-12b.yaml +50 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/recipes/nemotron-orchestrator-8b.yaml +55 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/recipes/qwen-27b-reason.yaml +74 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/recipes.py +89 -0
- awdk-3.6.0/adk/toolpacks/llm_serving/tools.py +430 -0
- awdk-3.6.0/adk/toolpacks/mesh_ops/.toolpack.yaml +35 -0
- awdk-3.6.0/adk/toolpacks/mesh_ops/__init__.py +54 -0
- awdk-3.6.0/adk/toolpacks/mesh_ops/tools.py +268 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/.toolpack.yaml +46 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/__init__.py +53 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/__main__.py +247 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/bonsai-selfhost.yaml +196 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/cloud-api.yaml +72 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/cpu-1bit-llamacpp.yaml +98 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/cpu-ollama.yaml +66 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/cuda-dual-stack-32gb.yaml +74 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/cuda-vllm-24gb.yaml +71 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/cuda-vllm-40gb.yaml +71 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/cuda-vllm-8gb.yaml +66 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/metal-ollama.yaml +71 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes/unified-memory-vllm.yaml +81 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/recipes.py +292 -0
- awdk-3.6.0/adk/toolpacks/node_bootstrap/tools.py +908 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/.toolpack.yaml +54 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/__init__.py +48 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/bootstrap.py +283 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/bot.py +223 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/brain.py +172 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/build_zip.py +36 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/cli.py +108 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/dist_kit/README.md +55 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/dist_kit/install.ps1 +109 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/dist_kit/install.sh +108 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/dist_kit/requirements.txt +2 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/engine.py +327 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/ledger.py +65 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/sheet.py +16 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/sheet_render.py +129 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/sync_vendored.py +81 -0
- awdk-3.6.0/adk/toolpacks/planb_ledger/tools.py +180 -0
- awdk-3.6.0/adk/toolpacks/selfimprove/selfimprove.py +378 -0
- awdk-3.6.0/adk/toolpacks/split_inference/.toolpack.yaml +37 -0
- awdk-3.6.0/adk/toolpacks/split_inference/__init__.py +47 -0
- awdk-3.6.0/adk/toolpacks/split_inference/__main__.py +103 -0
- awdk-3.6.0/adk/toolpacks/split_inference/recipes/bonsai-27b-5090-dgx-rpc.yaml +102 -0
- awdk-3.6.0/adk/toolpacks/split_inference/recipes/kimi-k3-mesh-rpc.yaml +104 -0
- awdk-3.6.0/adk/toolpacks/split_inference/recipes/multi-node-rpc-generic.yaml +85 -0
- awdk-3.6.0/adk/toolpacks/split_inference/recipes/single-node-cuda.yaml +73 -0
- awdk-3.6.0/adk/toolpacks/split_inference/recipes.py +181 -0
- awdk-3.6.0/adk/toolpacks/split_inference/tools.py +496 -0
- awdk-3.6.0/adk/toolpacks/vault/.toolpack.yaml +38 -0
- awdk-3.6.0/adk/toolpacks/vault/__init__.py +167 -0
- awdk-3.6.0/adk/toolpacks/vault/scope_map.json +3 -0
- awdk-3.6.0/adk/toolpacks/vault/ui/index.html +254 -0
- awdk-3.6.0/adk/tools.py +405 -0
- awdk-3.6.0/adk/tools_meta.py +157 -0
- awdk-3.6.0/adk/trace.py +101 -0
- awdk-3.6.0/adk/typed_memory.py +635 -0
- awdk-3.6.0/adk/unified_contract.py +659 -0
- awdk-3.6.0/adk/unsloth_gguf_download.py +285 -0
- awdk-3.6.0/adk/unsloth_llamacpp_setup.py +307 -0
- awdk-3.6.0/adk/vault_lockbox.py +789 -0
- awdk-3.6.0/adk/voice.py +602 -0
- awdk-3.6.0/adk/voice_agent.py +182 -0
- awdk-3.6.0/adk/voice_http.py +143 -0
- awdk-3.6.0/adk/watch.py +266 -0
- awdk-3.6.0/adk/webui/index.html +1679 -0
- awdk-3.6.0/adk/webui/pack_sdk.js +62 -0
- awdk-3.6.0/adk/webui/packs/aeon/index.html +267 -0
- awdk-3.6.0/adk/webui/packs/llamacpp/index.html +420 -0
- awdk-3.6.0/adk/webui/packs/mesh-console/index.html +330 -0
- awdk-3.6.0/adk/workspace-frontend/index.html +282 -0
- awdk-3.6.0/adk/worldmodel.py +716 -0
- awdk-3.6.0/adk-daemon-start.cmd +86 -0
- awdk-3.6.0/adk-daemon-start.ps1 +83 -0
- awdk-3.6.0/agent.yaml +55 -0
- awdk-3.6.0/aither.spec +39 -0
- awdk-3.6.0/deploy/compose/docker-compose.node-adk.yml +299 -0
- awdk-3.6.0/deploy/compose/docker-compose.node.yml +754 -0
- awdk-3.6.0/deploy/compose/docker-compose.relay.yml +139 -0
- awdk-3.6.0/dist_wheel/aither_adk-2.26.0-py3-none-any.whl +0 -0
- awdk-3.6.0/docker-compose.adk-vllm.yml +98 -0
- awdk-3.6.0/docs/.nojekyll +0 -0
- awdk-3.6.0/docs/AGENT_DEV_GUIDE.md +273 -0
- awdk-3.6.0/docs/AITHERRELAY_GUIDE.md +235 -0
- awdk-3.6.0/docs/DELEGATION_TEST_SPEC.md +430 -0
- awdk-3.6.0/docs/M5_FORKD_DESIGN.md +882 -0
- awdk-3.6.0/docs/PERSONA.md +216 -0
- awdk-3.6.0/docs/SELF_HOSTING_RUNBOOK.md +480 -0
- awdk-3.6.0/docs/WORLD_MODEL.md +319 -0
- awdk-3.6.0/docs/aither-constellation.js +249 -0
- awdk-3.6.0/docs/aither-manifest.json +22 -0
- awdk-3.6.0/docs/index.html +893 -0
- awdk-3.6.0/docs/providers/README.md +118 -0
- awdk-3.6.0/docs/providers/deepseek.md +54 -0
- awdk-3.6.0/docs/providers/kimi.md +135 -0
- awdk-3.6.0/docs/providers/local-aitheros.md +112 -0
- awdk-3.6.0/docs/providers/openai-compatible.md +79 -0
- awdk-3.6.0/editors/jetbrains-aither/README.md +47 -0
- awdk-3.6.0/editors/jetbrains-aither/build.gradle.kts +54 -0
- awdk-3.6.0/editors/jetbrains-aither/gradle.properties +3 -0
- awdk-3.6.0/editors/jetbrains-aither/settings.gradle.kts +8 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/kotlin/com/aitherium/ide/OpenAitherAction.kt +14 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/kotlin/com/aitherium/ide/a2a/A2aClient.kt +134 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/kotlin/com/aitherium/ide/a2a/Ed25519Public.kt +96 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/kotlin/com/aitherium/ide/acp/AcpClient.kt +208 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/kotlin/com/aitherium/ide/acp/AcpProtocol.kt +74 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/kotlin/com/aitherium/ide/ui/AitherToolWindowFactory.kt +15 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/kotlin/com/aitherium/ide/ui/ChatPanel.kt +225 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/resources/META-INF/plugin.xml +37 -0
- awdk-3.6.0/editors/jetbrains-aither/src/main/resources/icons/aither.svg +10 -0
- awdk-3.6.0/examples/a2a/README.md +71 -0
- awdk-3.6.0/examples/a2a/call_any_a2a_agent.py +56 -0
- awdk-3.6.0/examples/a2a/interop_selftest.py +63 -0
- awdk-3.6.0/examples/a2a/serve_standard_a2a.py +49 -0
- awdk-3.6.0/examples/a2a/sick_agent.py +79 -0
- awdk-3.6.0/examples/cloud_agent.py +30 -0
- awdk-3.6.0/examples/cloud_fleet.py +47 -0
- awdk-3.6.0/examples/cloud_server.py +50 -0
- awdk-3.6.0/examples/custom_tools.py +48 -0
- awdk-3.6.0/examples/federation_demo.py +366 -0
- awdk-3.6.0/examples/fleet/adk-test-agent/identity.yaml +29 -0
- awdk-3.6.0/examples/fleet/adk-test-agent/main.py +110 -0
- awdk-3.6.0/examples/full_lifecycle_test.py +273 -0
- awdk-3.6.0/examples/hello_agent.py +22 -0
- awdk-3.6.0/examples/multi_agent.py +40 -0
- awdk-3.6.0/examples/openai_agent.py +43 -0
- awdk-3.6.0/examples/openclaw_agent.py +62 -0
- awdk-3.6.0/examples/wildroot-bot/agent.yaml +27 -0
- awdk-3.6.0/examples/wildroot-bot/identity.yaml +24 -0
- awdk-3.6.0/examples/wildroot-bot/tools/check_inventory.py +39 -0
- awdk-3.6.0/examples/wildroot-bot/tools/search_products.py +59 -0
- awdk-3.6.0/install/install.ps1 +66 -0
- awdk-3.6.0/install/install.sh +55 -0
- awdk-3.6.0/install.ps1 +158 -0
- awdk-3.6.0/install.py +1143 -0
- awdk-3.6.0/install.sh +110 -0
- awdk-3.6.0/llms-full.txt +443 -0
- awdk-3.6.0/llms.txt +92 -0
- awdk-3.6.0/packaging/aither-adk-stub/README.md +28 -0
- awdk-3.6.0/packaging/aither-adk-stub/pyproject.toml +51 -0
- awdk-3.6.0/packaging/brew/awdk.rb +174 -0
- awdk-3.6.0/packaging/build_executable.py +129 -0
- awdk-3.6.0/packaging/github-release.yml +134 -0
- awdk-3.6.0/packaging/install.ps1 +61 -0
- awdk-3.6.0/packaging/install.sh +66 -0
- awdk-3.6.0/packaging/npm/bin/aither.js +86 -0
- awdk-3.6.0/packaging/npm/package.json +40 -0
- awdk-3.6.0/packaging/npm/scripts/postinstall.js +55 -0
- awdk-3.6.0/packaging/pyinstaller.spec +103 -0
- awdk-3.6.0/packaging/sync_versions.py +310 -0
- awdk-3.6.0/packaging/winget/Aitherium.AitherShell.installer.yaml +14 -0
- awdk-3.6.0/packaging/winget/Aitherium.AitherShell.locale.en-US.yaml +30 -0
- awdk-3.6.0/packaging/winget/Aitherium.AitherShell.yaml +7 -0
- awdk-3.6.0/packaging/winget/README.md +49 -0
- awdk-3.6.0/profiles/amd.yaml +29 -0
- awdk-3.6.0/profiles/apple_silicon.yaml +29 -0
- awdk-3.6.0/profiles/cpu_only.yaml +80 -0
- awdk-3.6.0/profiles/grid_distributed.yaml +81 -0
- awdk-3.6.0/profiles/minimal.yaml +60 -0
- awdk-3.6.0/profiles/nvidia_high.yaml +31 -0
- awdk-3.6.0/profiles/nvidia_low.yaml +29 -0
- awdk-3.6.0/profiles/nvidia_mid.yaml +30 -0
- awdk-3.6.0/profiles/nvidia_ultra.yaml +31 -0
- awdk-3.6.0/profiles/server.yaml +129 -0
- awdk-3.6.0/profiles/standard.yaml +74 -0
- awdk-3.6.0/profiles/workstation.yaml +97 -0
- awdk-3.6.0/pyproject.toml +253 -0
- awdk-3.6.0/scripts/check_exports.py +204 -0
- awdk-3.6.0/scripts/check_moat_boundary.py +144 -0
- awdk-3.6.0/scripts/check_no_aither_clobber.py +96 -0
- awdk-3.6.0/scripts/purge_public_leaks.sh +123 -0
- awdk-3.6.0/scripts/setup-cluster-node.sh +111 -0
- awdk-3.6.0/scripts/setup-mac-node.sh +129 -0
- awdk-3.6.0/scripts/swarm_ci.sh +64 -0
- awdk-3.6.0/scripts/yank_leaky_releases.py +109 -0
- awdk-3.6.0/server.json +36 -0
- awdk-3.6.0/setup-vllm.py +1268 -0
- awdk-3.6.0/tests/__init__.py +0 -0
- awdk-3.6.0/tests/_optional_world_model.py +58 -0
- awdk-3.6.0/tests/conftest.py +85 -0
- awdk-3.6.0/tests/fixtures/node_echo_agent.js +17 -0
- awdk-3.6.0/tests/test_a2a.py +911 -0
- awdk-3.6.0/tests/test_a2a_identity.py +181 -0
- awdk-3.6.0/tests/test_a2a_live.py +383 -0
- awdk-3.6.0/tests/test_acp.py +516 -0
- awdk-3.6.0/tests/test_acp_cli.py +164 -0
- awdk-3.6.0/tests/test_acp_client_v2.py +277 -0
- awdk-3.6.0/tests/test_acp_conformance.py +226 -0
- awdk-3.6.0/tests/test_acp_drain.py +166 -0
- awdk-3.6.0/tests/test_acp_live_reference.py +88 -0
- awdk-3.6.0/tests/test_acp_llm_provider.py +207 -0
- awdk-3.6.0/tests/test_acp_registry_contract.py +219 -0
- awdk-3.6.0/tests/test_acp_server_live.py +74 -0
- awdk-3.6.0/tests/test_acp_server_v2.py +403 -0
- awdk-3.6.0/tests/test_admin_api.py +257 -0
- awdk-3.6.0/tests/test_advisor_tool.py +388 -0
- awdk-3.6.0/tests/test_aeon.py +608 -0
- awdk-3.6.0/tests/test_agent.py +260 -0
- awdk-3.6.0/tests/test_agent_byo_enforcement.py +143 -0
- awdk-3.6.0/tests/test_agent_construction.py +245 -0
- awdk-3.6.0/tests/test_agent_expedition.py +86 -0
- awdk-3.6.0/tests/test_agent_loop_budget_integration.py +434 -0
- awdk-3.6.0/tests/test_agent_pack.py +583 -0
- awdk-3.6.0/tests/test_agent_pack_acp_drive.py +162 -0
- awdk-3.6.0/tests/test_agent_pack_docker_live.py +179 -0
- awdk-3.6.0/tests/test_agent_pack_node_live.py +150 -0
- awdk-3.6.0/tests/test_agent_result_validation.py +90 -0
- awdk-3.6.0/tests/test_agentdoc_pformat.py +177 -0
- awdk-3.6.0/tests/test_aither_bridge.py +337 -0
- awdk-3.6.0/tests/test_aither_default_pack.py +248 -0
- awdk-3.6.0/tests/test_aither_pack_persona.py +81 -0
- awdk-3.6.0/tests/test_aitherlient_tool_discovery.py +464 -0
- awdk-3.6.0/tests/test_app_proxy_tools.py +114 -0
- awdk-3.6.0/tests/test_arc_world_pack.py +253 -0
- awdk-3.6.0/tests/test_auth_middleware.py +157 -0
- awdk-3.6.0/tests/test_authmd_client.py +607 -0
- awdk-3.6.0/tests/test_authmd_conformance.py +381 -0
- awdk-3.6.0/tests/test_backend_conformance.py +285 -0
- awdk-3.6.0/tests/test_backend_switch.py +292 -0
- awdk-3.6.0/tests/test_batch.py +474 -0
- awdk-3.6.0/tests/test_builtin_tools.py +758 -0
- awdk-3.6.0/tests/test_builtin_wiring.py +189 -0
- awdk-3.6.0/tests/test_channels.py +66 -0
- awdk-3.6.0/tests/test_chat.py +505 -0
- awdk-3.6.0/tests/test_claude_account_usage.py +443 -0
- awdk-3.6.0/tests/test_claude_accounts.py +696 -0
- awdk-3.6.0/tests/test_claude_ingest.py +207 -0
- awdk-3.6.0/tests/test_claude_runner.py +578 -0
- awdk-3.6.0/tests/test_claude_runner_register.py +433 -0
- awdk-3.6.0/tests/test_claude_sessions.py +266 -0
- awdk-3.6.0/tests/test_cli.py +493 -0
- awdk-3.6.0/tests/test_code_locator.py +133 -0
- awdk-3.6.0/tests/test_codeact.py +495 -0
- awdk-3.6.0/tests/test_codeact_isolated.py +232 -0
- awdk-3.6.0/tests/test_codeact_limits.py +174 -0
- awdk-3.6.0/tests/test_coherence.py +151 -0
- awdk-3.6.0/tests/test_command_center.py +140 -0
- awdk-3.6.0/tests/test_companion_backup.py +130 -0
- awdk-3.6.0/tests/test_completion_gate.py +232 -0
- awdk-3.6.0/tests/test_connect.py +144 -0
- awdk-3.6.0/tests/test_connect_schema_fidelity.py +67 -0
- awdk-3.6.0/tests/test_context.py +312 -0
- awdk-3.6.0/tests/test_context_budget.py +394 -0
- awdk-3.6.0/tests/test_context_well.py +158 -0
- awdk-3.6.0/tests/test_context_wiring.py +175 -0
- awdk-3.6.0/tests/test_continual_learning.py +47 -0
- awdk-3.6.0/tests/test_continuation.py +172 -0
- awdk-3.6.0/tests/test_conversations.py +410 -0
- awdk-3.6.0/tests/test_core_infra.py +520 -0
- awdk-3.6.0/tests/test_creative_tools.py +136 -0
- awdk-3.6.0/tests/test_cron.py +114 -0
- awdk-3.6.0/tests/test_daemon_auth_link_peer_gate.py +97 -0
- awdk-3.6.0/tests/test_daemon_endpoint_ownership.py +148 -0
- awdk-3.6.0/tests/test_decision_decidability.py +154 -0
- awdk-3.6.0/tests/test_device_login_contract.py +160 -0
- awdk-3.6.0/tests/test_dispatch.py +328 -0
- awdk-3.6.0/tests/test_doc_cli.py +506 -0
- awdk-3.6.0/tests/test_doctor.py +54 -0
- awdk-3.6.0/tests/test_doctor_summary_reconciles.py +72 -0
- awdk-3.6.0/tests/test_ellipsis.py +305 -0
- awdk-3.6.0/tests/test_elysium.py +419 -0
- awdk-3.6.0/tests/test_encounter_keying.py +456 -0
- awdk-3.6.0/tests/test_endpoint_discovery.py +41 -0
- awdk-3.6.0/tests/test_endpoint_registration.py +151 -0
- awdk-3.6.0/tests/test_env_enroll.py +150 -0
- awdk-3.6.0/tests/test_evalharness.py +354 -0
- awdk-3.6.0/tests/test_eve_importer.py +118 -0
- awdk-3.6.0/tests/test_events.py +294 -0
- awdk-3.6.0/tests/test_events_wiring.py +284 -0
- awdk-3.6.0/tests/test_fabric_exports.py +88 -0
- awdk-3.6.0/tests/test_federation.py +441 -0
- awdk-3.6.0/tests/test_fleet_manager.py +218 -0
- awdk-3.6.0/tests/test_flow_tools.py +130 -0
- awdk-3.6.0/tests/test_forge.py +441 -0
- awdk-3.6.0/tests/test_forge_cli.py +421 -0
- awdk-3.6.0/tests/test_forkd_offline.py +310 -0
- awdk-3.6.0/tests/test_gateway_client.py +329 -0
- awdk-3.6.0/tests/test_gemini.py +366 -0
- awdk-3.6.0/tests/test_graph_memory.py +501 -0
- awdk-3.6.0/tests/test_graph_rag.py +247 -0
- awdk-3.6.0/tests/test_graph_retriever.py +256 -0
- awdk-3.6.0/tests/test_hardware_probe.py +228 -0
- awdk-3.6.0/tests/test_harness.py +477 -0
- awdk-3.6.0/tests/test_home_wizard.py +107 -0
- awdk-3.6.0/tests/test_identity_device_flow.py +482 -0
- awdk-3.6.0/tests/test_inbound_smtp.py +299 -0
- awdk-3.6.0/tests/test_inference_proxy.py +480 -0
- awdk-3.6.0/tests/test_ingest.py +438 -0
- awdk-3.6.0/tests/test_install_packs.py +266 -0
- awdk-3.6.0/tests/test_intent.py +108 -0
- awdk-3.6.0/tests/test_irc_server.py +594 -0
- awdk-3.6.0/tests/test_join.py +292 -0
- awdk-3.6.0/tests/test_layer_divergence.py +1002 -0
- awdk-3.6.0/tests/test_license_startup_messages.py +133 -0
- awdk-3.6.0/tests/test_licensing.py +215 -0
- awdk-3.6.0/tests/test_licensing_gates.py +339 -0
- awdk-3.6.0/tests/test_llm_providers.py +720 -0
- awdk-3.6.0/tests/test_llmfit.py +809 -0
- awdk-3.6.0/tests/test_login_license_persist.py +43 -0
- awdk-3.6.0/tests/test_managed_identity.py +578 -0
- awdk-3.6.0/tests/test_managed_identity_gateway.py +121 -0
- awdk-3.6.0/tests/test_mcp_auth.py +847 -0
- awdk-3.6.0/tests/test_mcp_endpoint_tools.py +107 -0
- awdk-3.6.0/tests/test_mcp_server.py +491 -0
- awdk-3.6.0/tests/test_memory.py +111 -0
- awdk-3.6.0/tests/test_memory_wiki.py +449 -0
- awdk-3.6.0/tests/test_mesh.py +299 -0
- awdk-3.6.0/tests/test_mesh_console_live.py +168 -0
- awdk-3.6.0/tests/test_mesh_deploy.py +206 -0
- awdk-3.6.0/tests/test_mesh_discovery.py +82 -0
- awdk-3.6.0/tests/test_mesh_headscale.py +180 -0
- awdk-3.6.0/tests/test_mesh_provider.py +720 -0
- awdk-3.6.0/tests/test_metering_byo_exemption.py +255 -0
- awdk-3.6.0/tests/test_microscheduler_heartbeat.py +197 -0
- awdk-3.6.0/tests/test_moat_boundary.py +63 -0
- awdk-3.6.0/tests/test_neurons.py +292 -0
- awdk-3.6.0/tests/test_no_aither_console_clobber.py +78 -0
- awdk-3.6.0/tests/test_node_bootstrap_recipes.py +438 -0
- awdk-3.6.0/tests/test_node_bootstrap_tools.py +577 -0
- awdk-3.6.0/tests/test_object_registry.py +291 -0
- awdk-3.6.0/tests/test_observability.py +704 -0
- awdk-3.6.0/tests/test_onboard_quick.py +77 -0
- awdk-3.6.0/tests/test_oo_agent.py +309 -0
- awdk-3.6.0/tests/test_oo_bridge.py +122 -0
- awdk-3.6.0/tests/test_pack_customize.py +181 -0
- awdk-3.6.0/tests/test_pack_discovery.py +265 -0
- awdk-3.6.0/tests/test_pack_discovery_load_spec.py +171 -0
- awdk-3.6.0/tests/test_pack_drivers.py +556 -0
- awdk-3.6.0/tests/test_pack_drivers_live_http.py +209 -0
- awdk-3.6.0/tests/test_pack_install_credentials.py +186 -0
- awdk-3.6.0/tests/test_pack_registry.py +503 -0
- awdk-3.6.0/tests/test_pack_ui.py +741 -0
- awdk-3.6.0/tests/test_pack_uninstall.py +145 -0
- awdk-3.6.0/tests/test_pack_verifier.py +256 -0
- awdk-3.6.0/tests/test_packs_sync.py +147 -0
- awdk-3.6.0/tests/test_phone_access.py +92 -0
- awdk-3.6.0/tests/test_picolm.py +429 -0
- awdk-3.6.0/tests/test_portal_marketplace.py +112 -0
- awdk-3.6.0/tests/test_predict_loop.py +103 -0
- awdk-3.6.0/tests/test_predict_validation.py +361 -0
- awdk-3.6.0/tests/test_preview_default.py +231 -0
- awdk-3.6.0/tests/test_principal_auth.py +522 -0
- awdk-3.6.0/tests/test_private_companion.py +333 -0
- awdk-3.6.0/tests/test_process_supervisor.py +239 -0
- awdk-3.6.0/tests/test_prompt_caching.py +153 -0
- awdk-3.6.0/tests/test_provision_qdrant.py +78 -0
- awdk-3.6.0/tests/test_quickstart_local.py +353 -0
- awdk-3.6.0/tests/test_react_loop_fix.py +194 -0
- awdk-3.6.0/tests/test_reasoning_session.py +166 -0
- awdk-3.6.0/tests/test_reinforce_on_recall.py +122 -0
- awdk-3.6.0/tests/test_relay.py +422 -0
- awdk-3.6.0/tests/test_relay_client.py +103 -0
- awdk-3.6.0/tests/test_relay_notifications.py +482 -0
- awdk-3.6.0/tests/test_relay_up.py +215 -0
- awdk-3.6.0/tests/test_responder.py +144 -0
- awdk-3.6.0/tests/test_response_cache.py +387 -0
- awdk-3.6.0/tests/test_response_cache_router.py +81 -0
- awdk-3.6.0/tests/test_room_hydration.py +136 -0
- awdk-3.6.0/tests/test_room_launcher.py +375 -0
- awdk-3.6.0/tests/test_routines.py +337 -0
- awdk-3.6.0/tests/test_safety.py +311 -0
- awdk-3.6.0/tests/test_safety_wiring.py +173 -0
- awdk-3.6.0/tests/test_sandbox.py +539 -0
- awdk-3.6.0/tests/test_scaffold_oo.py +83 -0
- awdk-3.6.0/tests/test_secrets_sync.py +141 -0
- awdk-3.6.0/tests/test_self_introspection.py +134 -0
- awdk-3.6.0/tests/test_selfgraph_publisher.py +558 -0
- awdk-3.6.0/tests/test_selfgraph_recorder.py +517 -0
- awdk-3.6.0/tests/test_selfgraph_schema_parity.py +364 -0
- awdk-3.6.0/tests/test_selfgraph_spool.py +542 -0
- awdk-3.6.0/tests/test_server.py +207 -0
- awdk-3.6.0/tests/test_session_resume_and_research.py +279 -0
- awdk-3.6.0/tests/test_setup.py +934 -0
- awdk-3.6.0/tests/test_shell_launcher.py +318 -0
- awdk-3.6.0/tests/test_shell_session_stability.py +76 -0
- awdk-3.6.0/tests/test_skills.py +124 -0
- awdk-3.6.0/tests/test_smtp.py +421 -0
- awdk-3.6.0/tests/test_stdio_compat.py +144 -0
- awdk-3.6.0/tests/test_strata.py +287 -0
- awdk-3.6.0/tests/test_strata_storage.py +972 -0
- awdk-3.6.0/tests/test_stream_chat.py +85 -0
- awdk-3.6.0/tests/test_streaming.py +157 -0
- awdk-3.6.0/tests/test_supervisor.py +155 -0
- awdk-3.6.0/tests/test_sweep.py +219 -0
- awdk-3.6.0/tests/test_sync.py +512 -0
- awdk-3.6.0/tests/test_sync_versions_digests.py +165 -0
- awdk-3.6.0/tests/test_system_prompt_integration.py +237 -0
- awdk-3.6.0/tests/test_tls_verify.py +143 -0
- awdk-3.6.0/tests/test_tool_approval.py +115 -0
- awdk-3.6.0/tests/test_toolpack_acp.py +181 -0
- awdk-3.6.0/tests/test_tools.py +155 -0
- awdk-3.6.0/tests/test_typed_memory.py +212 -0
- awdk-3.6.0/tests/test_unified_memory.py +181 -0
- awdk-3.6.0/tests/test_validator.py +506 -0
- awdk-3.6.0/tests/test_voice_agent.py +88 -0
- awdk-3.6.0/tests/test_voice_backends.py +139 -0
- awdk-3.6.0/tests/test_voice_integration.py +81 -0
- awdk-3.6.0/tests/test_voice_tools.py +104 -0
- awdk-3.6.0/tests/test_world_model_pack.py +282 -0
- awdk-3.6.0/tests/test_worldmodel.py +891 -0
|
Binary file
|
awdk-3.6.0/.dockerignore
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Moat boundary (audit 2026-06-12 P1-5): premium identities must never enter the
|
|
2
|
+
# docker build context — they would land in image layers even if the installed
|
|
3
|
+
# package excludes them. Only the free-tier aither.yaml ships.
|
|
4
|
+
adk/identities/*
|
|
5
|
+
!adk/identities/aither.yaml
|
|
6
|
+
|
|
7
|
+
# Never ship credentials or build junk into the context
|
|
8
|
+
.env
|
|
9
|
+
.env.*
|
|
10
|
+
*.env
|
|
11
|
+
!*.env.example
|
|
12
|
+
*.key
|
|
13
|
+
*.pem
|
|
14
|
+
.git
|
|
15
|
+
dist
|
|
16
|
+
build
|
|
17
|
+
*.egg-info
|
|
18
|
+
__pycache__
|
|
19
|
+
tests
|
|
20
|
+
.pytest_cache
|
awdk-3.6.0/.env.example
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# AitherADK Environment Configuration
|
|
2
|
+
# Copy to .env and customize for your installation
|
|
3
|
+
|
|
4
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
5
|
+
# Room Service Configuration
|
|
6
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
7
|
+
|
|
8
|
+
# Room launch target — controls how `adk up` starts the Room service.
|
|
9
|
+
#
|
|
10
|
+
# Supported values:
|
|
11
|
+
# - Unset (default): Consumer SKU behavior
|
|
12
|
+
# * Check for aither-room package (installed)
|
|
13
|
+
# * Check for aither-room repo (dev checkout)
|
|
14
|
+
# * Fall back to binary download from GitHub Releases (room_launcher.py)
|
|
15
|
+
#
|
|
16
|
+
# - "apps.AitherRoom.room_service:app" (development unlock)
|
|
17
|
+
# * Runs the Room service from AitherOS repo checkout
|
|
18
|
+
# * Requires AITHER_ROOM_LAUNCH_TARGET to be set explicitly
|
|
19
|
+
# * Uvicorn hot-reloads on code changes
|
|
20
|
+
#
|
|
21
|
+
# Consumer default (binary): ~1MB, runs standalone on env vars
|
|
22
|
+
# Dev default (Python module): Full AitherOS runtime
|
|
23
|
+
#
|
|
24
|
+
# AITHER_ROOM_LAUNCH_TARGET="apps.AitherRoom.room_service:app"
|
|
25
|
+
|
|
26
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
27
|
+
# Shell Service Configuration
|
|
28
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
29
|
+
|
|
30
|
+
# Backend selection for AitherShell
|
|
31
|
+
# Supported: auto, ollama, openai, anthropic, gateway
|
|
32
|
+
# AITHER_SHELL_BACKEND=auto
|
|
33
|
+
|
|
34
|
+
# API key for Anthropic or OpenAI (if using cloud backend)
|
|
35
|
+
# AITHER_API_KEY=sk-...
|
|
36
|
+
|
|
37
|
+
# Reasoning backend (if using a reasoning model)
|
|
38
|
+
# AITHER_REASONING_BACKEND=openai
|
|
39
|
+
# AITHER_REASONING_API_KEY=sk-...
|
|
40
|
+
|
|
41
|
+
# Custom inference URL (if running local vLLM or Ollama on non-standard port)
|
|
42
|
+
# AITHER_INFERENCE_URL=http://localhost:8000
|
|
43
|
+
|
|
44
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
45
|
+
# Validation & Security
|
|
46
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
47
|
+
|
|
48
|
+
# Require SHA256 checksum verification for downloaded binaries
|
|
49
|
+
# Supported: 1, true, yes (or unset for optional)
|
|
50
|
+
# AITHER_SHELL_REQUIRE_CHECKSUM=1
|
|
51
|
+
# AITHER_ROOM_REQUIRE_CHECKSUM=1
|
|
52
|
+
|
|
53
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
54
|
+
# Server Configuration
|
|
55
|
+
# ────────────────────────────────────────────────────────────────────────────
|
|
56
|
+
|
|
57
|
+
# Uncomment to run the ADK workspace server on a custom port
|
|
58
|
+
# ADK_SERVER_PORT=8080
|
|
59
|
+
|
|
60
|
+
# Enable hotreload (development only)
|
|
61
|
+
# ADK_SERVER_RELOAD=1
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
name: Publish Docker Image
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags: ["v*"]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
env:
|
|
9
|
+
REGISTRY: ghcr.io
|
|
10
|
+
IMAGE_NAME: aitherium/adk-node
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
# Audit 2026-06-12 P1-5: the image build had NO moat gate — a Dockerfile or
|
|
14
|
+
# build-config change could ship premium identities / nanogpt in image layers.
|
|
15
|
+
# Same hard gate as pypi-publish.yml: nothing publishes unless the built wheel
|
|
16
|
+
# AND sdist are clean.
|
|
17
|
+
moat-guard:
|
|
18
|
+
runs-on: ubuntu-latest
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
- uses: actions/setup-python@v5
|
|
22
|
+
with:
|
|
23
|
+
python-version: "3.11"
|
|
24
|
+
- name: Build artifacts
|
|
25
|
+
run: |
|
|
26
|
+
python -m pip install --upgrade pip build
|
|
27
|
+
python -m build
|
|
28
|
+
- name: Moat boundary check (wheel + sdist)
|
|
29
|
+
run: python scripts/check_moat_boundary.py
|
|
30
|
+
|
|
31
|
+
build-and-push:
|
|
32
|
+
needs: moat-guard
|
|
33
|
+
runs-on: ubuntu-latest
|
|
34
|
+
permissions:
|
|
35
|
+
contents: read
|
|
36
|
+
packages: write
|
|
37
|
+
|
|
38
|
+
steps:
|
|
39
|
+
- uses: actions/checkout@v4
|
|
40
|
+
|
|
41
|
+
- uses: docker/login-action@v3
|
|
42
|
+
with:
|
|
43
|
+
registry: ${{ env.REGISTRY }}
|
|
44
|
+
username: ${{ github.actor }}
|
|
45
|
+
password: ${{ secrets.GITHUB_TOKEN }}
|
|
46
|
+
|
|
47
|
+
- uses: docker/metadata-action@v5
|
|
48
|
+
id: meta
|
|
49
|
+
with:
|
|
50
|
+
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
51
|
+
tags: |
|
|
52
|
+
type=semver,pattern={{version}}
|
|
53
|
+
type=semver,pattern={{major}}.{{minor}}
|
|
54
|
+
type=raw,value=latest,enable={{is_default_branch}}
|
|
55
|
+
|
|
56
|
+
- uses: docker/build-push-action@v6
|
|
57
|
+
with:
|
|
58
|
+
context: .
|
|
59
|
+
push: true
|
|
60
|
+
tags: ${{ steps.meta.outputs.tags }}
|
|
61
|
+
labels: ${{ steps.meta.outputs.labels }}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags: ["v*"]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
moat-guard:
|
|
10
|
+
# Hard gate: never publish a wheel that leaks the internal moat or fails
|
|
11
|
+
# the fail-closed licensing contract. `publish` depends on this passing.
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
|
|
16
|
+
- uses: actions/setup-python@v5
|
|
17
|
+
with:
|
|
18
|
+
python-version: "3.12"
|
|
19
|
+
|
|
20
|
+
- name: Install build + test deps
|
|
21
|
+
run: pip install build pytest pytest-asyncio pytest-timeout cryptography
|
|
22
|
+
|
|
23
|
+
- name: Build wheel
|
|
24
|
+
run: python -m build
|
|
25
|
+
|
|
26
|
+
- name: Inspect wheel for moat leaks
|
|
27
|
+
run: python scripts/check_moat_boundary.py
|
|
28
|
+
|
|
29
|
+
- name: Run moat + licensing tests offline
|
|
30
|
+
env:
|
|
31
|
+
AITHER_GENESIS_URL: ""
|
|
32
|
+
AITHER_CHRONICLE_URL: ""
|
|
33
|
+
AITHER_PORTAL_URL: ""
|
|
34
|
+
run: python -m pytest tests/test_licensing.py tests/test_moat_boundary.py -q
|
|
35
|
+
|
|
36
|
+
publish:
|
|
37
|
+
needs: moat-guard
|
|
38
|
+
runs-on: ubuntu-latest
|
|
39
|
+
permissions:
|
|
40
|
+
id-token: write # trusted publishing
|
|
41
|
+
|
|
42
|
+
steps:
|
|
43
|
+
- uses: actions/checkout@v4
|
|
44
|
+
|
|
45
|
+
- uses: actions/setup-python@v5
|
|
46
|
+
with:
|
|
47
|
+
python-version: "3.12"
|
|
48
|
+
|
|
49
|
+
- name: Build package
|
|
50
|
+
run: |
|
|
51
|
+
pip install build
|
|
52
|
+
python -m build
|
|
53
|
+
|
|
54
|
+
- name: Publish to PyPI
|
|
55
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
56
|
+
with:
|
|
57
|
+
skip-existing: true
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
name: Build & Release AitherShell CLI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags: ["shell-cli-v*"]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
inputs:
|
|
8
|
+
version:
|
|
9
|
+
description: "Version tag (e.g. shell-cli-v1.2.3)"
|
|
10
|
+
required: true
|
|
11
|
+
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write # For creating GitHub releases and updating tags
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
build-python-shell:
|
|
17
|
+
name: Build AitherShell (Python) - ${{ matrix.platform }}
|
|
18
|
+
runs-on: ${{ matrix.runner }}
|
|
19
|
+
strategy:
|
|
20
|
+
matrix:
|
|
21
|
+
include:
|
|
22
|
+
- runner: windows-latest
|
|
23
|
+
platform: win-x64
|
|
24
|
+
binary_name: aither-shell-win64.exe
|
|
25
|
+
entry_point: adk/cli.py
|
|
26
|
+
|
|
27
|
+
- runner: ubuntu-latest
|
|
28
|
+
platform: linux-x64
|
|
29
|
+
binary_name: aither-shell-linux-x64
|
|
30
|
+
entry_point: adk/cli.py
|
|
31
|
+
|
|
32
|
+
- runner: macos-latest
|
|
33
|
+
platform: mac-x64
|
|
34
|
+
binary_name: aither-shell-macos-x64
|
|
35
|
+
entry_point: adk/cli.py
|
|
36
|
+
|
|
37
|
+
- runner: macos-latest-xlarge
|
|
38
|
+
platform: mac-arm64
|
|
39
|
+
binary_name: aither-shell-macos-arm64
|
|
40
|
+
entry_point: adk/cli.py
|
|
41
|
+
|
|
42
|
+
steps:
|
|
43
|
+
- uses: actions/checkout@v4
|
|
44
|
+
|
|
45
|
+
- name: Set up Python
|
|
46
|
+
uses: actions/setup-python@v5
|
|
47
|
+
with:
|
|
48
|
+
python-version: "3.12"
|
|
49
|
+
|
|
50
|
+
- name: Install build dependencies
|
|
51
|
+
run: pip install PyInstaller
|
|
52
|
+
|
|
53
|
+
- name: Install package dependencies
|
|
54
|
+
run: pip install -e .
|
|
55
|
+
|
|
56
|
+
- name: Build executable
|
|
57
|
+
run: python packaging/build_executable.py
|
|
58
|
+
|
|
59
|
+
- name: Copy binary to staging
|
|
60
|
+
shell: bash
|
|
61
|
+
run: |
|
|
62
|
+
mkdir -p staging
|
|
63
|
+
if [ "${{ runner.os }}" = "Windows" ]; then
|
|
64
|
+
cp dist/aither.exe staging/${{ matrix.binary_name }}
|
|
65
|
+
else
|
|
66
|
+
cp dist/aither staging/${{ matrix.binary_name }}
|
|
67
|
+
fi
|
|
68
|
+
ls -lh staging/
|
|
69
|
+
|
|
70
|
+
- name: Moat scan on built binary
|
|
71
|
+
# Audit 2026-06-12 P1-5: the binary is built from the full source tree
|
|
72
|
+
# (pip install -e .), which contains premium identities — verify none of
|
|
73
|
+
# the moat got bundled into the PyInstaller artifact.
|
|
74
|
+
shell: bash
|
|
75
|
+
run: |
|
|
76
|
+
python - <<'PYEOF'
|
|
77
|
+
import pathlib
|
|
78
|
+
import sys
|
|
79
|
+
binp = pathlib.Path("staging") / "${{ matrix.binary_name }}"
|
|
80
|
+
data = binp.read_bytes()
|
|
81
|
+
markers = [
|
|
82
|
+
b"adk/nanogpt", b"nanogpt.py",
|
|
83
|
+
b"identities/hydra", b"identities/apollo", b"identities/athena",
|
|
84
|
+
b"identities/demiurge", b"identities/morgana", b"identities/prometheus",
|
|
85
|
+
]
|
|
86
|
+
bad = [m.decode() for m in markers if m in data]
|
|
87
|
+
if bad:
|
|
88
|
+
print(f"MOAT LEAK in {binp.name}: {bad}", file=sys.stderr)
|
|
89
|
+
sys.exit(1)
|
|
90
|
+
print(f"binary moat scan OK ({binp.name}, {len(data)} bytes)")
|
|
91
|
+
PYEOF
|
|
92
|
+
|
|
93
|
+
- name: Upload artifact
|
|
94
|
+
uses: actions/upload-artifact@v4
|
|
95
|
+
with:
|
|
96
|
+
name: shell-cli-${{ matrix.platform }}
|
|
97
|
+
path: staging/${{ matrix.binary_name }}
|
|
98
|
+
retention-days: 1
|
|
99
|
+
|
|
100
|
+
# TODO: External TypeScript Shell Build
|
|
101
|
+
# The TypeScript shell-cli binaries (high-perf compiled variant)
|
|
102
|
+
# are built from a separate Aitherium/shell-cli repository.
|
|
103
|
+
# Wire this job when the external build is available:
|
|
104
|
+
#
|
|
105
|
+
# build-typescript-shell:
|
|
106
|
+
# name: Build AitherShell (TypeScript) - ${{ matrix.platform }}
|
|
107
|
+
# runs-on: ${{ matrix.runner }}
|
|
108
|
+
# # Would build from Aitherium/shell-cli repo and produce the
|
|
109
|
+
# # same binary naming (aither-shell-{win64,linux-x64,macos-arm64,macos-x64})
|
|
110
|
+
# # For now, Python PyInstaller binaries are used.
|
|
111
|
+
|
|
112
|
+
create-checksums:
|
|
113
|
+
name: Generate SHA256 Checksums
|
|
114
|
+
needs: build-python-shell
|
|
115
|
+
runs-on: ubuntu-latest
|
|
116
|
+
|
|
117
|
+
steps:
|
|
118
|
+
- name: Download all artifacts
|
|
119
|
+
uses: actions/download-artifact@v4
|
|
120
|
+
with:
|
|
121
|
+
path: all-binaries
|
|
122
|
+
|
|
123
|
+
- name: List artifacts
|
|
124
|
+
run: |
|
|
125
|
+
find all-binaries -type f
|
|
126
|
+
ls -lhR all-binaries
|
|
127
|
+
|
|
128
|
+
- name: Generate checksums.sha256
|
|
129
|
+
run: |
|
|
130
|
+
cd all-binaries
|
|
131
|
+
find . -type f | while read f; do
|
|
132
|
+
sha256sum "$f"
|
|
133
|
+
done | sed 's|./shell-cli-[^/]*/||' | sort > ../checksums.sha256
|
|
134
|
+
cat ../checksums.sha256
|
|
135
|
+
|
|
136
|
+
- name: Upload checksums
|
|
137
|
+
uses: actions/upload-artifact@v4
|
|
138
|
+
with:
|
|
139
|
+
name: checksums
|
|
140
|
+
path: checksums.sha256
|
|
141
|
+
retention-days: 1
|
|
142
|
+
|
|
143
|
+
publish-release:
|
|
144
|
+
name: Create GitHub Release
|
|
145
|
+
needs: [build-python-shell, create-checksums]
|
|
146
|
+
runs-on: ubuntu-latest
|
|
147
|
+
|
|
148
|
+
steps:
|
|
149
|
+
- uses: actions/checkout@v4
|
|
150
|
+
|
|
151
|
+
- name: Determine version
|
|
152
|
+
id: version
|
|
153
|
+
run: |
|
|
154
|
+
if [ "${{ github.event_name }}" = "push" ]; then
|
|
155
|
+
VERSION="${{ github.ref }}"
|
|
156
|
+
VERSION="${VERSION##*/}"
|
|
157
|
+
else
|
|
158
|
+
VERSION="${{ github.event.inputs.version }}"
|
|
159
|
+
fi
|
|
160
|
+
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
|
161
|
+
echo "Version: ${VERSION}"
|
|
162
|
+
|
|
163
|
+
- name: Download all build artifacts
|
|
164
|
+
uses: actions/download-artifact@v4
|
|
165
|
+
with:
|
|
166
|
+
path: release-assets
|
|
167
|
+
|
|
168
|
+
- name: Collect release binaries
|
|
169
|
+
run: |
|
|
170
|
+
mkdir -p release-files
|
|
171
|
+
find release-assets -type f -name "aither-shell-*" | while read f; do
|
|
172
|
+
basename="$(basename "$f")"
|
|
173
|
+
cp "$f" "release-files/${basename}"
|
|
174
|
+
done
|
|
175
|
+
cp release-assets/checksums/checksums.sha256 release-files/ || true
|
|
176
|
+
ls -lh release-files/
|
|
177
|
+
|
|
178
|
+
- name: Create Release
|
|
179
|
+
uses: softprops/action-gh-release@v1
|
|
180
|
+
with:
|
|
181
|
+
tag_name: ${{ steps.version.outputs.version }}
|
|
182
|
+
name: AitherShell ${{ steps.version.outputs.version }}
|
|
183
|
+
draft: false
|
|
184
|
+
prerelease: false
|
|
185
|
+
files: release-files/*
|
|
186
|
+
|
|
187
|
+
embed-binaries-in-package:
|
|
188
|
+
name: Embed Binaries in Python Package
|
|
189
|
+
needs: [build-python-shell, create-checksums]
|
|
190
|
+
runs-on: ubuntu-latest
|
|
191
|
+
|
|
192
|
+
steps:
|
|
193
|
+
- uses: actions/checkout@v4
|
|
194
|
+
|
|
195
|
+
- name: Download all build artifacts
|
|
196
|
+
uses: actions/download-artifact@v4
|
|
197
|
+
with:
|
|
198
|
+
path: release-assets
|
|
199
|
+
|
|
200
|
+
- name: Populate shell_binaries directory
|
|
201
|
+
run: |
|
|
202
|
+
mkdir -p adk/shell_binaries/{win-x64,linux-x64,mac-arm64,mac-x64}
|
|
203
|
+
cp release-assets/shell-cli-win-x64/aither-shell-win64.exe \
|
|
204
|
+
adk/shell_binaries/win-x64/ || true
|
|
205
|
+
cp release-assets/shell-cli-linux-x64/aither-shell-linux-x64 \
|
|
206
|
+
adk/shell_binaries/linux-x64/ || true
|
|
207
|
+
cp release-assets/shell-cli-mac-arm64/aither-shell-macos-arm64 \
|
|
208
|
+
adk/shell_binaries/mac-arm64/ || true
|
|
209
|
+
cp release-assets/shell-cli-mac-x64/aither-shell-macos-x64 \
|
|
210
|
+
adk/shell_binaries/mac-x64/ || true
|
|
211
|
+
find adk/shell_binaries -type f -ls
|
|
212
|
+
|
|
213
|
+
- name: Set up Python
|
|
214
|
+
uses: actions/setup-python@v5
|
|
215
|
+
with:
|
|
216
|
+
python-version: "3.12"
|
|
217
|
+
|
|
218
|
+
- name: Build wheel with embedded binaries
|
|
219
|
+
run: |
|
|
220
|
+
pip install build
|
|
221
|
+
python -m build
|
|
222
|
+
|
|
223
|
+
- name: Upload wheel
|
|
224
|
+
uses: actions/upload-artifact@v4
|
|
225
|
+
with:
|
|
226
|
+
name: awdk-wheel
|
|
227
|
+
path: dist/aither_adk-*.whl
|
|
228
|
+
retention-days: 7
|
|
229
|
+
|
|
230
|
+
# NOTE: The wheel with embedded binaries is NOT published to PyPI
|
|
231
|
+
# automatically (to avoid binary bloat on every release). Instead:
|
|
232
|
+
# - GitHub Release has downloadable binaries + checksums.sha256
|
|
233
|
+
# - The main awdk wheel is published to PyPI (PyPI publish
|
|
234
|
+
# workflow triggers on v* tags, not shell-cli-v* tags)
|
|
235
|
+
# - Consumers can either:
|
|
236
|
+
# a. Use `adk shell` which downloads from GitHub on first run
|
|
237
|
+
# b. Use `adk shell --install` to download and cache
|
|
238
|
+
# c. Install the wheel with embedded binaries locally from the GH Release
|