@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
package/.devfile.yaml
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
schemaVersion: 2.2.0
|
|
2
|
+
metadata:
|
|
3
|
+
name: ossa-development
|
|
4
|
+
# Version is managed by package.json - run `npm run version:sync` to update
|
|
5
|
+
description: OSSA development environment with GitLab agent access
|
|
6
|
+
components:
|
|
7
|
+
- name: dev-tools
|
|
8
|
+
container:
|
|
9
|
+
image: node:22-alpine
|
|
10
|
+
memoryLimit: 4Gi
|
|
11
|
+
cpuLimit: 2000m
|
|
12
|
+
mountSources: true
|
|
13
|
+
env:
|
|
14
|
+
- name: NODE_ENV
|
|
15
|
+
value: development
|
|
16
|
+
- name: KUBECONFIG
|
|
17
|
+
value: /workspace/.kube/config
|
|
18
|
+
volumeMounts:
|
|
19
|
+
- name: kube-config
|
|
20
|
+
path: /workspace/.kube
|
|
21
|
+
|
|
22
|
+
- name: kubectl
|
|
23
|
+
container:
|
|
24
|
+
image: bitnami/kubectl:latest
|
|
25
|
+
memoryLimit: 512Mi
|
|
26
|
+
cpuLimit: 500m
|
|
27
|
+
env:
|
|
28
|
+
- name: KUBECONFIG
|
|
29
|
+
value: /workspace/.kube/config
|
|
30
|
+
volumeMounts:
|
|
31
|
+
- name: kube-config
|
|
32
|
+
path: /workspace/.kube
|
|
33
|
+
|
|
34
|
+
volumes:
|
|
35
|
+
- name: kube-config
|
|
36
|
+
ephemeral: true
|
|
37
|
+
|
|
38
|
+
commands:
|
|
39
|
+
- id: install
|
|
40
|
+
exec:
|
|
41
|
+
component: dev-tools
|
|
42
|
+
commandLine: npm ci --legacy-peer-deps
|
|
43
|
+
workingDir: ${PROJECT_SOURCE}
|
|
44
|
+
|
|
45
|
+
- id: build
|
|
46
|
+
exec:
|
|
47
|
+
component: dev-tools
|
|
48
|
+
commandLine: npm run build
|
|
49
|
+
workingDir: ${PROJECT_SOURCE}
|
|
50
|
+
|
|
51
|
+
- id: test
|
|
52
|
+
exec:
|
|
53
|
+
component: dev-tools
|
|
54
|
+
commandLine: npm test
|
|
55
|
+
workingDir: ${PROJECT_SOURCE}
|
|
56
|
+
|
|
57
|
+
- id: lint
|
|
58
|
+
exec:
|
|
59
|
+
component: dev-tools
|
|
60
|
+
commandLine: npm run lint
|
|
61
|
+
workingDir: ${PROJECT_SOURCE}
|
|
62
|
+
|
|
63
|
+
- id: version-sync
|
|
64
|
+
exec:
|
|
65
|
+
component: dev-tools
|
|
66
|
+
commandLine: npm run version:sync
|
|
67
|
+
workingDir: ${PROJECT_SOURCE}
|
|
68
|
+
|
|
69
|
+
- id: deploy-agents
|
|
70
|
+
exec:
|
|
71
|
+
component: kubectl
|
|
72
|
+
commandLine: kubectl apply -f .gitlab/agents/
|
|
73
|
+
workingDir: ${PROJECT_SOURCE}
|
|
74
|
+
|
|
75
|
+
- id: get-pods
|
|
76
|
+
exec:
|
|
77
|
+
component: kubectl
|
|
78
|
+
commandLine: kubectl get pods -n ossa-agents
|
|
79
|
+
|
|
80
|
+
- id: agent-logs
|
|
81
|
+
exec:
|
|
82
|
+
component: kubectl
|
|
83
|
+
commandLine: kubectl logs -n ossa-agents -l app=version-manager --tail=100 -f
|
|
84
|
+
|
|
85
|
+
events:
|
|
86
|
+
postStart:
|
|
87
|
+
- install
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# CI trigger - 1766005216
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"PROJECT_NAME": "@bluefly/openstandardagents",
|
|
3
|
+
"PROJECT_DESCRIPTION": "OSSA - Open Standard for Scalable AI Agents. A specification standard for AI agents (like OpenAPI for REST APIs). NOT a framework.",
|
|
4
|
+
"VERSION": "0.3.0",
|
|
5
|
+
"STATUS": "Active",
|
|
6
|
+
"LICENSE": "Apache-2.0",
|
|
7
|
+
"KEY_FEATURES": "- OSSA v0.3.0 specification\n- Type-safe TypeScript validation\n- OpenAPI 3.1 specifications\n- Reference implementations\n- Agent-to-Agent messaging\n- Web-native protocols",
|
|
8
|
+
"REPO_URL": "https://gitlab.com/blueflyio/openstandardagents",
|
|
9
|
+
"GITLAB_ISSUES_URL": "https://gitlab.com/blueflyio/openstandardagents/-/issues",
|
|
10
|
+
"DOCS_URL": "https://gitlab.com/blueflyio/openstandardagents/-/wikis/home",
|
|
11
|
+
"TEAM_CONTACT": "thomas.scola@bluefly.io",
|
|
12
|
+
"PREREQUISITES": "- Node.js 20+\n- TypeScript 5.9+",
|
|
13
|
+
"INSTALL_COMMAND": "npm install",
|
|
14
|
+
"START_COMMAND": "npm run dev",
|
|
15
|
+
"VERIFY_COMMAND": "npm run test",
|
|
16
|
+
"BACKEND_STACK": "- TypeScript 5.9+\n- Zod - Schema validation\n- AJV - JSON Schema validation",
|
|
17
|
+
"FRONTEND_STACK": "N/A",
|
|
18
|
+
"INFRASTRUCTURE_STACK": "- Docker\n- GitLab CI/CD",
|
|
19
|
+
"API_BASE_URL": "N/A",
|
|
20
|
+
"OPENAPI_URL": "https://gitlab.com/blueflyio/openstandardagents/-/tree/main/openapi",
|
|
21
|
+
"UNIT_TEST_COMMAND": "npm run test:unit",
|
|
22
|
+
"LINT_COMMAND": "npm run lint",
|
|
23
|
+
"FORMAT_COMMAND": "npm run format"
|
|
24
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -5,10 +5,221 @@ All notable changes to OSSA (Open Standard for Scalable AI Agents) will be docum
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [v0.3.2] - 2025-12-30
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **cli**: Two-tier architecture with OpenAPI-first CRUD commands ([#377](https://gitlab.com/blueflyio/openstandardagents/-/issues/377))
|
|
13
|
+
- `.agents-workspace/` governance layer (one per workspace)
|
|
14
|
+
- `registry/index.yaml` - Agent discovery index
|
|
15
|
+
- `policies/tool-allowlist.yaml` - MCP server permissions
|
|
16
|
+
- `policies/security-tiers.yaml` - Access control levels
|
|
17
|
+
- `orchestration/` - Workflow definitions
|
|
18
|
+
- `shared-context/` - Global coding standards and security guidelines
|
|
19
|
+
- `examples/showcase/` - 10 production-ready showcase agents
|
|
20
|
+
- Agent kind: code-assistant, security-scanner, ci-pipeline, code-reviewer, doc-generator, compliance-validator, content-writer, test-generator
|
|
21
|
+
- Workflow kind: workflow-orchestrator (multi-agent composition)
|
|
22
|
+
- Task kind: data-transformer (deterministic ETL)
|
|
23
|
+
- New CLI commands:
|
|
24
|
+
- `ossa workspace init|list|discover|policy` - Workspace management
|
|
25
|
+
- `ossa registry list|add|remove|discover|validate` - Agent registry CRUD
|
|
26
|
+
- `ossa agent-card generate|validate|show` - A2A Protocol discovery
|
|
27
|
+
- Codegen service (`src/services/codegen/`) for version automation
|
|
28
|
+
- A2A Protocol agent-card.json support
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- **agents**: Consolidated 60+ agents into 10 optimized showcase agents
|
|
33
|
+
- **structure**: Removed archive folder (git history preserved)
|
|
34
|
+
- **structure**: Removed migrated/ folder (agents consolidated into showcase/)
|
|
35
|
+
- **docs**: Updated migration guide for v0.3.x with access tiers and lifecycle
|
|
36
|
+
|
|
37
|
+
## [0.3.2-rc.1] - 2025-12-28
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- **spec**: Access Tiers & Separation of Duties for OSSA v0.3.2 ([#363](https://gitlab.com/blueflyio/openstandardagents/-/issues/363))
|
|
42
|
+
- 4-tier access hierarchy (tier_1_read, tier_2_write_limited, tier_3_write_elevated, tier_4_policy)
|
|
43
|
+
- Role separation rules (Critic-Executor, Governor-Executor, Read-Write separation)
|
|
44
|
+
- Approval chains (Standard, Elevated, Critical)
|
|
45
|
+
- Delegation rules between tiers
|
|
46
|
+
- Audit requirements by tier
|
|
47
|
+
- Schema definitions in `spec/v0.3.2/access_tiers.yaml`
|
|
48
|
+
- Example agents in `spec/v0.3.2/examples/access-tiers/`
|
|
49
|
+
- Schema integration in `ossa-0.3.2.schema.json`
|
|
50
|
+
|
|
51
|
+
- **identity**: Comprehensive Agent Identity Extension for OSSA v0.3.1+
|
|
52
|
+
- Service account integration with automatic git attribution
|
|
53
|
+
- Multi-provider identity (GitLab, GitHub, Azure DevOps, Bitbucket)
|
|
54
|
+
- Token management with secure storage and rotation policies
|
|
55
|
+
- DORA metrics tracking for agent performance measurement
|
|
56
|
+
- Session management for Claude Code and similar AI assistants
|
|
57
|
+
- Multi-provider identity federation for complex environments
|
|
58
|
+
|
|
59
|
+
- **ci**: Generate TypeScript types in CI instead of committing
|
|
60
|
+
- **ci**: Generate spec files in CI instead of committing to git
|
|
61
|
+
- **ci**: Add validate:documentation CI job
|
|
62
|
+
- **cli**: Implement ossa lint command
|
|
63
|
+
- **cli**: Implement ossa commands for issues #190, #192, #193
|
|
64
|
+
|
|
65
|
+
- **bots**: Implement OSSA compliance bot ([#283](https://gitlab.com/blueflyio/openstandardagents/-/issues/283))
|
|
66
|
+
- **bots**: Implement architecture validator bot ([#285](https://gitlab.com/blueflyio/openstandardagents/-/issues/285))
|
|
67
|
+
- **bots**: Implement security scanner bot ([#284](https://gitlab.com/blueflyio/openstandardagents/-/issues/284))
|
|
68
|
+
- **bots**: Implement CI pipeline bot ([#286](https://gitlab.com/blueflyio/openstandardagents/-/issues/286))
|
|
69
|
+
|
|
70
|
+
### Fixed
|
|
71
|
+
|
|
72
|
+
- **ci**: Use .version.json as single source of truth for dev tags
|
|
73
|
+
- **ci**: Create-rc-tag and changelog URL fixes
|
|
74
|
+
- **ci**: Accept active group range milestone for v0.3.x releases
|
|
75
|
+
- **ci**: Proper npm dist-tag management
|
|
76
|
+
- **test**: Use dynamic API version in migration tests
|
|
77
|
+
- **release**: Setup v0.3.2 spec and versioning after v0.3.1 release
|
|
78
|
+
- **release**: Sync version references to v0.3.2
|
|
79
|
+
- **security**: Address GitLab Duo security review comments
|
|
80
|
+
- **security**: Remove .env.local and KAS_AUDIT.md from git tracking
|
|
81
|
+
- Disable all platform-agents trigger jobs - use gitlab_components or local execution instead
|
|
82
|
+
|
|
83
|
+
### Changed
|
|
84
|
+
|
|
85
|
+
- **ci**: Configure release-based merge trains
|
|
86
|
+
- **ci**: Add content professionalization automation
|
|
87
|
+
- **chore**: Update repository URLs after migration to ossa group
|
|
88
|
+
- **chore**: Remove .env.local from package.json files array
|
|
89
|
+
- **chore**: Cleanup project files and configuration
|
|
90
|
+
|
|
91
|
+
### Documentation
|
|
92
|
+
|
|
93
|
+
- Add documentation for issues #348, #349
|
|
94
|
+
- Add adoption priorities for framework integrations
|
|
95
|
+
|
|
96
|
+
### Miscellaneous
|
|
97
|
+
|
|
98
|
+
- Close MR !580 - audit remediation completed
|
|
99
|
+
|
|
100
|
+
### Breaking Changes
|
|
101
|
+
|
|
102
|
+
**None** - v0.3.2 is fully backward compatible with v0.3.1. All v0.3.1 manifests validate against v0.3.2 schema.
|
|
103
|
+
|
|
104
|
+
### Migration
|
|
105
|
+
|
|
106
|
+
See [Migration Guide](spec/v0.3.2/MIGRATION-v0.3.1-to-v0.3.2.md) for details on migrating from v0.3.1 to v0.3.2.
|
|
107
|
+
|
|
108
|
+
## [0.3.1-dev.26] - 2025-12-24
|
|
109
|
+
|
|
110
|
+
### Added
|
|
111
|
+
|
|
112
|
+
- **ci**: Generate TypeScript types in CI instead of committing ([5e227a7](https://gitlab.com/blueflyio/openstandardagents/-/commit/5e227a75e9a4b06825655c36a2c61528ea9c5bb0))## [0.3.1-dev.25] - 2025-12-23
|
|
113
|
+
|
|
114
|
+
### Added
|
|
115
|
+
|
|
116
|
+
- **ci**: Generate TypeScript types in CI instead of committing ([627efe4](https://gitlab.com/blueflyio/openstandardagents/-/commit/627efe4e899b85db1303c51dc1eac8b8088b1202))## [0.3.1-dev.23] - 2025-12-23
|
|
117
|
+
|
|
118
|
+
### Added
|
|
119
|
+
|
|
120
|
+
- **identity**: Comprehensive Agent Identity Extension for OSSA v0.3.1 ([5667703](https://gitlab.com/blueflyio/openstandardagents/-/commit/56677037489c3287b88d0f976de006848854a08d))## [0.3.1-dev.22] - 2025-12-23
|
|
121
|
+
|
|
122
|
+
### Fixed
|
|
123
|
+
|
|
124
|
+
- **ci**: Create-rc-tag and changelog URL fixes ([93f410f](https://gitlab.com/blueflyio/openstandardagents/-/commit/93f410f9d0638615f58e90bd8ddaddd28f2552b3))## [0.3.1-dev.19] - 2025-12-23
|
|
125
|
+
|
|
126
|
+
### Fixed
|
|
127
|
+
|
|
128
|
+
- Remove duplicate bot configs from .gitlab/agents/bots/ ([3a2020a](https://gitlab.com/blueflyio/openstandardagents/-/commit/3a2020a67c4ebfa60b39dbfe1cf85bf7b611e2cf))
|
|
129
|
+
## [0.3.1-dev.18] - 2025-12-23
|
|
130
|
+
|
|
131
|
+
### Added
|
|
132
|
+
|
|
133
|
+
- **ci**: Generate TypeScript types in CI instead of committing ([f22b239](https://gitlab.com/blueflyio/openstandardagents/-/commit/f22b239df8c22591762e5ea5106cf0bbd754da77))
|
|
134
|
+
- **ci**: Generate TypeScript types in CI instead of committing ([a5efee0](https://gitlab.com/blueflyio/openstandardagents/-/commit/a5efee06196e10f933488f18541856f8561ab312))
|
|
135
|
+
- **ci**: Generate TypeScript types in CI instead of committing ([bebd278](https://gitlab.com/blueflyio/openstandardagents/-/commit/bebd278964f46b0eeac3920640e9ee8b74f3bcd3))
|
|
136
|
+
- **ci**: Generate TypeScript types in CI instead of committing ([5ca34c2](https://gitlab.com/blueflyio/openstandardagents/-/commit/5ca34c2240c38a0409fb6025787f9d0629c1e6d9))
|
|
137
|
+
- **ci**: Generate TypeScript types in CI instead of committing ([56ec22f](https://gitlab.com/blueflyio/openstandardagents/-/commit/56ec22fab1f685e35f37dea8effb37c3f542ac9f))
|
|
138
|
+
- **cli**: Implement ossa command for issue #192 ([194c0cb](https://gitlab.com/blueflyio/openstandardagents/-/commit/194c0cbda1bb709271c1d5e083bfb5ce3e793534))
|
|
139
|
+
- **cli**: Implement ossa command for issue #190 ([d4fa1de](https://gitlab.com/blueflyio/openstandardagents/-/commit/d4fa1de63421eb42f713225bfee3efca90c7c303))
|
|
140
|
+
- **cli**: Implement ossa command for issue #193 ([fa9209c](https://gitlab.com/blueflyio/openstandardagents/-/commit/fa9209ca7691f7da1ec61b3e1bccb58e10fc1a2d))
|
|
141
|
+
- **cli**: Implement ossa lint command ([cd3a97c](https://gitlab.com/blueflyio/openstandardagents/-/commit/cd3a97c5dc395aa93fec219629eaee02b9dea6c1))
|
|
142
|
+
- Implement OSSA compliance bot ([#283](https://gitlab.com/blueflyio/openstandardagents/-/issues/283)) ([b7b73a7](https://gitlab.com/blueflyio/openstandardagents/-/commit/b7b73a7a784b70c21516e917372838102299b1cb))
|
|
143
|
+
|
|
144
|
+
- Implement architecture validator bot ([#285](https://gitlab.com/blueflyio/openstandardagents/-/issues/285)) ([7440daf](https://gitlab.com/blueflyio/openstandardagents/-/commit/7440dafcde938e48fae887b5bd7166f285bb9d7e))
|
|
145
|
+
|
|
146
|
+
- Implement security scanner bot ([#284](https://gitlab.com/blueflyio/openstandardagents/-/issues/284)) ([9a26258](https://gitlab.com/blueflyio/openstandardagents/-/commit/9a262588276268fcc083cd0dde4c577d4e49335c))
|
|
147
|
+
|
|
148
|
+
- Implement CI pipeline bot ([#286](https://gitlab.com/blueflyio/openstandardagents/-/issues/286)) ([e501834](https://gitlab.com/blueflyio/openstandardagents/-/commit/e501834d4c794e9705d71f8edc171a20ae634d2f))
|
|
149
|
+
|
|
150
|
+
- Generate spec files in CI instead of committing to git ([3152d2d](https://gitlab.com/blueflyio/openstandardagents/-/commit/3152d2d2a0234cbfddc32dbe4a721a86e8022993))
|
|
151
|
+
|
|
152
|
+
### Documentation
|
|
153
|
+
|
|
154
|
+
- Add documentation for issue #349 ([f3a0999](https://gitlab.com/blueflyio/openstandardagents/-/commit/f3a0999cfa36ac44f2161890250f1ef417598309))
|
|
155
|
+
|
|
156
|
+
- Add documentation for issue #348 ([7e38fbd](https://gitlab.com/blueflyio/openstandardagents/-/commit/7e38fbdfe43cd6726ac7cb56096e805b011d7913))
|
|
157
|
+
|
|
158
|
+
### Fixed
|
|
159
|
+
|
|
160
|
+
- **ci**: Use .version.json as single source of truth for dev tags ([4e5a67b](https://gitlab.com/blueflyio/openstandardagents/-/commit/4e5a67b1acaf99b20279e4d4059fa904f1eaef4c))
|
|
161
|
+
- **ci**: Add validate:documentation CI job ([63c1ae7](https://gitlab.com/blueflyio/openstandardagents/-/commit/63c1ae7445593925710d1559adb5f54b769ebbad))
|
|
162
|
+
- **test**: Use dynamic API version in migration tests ([d226e23](https://gitlab.com/blueflyio/openstandardagents/-/commit/d226e232012f89645f2068daf01be9adc347927e))
|
|
163
|
+
- Disable all platform-agents trigger jobs - use gitlab_components or local execution instead ([cfb60ff](https://gitlab.com/blueflyio/openstandardagents/-/commit/cfb60ffcab9bdf71096a31598a9eba3090d0d608))
|
|
164
|
+
|
|
165
|
+
### Miscellaneous
|
|
166
|
+
|
|
167
|
+
- Close MR !580 - audit remediation completed ([9dac47a](https://gitlab.com/blueflyio/openstandardagents/-/commit/9dac47aaba2a6c85f87d2f9fb19820f329d27039))
|
|
168
|
+
## [0.3.0-dev.68] - 2025-12-22
|
|
169
|
+
|
|
170
|
+
### Fixed
|
|
171
|
+
|
|
172
|
+
- **ci**: Use alpine image for increment-dev-tag and release jobs ([f8434a1](https://gitlab.com/blueflyio/openstandardagents/-/commit/f8434a1d84cf4394c06daea8a9b899dc665ad129))## [0.3.0-dev.67] - 2025-12-22
|
|
173
|
+
|
|
174
|
+
### Fixed
|
|
175
|
+
|
|
176
|
+
- Update wiki-config VERSION to 0.3.0 ([2aaf66b](https://gitlab.com/blueflyio/openstandardagents/-/commit/2aaf66bf49731e2c165017b0424a5f1d3c5145b5))
|
|
177
|
+
## [0.3.0-dev.66] - 2025-12-22
|
|
178
|
+
|
|
179
|
+
### Fixed
|
|
180
|
+
|
|
181
|
+
- Replace remaining {{VERSION}} placeholders and version CHANGELOG ([ad98e72](https://gitlab.com/blueflyio/openstandardagents/-/commit/ad98e722aac9545d765644b04dddfcea90c445cc))
|
|
182
|
+
## [0.3.0-dev.65] - 2025-12-22
|
|
183
|
+
|
|
184
|
+
### Fixed
|
|
185
|
+
|
|
186
|
+
- Regenerate package-lock.json with 0.3.0 ([a5e216e](https://gitlab.com/blueflyio/openstandardagents/-/commit/a5e216e9f4958dcf2d2ce7ef58d00f208bc211af))
|
|
187
|
+
## [0.3.0-dev.64] - 2025-12-22
|
|
188
|
+
|
|
189
|
+
### Fixed
|
|
190
|
+
|
|
191
|
+
- Set version to 0.3.0 (replace placeholder) ([71807c5](https://gitlab.com/blueflyio/openstandardagents/-/commit/71807c5521536dcfb9016f2e0dbd06220986dfa3))
|
|
192
|
+
## [0.3.0-dev.63] - 2025-12-22
|
|
193
|
+
|
|
194
|
+
### Fixed
|
|
195
|
+
|
|
196
|
+
- **ci**: Add main branch to release:audit rules ([e664ad3](https://gitlab.com/blueflyio/openstandardagents/-/commit/e664ad3cb059a05f8f795176183419663d0f1ad8))## [0.3.0-dev.62] - 2025-12-22
|
|
197
|
+
|
|
198
|
+
### Fixed
|
|
199
|
+
|
|
200
|
+
- **ci**: Make release:audit optional for release:npm job ([10a2ff0](https://gitlab.com/blueflyio/openstandardagents/-/commit/10a2ff09adbdcb2c2be9d533293782d4f86c62b9))## [0.3.0-dev.59] - 2025-12-22
|
|
201
|
+
|
|
202
|
+
### Fixed
|
|
203
|
+
|
|
204
|
+
- **ci**: Accept active group range milestone for v0.3.x releases ([bc0d889](https://gitlab.com/blueflyio/openstandardagents/-/commit/bc0d889049e4c331397151b3efd5a28c3cfbccb9))## [0.3.0-dev.58] - 2025-12-22
|
|
205
|
+
|
|
206
|
+
### Fixed
|
|
207
|
+
|
|
208
|
+
- WebRTC transport test timeout - comprehensive audit and fix ([14e43b3](https://gitlab.com/blueflyio/openstandardagents/-/commit/14e43b33f76fd462dbe58421b635db701b419af4))
|
|
209
|
+
## [0.3.0-dev.57] - 2025-12-22
|
|
210
|
+
|
|
211
|
+
### Fixed
|
|
212
|
+
|
|
213
|
+
- Create RC tag on release merge, inline version detection ([9c62c63](https://gitlab.com/blueflyio/openstandardagents/-/commit/9c62c631edbc0581c00fe885b6b5a718e2b9363d))
|
|
214
|
+
## [0.3.0-dev.53] - 2025-12-22
|
|
215
|
+
|
|
216
|
+
### Fixed
|
|
217
|
+
|
|
218
|
+
- **test**: Fix WebRTC channel open event test timeout ([571dd01](https://gitlab.com/blueflyio/openstandardagents/-/commit/571dd01b58d19a5de0590516c938cfca44e5892a))## [0.3.0-dev.52] - 2025-12-22
|
|
9
219
|
|
|
10
220
|
### Fixed
|
|
11
221
|
|
|
222
|
+
- **ci**: Accept active group range milestone for v0.3.x releases ([22d3227](https://gitlab.com/blueflyio/openstandardagents/-/commit/22d3227301d7f16dac510103c5deeb8703940157))
|
|
12
223
|
- **ci**: Prevent SIGPIPE in release:validate examples loop ([57f5056](https://gitlab.com/blueflyio/openstandardagents/-/commit/57f5056e5c117f0ba041c0e614224bee3e879df0))
|
|
13
224
|
- **ci**: Accept {{VERSION}} placeholder in package.json exports validation ([85f208d](https://gitlab.com/blueflyio/openstandardagents/-/commit/85f208d20116208b218e54dc1a6fdbf7a1cce76d))
|
|
14
225
|
- **ci**: Use .version.json as single source of truth for all version detection ([00f9220](https://gitlab.com/blueflyio/openstandardagents/-/commit/00f92203b825b4e1ba0dc19e9cd43d0f16b2b39d))
|
package/README.md
CHANGED
|
@@ -27,42 +27,26 @@
|
|
|
27
27
|
|
|
28
28
|
## Why OSSA?
|
|
29
29
|
|
|
30
|
-
<table>
|
|
31
|
-
<tr>
|
|
32
|
-
<td width="25%">
|
|
33
|
-
|
|
34
30
|
### 🔄 Portability
|
|
35
31
|
**One manifest, any provider**
|
|
36
32
|
|
|
37
33
|
Switch between OpenAI, Anthropic, Azure, or Ollama without changing a single line of code. Runtime bindings abstract implementation from definition.
|
|
38
34
|
|
|
39
|
-
</td>
|
|
40
|
-
<td width="25%">
|
|
41
|
-
|
|
42
35
|
### 🧩 Composability
|
|
43
36
|
**Build workflows from agents**
|
|
44
37
|
|
|
45
38
|
Compose agents into workflows with parallel execution, conditional branching, and loop control. Orchestrate complex multi-agent systems declaratively.
|
|
46
39
|
|
|
47
|
-
</td>
|
|
48
|
-
<td width="25%">
|
|
49
|
-
|
|
50
40
|
### 🛡️ Safety
|
|
51
41
|
**Built-in guardrails**
|
|
52
42
|
|
|
53
43
|
Enterprise-grade compliance out of the box. SOC2, FedRAMP, HIPAA, and GDPR controls are first-class schema properties, not afterthoughts.
|
|
54
44
|
|
|
55
|
-
</td>
|
|
56
|
-
<td width="25%">
|
|
57
|
-
|
|
58
45
|
### 📊 Observability
|
|
59
46
|
**Full visibility**
|
|
60
47
|
|
|
61
48
|
Native OpenTelemetry tracing, structured logging, cost tracking, and performance metrics. Know exactly what your agents are doing and what they cost.
|
|
62
49
|
|
|
63
|
-
</td>
|
|
64
|
-
</tr>
|
|
65
|
-
</table>
|
|
66
50
|
|
|
67
51
|
---
|
|
68
52
|
|
|
@@ -75,7 +59,7 @@ Native OpenTelemetry tracing, structured logging, cost tracking, and performance
|
|
|
75
59
|
curl -fsSL https://ossa.dev/quickstart.sh | bash
|
|
76
60
|
|
|
77
61
|
# Or with npx (works everywhere)
|
|
78
|
-
npx @bluefly/
|
|
62
|
+
npx @bluefly/openstandardagents quickstart
|
|
79
63
|
|
|
80
64
|
# Windows PowerShell
|
|
81
65
|
iwr -useb https://ossa.dev/quickstart.ps1 | iex
|
|
@@ -85,7 +69,7 @@ iwr -useb https://ossa.dev/quickstart.ps1 | iex
|
|
|
85
69
|
|
|
86
70
|
```bash
|
|
87
71
|
# Install the CLI
|
|
88
|
-
npm install -g @bluefly/
|
|
72
|
+
npm install -g @bluefly/openstandardagents
|
|
89
73
|
|
|
90
74
|
# Create your first agent
|
|
91
75
|
ossa init my-agent --type agent
|
|
@@ -115,15 +99,7 @@ OSSA is **NOT** a framework. It's a standard that frameworks implement.
|
|
|
115
99
|
|
|
116
100
|
OSSA defines three resource types:
|
|
117
101
|
|
|
118
|
-
|
|
119
|
-
<tr>
|
|
120
|
-
<th width="33%">Agent</th>
|
|
121
|
-
<th width="33%">Task</th>
|
|
122
|
-
<th width="33%">Workflow</th>
|
|
123
|
-
</tr>
|
|
124
|
-
<tr>
|
|
125
|
-
<td>
|
|
126
|
-
|
|
102
|
+
#### Agent
|
|
127
103
|
**LLM-powered agentic loops**
|
|
128
104
|
|
|
129
105
|
Agents use LLMs to reason, plan, and execute tools. They handle inference, state management, and autonomous decision-making.
|
|
@@ -138,9 +114,7 @@ spec:
|
|
|
138
114
|
You are a helpful assistant
|
|
139
115
|
```
|
|
140
116
|
|
|
141
|
-
|
|
142
|
-
<td>
|
|
143
|
-
|
|
117
|
+
#### Task
|
|
144
118
|
**Deterministic operations**
|
|
145
119
|
|
|
146
120
|
Tasks are pure functions—no LLM required. Use them for data transformation, API calls, batch processing, or system integration.
|
|
@@ -154,9 +128,7 @@ spec:
|
|
|
154
128
|
entry: transform.ts
|
|
155
129
|
```
|
|
156
130
|
|
|
157
|
-
|
|
158
|
-
<td>
|
|
159
|
-
|
|
131
|
+
#### Workflow
|
|
160
132
|
**Orchestrated compositions**
|
|
161
133
|
|
|
162
134
|
Workflows compose Agents and Tasks into multi-step pipelines with parallel execution, conditionals, and loops.
|
|
@@ -171,10 +143,6 @@ spec:
|
|
|
171
143
|
- task: validate
|
|
172
144
|
```
|
|
173
145
|
|
|
174
|
-
</td>
|
|
175
|
-
</tr>
|
|
176
|
-
</table>
|
|
177
|
-
|
|
178
146
|
---
|
|
179
147
|
|
|
180
148
|
## Example: A Complete Enterprise Agent (v0.3.0)
|
|
@@ -435,10 +403,6 @@ docker run -v $(pwd):/workspace bluefly/ossa validate agent.ossa.yaml
|
|
|
435
403
|
|
|
436
404
|
## Documentation
|
|
437
405
|
|
|
438
|
-
<table>
|
|
439
|
-
<tr>
|
|
440
|
-
<td width="50%">
|
|
441
|
-
|
|
442
406
|
### Getting Started
|
|
443
407
|
- [Installation Guide](https://openstandardagents.org/docs/installation/)
|
|
444
408
|
- [Your First Agent](https://openstandardagents.org/docs/getting-started/first-agent/)
|
|
@@ -451,153 +415,15 @@ docker run -v $(pwd):/workspace bluefly/ossa validate agent.ossa.yaml
|
|
|
451
415
|
- [Production Deployment](https://openstandardagents.org/docs/deployment/)
|
|
452
416
|
- [Best Practices](https://openstandardagents.org/docs/best-practices/)
|
|
453
417
|
|
|
454
|
-
|
|
455
|
-
<td width="50%">
|
|
456
|
-
|
|
418
|
+
### Reference
|
|
457
419
|
- **Getting Started**: [openstandardagents.org/docs/getting-started/](https://openstandardagents.org/docs/getting-started/)
|
|
458
420
|
- **Full Documentation**: [openstandardagents.org/docs/](https://openstandardagents.org/docs/)
|
|
459
421
|
- **Schema Reference**: [openstandardagents.org/schema/](https://openstandardagents.org/schema/)
|
|
460
|
-
- **Specification**: [spec/v0.3.
|
|
461
|
-
- **Messaging Extension**: [spec/v0.3.
|
|
422
|
+
- **Specification**: [spec/v0.3.2/ossa-0.3.2.schema.json](https://github.com/blueflyio/openstandardagents/blob/main/spec/v0.3.2/ossa-0.3.2.schema.json)
|
|
423
|
+
- **Messaging Extension**: [spec/v0.3.2/messaging.md](spec/v0.3.2/messaging.md) - Agent-to-agent messaging (v0.3.0+)
|
|
462
424
|
- **Examples**: [openstandardagents.org/examples/](https://openstandardagents.org/examples/)
|
|
463
425
|
- **Blog**: [openstandardagents.org/blog/](https://openstandardagents.org/blog/)
|
|
464
426
|
|
|
465
|
-
---
|
|
466
|
-
|
|
467
|
-
## Ecosystem
|
|
468
|
-
|
|
469
|
-
### Framework Support
|
|
470
|
-
|
|
471
|
-
OSSA integrates with all major AI frameworks:
|
|
472
|
-
|
|
473
|
-
- **[LangChain](https://python.langchain.com/)** — Export OSSA agents to LangChain
|
|
474
|
-
- **[CrewAI](https://www.crewai.com/)** — Multi-agent orchestration
|
|
475
|
-
- **[AutoGen](https://microsoft.github.io/autogen/)** — Microsoft's agent framework
|
|
476
|
-
- **[LlamaIndex](https://www.llamaindex.ai/)** — RAG and data agents
|
|
477
|
-
- **[LangGraph](https://langchain-ai.github.io/langgraph/)** — Stateful agent graphs
|
|
478
|
-
- **[Semantic Kernel](https://learn.microsoft.com/en-us/semantic-kernel/)** — Microsoft's AI orchestration
|
|
479
|
-
|
|
480
|
-
### Platform Support
|
|
481
|
-
|
|
482
|
-
Deploy OSSA agents anywhere:
|
|
483
|
-
|
|
484
|
-
- **Kubernetes** — Native KAgent integration
|
|
485
|
-
- **Docker** — Containerized agents
|
|
486
|
-
- **AWS** — Lambda, ECS, Bedrock
|
|
487
|
-
- **Azure** — Functions, Container Apps, OpenAI
|
|
488
|
-
- **GCP** — Cloud Run, Vertex AI
|
|
489
|
-
|
|
490
|
-
### Tool Integrations
|
|
491
|
-
|
|
492
|
-
- **[MCP](https://modelcontextprotocol.io/)** — Model Context Protocol
|
|
493
|
-
- **[Drupal](https://www.drupal.org/)** — CMS integration
|
|
494
|
-
- **[LibreChat](https://www.librechat.ai/)** — Chat interface
|
|
495
|
-
- **[Cursor](https://cursor.sh/)** — AI-powered IDE
|
|
496
|
-
- **[VS Code](https://code.visualstudio.com/)** — Editor extensions
|
|
497
|
-
|
|
498
|
-
---
|
|
499
|
-
|
|
500
|
-
## Community
|
|
501
|
-
|
|
502
|
-
We're building OSSA in the open. Join us!
|
|
503
|
-
|
|
504
|
-
### Contributing
|
|
505
|
-
|
|
506
|
-
We welcome contributions of all kinds:
|
|
507
|
-
|
|
508
|
-
1. **Code** — Fork the repo, create a branch, submit a PR
|
|
509
|
-
2. **Documentation** — Improve guides, fix typos, add examples
|
|
510
|
-
3. **Feedback** — Open issues, suggest features, share use cases
|
|
511
|
-
4. **Community** — Answer questions, help others, share your agents
|
|
512
|
-
|
|
513
|
-
See our [**Contributing Guide**](CONTRIBUTING.md) for details.
|
|
514
|
-
|
|
515
|
-
### Get Help & Connect
|
|
516
|
-
|
|
517
|
-
- **[GitHub Discussions](https://github.com/blueflyio/openstandardagents/discussions)** — Ask questions, share ideas
|
|
518
|
-
- **[Discord Community](https://discord.gg/ossa)** — Real-time chat and support
|
|
519
|
-
- **[Stack Overflow](https://stackoverflow.com/questions/tagged/ossa)** — Technical Q&A (tag: `ossa`)
|
|
520
|
-
- **[Twitter/X](https://twitter.com/openstandardagi)** — Updates and announcements
|
|
521
|
-
|
|
522
|
-
### Stay Updated
|
|
523
|
-
|
|
524
|
-
- **[Blog](https://openstandardagents.org/blog/)** — Tutorials, case studies, announcements
|
|
525
|
-
- **[Newsletter](https://openstandardagents.org/newsletter/)** — Monthly updates
|
|
526
|
-
- **[Changelog](CHANGELOG.md)** — Release notes and migration guides
|
|
527
|
-
|
|
528
|
-
---
|
|
529
|
-
|
|
530
|
-
## Comparison
|
|
531
|
-
|
|
532
|
-
How does OSSA compare to other AI agent standards and frameworks?
|
|
533
|
-
|
|
534
|
-
<table>
|
|
535
|
-
<tr>
|
|
536
|
-
<th>Feature</th>
|
|
537
|
-
<th>OSSA</th>
|
|
538
|
-
<th>LangChain</th>
|
|
539
|
-
<th>AutoGen</th>
|
|
540
|
-
<th>MCP</th>
|
|
541
|
-
<th>Semantic Kernel</th>
|
|
542
|
-
</tr>
|
|
543
|
-
<tr>
|
|
544
|
-
<td><strong>Vendor Neutral</strong></td>
|
|
545
|
-
<td>✅ Yes</td>
|
|
546
|
-
<td>❌ No</td>
|
|
547
|
-
<td>❌ No</td>
|
|
548
|
-
<td>✅ Yes</td>
|
|
549
|
-
<td>❌ No</td>
|
|
550
|
-
</tr>
|
|
551
|
-
<tr>
|
|
552
|
-
<td><strong>Formal Standard</strong></td>
|
|
553
|
-
<td>✅ Yes</td>
|
|
554
|
-
<td>❌ No</td>
|
|
555
|
-
<td>❌ No</td>
|
|
556
|
-
<td>✅ Yes</td>
|
|
557
|
-
<td>❌ No</td>
|
|
558
|
-
</tr>
|
|
559
|
-
<tr>
|
|
560
|
-
<td><strong>Multi-Runtime</strong></td>
|
|
561
|
-
<td>✅ Full</td>
|
|
562
|
-
<td>🟡 Partial</td>
|
|
563
|
-
<td>🟡 Partial</td>
|
|
564
|
-
<td>✅ Full</td>
|
|
565
|
-
<td>🟡 Partial</td>
|
|
566
|
-
</tr>
|
|
567
|
-
<tr>
|
|
568
|
-
<td><strong>Enterprise Governance</strong></td>
|
|
569
|
-
<td>✅ Yes</td>
|
|
570
|
-
<td>❌ No</td>
|
|
571
|
-
<td>❌ No</td>
|
|
572
|
-
<td>❌ No</td>
|
|
573
|
-
<td>🟡 Partial</td>
|
|
574
|
-
</tr>
|
|
575
|
-
<tr>
|
|
576
|
-
<td><strong>Compliance Ready</strong></td>
|
|
577
|
-
<td>✅ Yes</td>
|
|
578
|
-
<td>❌ No</td>
|
|
579
|
-
<td>❌ No</td>
|
|
580
|
-
<td>❌ No</td>
|
|
581
|
-
<td>❌ No</td>
|
|
582
|
-
</tr>
|
|
583
|
-
<tr>
|
|
584
|
-
<td><strong>Full Agent Lifecycle</strong></td>
|
|
585
|
-
<td>✅ Yes</td>
|
|
586
|
-
<td>✅ Yes</td>
|
|
587
|
-
<td>✅ Yes</td>
|
|
588
|
-
<td>❌ No</td>
|
|
589
|
-
<td>✅ Yes</td>
|
|
590
|
-
</tr>
|
|
591
|
-
<tr>
|
|
592
|
-
<td><strong>Open Source</strong></td>
|
|
593
|
-
<td>✅ Apache 2.0</td>
|
|
594
|
-
<td>✅ MIT</td>
|
|
595
|
-
<td>✅ MIT</td>
|
|
596
|
-
<td>✅ MIT</td>
|
|
597
|
-
<td>✅ MIT</td>
|
|
598
|
-
</tr>
|
|
599
|
-
</table>
|
|
600
|
-
|
|
601
427
|
**OSSA** is a vendor-neutral **specification standard** (like OpenAPI)
|
|
602
428
|
**LangChain/AutoGen/Semantic Kernel** are framework-specific **implementations**
|
|
603
429
|
**MCP** is a formal standard for **context protocol**, not full agent lifecycle
|
|
@@ -616,28 +442,17 @@ See [**LICENSE**](LICENSE) for full terms.
|
|
|
616
442
|
|
|
617
443
|
## Links
|
|
618
444
|
|
|
619
|
-
<table>
|
|
620
|
-
<tr>
|
|
621
|
-
<td width="50%">
|
|
622
|
-
|
|
623
445
|
### Development
|
|
624
446
|
- **GitLab** (Primary): [gitlab.com/blueflyio/openstandardagents](https://gitlab.com/blueflyio/openstandardagents)
|
|
625
447
|
- **GitHub** (Mirror): [github.com/blueflyio/openstandardagents](https://github.com/blueflyio/openstandardagents)
|
|
626
448
|
- **npm Package**: [@bluefly/openstandardagents](https://www.npmjs.com/package/@bluefly/openstandardagents)
|
|
627
449
|
|
|
628
|
-
</td>
|
|
629
|
-
<td width="50%">
|
|
630
|
-
|
|
631
450
|
### Community
|
|
632
451
|
- **Website**: [openstandardagents.org](https://openstandardagents.org)
|
|
633
452
|
- **Documentation**: [openstandardagents.org/docs](https://openstandardagents.org/docs)
|
|
634
453
|
- **Discord**: [discord.gg/ossa](https://discord.gg/ossa)
|
|
635
454
|
- **Twitter/X**: [@openstandardagi](https://twitter.com/openstandardagi)
|
|
636
455
|
|
|
637
|
-
</td>
|
|
638
|
-
</tr>
|
|
639
|
-
</table>
|
|
640
|
-
|
|
641
456
|
---
|
|
642
457
|
|
|
643
458
|
<div align="center">
|
|
@@ -263,14 +263,14 @@ export class AnthropicAdapter {
|
|
|
263
263
|
*/
|
|
264
264
|
static async fromFile(manifestPath, config) {
|
|
265
265
|
const fs = await import('fs/promises');
|
|
266
|
-
const yaml = await import('yaml');
|
|
267
266
|
const manifestContent = await fs.readFile(manifestPath, 'utf-8');
|
|
268
267
|
let manifest;
|
|
269
268
|
if (manifestPath.endsWith('.json')) {
|
|
270
269
|
manifest = JSON.parse(manifestContent);
|
|
271
270
|
}
|
|
272
271
|
else if (manifestPath.endsWith('.yaml') || manifestPath.endsWith('.yml')) {
|
|
273
|
-
|
|
272
|
+
const { parse: parseYaml } = await import('yaml');
|
|
273
|
+
manifest = parseYaml(manifestContent);
|
|
274
274
|
}
|
|
275
275
|
else {
|
|
276
276
|
throw new Error('Manifest file must be .json, .yaml, or .yml');
|