monoid-agent-kernel 0.16.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.
- monoid_agent_kernel-0.16.1/.env.example +24 -0
- monoid_agent_kernel-0.16.1/.github/workflows/ci.yml +72 -0
- monoid_agent_kernel-0.16.1/.gitignore +50 -0
- monoid_agent_kernel-0.16.1/CHANGELOG.md +156 -0
- monoid_agent_kernel-0.16.1/CODE_OF_CONDUCT.md +66 -0
- monoid_agent_kernel-0.16.1/CONTRIBUTING.md +61 -0
- monoid_agent_kernel-0.16.1/LICENSE +202 -0
- monoid_agent_kernel-0.16.1/NOTICE +8 -0
- monoid_agent_kernel-0.16.1/PKG-INFO +709 -0
- monoid_agent_kernel-0.16.1/README.md +661 -0
- monoid_agent_kernel-0.16.1/SECURITY.md +32 -0
- monoid_agent_kernel-0.16.1/docs/CONFORMANCE.md +137 -0
- monoid_agent_kernel-0.16.1/docs/CONTRACTS.md +1123 -0
- monoid_agent_kernel-0.16.1/docs/CORE_HELPER_KIT.md +87 -0
- monoid_agent_kernel-0.16.1/docs/FIRST_SKILL_TUTORIAL.md +119 -0
- monoid_agent_kernel-0.16.1/docs/OPERATIONAL_RULE_COVERAGE.md +101 -0
- monoid_agent_kernel-0.16.1/docs/PHASE_1S_COVERAGE.md +7 -0
- monoid_agent_kernel-0.16.1/docs/PHASE_4_CLOSURE.md +92 -0
- monoid_agent_kernel-0.16.1/docs/README.md +24 -0
- monoid_agent_kernel-0.16.1/docs/REFERENCE.md +45 -0
- monoid_agent_kernel-0.16.1/docs/RUNNER_BACKEND_RESPONSIBILITY_MAP.md +100 -0
- monoid_agent_kernel-0.16.1/docs/SKILLS_DESIGN.md +194 -0
- monoid_agent_kernel-0.16.1/docs/SUBAGENT_DESIGN.md +199 -0
- monoid_agent_kernel-0.16.1/docs/TOOL_SURFACE.md +278 -0
- monoid_agent_kernel-0.16.1/docs/img/a2a.png +0 -0
- monoid_agent_kernel-0.16.1/docs/img/hero.png +0 -0
- monoid_agent_kernel-0.16.1/docs/img/studio-v016-main.png +0 -0
- monoid_agent_kernel-0.16.1/docs/img/studio-v016-profile-builder.png +0 -0
- monoid_agent_kernel-0.16.1/examples/custom_model_adapter.py +74 -0
- monoid_agent_kernel-0.16.1/examples/custom_tool_quickstart.py +62 -0
- monoid_agent_kernel-0.16.1/examples/custom_tools/word_count_tool.py +48 -0
- monoid_agent_kernel-0.16.1/examples/full_stack_integration.py +406 -0
- monoid_agent_kernel-0.16.1/examples/messy_workspace_cleanup.py +613 -0
- monoid_agent_kernel-0.16.1/examples/minimal_quickstart.py +80 -0
- monoid_agent_kernel-0.16.1/examples/otel_tracing.py +91 -0
- monoid_agent_kernel-0.16.1/examples/redacting_event_sink.py +74 -0
- monoid_agent_kernel-0.16.1/examples/run-spec.json +7 -0
- monoid_agent_kernel-0.16.1/examples/runtime-config.json +34 -0
- monoid_agent_kernel-0.16.1/examples/workspaces/edit_markdown_notes/notes.md +5 -0
- monoid_agent_kernel-0.16.1/pyproject.toml +113 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/__init__.py +11 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/_policy_util.py +40 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/_proc.py +86 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/builder.py +351 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/cli.py +1244 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/__init__.py +32 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/harness.py +209 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/__init__.py +55 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/_metadata.py +16 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/capability_security.py +216 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/control_plane.py +41 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/durable_runner.py +42 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/message_fabric.py +42 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/minimal_agent.py +13 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/multi_agent.py +112 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/provider_gateway.py +107 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/reference_full.py +135 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/side_effect_tool_agent.py +36 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/conformance/profiles/tool_agent.py +39 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/contracts.py +329 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/__init__.py +1 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/_util.py +145 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/agents.py +883 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/cancellation.py +16 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/capability.py +376 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/capability_revocation.py +92 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/checkpoint.py +350 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/content.py +101 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/context.py +67 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/control.py +124 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/control_audit.py +99 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/durable_metadata.py +116 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/event_sequencing.py +164 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/events.py +204 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/external_agent_envelope.py +338 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/frontmatter.py +140 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/inbox.py +110 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/lease_admission.py +57 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/lifecycle.py +440 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/manifest.py +88 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/media.py +393 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/outbox.py +212 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/output_validator.py +103 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/packages.py +742 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/projections.py +213 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/prompt.py +37 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/proposal_file.py +84 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/result.py +131 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/schemas.py +1146 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/scope.py +185 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/side_effect_policy.py +153 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/spec.py +325 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/streaming.py +208 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/subagent_runtime.py +187 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/tool_approval.py +175 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/tool_surface.py +505 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/trace_context.py +76 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/wire_validation.py +156 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/workspace.py +161 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/core/workspace_index.py +127 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/env.py +32 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/errors.py +105 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/event_loader.py +47 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/identifiers.py +50 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/loop.py +4140 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/loop_phases.py +561 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/mcp/__init__.py +10 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/mcp/client.py +227 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/mcp/provider.py +407 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/narration.py +92 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/observability/__init__.py +9 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/observability/otel.py +264 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/permissions.py +74 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/providers/__init__.py +7 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/providers/_common.py +122 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/providers/base.py +312 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/providers/fake.py +76 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/providers/gateway.py +474 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/providers/openai.py +487 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/public_view.py +173 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/py.typed +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/recorder.py +421 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/__init__.py +15 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/_shared/__init__.py +4 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/_shared/http_util.py +111 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/_shared/tokens.py +314 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/__init__.py +21 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/commands.py +375 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/http.py +439 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/jobs.py +68 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/loop_factory.py +253 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/outbox_dispatch.py +130 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/ports.py +188 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/projection.py +286 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/proposal.py +220 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/proposal_reader.py +16 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/recovery.py +253 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/run_execution.py +152 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/run_preparation.py +197 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/run_state.py +243 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/run_types.py +128 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/runtime_config.py +147 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/service.py +1664 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/session.py +280 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/backend/session_drive.py +231 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/capability.py +101 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/conformance.py +1777 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/llm_gateway/__init__.py +14 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/llm_gateway/http.py +225 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/llm_gateway/providers.py +96 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/llm_gateway/service.py +404 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/mcp_gateway/__init__.py +26 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/mcp_gateway/http.py +187 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/mcp_gateway/service.py +206 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/outbox.py +135 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/stores/__init__.py +20 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/stores/lease.py +116 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/stores/sqlite.py +295 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/DX_NOTES.md +670 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/README.md +97 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/__init__.py +21 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/activity.py +53 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/cli.py +481 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/code-review-checklist/SKILL.md +25 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/code-review-checklist/references/review-checklist.md +8 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/commit-message/SKILL.md +32 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/incident-summary/SKILL.md +24 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/incident-summary/references/incident-template.md +32 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/release-notes/SKILL.md +24 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/release-notes/references/release-note-template.md +33 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/sample-skills/release-notes/scripts/collect_changes.py +51 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/server.py +1922 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/index.html +1877 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/settings.html +108 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/auto-render.min.js +1 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/katex.min.css +1 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/web/vendor/katex/katex.min.js +1 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/studio/window.py +72 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/web_gateway/__init__.py +6 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/web_gateway/http.py +155 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/web_gateway/providers.py +807 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/reference/web_gateway/service.py +559 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/shell.py +722 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/skills/__init__.py +20 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/skills/definition.py +82 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/skills/loader.py +55 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/skills/provider.py +378 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/subagent_loader.py +56 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tasks.py +1326 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tool_loader.py +51 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tool_services/__init__.py +8 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tool_services/base.py +25 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tool_services/jobs.py +47 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tool_services/shell.py +255 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tool_services/web.py +356 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tools/__init__.py +2 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tools/base.py +205 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tools/builtin.py +958 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tools/decorator.py +132 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/tools/tool_ids.py +62 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/web.py +171 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/workspace/__init__.py +2 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/workspace/local.py +1004 -0
- monoid_agent_kernel-0.16.1/src/monoid_agent_kernel/workspace/paths.py +30 -0
- monoid_agent_kernel-0.16.1/src/native_agent_runner/__init__.py +103 -0
- monoid_agent_kernel-0.16.1/src/native_agent_runner/py.typed +0 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_capability_revocation_profile.py +10 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_capability_security_profile.py +10 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_control_plane_profile.py +19 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_durable_runner_profile.py +25 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_import_boundaries.py +130 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_message_fabric_profile.py +11 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_multi_agent_profile.py +24 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_provider_gateway_profile.py +8 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_reference_full_profile.py +10 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_side_effect_tool_agent_profile.py +11 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_skeleton.py +80 -0
- monoid_agent_kernel-0.16.1/tests/conformance/test_tool_agent_profile.py +17 -0
- monoid_agent_kernel-0.16.1/tests/conftest.py +65 -0
- monoid_agent_kernel-0.16.1/tests/support/__init__.py +6 -0
- monoid_agent_kernel-0.16.1/tests/support/backend.py +16 -0
- monoid_agent_kernel-0.16.1/tests/support/backend_factory.py +140 -0
- monoid_agent_kernel-0.16.1/tests/support/backend_harness.py +400 -0
- monoid_agent_kernel-0.16.1/tests/support/http.py +88 -0
- monoid_agent_kernel-0.16.1/tests/support/mcp.py +40 -0
- monoid_agent_kernel-0.16.1/tests/support/process.py +7 -0
- monoid_agent_kernel-0.16.1/tests/support/runtime.py +64 -0
- monoid_agent_kernel-0.16.1/tests/support/studio_harness.py +172 -0
- monoid_agent_kernel-0.16.1/tests/support/waiting.py +39 -0
- monoid_agent_kernel-0.16.1/tests/test_agent_loop_lifecycle.py +189 -0
- monoid_agent_kernel-0.16.1/tests/test_agent_runtime_config.py +340 -0
- monoid_agent_kernel-0.16.1/tests/test_async_loop.py +354 -0
- monoid_agent_kernel-0.16.1/tests/test_backend.py +877 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_control.py +1246 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_http_api.py +335 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_media.py +174 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_providers.py +343 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_recovery.py +828 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_runtime_config.py +275 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_stream.py +284 -0
- monoid_agent_kernel-0.16.1/tests/test_backend_turn_recovery.py +192 -0
- monoid_agent_kernel-0.16.1/tests/test_builder_cli.py +299 -0
- monoid_agent_kernel-0.16.1/tests/test_canonical_hash.py +52 -0
- monoid_agent_kernel-0.16.1/tests/test_capability.py +1036 -0
- monoid_agent_kernel-0.16.1/tests/test_capability_broker_contract.py +88 -0
- monoid_agent_kernel-0.16.1/tests/test_capability_revocation.py +101 -0
- monoid_agent_kernel-0.16.1/tests/test_checkpoint.py +596 -0
- monoid_agent_kernel-0.16.1/tests/test_checkpoint_store_contract.py +108 -0
- monoid_agent_kernel-0.16.1/tests/test_cli_and_openai.py +531 -0
- monoid_agent_kernel-0.16.1/tests/test_content_parts.py +260 -0
- monoid_agent_kernel-0.16.1/tests/test_context_providers.py +115 -0
- monoid_agent_kernel-0.16.1/tests/test_durable_metadata.py +91 -0
- monoid_agent_kernel-0.16.1/tests/test_event_data_schema.py +65 -0
- monoid_agent_kernel-0.16.1/tests/test_event_sequencing.py +113 -0
- monoid_agent_kernel-0.16.1/tests/test_examples.py +84 -0
- monoid_agent_kernel-0.16.1/tests/test_external_agent_envelope.py +320 -0
- monoid_agent_kernel-0.16.1/tests/test_external_agent_envelope_properties.py +219 -0
- monoid_agent_kernel-0.16.1/tests/test_file_lock.py +57 -0
- monoid_agent_kernel-0.16.1/tests/test_frontmatter.py +56 -0
- monoid_agent_kernel-0.16.1/tests/test_gateway_provider.py +373 -0
- monoid_agent_kernel-0.16.1/tests/test_hitl.py +129 -0
- monoid_agent_kernel-0.16.1/tests/test_inbox.py +174 -0
- monoid_agent_kernel-0.16.1/tests/test_inbox_outbox_properties.py +134 -0
- monoid_agent_kernel-0.16.1/tests/test_jobs.py +195 -0
- monoid_agent_kernel-0.16.1/tests/test_lease_admission.py +68 -0
- monoid_agent_kernel-0.16.1/tests/test_lease_store_contract.py +90 -0
- monoid_agent_kernel-0.16.1/tests/test_llm_gateway_backend.py +444 -0
- monoid_agent_kernel-0.16.1/tests/test_llm_gateway_stream.py +232 -0
- monoid_agent_kernel-0.16.1/tests/test_loop.py +1258 -0
- monoid_agent_kernel-0.16.1/tests/test_mcp.py +624 -0
- monoid_agent_kernel-0.16.1/tests/test_mcp_gateway.py +104 -0
- monoid_agent_kernel-0.16.1/tests/test_media.py +133 -0
- monoid_agent_kernel-0.16.1/tests/test_multimodal_forwarding.py +616 -0
- monoid_agent_kernel-0.16.1/tests/test_namespace_compat.py +44 -0
- monoid_agent_kernel-0.16.1/tests/test_narration.py +58 -0
- monoid_agent_kernel-0.16.1/tests/test_observability.py +568 -0
- monoid_agent_kernel-0.16.1/tests/test_openai_adapter.py +59 -0
- monoid_agent_kernel-0.16.1/tests/test_otel.py +183 -0
- monoid_agent_kernel-0.16.1/tests/test_outbox.py +496 -0
- monoid_agent_kernel-0.16.1/tests/test_output_validator.py +929 -0
- monoid_agent_kernel-0.16.1/tests/test_prompt_composition.py +20 -0
- monoid_agent_kernel-0.16.1/tests/test_proposal_package.py +633 -0
- monoid_agent_kernel-0.16.1/tests/test_public_surface.py +380 -0
- monoid_agent_kernel-0.16.1/tests/test_pump.py +81 -0
- monoid_agent_kernel-0.16.1/tests/test_scenario_scoring.py +52 -0
- monoid_agent_kernel-0.16.1/tests/test_scope_relation.py +92 -0
- monoid_agent_kernel-0.16.1/tests/test_scope_relation_properties.py +122 -0
- monoid_agent_kernel-0.16.1/tests/test_session_drive.py +119 -0
- monoid_agent_kernel-0.16.1/tests/test_session_lifecycle.py +373 -0
- monoid_agent_kernel-0.16.1/tests/test_shell.py +287 -0
- monoid_agent_kernel-0.16.1/tests/test_side_effect_policy.py +129 -0
- monoid_agent_kernel-0.16.1/tests/test_skills.py +604 -0
- monoid_agent_kernel-0.16.1/tests/test_spec_serialization.py +112 -0
- monoid_agent_kernel-0.16.1/tests/test_studio.py +369 -0
- monoid_agent_kernel-0.16.1/tests/test_studio_cli.py +170 -0
- monoid_agent_kernel-0.16.1/tests/test_studio_proposals.py +320 -0
- monoid_agent_kernel-0.16.1/tests/test_studio_sessions.py +422 -0
- monoid_agent_kernel-0.16.1/tests/test_studio_settings.py +113 -0
- monoid_agent_kernel-0.16.1/tests/test_studio_shell_web.py +181 -0
- monoid_agent_kernel-0.16.1/tests/test_studio_skills_mcp.py +314 -0
- monoid_agent_kernel-0.16.1/tests/test_subagent.py +626 -0
- monoid_agent_kernel-0.16.1/tests/test_subagent_runtime_context.py +108 -0
- monoid_agent_kernel-0.16.1/tests/test_tokens.py +91 -0
- monoid_agent_kernel-0.16.1/tests/test_tool_approval.py +303 -0
- monoid_agent_kernel-0.16.1/tests/test_tool_decorator.py +69 -0
- monoid_agent_kernel-0.16.1/tests/test_tool_ids.py +40 -0
- monoid_agent_kernel-0.16.1/tests/test_tool_result_envelope.py +62 -0
- monoid_agent_kernel-0.16.1/tests/test_tool_services.py +218 -0
- monoid_agent_kernel-0.16.1/tests/test_tool_surface.py +253 -0
- monoid_agent_kernel-0.16.1/tests/test_tools.py +199 -0
- monoid_agent_kernel-0.16.1/tests/test_trace_context.py +73 -0
- monoid_agent_kernel-0.16.1/tests/test_usage_accounting.py +130 -0
- monoid_agent_kernel-0.16.1/tests/test_web_gateway.py +758 -0
- monoid_agent_kernel-0.16.1/tests/test_wire_validation.py +72 -0
- monoid_agent_kernel-0.16.1/tests/test_workspace_contract.py +142 -0
- monoid_agent_kernel-0.16.1/tests/test_workspace_paths_properties.py +64 -0
- monoid_agent_kernel-0.16.1/tests/test_workspace_permissions.py +113 -0
- monoid_agent_kernel-0.16.1/tests/test_workspace_protocol.py +45 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Copy to .env and fill in. .env is gitignored — never commit real secrets.
|
|
2
|
+
|
|
3
|
+
# --- Direct OpenAI provider (local smoke tests / Studio --provider openai only) ---
|
|
4
|
+
# Container/gateway runs do NOT need this; Monoid uses GatewayModelAdapter and
|
|
5
|
+
# never receives provider keys.
|
|
6
|
+
OPENAI_API_KEY=
|
|
7
|
+
|
|
8
|
+
# --- Reference WebGateway: real search provider (optional) ---
|
|
9
|
+
# Only the WebGateway process holds this; the kernel never sees it.
|
|
10
|
+
BRAVE_SEARCH_API_KEY=
|
|
11
|
+
|
|
12
|
+
# --- Reference backend / gateway admin + signing secrets (local dev) ---
|
|
13
|
+
# Used by `monoid backend serve` / `monoid llm-gateway serve` / `monoid web-gateway serve`.
|
|
14
|
+
# Generate strong random values for anything beyond local development.
|
|
15
|
+
MONOID_BACKEND_ADMIN_TOKEN=
|
|
16
|
+
MONOID_LLM_GATEWAY_ADMIN_TOKEN=
|
|
17
|
+
MONOID_WEB_GATEWAY_ADMIN_TOKEN=
|
|
18
|
+
MONOID_BACKEND_TOKEN_SECRET=
|
|
19
|
+
|
|
20
|
+
# --- Kernel -> gateway token (when not issued by the backend) ---
|
|
21
|
+
MONOID_LLM_GATEWAY_TOKEN=
|
|
22
|
+
MONOID_WEB_GATEWAY_TOKEN=
|
|
23
|
+
|
|
24
|
+
# Legacy NAR_* names are accepted during migration.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
python-version: ["3.11", "3.12"]
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
18
|
+
uses: actions/setup-python@v5
|
|
19
|
+
with:
|
|
20
|
+
python-version: ${{ matrix.python-version }}
|
|
21
|
+
- name: Install
|
|
22
|
+
run: |
|
|
23
|
+
python -m pip install --upgrade pip
|
|
24
|
+
pip install -e ".[dev,openai]"
|
|
25
|
+
pip install ruff
|
|
26
|
+
- name: Lint
|
|
27
|
+
run: ruff check src tests
|
|
28
|
+
- name: Test
|
|
29
|
+
run: pytest -q
|
|
30
|
+
|
|
31
|
+
xdist-advisory:
|
|
32
|
+
runs-on: ubuntu-latest
|
|
33
|
+
continue-on-error: true
|
|
34
|
+
steps:
|
|
35
|
+
- uses: actions/checkout@v4
|
|
36
|
+
- name: Set up Python 3.12
|
|
37
|
+
uses: actions/setup-python@v5
|
|
38
|
+
with:
|
|
39
|
+
python-version: "3.12"
|
|
40
|
+
- name: Install
|
|
41
|
+
run: |
|
|
42
|
+
python -m pip install --upgrade pip
|
|
43
|
+
pip install -e ".[dev,openai]"
|
|
44
|
+
pip install ruff
|
|
45
|
+
- name: Xdist advisory
|
|
46
|
+
run: python -m pytest -q -n 4 -m "not live"
|
|
47
|
+
|
|
48
|
+
coverage-advisory:
|
|
49
|
+
runs-on: ubuntu-latest
|
|
50
|
+
continue-on-error: true
|
|
51
|
+
steps:
|
|
52
|
+
- uses: actions/checkout@v4
|
|
53
|
+
- name: Set up Python 3.12
|
|
54
|
+
uses: actions/setup-python@v5
|
|
55
|
+
with:
|
|
56
|
+
python-version: "3.12"
|
|
57
|
+
- name: Install
|
|
58
|
+
run: |
|
|
59
|
+
python -m pip install --upgrade pip
|
|
60
|
+
pip install -e ".[dev,openai]"
|
|
61
|
+
- name: Coverage advisory
|
|
62
|
+
run: >
|
|
63
|
+
python -m pytest -q
|
|
64
|
+
--cov=monoid_agent_kernel
|
|
65
|
+
--cov=native_agent_runner
|
|
66
|
+
--cov-report=term-missing:skip-covered
|
|
67
|
+
--cov-report=xml
|
|
68
|
+
- name: Upload coverage XML
|
|
69
|
+
uses: actions/upload-artifact@v4
|
|
70
|
+
with:
|
|
71
|
+
name: coverage-xml
|
|
72
|
+
path: coverage.xml
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Environment variables / secrets
|
|
2
|
+
.env
|
|
3
|
+
.env.*
|
|
4
|
+
*.env
|
|
5
|
+
!.env.example
|
|
6
|
+
!.env.sample
|
|
7
|
+
!.env.template
|
|
8
|
+
*.local
|
|
9
|
+
secrets.json
|
|
10
|
+
|
|
11
|
+
# Python
|
|
12
|
+
__pycache__/
|
|
13
|
+
*.py[cod]
|
|
14
|
+
*.egg-info/
|
|
15
|
+
.eggs/
|
|
16
|
+
build/
|
|
17
|
+
dist/
|
|
18
|
+
.pytest_cache/
|
|
19
|
+
.hypothesis/
|
|
20
|
+
.mypy_cache/
|
|
21
|
+
.ruff_cache/
|
|
22
|
+
|
|
23
|
+
# Virtual environments
|
|
24
|
+
.venv/
|
|
25
|
+
venv/
|
|
26
|
+
env/
|
|
27
|
+
|
|
28
|
+
# Run artifacts / outputs
|
|
29
|
+
runs/
|
|
30
|
+
runs-*/
|
|
31
|
+
studio-workspace/
|
|
32
|
+
proposal.tar
|
|
33
|
+
.codex-studio/
|
|
34
|
+
*.log
|
|
35
|
+
|
|
36
|
+
# IDE / OS
|
|
37
|
+
.idea/
|
|
38
|
+
.vscode/
|
|
39
|
+
.DS_Store
|
|
40
|
+
Thumbs.db
|
|
41
|
+
|
|
42
|
+
# Crash dumps
|
|
43
|
+
*.stackdump
|
|
44
|
+
|
|
45
|
+
# Internal developer journal (not distributed)
|
|
46
|
+
docs/dx-notes/
|
|
47
|
+
docs/runtime-kernel-research/
|
|
48
|
+
|
|
49
|
+
# Local Claude Code workspace settings (not distributed)
|
|
50
|
+
.claude/
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented here. The format is loosely
|
|
4
|
+
based on [Keep a Changelog](https://keepachangelog.com/), and this project is
|
|
5
|
+
pre-1.0 (`0.x`): minor versions may include breaking changes, which are called
|
|
6
|
+
out in commit messages and here.
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.16.1] - 2026-07-05
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Updated the README quickstart so the snippet works with the current `AgentRunSpec`
|
|
14
|
+
API by supplying `Path`-based `workspace_root` and `run_root` values.
|
|
15
|
+
- Switched README Studio screenshots to GitHub raw image URLs so the PyPI long
|
|
16
|
+
description can render them.
|
|
17
|
+
- Ignored local Studio/log artifacts to keep source distributions clean when built
|
|
18
|
+
from a working checkout.
|
|
19
|
+
|
|
20
|
+
## [0.16.0] - 2026-07-05
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Phase 4-1 public-surface cleanup: `monoid_agent_kernel.contracts` and the
|
|
24
|
+
top-level `monoid_agent_kernel` package now export only the contract surface.
|
|
25
|
+
Helper/default implementations and convenience adapters are imported from their
|
|
26
|
+
explicit modules.
|
|
27
|
+
- Phase 4-2 lifecycle vocabulary cleanup: run lifecycle payloads now use
|
|
28
|
+
`state` plus `terminal` instead of legacy lifecycle `status`. Terminal
|
|
29
|
+
`AgentRunResult.status`, `ControlResult.status`, proposal status, tool status,
|
|
30
|
+
job status, and metrics status keep their domain meanings.
|
|
31
|
+
- Phase 4-3 test/CI readiness: backend tests now have a managed factory seam for
|
|
32
|
+
spawned future cleanup, Studio shutdown joins owned server threads, and CI runs
|
|
33
|
+
xdist plus coverage as advisory checks.
|
|
34
|
+
- README screenshots now show the v0.16 Studio profile workflow, including a
|
|
35
|
+
data-analysis run and the exact model request preview in the profile editor.
|
|
36
|
+
- `AudioPart` and `VideoPart` are now exported from the contract surface to match
|
|
37
|
+
the core content contract.
|
|
38
|
+
|
|
39
|
+
## [0.15.0] - 2026-07-03
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
- Operational rule coverage for OR-01 through OR-13, mapping each rule to Core Helper Kit
|
|
43
|
+
surfaces, conformance assertions, Reference harness cases, and primary tests.
|
|
44
|
+
- Executable conformance profiles for tool-agent approval, optional side-effect tools,
|
|
45
|
+
external-agent message fabric, and the bundled Reference full profile.
|
|
46
|
+
- Strict wire parsing helpers for JSON-native payloads, plus property tests for
|
|
47
|
+
external-agent envelopes and inbox/outbox round-trips.
|
|
48
|
+
- Public/private task payload separation, including safe public capability-result summaries.
|
|
49
|
+
- Canonical external-agent metadata merge helpers so user metadata cannot override trusted
|
|
50
|
+
peer, task, request, result, or trace identity.
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
- Reference backend, web tool service, durable metadata listing, and Studio subagent event
|
|
54
|
+
routing now consistently use the Core Helper Kit paths established by the operational rules.
|
|
55
|
+
- Approval callback parsing now fails closed for ambiguous approve/deny values while preserving
|
|
56
|
+
durable replay behavior.
|
|
57
|
+
- Strict parsers continue to accept legacy `native-agent-runner.*` protocol ids during the
|
|
58
|
+
namespace migration window.
|
|
59
|
+
|
|
60
|
+
### Fixed
|
|
61
|
+
- Recovered outbox requests, capability leases, and control commands created before the Monoid
|
|
62
|
+
namespace rename are accepted by the new strict parsers.
|
|
63
|
+
- Public hosted-task payloads no longer expose raw capability grant material such as `lease` or
|
|
64
|
+
`token_ref`.
|
|
65
|
+
- Requested web domain scope now respects wildcard narrowing rules instead of exact-match-only
|
|
66
|
+
intersection.
|
|
67
|
+
|
|
68
|
+
## [0.14.0] - 2026-06-30
|
|
69
|
+
|
|
70
|
+
### Added
|
|
71
|
+
- Compatibility imports through `native_agent_runner` and the legacy `native-agent`
|
|
72
|
+
CLI alias, so existing local integrations can migrate incrementally.
|
|
73
|
+
- Central identifier and environment helpers for the Monoid namespace migration.
|
|
74
|
+
|
|
75
|
+
### Changed
|
|
76
|
+
- Project, package, repository, docs, and examples now use **Monoid Agent Kernel**
|
|
77
|
+
branding.
|
|
78
|
+
- Python distribution name is now `monoid-agent-kernel`; import new code from
|
|
79
|
+
`monoid_agent_kernel`.
|
|
80
|
+
- Current wire and durable artifact identifiers now emit `monoid.*` values.
|
|
81
|
+
Readers and validators continue to accept legacy `native-agent-runner.*` values.
|
|
82
|
+
- Environment variables now prefer `MONOID_*` names. Existing `NAR_*` names are
|
|
83
|
+
accepted during migration.
|
|
84
|
+
- Token issuer, audience, and header values now use Monoid identifiers while
|
|
85
|
+
accepting legacy values during migration.
|
|
86
|
+
|
|
87
|
+
## [0.13.0] - 2026-06-29
|
|
88
|
+
|
|
89
|
+
### Added
|
|
90
|
+
- **OutputValidator** — developer-supplied validation of the final response with a
|
|
91
|
+
bounded re-prompt loop. Register via `AgentLoop(output_validators=...)`; validators
|
|
92
|
+
run **default-on**, opt out per-run with `OutputValidatorBinding(enabled=False)`. A
|
|
93
|
+
rejection re-prompts the model with the validator's feedback, bounded by the new
|
|
94
|
+
`RunLimits.max_output_retries`. Adds `AgentRunResult.final_output` /
|
|
95
|
+
`outputs[validator_id]` / `output_as(Model)`, the `output.validator.*` event family
|
|
96
|
+
(satisfied / validation.failed / exhausted / error / skipped), OTel span events, and
|
|
97
|
+
a Studio + backend (`RunnerBackend(output_validators=...)`) seam.
|
|
98
|
+
- `ModelTurn.stop_reason` promotion: a provider refusal or truncation now settles as
|
|
99
|
+
`output_refused` / `output_truncated` instead of a generic "neither text nor tool
|
|
100
|
+
calls" model error.
|
|
101
|
+
|
|
102
|
+
### Changed
|
|
103
|
+
- The settle path is now a pure `_decide_settle` (classification) plus a single
|
|
104
|
+
`_apply_settle` (state mutation + events + Suspension), and the four run.finish
|
|
105
|
+
metadata fields collapsed into one `pending_finish` value — a behavior-preserving
|
|
106
|
+
refactor that makes the validation lifecycle a single atomic transition.
|
|
107
|
+
|
|
108
|
+
### Fixed
|
|
109
|
+
- OpenAI adapter: capture `response.incomplete` in the streamed turn so truncations and
|
|
110
|
+
refusals carry the correct `stop_reason`.
|
|
111
|
+
- Backend: `status()` falls back to the terminal result's `final_output` for
|
|
112
|
+
stream-driven runs; resilient `status.json` reads under a concurrent atomic replace.
|
|
113
|
+
|
|
114
|
+
## [0.12.0] - 2026-06-27
|
|
115
|
+
|
|
116
|
+
### Added
|
|
117
|
+
- `AgentLoop.from_tools(spec, adapter, tools)` — one call to run with custom
|
|
118
|
+
`@tool`/`ToolSpec` objects (auto-wraps a provider and generates their bindings),
|
|
119
|
+
plus a runnable `examples/custom_tool_quickstart.py`.
|
|
120
|
+
- `AgentLoop.validate(config)` / `collect_runtime_config_issues()` — pre-run config
|
|
121
|
+
validation that collects **all** problems as readable messages instead of raising
|
|
122
|
+
on the first.
|
|
123
|
+
- Curated `contracts.core` namespace (the ~9 must-know names), a
|
|
124
|
+
`monoid_agent_kernel.tool_ids` constants module, and `list_builtin_tools()`.
|
|
125
|
+
- `ToolBinding.for_tool("fs.read")` one-token bindings and bare-string `ref`.
|
|
126
|
+
- `monoid studio doctor` preflight (port / writability / API key / browser /
|
|
127
|
+
OTel checks), a Studio README, and a first-run onboarding panel.
|
|
128
|
+
- `otel-export` extra (OTel SDK + OTLP exporter) so Studio's OTel toggle actually
|
|
129
|
+
exports; a README "Observability" section, `examples/otel_tracing.py`, and a
|
|
130
|
+
`docs/` index.
|
|
131
|
+
- Public failure events (`run.failed` / `turn.failed`) now carry
|
|
132
|
+
`provider_error_code` and `http_status`, and Studio surfaces them.
|
|
133
|
+
- Studio: agent-to-agent (A2A) demo over the durable outbox→inbox fabric; inline
|
|
134
|
+
image preview in the file viewer; open-source project files (contributing guide,
|
|
135
|
+
code of conduct, security policy, CI workflow, environment template).
|
|
136
|
+
|
|
137
|
+
### Fixed
|
|
138
|
+
- MCP client: honor `tools/list` pagination (`nextCursor`) so large servers aren't
|
|
139
|
+
truncated to page one, and reconnect once on a session-expiry (HTTP 404).
|
|
140
|
+
- OpenAI adapter: classify provider errors from the response body when the SDK
|
|
141
|
+
exception carries no status — a streaming `429 insufficient_quota` was being
|
|
142
|
+
masked as a generic `502 gateway_bad_response`.
|
|
143
|
+
- `fs.read`: on a binary/non-utf8 file, returns an actionable error pointing at
|
|
144
|
+
`fs.read_media` (which reads images/PDFs under its own scope and authorization) instead
|
|
145
|
+
of a bare "binary file" reject.
|
|
146
|
+
- Subagent/skill loaders warn on a duplicate id instead of silently dropping it.
|
|
147
|
+
- `[otel]` extra was api-only (a no-op); the Studio OTel toggle now has a working
|
|
148
|
+
install path via `[otel-export]`.
|
|
149
|
+
|
|
150
|
+
### Changed
|
|
151
|
+
- Vendored KaTeX locally (woff2 only) so Studio honors its no-network promise.
|
|
152
|
+
|
|
153
|
+
## [0.11.0]
|
|
154
|
+
- Baseline at first public preparation. See the git history for the full
|
|
155
|
+
evolution of the contracts, session/control protocol, capability leases,
|
|
156
|
+
inbox/outbox fabric, durable checkpoints, and the Studio reference app.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
|
10
|
+
identity and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment include:
|
|
18
|
+
|
|
19
|
+
- Demonstrating empathy and kindness toward other people
|
|
20
|
+
- Being respectful of differing opinions, viewpoints, and experiences
|
|
21
|
+
- Giving and gracefully accepting constructive feedback
|
|
22
|
+
- Accepting responsibility and apologizing to those affected by our mistakes,
|
|
23
|
+
and learning from the experience
|
|
24
|
+
- Focusing on what is best not just for us as individuals, but for the overall
|
|
25
|
+
community
|
|
26
|
+
|
|
27
|
+
Examples of unacceptable behavior include:
|
|
28
|
+
|
|
29
|
+
- The use of sexualized language or imagery, and sexual attention or advances of
|
|
30
|
+
any kind
|
|
31
|
+
- Trolling, insulting or derogatory comments, and personal or political attacks
|
|
32
|
+
- Public or private harassment
|
|
33
|
+
- Publishing others' private information, such as a physical or email address,
|
|
34
|
+
without their explicit permission
|
|
35
|
+
- Other conduct which could reasonably be considered inappropriate in a
|
|
36
|
+
professional setting
|
|
37
|
+
|
|
38
|
+
## Enforcement Responsibilities
|
|
39
|
+
|
|
40
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
41
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
42
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
43
|
+
or harmful.
|
|
44
|
+
|
|
45
|
+
## Scope
|
|
46
|
+
|
|
47
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
48
|
+
an individual is officially representing the community in public spaces.
|
|
49
|
+
|
|
50
|
+
## Enforcement
|
|
51
|
+
|
|
52
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
53
|
+
reported to the community leaders responsible for enforcement at
|
|
54
|
+
**yoonhs9dev@gmail.com**. All complaints will be reviewed and investigated
|
|
55
|
+
promptly and fairly.
|
|
56
|
+
|
|
57
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
58
|
+
reporter of any incident.
|
|
59
|
+
|
|
60
|
+
## Attribution
|
|
61
|
+
|
|
62
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
63
|
+
version 2.1, available at
|
|
64
|
+
https://www.contributor-covenant.org/version/2/1/code_of_conduct.html.
|
|
65
|
+
|
|
66
|
+
[homepage]: https://www.contributor-covenant.org
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
Thanks for your interest in improving Monoid Agent Kernel. This is a pre-1.0
|
|
4
|
+
(`0.x`) agent kernel, so the public surface may still change. Contributions,
|
|
5
|
+
issues, and design feedback are welcome.
|
|
6
|
+
|
|
7
|
+
## Ground rules
|
|
8
|
+
|
|
9
|
+
- Be respectful. This project follows the [Code of Conduct](CODE_OF_CONDUCT.md).
|
|
10
|
+
- By contributing, you agree your contributions are licensed under the project's
|
|
11
|
+
license (see `LICENSE`).
|
|
12
|
+
- Keep the layering intact: **core never imports `reference`**. New example
|
|
13
|
+
services belong under `monoid_agent_kernel.reference.*`; the supported surface is
|
|
14
|
+
`monoid_agent_kernel.contracts`.
|
|
15
|
+
|
|
16
|
+
## Development setup
|
|
17
|
+
|
|
18
|
+
Requires Python 3.11+.
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
python -m venv .venv && source .venv/bin/activate # Windows: .venv\Scripts\activate
|
|
22
|
+
pip install -e ".[dev]"
|
|
23
|
+
pip install ruff # linter (configured in pyproject.toml)
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Before you open a PR
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
ruff check src tests # lint (line-length 100, target py311)
|
|
30
|
+
python -m pytest -n 4 -q # fast local suite
|
|
31
|
+
python -m pytest -q # serial compatibility suite
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
- Add or update tests for any behavior change. Custom adapters/workspaces/stores
|
|
35
|
+
should plug into the existing parametrized contract suites in `tests/`
|
|
36
|
+
(e.g. `test_workspace_contract.py`, `test_checkpoint_store_contract.py`).
|
|
37
|
+
- Backend tests that create `RunnerBackend` should use the `backend_factory`
|
|
38
|
+
fixture or the helpers in `tests/support/backend_harness.py`; the fixture owns
|
|
39
|
+
spawned futures and fails the test if a backend leaves live runs behind.
|
|
40
|
+
- Use `python -m pytest --durations=30` when a change could affect suite runtime.
|
|
41
|
+
- Mark deliberate timeout or live-provider coverage with `slow` or `live` so the
|
|
42
|
+
fast local path stays clear.
|
|
43
|
+
- CI keeps `pytest -q` as the required gate and runs `pytest -q -n 4 -m "not live"`
|
|
44
|
+
plus coverage as advisory signals until they stabilize.
|
|
45
|
+
- To profile without unrelated pytest plugins, run
|
|
46
|
+
`PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python -m pytest -p xdist -n 4 -q -m "not slow and not live"`.
|
|
47
|
+
- Match the surrounding code style: typed, small functions, comment density and
|
|
48
|
+
naming consistent with the file you are editing.
|
|
49
|
+
- Keep changes focused; note any breaking change to the public surface in the PR
|
|
50
|
+
description and in `CHANGELOG.md`.
|
|
51
|
+
|
|
52
|
+
## Reporting bugs / proposing features
|
|
53
|
+
|
|
54
|
+
Open a GitHub issue with a clear description and, for bugs, a minimal reproduction.
|
|
55
|
+
For security issues, follow [SECURITY.md](SECURITY.md) instead of filing a public
|
|
56
|
+
issue.
|
|
57
|
+
|
|
58
|
+
## Commit messages
|
|
59
|
+
|
|
60
|
+
Conventional, imperative style is appreciated (e.g. `feat(studio): ...`,
|
|
61
|
+
`fix(tasks): ...`), with breaking changes called out explicitly.
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Monoid Agent Kernel
|
|
2
|
+
Copyright 2026 Hoonseok Yoon
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|