@bluefly/openstandardagents 0.3.0 → 0.3.2
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.
- package/.devfile.yaml +87 -0
- package/.gitlab-ci-trigger +1 -0
- package/.wiki-config.json +24 -0
- package/CHANGELOG.md +212 -1
- package/README.md +8 -193
- package/dist/adapters/anthropic/runtime.js +2 -2
- package/dist/adapters/anthropic/runtime.js.map +1 -1
- package/dist/bot/architecture-validator-bot.d.ts +8 -0
- package/dist/bot/architecture-validator-bot.d.ts.map +1 -0
- package/dist/bot/architecture-validator-bot.js +15 -0
- package/dist/bot/architecture-validator-bot.js.map +1 -0
- package/dist/bot/ci-pipeline-bot.d.ts +7 -0
- package/dist/bot/ci-pipeline-bot.d.ts.map +1 -0
- package/dist/bot/ci-pipeline-bot.js +7 -0
- package/dist/bot/ci-pipeline-bot.js.map +1 -0
- package/dist/bot/compliance-bot.d.ts +56 -0
- package/dist/bot/compliance-bot.d.ts.map +1 -0
- package/dist/bot/compliance-bot.js +203 -0
- package/dist/bot/compliance-bot.js.map +1 -0
- package/dist/bot/dependency-updater-bot.d.ts +9 -0
- package/dist/bot/dependency-updater-bot.d.ts.map +1 -0
- package/dist/bot/dependency-updater-bot.js +9 -0
- package/dist/bot/dependency-updater-bot.js.map +1 -0
- package/dist/bot/security-scanner-bot.d.ts +11 -0
- package/dist/bot/security-scanner-bot.d.ts.map +1 -0
- package/dist/bot/security-scanner-bot.js +21 -0
- package/dist/bot/security-scanner-bot.js.map +1 -0
- package/dist/cli/commands/agent-card.command.d.ts +11 -0
- package/dist/cli/commands/agent-card.command.d.ts.map +1 -0
- package/dist/cli/commands/agent-card.command.js +285 -0
- package/dist/cli/commands/agent-card.command.js.map +1 -0
- package/dist/cli/commands/agents.command.d.ts +11 -0
- package/dist/cli/commands/agents.command.d.ts.map +1 -0
- package/dist/cli/commands/agents.command.js +326 -0
- package/dist/cli/commands/agents.command.js.map +1 -0
- package/dist/cli/commands/diff.command.d.ts +7 -0
- package/dist/cli/commands/diff.command.d.ts.map +1 -0
- package/dist/cli/commands/diff.command.js +181 -0
- package/dist/cli/commands/diff.command.js.map +1 -0
- package/dist/cli/commands/docs.command.d.ts +7 -0
- package/dist/cli/commands/docs.command.d.ts.map +1 -0
- package/dist/cli/commands/docs.command.js +274 -0
- package/dist/cli/commands/docs.command.js.map +1 -0
- package/dist/cli/commands/generate.command.d.ts +13 -2
- package/dist/cli/commands/generate.command.d.ts.map +1 -1
- package/dist/cli/commands/generate.command.js +204 -29
- package/dist/cli/commands/generate.command.js.map +1 -1
- package/dist/cli/commands/lint.command.d.ts +7 -0
- package/dist/cli/commands/lint.command.d.ts.map +1 -0
- package/dist/cli/commands/lint.command.js +342 -0
- package/dist/cli/commands/lint.command.js.map +1 -0
- package/dist/cli/commands/registry.command.d.ts +14 -0
- package/dist/cli/commands/registry.command.d.ts.map +1 -0
- package/dist/cli/commands/registry.command.js +428 -0
- package/dist/cli/commands/registry.command.js.map +1 -0
- package/dist/cli/commands/serve.command.d.ts +7 -0
- package/dist/cli/commands/serve.command.d.ts.map +1 -0
- package/dist/cli/commands/serve.command.js +232 -0
- package/dist/cli/commands/serve.command.js.map +1 -0
- package/dist/cli/commands/workspace.command.d.ts +14 -0
- package/dist/cli/commands/workspace.command.d.ts.map +1 -0
- package/dist/cli/commands/workspace.command.js +467 -0
- package/dist/cli/commands/workspace.command.js.map +1 -0
- package/dist/cli/index.js +13 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/di-container.d.ts.map +1 -1
- package/dist/di-container.js +23 -0
- package/dist/di-container.js.map +1 -1
- package/dist/services/codegen/codegen.service.d.ts +75 -0
- package/dist/services/codegen/codegen.service.d.ts.map +1 -0
- package/dist/services/codegen/codegen.service.js +136 -0
- package/dist/services/codegen/codegen.service.js.map +1 -0
- package/dist/services/codegen/generators/manifest.generator.d.ts +41 -0
- package/dist/services/codegen/generators/manifest.generator.d.ts.map +1 -0
- package/dist/services/codegen/generators/manifest.generator.js +178 -0
- package/dist/services/codegen/generators/manifest.generator.js.map +1 -0
- package/dist/services/codegen/generators/openapi.generator.d.ts +46 -0
- package/dist/services/codegen/generators/openapi.generator.d.ts.map +1 -0
- package/dist/services/codegen/generators/openapi.generator.js +157 -0
- package/dist/services/codegen/generators/openapi.generator.js.map +1 -0
- package/dist/services/codegen/generators/types.generator.d.ts +27 -0
- package/dist/services/codegen/generators/types.generator.d.ts.map +1 -0
- package/dist/services/codegen/generators/types.generator.js +97 -0
- package/dist/services/codegen/generators/types.generator.js.map +1 -0
- package/dist/services/codegen/generators/vscode.generator.d.ts +43 -0
- package/dist/services/codegen/generators/vscode.generator.d.ts.map +1 -0
- package/dist/services/codegen/generators/vscode.generator.js +163 -0
- package/dist/services/codegen/generators/vscode.generator.js.map +1 -0
- package/dist/services/codegen/generators/zod.generator.d.ts +31 -0
- package/dist/services/codegen/generators/zod.generator.d.ts.map +1 -0
- package/dist/services/codegen/generators/zod.generator.js +134 -0
- package/dist/services/codegen/generators/zod.generator.js.map +1 -0
- package/dist/services/codegen/index.d.ts +33 -0
- package/dist/services/codegen/index.d.ts.map +1 -0
- package/dist/services/codegen/index.js +36 -0
- package/dist/services/codegen/index.js.map +1 -0
- package/dist/services/git.service.d.ts +40 -0
- package/dist/services/git.service.d.ts.map +1 -0
- package/dist/services/git.service.js +122 -0
- package/dist/services/git.service.js.map +1 -0
- package/dist/spec/extensions/openapi/ossa-openapi-extensions.schema.json +804 -0
- package/dist/spec/v0.3.0/examples/drupal-content-writer.ossa.yaml +1 -1
- package/dist/spec/v0.3.0/examples/drupal-moderation-assistant.ossa.yaml +1 -1
- package/dist/spec/v0.3.0/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +1 -1
- package/dist/spec/v0.3.0/runtime-bindings/anthropic.yaml +209 -0
- package/dist/spec/v0.3.1/UNIFIED-SCHEMA.md +120 -0
- package/dist/spec/v0.3.1/adapters/drupal.md +541 -0
- package/dist/spec/v0.3.1/adapters/symfony.md +659 -0
- package/dist/spec/v0.3.1/agent-test.schema.json +75 -0
- package/dist/spec/v0.3.1/examples/agent-with-identity.ossa.yaml +68 -0
- package/dist/spec/v0.3.1/examples/drupal-content-writer.ossa.yaml +110 -0
- package/dist/spec/v0.3.1/examples/drupal-moderation-assistant.ossa.yaml +96 -0
- package/dist/spec/v0.3.1/examples/multi-provider-identity.ossa.yaml +236 -0
- package/dist/spec/v0.3.1/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +144 -0
- package/dist/spec/v0.3.1/extensions/agent-identity.yaml +594 -0
- package/dist/spec/v0.3.1/extensions/drupal.md +417 -0
- package/dist/spec/v0.3.1/ossa-0.3.1.schema.json +3085 -0
- package/dist/spec/v0.3.1/protocols/sse.md +494 -0
- package/dist/spec/v0.3.1/protocols/webrtc.md +600 -0
- package/dist/spec/v0.3.1/protocols/websocket.md +362 -0
- package/dist/spec/v0.3.1/schemas/agent-unified.yaml +165 -0
- package/dist/spec/v0.3.1/schemas/capabilities.yaml +102 -0
- package/dist/spec/v0.3.1/schemas/functions.yaml +75 -0
- package/dist/spec/v0.3.1/schemas/messaging/channel.schema.json +245 -0
- package/dist/spec/v0.3.1/schemas/messaging/delivery-receipt.schema.json +192 -0
- package/dist/spec/v0.3.1/schemas/messaging/message.schema.json +205 -0
- package/dist/spec/v0.3.1/schemas/messaging/subscription.schema.json +214 -0
- package/dist/spec/v0.3.1/schemas/runtime.yaml +102 -0
- package/dist/spec/v0.3.1/schemas/taxonomy.yaml +533 -0
- package/dist/spec/v0.3.1/schemas/unified-llm.yaml +91 -0
- package/dist/spec/v0.3.1/taxonomy.yaml +256 -0
- package/dist/spec/v0.3.2/MIGRATION-v0.3.1-to-v0.3.2.md +293 -0
- package/dist/spec/v0.3.2/UNIFIED-SCHEMA.md +120 -0
- package/dist/spec/v0.3.2/access_tiers.yaml +375 -0
- package/dist/spec/v0.3.2/adapters/drupal.md +541 -0
- package/dist/spec/v0.3.2/adapters/symfony.md +659 -0
- package/dist/spec/v0.3.2/agent-test.schema.json +75 -0
- package/dist/spec/v0.3.2/examples/access-tiers/README.md +106 -0
- package/dist/spec/v0.3.2/examples/access-tiers/code-critic.ossa.yaml +119 -0
- package/dist/spec/v0.3.2/examples/access-tiers/compliance-governor.ossa.yaml +234 -0
- package/dist/spec/v0.3.2/examples/access-tiers/deployment-operator.ossa.yaml +201 -0
- package/dist/spec/v0.3.2/examples/access-tiers/doc-generator.ossa.yaml +117 -0
- package/dist/spec/v0.3.2/examples/access-tiers/security-scanner.ossa.yaml +133 -0
- package/dist/spec/v0.3.2/examples/agent-with-identity.ossa.yaml +68 -0
- package/dist/spec/v0.3.2/examples/drupal-content-writer.ossa.yaml +110 -0
- package/dist/spec/v0.3.2/examples/drupal-moderation-assistant.ossa.yaml +96 -0
- package/dist/spec/v0.3.2/examples/multi-provider-identity.ossa.yaml +236 -0
- package/dist/spec/v0.3.2/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +144 -0
- package/dist/spec/v0.3.2/examples/tasks/data-transform.ossa.yaml +147 -0
- package/dist/spec/v0.3.2/examples/tasks/publish-content.ossa.yaml +125 -0
- package/dist/spec/v0.3.2/examples/workflows/content-publishing.ossa.yaml +190 -0
- package/dist/spec/v0.3.2/examples/workflows/deployment-pipeline.ossa.yaml +247 -0
- package/dist/spec/v0.3.2/extensions/agent-identity.yaml +594 -0
- package/dist/spec/v0.3.2/extensions/drupal.md +417 -0
- package/dist/spec/v0.3.2/infrastructure/service-ports.yaml +324 -0
- package/dist/spec/v0.3.2/ossa-0.3.2.schema.json +3316 -0
- package/dist/spec/v0.3.2/protocols/delegation.yaml +239 -0
- package/dist/spec/v0.3.2/protocols/sse.md +494 -0
- package/dist/spec/v0.3.2/protocols/webrtc.md +600 -0
- package/dist/spec/v0.3.2/protocols/websocket.md +362 -0
- package/dist/spec/v0.3.2/runtime/RUNTIME.md +457 -0
- package/dist/spec/v0.3.2/runtime/memory-model.yaml +871 -0
- package/dist/spec/v0.3.2/runtime/runtime.yaml +926 -0
- package/dist/spec/v0.3.2/schemas/agent-unified.yaml +165 -0
- package/dist/spec/v0.3.2/schemas/capabilities.yaml +102 -0
- package/dist/spec/v0.3.2/schemas/functions.yaml +75 -0
- package/dist/spec/v0.3.2/schemas/messaging/channel.schema.json +245 -0
- package/dist/spec/v0.3.2/schemas/messaging/delivery-receipt.schema.json +192 -0
- package/dist/spec/v0.3.2/schemas/messaging/message.schema.json +205 -0
- package/dist/spec/v0.3.2/schemas/messaging/subscription.schema.json +214 -0
- package/dist/spec/v0.3.2/schemas/runtime.yaml +102 -0
- package/dist/spec/v0.3.2/schemas/taxonomy.yaml +533 -0
- package/dist/spec/v0.3.2/schemas/unified-llm.yaml +91 -0
- package/dist/spec/v0.3.2/taxonomy.yaml +363 -0
- package/dist/testing/fixtures.d.ts.map +1 -1
- package/dist/testing/fixtures.js +3 -2
- package/dist/testing/fixtures.js.map +1 -1
- package/dist/types/generated/{ossa-0.3.0.types.d.ts → ossa-0.3.2.types.d.ts} +58 -7
- package/dist/types/generated/ossa-0.3.2.types.d.ts.map +1 -0
- package/dist/types/generated/ossa-0.3.2.types.js +10 -0
- package/dist/types/generated/ossa-0.3.2.types.js.map +1 -0
- package/dist/types/generated/ossa-0.3.2.zod.d.ts +36 -0
- package/dist/types/generated/ossa-0.3.2.zod.d.ts.map +1 -0
- package/dist/types/generated/ossa-0.3.2.zod.js +25 -0
- package/dist/types/generated/ossa-0.3.2.zod.js.map +1 -0
- package/examples/adapters/drupal-eca-mapping.yaml +1 -1
- package/examples/adapters/drupal-eca-task.yaml +1 -1
- package/examples/adapters/drupal-flowdrop-mapping.yaml +1 -1
- package/examples/adapters/drupal-maestro-mapping.yaml +1 -1
- package/examples/adapters/mistral-agent.yaml +1 -1
- package/examples/adapters/symfony-messenger-task.yaml +1 -1
- package/examples/adapters/symfony-messenger-workflow.yaml +1 -1
- package/examples/adk-integration/code-review-workflow.yml +1 -1
- package/examples/adk-integration/customer-support.yml +1 -1
- package/examples/adk-integration/data-pipeline.yml +1 -1
- package/examples/advanced/reasoning-agent.yaml +1 -1
- package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
- package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
- package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
- package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
- package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
- package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
- package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
- package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
- package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
- package/examples/agents/architecture-healer-enterprise.yaml +1 -1
- package/examples/agents/dependency-healer-npm.yaml +1 -1
- package/examples/agents/spec-healer-openapi.yaml +1 -1
- package/examples/agents/wiki-healer-production.yaml +1 -1
- package/examples/agents-md/code-agent.ossa.json +36 -11
- package/examples/agents-md/monorepo-agent.ossa.yaml +1 -1
- package/examples/anthropic/claude-assistant.ossa.json +4 -4
- package/examples/autogen/multi-agent.ossa.json +2 -2
- package/examples/autonomous-evolution/self-evolving-agent.ossa.yaml +1 -1
- package/examples/claude-code/code-reviewer.ossa.yaml +1 -1
- package/examples/claude-code/ossa-validator.ossa.yaml +1 -1
- package/examples/common_npm/agent-router.ossa.yaml +1 -1
- package/examples/contracts/data-consumer.ossa.yaml +1 -1
- package/examples/contracts/data-producer-v2.ossa.yaml +1 -1
- package/examples/contracts/data-producer.ossa.yaml +1 -1
- package/examples/crewai/research-team.ossa.json +2 -2
- package/examples/cursor/code-review-agent.ossa.json +2 -2
- package/examples/drupal/ai_agents_ossa-module/.agents/example-agent/agent.ossa.yaml +1 -1
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -1
- package/examples/extensions/agents-md-advanced.yml +1 -1
- package/examples/extensions/agents-md-basic.yml +1 -1
- package/examples/extensions/agents-md-sync.yml +1 -1
- package/examples/extensions/agents-md-v1.yml +1 -1
- package/examples/extensions/drupal-v1.yml +1 -1
- package/examples/extensions/encryption-multi-provider.yaml +4 -4
- package/examples/extensions/kagent-v1.yml +1 -1
- package/examples/extensions/knowledge-sources.yaml +1 -1
- package/examples/extensions/mcp-full-featured.yaml +1 -1
- package/examples/getting-started/01-minimal-agent.ossa.yaml +3 -3
- package/examples/getting-started/02-agent-with-tools.ossa.yaml +1 -1
- package/examples/getting-started/03-agent-with-safety.ossa.yaml +1 -1
- package/examples/getting-started/04-agent-with-messaging.ossa.yaml +2 -2
- package/examples/getting-started/05-workflow-composition.ossa.yaml +1 -1
- package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
- package/examples/kagent/compliance-validator.ossa.yaml +1 -1
- package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
- package/examples/kagent/documentation-agent.ossa.yaml +1 -1
- package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -1
- package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
- package/examples/kagent/security-scanner.ossa.yaml +1 -1
- package/examples/langchain/chain-agent.ossa.json +2 -2
- package/examples/langflow/workflow-agent.ossa.json +2 -2
- package/examples/langgraph/state-machine-agent.ossa.json +2 -2
- package/examples/llamaindex/rag-agent.ossa.json +2 -2
- package/examples/messaging/dependency-healer.ossa.yaml +1 -1
- package/examples/messaging/incident-responder.ossa.yaml +1 -1
- package/examples/messaging/routing-rules.ossa.yaml +3 -3
- package/examples/messaging/security-scanner.ossa.yaml +1 -1
- package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
- package/examples/multi-agent/conditional-router.ossa.yaml +1 -1
- package/examples/multi-agent/parallel-execution.ossa.yaml +1 -1
- package/examples/multi-agent/sequential-pipeline.ossa.yaml +1 -1
- package/examples/observability/activity-stream-full.yaml +1 -1
- package/examples/openai/basic-agent.ossa.yaml +1 -1
- package/examples/openai/multi-tool-agent.ossa.json +2 -2
- package/examples/openai/swarm-agent.ossa.json +2 -2
- package/examples/production/document-analyzer-openai.yml +1 -1
- package/examples/quickstart/support-agent.ossa.yaml +1 -1
- package/examples/real-world/gitlab-cicd-optimizer.ossa.yaml +1 -1
- package/examples/real-world/rag-documentation-assistant.ossa.yaml +1 -1
- package/examples/runtime-adapters/bedrock-claude-example.ossa.yaml +1 -1
- package/examples/schema/reusable-components.yaml +1 -1
- package/examples/showcase/ci-pipeline.ossa.yaml +59 -0
- package/examples/showcase/code-assistant.ossa.yaml +118 -0
- package/examples/showcase/code-reviewer.ossa.yaml +61 -0
- package/examples/showcase/compliance-validator.ossa.yaml +62 -0
- package/examples/showcase/content-writer.ossa.yaml +67 -0
- package/examples/showcase/data-transformer.ossa.yaml +78 -0
- package/examples/showcase/doc-generator.ossa.yaml +68 -0
- package/examples/showcase/security-scanner.ossa.yaml +65 -0
- package/examples/showcase/test-generator.ossa.yaml +63 -0
- package/examples/showcase/workflow-orchestrator.ossa.yaml +129 -0
- package/examples/tasks/batch-email-sender.yaml +1 -1
- package/examples/tasks/data-transform.yaml +1 -1
- package/examples/tasks/publish-content.yaml +1 -1
- package/examples/templates/ossa-compliance.yaml +1 -1
- package/examples/unified/security-scanner.ossa.yaml +1 -1
- package/examples/vercel/edge-agent.ossa.json +2 -2
- package/examples/workflows/batch-email-campaign.yaml +1 -1
- package/examples/workflows/content-review-publish.yaml +1 -1
- package/examples/workflows/simple-etl.yaml +1 -1
- package/llms-ctx-full.txt +39 -0
- package/llms-ctx.txt +39 -0
- package/openapi/agent-communication.yaml +1 -1
- package/openapi/agent-crud.yaml +8 -8
- package/openapi/agent-discovery.yaml +2 -2
- package/openapi/agent-identity.yaml +8 -8
- package/openapi/cli-commands.openapi.yaml +231 -0
- package/openapi/core/ossa-core-api.openapi.yaml +1 -1
- package/openapi/core/ossa-registry-api.openapi.yaml +1 -1
- package/openapi/core/ossa-registry.openapi.yaml +1 -1
- package/openapi/core/unified-agent-gateway.openapi.yaml +1 -1
- package/openapi/github-sync.yaml +1 -1
- package/openapi/protocols/sse-streams.yaml +1 -1
- package/openapi/protocols/websocket-events.yaml +2 -2
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/helm-generator.openapi.yaml +1 -1
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +1 -1
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +1 -1
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +2 -2
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +1 -1
- package/package.json +14 -32
- package/spec/extensions/openapi/ossa-openapi-extensions.schema.json +804 -0
- package/spec/v0.3.0/examples/drupal-content-writer.ossa.yaml +1 -1
- package/spec/v0.3.0/examples/drupal-moderation-assistant.ossa.yaml +1 -1
- package/spec/v0.3.0/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +1 -1
- package/spec/v0.3.0/runtime-bindings/anthropic.yaml +209 -0
- package/spec/v0.3.1/UNIFIED-SCHEMA.md +120 -0
- package/spec/v0.3.1/adapters/drupal.md +541 -0
- package/spec/v0.3.1/adapters/symfony.md +659 -0
- package/spec/v0.3.1/agent-test.schema.json +75 -0
- package/spec/v0.3.1/examples/agent-with-identity.ossa.yaml +68 -0
- package/spec/v0.3.1/examples/drupal-content-writer.ossa.yaml +110 -0
- package/spec/v0.3.1/examples/drupal-moderation-assistant.ossa.yaml +96 -0
- package/spec/v0.3.1/examples/multi-provider-identity.ossa.yaml +236 -0
- package/spec/v0.3.1/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +144 -0
- package/spec/v0.3.1/extensions/agent-identity.yaml +594 -0
- package/spec/v0.3.1/extensions/drupal.md +417 -0
- package/spec/v0.3.1/ossa-0.3.1.schema.json +3085 -0
- package/spec/v0.3.1/protocols/sse.md +494 -0
- package/spec/v0.3.1/protocols/webrtc.md +600 -0
- package/spec/v0.3.1/protocols/websocket.md +362 -0
- package/spec/v0.3.1/schemas/agent-unified.yaml +165 -0
- package/spec/v0.3.1/schemas/capabilities.yaml +102 -0
- package/spec/v0.3.1/schemas/functions.yaml +75 -0
- package/spec/v0.3.1/schemas/messaging/channel.schema.json +245 -0
- package/spec/v0.3.1/schemas/messaging/delivery-receipt.schema.json +192 -0
- package/spec/v0.3.1/schemas/messaging/message.schema.json +205 -0
- package/spec/v0.3.1/schemas/messaging/subscription.schema.json +214 -0
- package/spec/v0.3.1/schemas/runtime.yaml +102 -0
- package/spec/v0.3.1/schemas/taxonomy.yaml +533 -0
- package/spec/v0.3.1/schemas/unified-llm.yaml +91 -0
- package/spec/v0.3.1/taxonomy.yaml +256 -0
- package/spec/v0.3.2/MIGRATION-v0.3.1-to-v0.3.2.md +293 -0
- package/spec/v0.3.2/UNIFIED-SCHEMA.md +120 -0
- package/spec/v0.3.2/access_tiers.yaml +375 -0
- package/spec/v0.3.2/adapters/drupal.md +541 -0
- package/spec/v0.3.2/adapters/symfony.md +659 -0
- package/spec/v0.3.2/agent-test.schema.json +75 -0
- package/spec/v0.3.2/examples/access-tiers/README.md +106 -0
- package/spec/v0.3.2/examples/access-tiers/code-critic.ossa.yaml +119 -0
- package/spec/v0.3.2/examples/access-tiers/compliance-governor.ossa.yaml +234 -0
- package/spec/v0.3.2/examples/access-tiers/deployment-operator.ossa.yaml +201 -0
- package/spec/v0.3.2/examples/access-tiers/doc-generator.ossa.yaml +117 -0
- package/spec/v0.3.2/examples/access-tiers/security-scanner.ossa.yaml +133 -0
- package/spec/v0.3.2/examples/agent-with-identity.ossa.yaml +68 -0
- package/spec/v0.3.2/examples/drupal-content-writer.ossa.yaml +110 -0
- package/spec/v0.3.2/examples/drupal-moderation-assistant.ossa.yaml +96 -0
- package/spec/v0.3.2/examples/multi-provider-identity.ossa.yaml +236 -0
- package/spec/v0.3.2/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +144 -0
- package/spec/v0.3.2/examples/tasks/data-transform.ossa.yaml +147 -0
- package/spec/v0.3.2/examples/tasks/publish-content.ossa.yaml +125 -0
- package/spec/v0.3.2/examples/workflows/content-publishing.ossa.yaml +190 -0
- package/spec/v0.3.2/examples/workflows/deployment-pipeline.ossa.yaml +247 -0
- package/spec/v0.3.2/extensions/agent-identity.yaml +594 -0
- package/spec/v0.3.2/extensions/drupal.md +417 -0
- package/spec/v0.3.2/infrastructure/service-ports.yaml +324 -0
- package/spec/v0.3.2/ossa-0.3.2.schema.json +3316 -0
- package/spec/v0.3.2/protocols/delegation.yaml +239 -0
- package/spec/v0.3.2/protocols/sse.md +494 -0
- package/spec/v0.3.2/protocols/webrtc.md +600 -0
- package/spec/v0.3.2/protocols/websocket.md +362 -0
- package/spec/v0.3.2/runtime/RUNTIME.md +457 -0
- package/spec/v0.3.2/runtime/memory-model.yaml +871 -0
- package/spec/v0.3.2/runtime/runtime.yaml +926 -0
- package/spec/v0.3.2/schemas/agent-unified.yaml +165 -0
- package/spec/v0.3.2/schemas/capabilities.yaml +102 -0
- package/spec/v0.3.2/schemas/functions.yaml +75 -0
- package/spec/v0.3.2/schemas/messaging/channel.schema.json +245 -0
- package/spec/v0.3.2/schemas/messaging/delivery-receipt.schema.json +192 -0
- package/spec/v0.3.2/schemas/messaging/message.schema.json +205 -0
- package/spec/v0.3.2/schemas/messaging/subscription.schema.json +214 -0
- package/spec/v0.3.2/schemas/runtime.yaml +102 -0
- package/spec/v0.3.2/schemas/taxonomy.yaml +533 -0
- package/spec/v0.3.2/schemas/unified-llm.yaml +91 -0
- package/spec/v0.3.2/taxonomy.yaml +363 -0
- package/dist/types/generated/ossa-0.3.0.types.d.ts.map +0 -1
- package/dist/types/generated/ossa-0.3.0.types.js +0 -8
- package/dist/types/generated/ossa-0.3.0.types.js.map +0 -1
- package/dist/types/generated/ossa-0.3.0.zod.d.ts +0 -17
- package/dist/types/generated/ossa-0.3.0.zod.d.ts.map +0 -1
- package/dist/types/generated/ossa-0.3.0.zod.js +0 -3
- package/dist/types/generated/ossa-0.3.0.zod.js.map +0 -1
- package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +0 -60
- package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +0 -68
- package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +0 -106
|
@@ -0,0 +1,457 @@
|
|
|
1
|
+
# OSSA v0.3.2 Runtime Specification
|
|
2
|
+
|
|
3
|
+
This document provides human-readable documentation for the OSSA Agent Runtime Specification, which defines how agents execute, communicate, and manage state.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
The runtime specification consists of two main components:
|
|
8
|
+
|
|
9
|
+
1. **runtime.yaml** - Core runtime behavior including lifecycle, control signals, execution model, and network isolation
|
|
10
|
+
2. **memory-model.yaml** - Memory management including short-term and long-term storage
|
|
11
|
+
|
|
12
|
+
## Agent Lifecycle
|
|
13
|
+
|
|
14
|
+
All OSSA agents follow a standard 5-phase lifecycle:
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
init -> plan -> act -> reflect -> terminate
|
|
18
|
+
^ |
|
|
19
|
+
| v
|
|
20
|
+
+---------+
|
|
21
|
+
(iteration loop)
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Phase Descriptions
|
|
25
|
+
|
|
26
|
+
#### 1. Init Phase
|
|
27
|
+
**Purpose**: Prepare the agent for execution
|
|
28
|
+
|
|
29
|
+
**Activities**:
|
|
30
|
+
- Load configuration and credentials
|
|
31
|
+
- Establish connections to tools and services
|
|
32
|
+
- Validate input parameters
|
|
33
|
+
- Set up logging and telemetry
|
|
34
|
+
|
|
35
|
+
**Default Timeout**: 30 seconds
|
|
36
|
+
|
|
37
|
+
**Success Signal**: `ready`
|
|
38
|
+
|
|
39
|
+
#### 2. Plan Phase
|
|
40
|
+
**Purpose**: Analyze task and generate execution strategy
|
|
41
|
+
|
|
42
|
+
**Activities**:
|
|
43
|
+
- Analyze the task/goal
|
|
44
|
+
- Retrieve relevant context from memory
|
|
45
|
+
- Generate execution plan
|
|
46
|
+
- Determine required tools and delegations
|
|
47
|
+
|
|
48
|
+
**Default Timeout**: 60 seconds
|
|
49
|
+
|
|
50
|
+
**Success Signal**: `plan_ready`
|
|
51
|
+
|
|
52
|
+
#### 3. Act Phase
|
|
53
|
+
**Purpose**: Execute the planned actions
|
|
54
|
+
|
|
55
|
+
**Activities**:
|
|
56
|
+
- Execute planned steps
|
|
57
|
+
- Make tool calls
|
|
58
|
+
- Delegate to sub-agents
|
|
59
|
+
- Produce artifacts/outputs
|
|
60
|
+
|
|
61
|
+
**Default Timeout**: 300 seconds
|
|
62
|
+
|
|
63
|
+
**Success Signal**: `action_complete`
|
|
64
|
+
|
|
65
|
+
#### 4. Reflect Phase
|
|
66
|
+
**Purpose**: Evaluate results and decide next steps
|
|
67
|
+
|
|
68
|
+
**Activities**:
|
|
69
|
+
- Evaluate action results
|
|
70
|
+
- Update memory with learnings
|
|
71
|
+
- Determine if goal is achieved
|
|
72
|
+
- Decide on iteration or termination
|
|
73
|
+
|
|
74
|
+
**Default Timeout**: 30 seconds
|
|
75
|
+
|
|
76
|
+
**Success Signal**: `reflection_complete`
|
|
77
|
+
|
|
78
|
+
#### 5. Terminate Phase
|
|
79
|
+
**Purpose**: Clean up and finalize
|
|
80
|
+
|
|
81
|
+
**Activities**:
|
|
82
|
+
- Finalize outputs
|
|
83
|
+
- Persist state to long-term memory
|
|
84
|
+
- Release resources
|
|
85
|
+
- Emit completion telemetry
|
|
86
|
+
|
|
87
|
+
**Default Timeout**: 15 seconds
|
|
88
|
+
|
|
89
|
+
**Success Signal**: `terminated`
|
|
90
|
+
|
|
91
|
+
### Lifecycle Transitions
|
|
92
|
+
|
|
93
|
+
| From | To | Condition |
|
|
94
|
+
|------|-----|-----------|
|
|
95
|
+
| init | plan | `ready` signal received |
|
|
96
|
+
| plan | act | `plan_ready` signal received |
|
|
97
|
+
| act | reflect | `action_complete` signal received |
|
|
98
|
+
| reflect | act | `iteration_needed` (goal not yet achieved) |
|
|
99
|
+
| reflect | terminate | `goal_achieved` |
|
|
100
|
+
| any | terminate | `halt_signal` or `error_unrecoverable` |
|
|
101
|
+
|
|
102
|
+
### Iteration Control
|
|
103
|
+
|
|
104
|
+
- **max_iterations**: Maximum plan-act-reflect cycles (default: 10)
|
|
105
|
+
- **total_timeout_seconds**: Maximum total execution time (default: 3600)
|
|
106
|
+
|
|
107
|
+
## Control Signals
|
|
108
|
+
|
|
109
|
+
Control signals are the standard communication primitives between agents, runtimes, and external systems.
|
|
110
|
+
|
|
111
|
+
### Standard Signals
|
|
112
|
+
|
|
113
|
+
#### tool_call
|
|
114
|
+
Invoke an external tool or capability.
|
|
115
|
+
|
|
116
|
+
```yaml
|
|
117
|
+
type: tool_call
|
|
118
|
+
async: true
|
|
119
|
+
timeout_seconds: 60
|
|
120
|
+
payload:
|
|
121
|
+
tool_name: "security_scan"
|
|
122
|
+
parameters:
|
|
123
|
+
path: "/src"
|
|
124
|
+
severity: "high"
|
|
125
|
+
correlation_id: "uuid"
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
#### delegation
|
|
129
|
+
Delegate work to another agent.
|
|
130
|
+
|
|
131
|
+
```yaml
|
|
132
|
+
type: delegation
|
|
133
|
+
async: true
|
|
134
|
+
timeout_seconds: 300
|
|
135
|
+
payload:
|
|
136
|
+
target_agent: "code-review-agent"
|
|
137
|
+
task:
|
|
138
|
+
action: "review"
|
|
139
|
+
files: ["src/main.py"]
|
|
140
|
+
context:
|
|
141
|
+
pr_number: 123
|
|
142
|
+
callback: "https://callback.example.com/results"
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
#### halt
|
|
146
|
+
Immediately stop agent execution.
|
|
147
|
+
|
|
148
|
+
```yaml
|
|
149
|
+
type: halt
|
|
150
|
+
async: false
|
|
151
|
+
timeout_seconds: 5
|
|
152
|
+
payload:
|
|
153
|
+
reason: "user_interrupt" # or: resource_limit, policy_violation, external_signal, parent_termination
|
|
154
|
+
graceful: true
|
|
155
|
+
message: "User requested cancellation"
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
#### error
|
|
159
|
+
Indicate an error condition.
|
|
160
|
+
|
|
161
|
+
```yaml
|
|
162
|
+
type: error
|
|
163
|
+
async: false
|
|
164
|
+
payload:
|
|
165
|
+
error_code: "TOOL_ERROR" # INIT_FAILED, PLAN_FAILED, ACTION_FAILED, etc.
|
|
166
|
+
message: "Tool execution failed"
|
|
167
|
+
recoverable: false
|
|
168
|
+
details:
|
|
169
|
+
tool: "security_scan"
|
|
170
|
+
exit_code: 1
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
#### ready
|
|
174
|
+
Signal that agent is ready for work.
|
|
175
|
+
|
|
176
|
+
```yaml
|
|
177
|
+
type: ready
|
|
178
|
+
payload:
|
|
179
|
+
capabilities:
|
|
180
|
+
- "security_scan"
|
|
181
|
+
- "code_review"
|
|
182
|
+
version: "1.0.0"
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
#### heartbeat
|
|
186
|
+
Periodic liveness signal.
|
|
187
|
+
|
|
188
|
+
```yaml
|
|
189
|
+
type: heartbeat
|
|
190
|
+
interval_seconds: 30
|
|
191
|
+
payload:
|
|
192
|
+
timestamp: "2024-01-15T10:30:00Z"
|
|
193
|
+
phase: "act"
|
|
194
|
+
metrics:
|
|
195
|
+
memory_mb: 256
|
|
196
|
+
cpu_percent: 15
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
## Execution Model
|
|
200
|
+
|
|
201
|
+
### Timeout Configuration
|
|
202
|
+
|
|
203
|
+
Multiple timeout levels protect against runaway executions:
|
|
204
|
+
|
|
205
|
+
| Timeout | Default | Range | Description |
|
|
206
|
+
|---------|---------|-------|-------------|
|
|
207
|
+
| default_seconds | 300 | 1-3600 | Default operation timeout |
|
|
208
|
+
| llm_call_seconds | 60 | 5-300 | LLM API call timeout |
|
|
209
|
+
| tool_call_seconds | 60 | 1-600 | Tool invocation timeout |
|
|
210
|
+
| delegation_seconds | 300 | 30-3600 | Agent delegation timeout |
|
|
211
|
+
|
|
212
|
+
### Sandbox Configuration
|
|
213
|
+
|
|
214
|
+
Agents run in isolated sandboxes to prevent unauthorized access:
|
|
215
|
+
|
|
216
|
+
```yaml
|
|
217
|
+
sandbox:
|
|
218
|
+
enabled: true
|
|
219
|
+
type: container # or: vm, wasm, process, none
|
|
220
|
+
filesystem:
|
|
221
|
+
read_paths:
|
|
222
|
+
- /app/data
|
|
223
|
+
write_paths:
|
|
224
|
+
- /app/output
|
|
225
|
+
deny_paths:
|
|
226
|
+
- /etc/passwd
|
|
227
|
+
- /etc/shadow
|
|
228
|
+
- ~/.ssh
|
|
229
|
+
- ~/.aws
|
|
230
|
+
capabilities: [] # Linux capabilities
|
|
231
|
+
syscall_filter: default # strict, default, permissive
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
### Resource Limits
|
|
235
|
+
|
|
236
|
+
```yaml
|
|
237
|
+
resource_limits:
|
|
238
|
+
memory_mb: 512
|
|
239
|
+
cpu_millicores: 1000
|
|
240
|
+
gpu_memory_mb: 0
|
|
241
|
+
max_open_files: 256
|
|
242
|
+
max_processes: 10
|
|
243
|
+
max_network_connections: 50
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
## Network Isolation Model
|
|
247
|
+
|
|
248
|
+
### Isolation Modes
|
|
249
|
+
|
|
250
|
+
| Mode | Description |
|
|
251
|
+
|------|-------------|
|
|
252
|
+
| strict | No network access except explicitly allowed |
|
|
253
|
+
| namespace | Isolated network namespace per agent |
|
|
254
|
+
| mesh | Service mesh with controlled inter-agent communication |
|
|
255
|
+
| none | No network isolation (development only) |
|
|
256
|
+
|
|
257
|
+
### Egress Rules
|
|
258
|
+
|
|
259
|
+
Control outbound traffic:
|
|
260
|
+
|
|
261
|
+
```yaml
|
|
262
|
+
egress:
|
|
263
|
+
allowed_domains:
|
|
264
|
+
- api.openai.com
|
|
265
|
+
- api.anthropic.com
|
|
266
|
+
- "*.googleapis.com"
|
|
267
|
+
blocked_domains: []
|
|
268
|
+
allowed_ports:
|
|
269
|
+
- 443
|
|
270
|
+
- 80
|
|
271
|
+
rate_limit:
|
|
272
|
+
requests_per_second: 100
|
|
273
|
+
bytes_per_second: 10485760 # 10 MB/s
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
### Ingress Rules
|
|
277
|
+
|
|
278
|
+
Control inbound traffic:
|
|
279
|
+
|
|
280
|
+
```yaml
|
|
281
|
+
ingress:
|
|
282
|
+
allowed_sources:
|
|
283
|
+
- "10.0.0.0/8"
|
|
284
|
+
- "agent-orchestrator"
|
|
285
|
+
allowed_ports:
|
|
286
|
+
- 8080
|
|
287
|
+
- 8443
|
|
288
|
+
require_mtls: true
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
### Agent Mesh
|
|
292
|
+
|
|
293
|
+
Configuration for agent-to-agent communication:
|
|
294
|
+
|
|
295
|
+
```yaml
|
|
296
|
+
agent_mesh:
|
|
297
|
+
enabled: true
|
|
298
|
+
discovery: kubernetes # or: dns, consul, static
|
|
299
|
+
encryption: mtls # or: none, tls, wireguard
|
|
300
|
+
allowed_agents:
|
|
301
|
+
- security-scanner
|
|
302
|
+
- code-reviewer
|
|
303
|
+
denied_agents: []
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
## Memory Model
|
|
307
|
+
|
|
308
|
+
### Short-Term Memory
|
|
309
|
+
|
|
310
|
+
Volatile memory for immediate context:
|
|
311
|
+
|
|
312
|
+
#### Conversation Context
|
|
313
|
+
- Maximum messages: 100 (default)
|
|
314
|
+
- Maximum tokens: 32,000 (default)
|
|
315
|
+
- Truncation strategies: sliding_window, summarize, oldest_first, importance_based
|
|
316
|
+
|
|
317
|
+
#### Working Memory
|
|
318
|
+
- Scratchpad for intermediate computations
|
|
319
|
+
- Maximum size: 64 MB (default)
|
|
320
|
+
- TTL: 3600 seconds (default)
|
|
321
|
+
|
|
322
|
+
#### Session State
|
|
323
|
+
- Session-level state management
|
|
324
|
+
- Session TTL: 3600 seconds (default)
|
|
325
|
+
- Maximum concurrent sessions: 100 (default)
|
|
326
|
+
|
|
327
|
+
### Long-Term Memory
|
|
328
|
+
|
|
329
|
+
Persistent storage for knowledge and state:
|
|
330
|
+
|
|
331
|
+
#### Supported Providers
|
|
332
|
+
- Relational: postgres, sqlite
|
|
333
|
+
- Document: mongodb, dynamodb
|
|
334
|
+
- Vector: qdrant, pinecone, weaviate, chromadb, milvus
|
|
335
|
+
- Graph: neo4j
|
|
336
|
+
- Hybrid: postgres with pgvector
|
|
337
|
+
|
|
338
|
+
#### Knowledge Base
|
|
339
|
+
- Schema format: JSON Schema or RDF
|
|
340
|
+
- Versioning enabled by default
|
|
341
|
+
- Maximum entries: 100,000 (default)
|
|
342
|
+
|
|
343
|
+
#### Vector Store
|
|
344
|
+
- Embedding model: configurable (default: text-embedding-3-small)
|
|
345
|
+
- Dimensions: 1536 (default)
|
|
346
|
+
- Distance metric: cosine, euclidean, or dot_product
|
|
347
|
+
- Index type: hnsw, flat, ivf, scann
|
|
348
|
+
|
|
349
|
+
#### Conversation History
|
|
350
|
+
- Retention: 90 days (default)
|
|
351
|
+
- Indexing for search
|
|
352
|
+
- Auto-summarization of old conversations
|
|
353
|
+
|
|
354
|
+
#### Agent State
|
|
355
|
+
- Checkpoint interval: 60 seconds (default)
|
|
356
|
+
- Maximum checkpoints: 10 (default)
|
|
357
|
+
- Compression enabled by default
|
|
358
|
+
|
|
359
|
+
### Memory Provider Interface
|
|
360
|
+
|
|
361
|
+
All memory providers MUST implement these operations:
|
|
362
|
+
|
|
363
|
+
| Operation | Description | Required |
|
|
364
|
+
|-----------|-------------|----------|
|
|
365
|
+
| get | Retrieve entry by key | Yes |
|
|
366
|
+
| set | Store entry | Yes |
|
|
367
|
+
| delete | Remove entry | Yes |
|
|
368
|
+
| exists | Check if key exists | Yes |
|
|
369
|
+
| list | List keys matching pattern | Yes |
|
|
370
|
+
| clear | Clear namespace | Yes |
|
|
371
|
+
| search | Semantic search (vector) | No |
|
|
372
|
+
| batch_get | Retrieve multiple entries | No |
|
|
373
|
+
| batch_set | Store multiple entries | No |
|
|
374
|
+
| expire | Set expiration | No |
|
|
375
|
+
| increment | Atomic increment | No |
|
|
376
|
+
|
|
377
|
+
### Memory Lifecycle
|
|
378
|
+
|
|
379
|
+
#### Garbage Collection
|
|
380
|
+
- Strategies: lru, lfu, ttl, size_based, hybrid
|
|
381
|
+
- Run interval: 3600 seconds (default)
|
|
382
|
+
- Trigger threshold: 80% memory usage
|
|
383
|
+
|
|
384
|
+
#### Backup
|
|
385
|
+
- Interval: 24 hours (default)
|
|
386
|
+
- Retention: 7 backups (default)
|
|
387
|
+
- Encryption enabled by default
|
|
388
|
+
|
|
389
|
+
#### Compaction
|
|
390
|
+
- Fragmentation threshold: 30%
|
|
391
|
+
- Run interval: 24 hours (default)
|
|
392
|
+
|
|
393
|
+
## Example Configuration
|
|
394
|
+
|
|
395
|
+
```yaml
|
|
396
|
+
apiVersion: ossa/v0.3.2
|
|
397
|
+
kind: RuntimeSpec
|
|
398
|
+
|
|
399
|
+
lifecycle:
|
|
400
|
+
phases:
|
|
401
|
+
init:
|
|
402
|
+
timeout_seconds: 30
|
|
403
|
+
plan:
|
|
404
|
+
timeout_seconds: 60
|
|
405
|
+
act:
|
|
406
|
+
timeout_seconds: 300
|
|
407
|
+
reflect:
|
|
408
|
+
timeout_seconds: 30
|
|
409
|
+
terminate:
|
|
410
|
+
timeout_seconds: 15
|
|
411
|
+
max_iterations: 10
|
|
412
|
+
|
|
413
|
+
control_signals:
|
|
414
|
+
tool_call:
|
|
415
|
+
async: true
|
|
416
|
+
timeout_seconds: 60
|
|
417
|
+
delegation:
|
|
418
|
+
async: true
|
|
419
|
+
timeout_seconds: 300
|
|
420
|
+
|
|
421
|
+
execution:
|
|
422
|
+
timeout:
|
|
423
|
+
default_seconds: 300
|
|
424
|
+
llm_call_seconds: 60
|
|
425
|
+
sandbox:
|
|
426
|
+
enabled: true
|
|
427
|
+
type: container
|
|
428
|
+
resource_limits:
|
|
429
|
+
memory_mb: 512
|
|
430
|
+
cpu_millicores: 1000
|
|
431
|
+
|
|
432
|
+
network_isolation:
|
|
433
|
+
enabled: true
|
|
434
|
+
mode: namespace
|
|
435
|
+
egress:
|
|
436
|
+
allowed_domains:
|
|
437
|
+
- api.openai.com
|
|
438
|
+
- api.anthropic.com
|
|
439
|
+
allowed_ports:
|
|
440
|
+
- 443
|
|
441
|
+
agent_mesh:
|
|
442
|
+
enabled: true
|
|
443
|
+
encryption: mtls
|
|
444
|
+
```
|
|
445
|
+
|
|
446
|
+
## Related Specifications
|
|
447
|
+
|
|
448
|
+
- [Agent Unified Schema](../schemas/agent-unified.yaml) - Agent manifest specification
|
|
449
|
+
- [Runtime Binding](../schemas/runtime.yaml) - Runtime declaration in manifests
|
|
450
|
+
- [Capabilities Schema](../schemas/capabilities.yaml) - Capability declarations
|
|
451
|
+
- [Access Tiers](../access_tiers.yaml) - Permission and access control
|
|
452
|
+
|
|
453
|
+
## Version History
|
|
454
|
+
|
|
455
|
+
| Version | Date | Changes |
|
|
456
|
+
|---------|------|---------|
|
|
457
|
+
| 0.3.2 | 2024-01 | Initial runtime specification with lifecycle, control signals, execution model, network isolation, and memory model |
|