@bluefly/openstandardagents 0.2.4 → 0.2.7
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/.cursorrules +84 -0
- package/.devfile.yaml +87 -0
- package/.env.example +25 -3
- package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
- package/.github/workflows/dependabot-comment.yml +34 -0
- package/.github/workflows/pr-comment.yml +33 -0
- package/.github/workflows/release.yml +1 -1
- package/.husky/pre-commit +5 -0
- package/.kiro/config.json +21 -0
- package/.kiro/settings/mcp.json +61 -0
- package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
- package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
- package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
- package/.kiro/specs/website-brand-identity/design.md +1060 -0
- package/.kiro/specs/website-brand-identity/requirements.md +287 -0
- package/.kiro/specs/website-brand-identity/tasks.md +981 -0
- package/.releaserc.json +5 -4
- package/.version.json +6 -0
- package/CHANGELOG.md +163 -96
- package/CONTRIBUTING.md +23 -5
- package/README.md +130 -43
- package/bin/ossa +24 -3
- package/bin/ossa-dev +42 -0
- package/bin/ossa-export +32 -0
- package/bin/ossa-generate +60 -0
- package/bin/ossa-health +40 -0
- package/bin/ossa-init +26 -0
- package/bin/ossa-validate-all +55 -0
- package/bin/ossa-version +23 -0
- package/bin/validate-ossa-0.2.4.ts +244 -0
- package/bin/validate-ossa-0.2.5-RC.ts +244 -0
- package/bin/validate-ossa.ts +273 -0
- package/dist/di-container.d.ts +1 -1
- package/dist/di-container.d.ts.map +1 -1
- package/dist/di-container.js.map +1 -1
- package/dist/repositories/schema.repository.d.ts +17 -2
- package/dist/repositories/schema.repository.d.ts.map +1 -1
- package/dist/repositories/schema.repository.js +102 -19
- package/dist/repositories/schema.repository.js.map +1 -1
- package/dist/services/generation.service.d.ts +7 -5
- package/dist/services/generation.service.d.ts.map +1 -1
- package/dist/services/generation.service.js +92 -44
- package/dist/services/generation.service.js.map +1 -1
- package/dist/services/github-sync/github-client.d.ts +14 -0
- package/dist/services/github-sync/github-client.d.ts.map +1 -0
- package/dist/services/github-sync/github-client.js +41 -0
- package/dist/services/github-sync/github-client.js.map +1 -0
- package/dist/services/github-sync/gitlab-client.d.ts +17 -0
- package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
- package/dist/services/github-sync/gitlab-client.js +42 -0
- package/dist/services/github-sync/gitlab-client.js.map +1 -0
- package/dist/services/github-sync/schemas.d.ts +46 -0
- package/dist/services/github-sync/schemas.d.ts.map +1 -0
- package/dist/services/github-sync/schemas.js +36 -0
- package/dist/services/github-sync/schemas.js.map +1 -0
- package/dist/services/github-sync/sync.service.d.ts +27 -0
- package/dist/services/github-sync/sync.service.d.ts.map +1 -0
- package/dist/services/github-sync/sync.service.js +99 -0
- package/dist/services/github-sync/sync.service.js.map +1 -0
- package/dist/services/gitlab-agent.service.d.ts +94 -0
- package/dist/services/gitlab-agent.service.d.ts.map +1 -0
- package/dist/services/gitlab-agent.service.js +162 -0
- package/dist/services/gitlab-agent.service.js.map +1 -0
- package/dist/services/migration.service.d.ts +3 -3
- package/dist/services/migration.service.d.ts.map +1 -1
- package/dist/services/migration.service.js +108 -61
- package/dist/services/migration.service.js.map +1 -1
- package/dist/services/release-automation/base-crud.service.d.ts +93 -0
- package/dist/services/release-automation/base-crud.service.d.ts.map +1 -0
- package/dist/services/release-automation/base-crud.service.js +68 -0
- package/dist/services/release-automation/base-crud.service.js.map +1 -0
- package/dist/services/release-automation/index.d.ts +12 -0
- package/dist/services/release-automation/index.d.ts.map +1 -0
- package/dist/services/release-automation/index.js +12 -0
- package/dist/services/release-automation/index.js.map +1 -0
- package/dist/services/release-automation/merge-request.service.d.ts +119 -0
- package/dist/services/release-automation/merge-request.service.d.ts.map +1 -0
- package/dist/services/release-automation/merge-request.service.js +212 -0
- package/dist/services/release-automation/merge-request.service.js.map +1 -0
- package/dist/services/release-automation/milestone.service.d.ts +104 -0
- package/dist/services/release-automation/milestone.service.d.ts.map +1 -0
- package/dist/services/release-automation/milestone.service.js +207 -0
- package/dist/services/release-automation/milestone.service.js.map +1 -0
- package/dist/services/release-automation/release.service.d.ts +118 -0
- package/dist/services/release-automation/release.service.d.ts.map +1 -0
- package/dist/services/release-automation/release.service.js +207 -0
- package/dist/services/release-automation/release.service.js.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.js +269 -0
- package/dist/services/release-automation/schemas/release.schema.js.map +1 -0
- package/dist/services/release-automation/tag.service.d.ts +99 -0
- package/dist/services/release-automation/tag.service.d.ts.map +1 -0
- package/dist/services/release-automation/tag.service.js +180 -0
- package/dist/services/release-automation/tag.service.js.map +1 -0
- package/dist/services/release-automation/webhook.service.d.ts +37 -0
- package/dist/services/release-automation/webhook.service.d.ts.map +1 -0
- package/dist/services/release-automation/webhook.service.js +173 -0
- package/dist/services/release-automation/webhook.service.js.map +1 -0
- package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
- package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
- package/dist/services/runtime/claude/capability-mapper.js +245 -0
- package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
- package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
- package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
- package/dist/services/runtime/claude/claude-adapter.js +287 -0
- package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
- package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
- package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
- package/dist/services/runtime/claude/manifest-parser.js +169 -0
- package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
- package/dist/services/runtime/claude/types.d.ts +115 -0
- package/dist/services/runtime/claude/types.d.ts.map +1 -0
- package/dist/services/runtime/claude/types.js +6 -0
- package/dist/services/runtime/claude/types.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -1
- package/dist/services/runtime/openai.adapter.js.map +1 -1
- package/dist/services/validation.service.d.ts.map +1 -1
- package/dist/services/validation.service.js +35 -11
- package/dist/services/validation.service.js.map +1 -1
- package/dist/services/validators/anthropic.validator.d.ts +2 -2
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -1
- package/dist/services/validators/anthropic.validator.js +14 -9
- package/dist/services/validators/anthropic.validator.js.map +1 -1
- package/dist/services/validators/autogen.validator.d.ts +2 -2
- package/dist/services/validators/autogen.validator.d.ts.map +1 -1
- package/dist/services/validators/autogen.validator.js +18 -15
- package/dist/services/validators/autogen.validator.js.map +1 -1
- package/dist/services/validators/crewai.validator.d.ts +2 -2
- package/dist/services/validators/crewai.validator.d.ts.map +1 -1
- package/dist/services/validators/crewai.validator.js +18 -17
- package/dist/services/validators/crewai.validator.js.map +1 -1
- package/dist/services/validators/cursor.validator.d.ts +2 -2
- package/dist/services/validators/cursor.validator.d.ts.map +1 -1
- package/dist/services/validators/cursor.validator.js +15 -11
- package/dist/services/validators/cursor.validator.js.map +1 -1
- package/dist/services/validators/langchain.validator.d.ts +2 -2
- package/dist/services/validators/langchain.validator.d.ts.map +1 -1
- package/dist/services/validators/langchain.validator.js +14 -11
- package/dist/services/validators/langchain.validator.js.map +1 -1
- package/dist/services/validators/langflow.validator.d.ts +2 -2
- package/dist/services/validators/langflow.validator.d.ts.map +1 -1
- package/dist/services/validators/langflow.validator.js +14 -9
- package/dist/services/validators/langflow.validator.js.map +1 -1
- package/dist/services/validators/langgraph.validator.d.ts +2 -2
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -1
- package/dist/services/validators/langgraph.validator.js +23 -18
- package/dist/services/validators/langgraph.validator.js.map +1 -1
- package/dist/services/validators/llamaindex.validator.d.ts +2 -2
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -1
- package/dist/services/validators/llamaindex.validator.js +19 -16
- package/dist/services/validators/llamaindex.validator.js.map +1 -1
- package/dist/services/validators/openai.validator.d.ts +2 -2
- package/dist/services/validators/openai.validator.d.ts.map +1 -1
- package/dist/services/validators/openai.validator.js +20 -16
- package/dist/services/validators/openai.validator.js.map +1 -1
- package/dist/services/validators/vercel-ai.validator.d.ts +2 -2
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -1
- package/dist/services/validators/vercel-ai.validator.js +16 -15
- package/dist/services/validators/vercel-ai.validator.js.map +1 -1
- package/dist/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
- package/dist/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
- package/dist/spec/v0.2.3/CHANGELOG.md +7 -7
- package/dist/spec/v0.2.3/README.md +9 -9
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
- package/{spec/v0.2.4-dev → dist/spec/v0.2.4}/CHANGELOG.md +8 -8
- package/dist/spec/{v0.2.4-dev → v0.2.4}/migrations/v0.2.3-to-v0.2.4.md +10 -10
- package/dist/spec/{v0.2.4-dev/ossa-0.2.4-dev.yaml → v0.2.4/ossa-0.2.4.yaml} +1 -1
- package/dist/spec/v0.2.5/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5/README.md +72 -0
- package/dist/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/dist/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5-RC/README.md +72 -0
- package/{spec/v0.2.4-dev → dist/spec/v0.2.5-RC}/migrations/v0.2.3-to-v0.2.4.md +10 -10
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.6/README.md +72 -0
- package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/dist/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
- package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
- package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
- package/dist/spec/v0.2.6-dev/README.md +75 -0
- package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.6-dev/ossa-0.2.5.schema.json +1696 -0
- package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
- package/dist/spec/{v0.2.5-dev/ossa-0.2.5-dev.schema.json → v0.2.6-dev/ossa-0.2.6-dev.schema.json} +323 -359
- package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
- package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
- package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
- package/dist/types/index.d.ts +6 -1
- package/dist/types/index.d.ts.map +1 -1
- package/docs/brand-guide/01-brand-overview.md +37 -0
- package/docs/brand-guide/02-logo-usage.md +43 -0
- package/docs/brand-guide/03-color-palette.md +70 -0
- package/docs/brand-guide/04-typography.md +82 -0
- package/docs/brand-guide/05-voice-and-tone.md +108 -0
- package/docs/brand-guide/06-visual-elements.md +137 -0
- package/docs/brand-guide/07-application-examples.md +153 -0
- package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
- package/docs/brand-guide/OssaLogo/brand.af +0 -0
- package/docs/brand-guide/README.md +107 -0
- package/docs/comparison.md +315 -0
- package/docs/operations/automation-roadmap.md +245 -0
- package/docs/operations/github-sync-strategy.md +357 -0
- package/examples/anthropic/claude-assistant.ossa.json +5 -4
- package/examples/autogen/multi-agent.ossa.json +6 -4
- package/examples/bridges/Dockerfile.production +1 -1
- package/examples/crewai/research-team.ossa.json +14 -5
- package/examples/cursor/code-review-agent.ossa.json +21 -6
- package/examples/enterprise/agent.yml +1 -1
- package/examples/getting-started/hello-world-complete.ossa.yaml +2 -2
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
- package/examples/langchain/chain-agent.ossa.json +21 -5
- package/examples/langflow/workflow-agent.ossa.json +2 -3
- package/examples/langgraph/state-machine-agent.ossa.json +2 -3
- package/examples/llamaindex/rag-agent.ossa.json +2 -3
- package/examples/openai/basic-agent.ossa.yaml +61 -0
- package/examples/openai/multi-tool-agent.ossa.json +188 -0
- package/examples/openai/swarm-agent.ossa.json +18 -5
- package/examples/openapi-extensions/README.md +1 -1
- package/examples/quickstart/support-agent.ossa.yaml +1 -1
- package/examples/vercel/edge-agent.ossa.json +5 -4
- package/infrastructure/gitlab-agent/rbac.yaml +126 -0
- package/infrastructure/gitlab-agent/values.yaml +150 -0
- package/infrastructure/k8s/monitoring/00-namespace.yaml +7 -0
- package/infrastructure/k8s/monitoring/01-prometheus.yaml +142 -0
- package/infrastructure/k8s/monitoring/02-grafana.yaml +63 -0
- package/infrastructure/k8s/monitoring/03-lightweight.yaml +121 -0
- package/infrastructure/k8s/monitoring/README.md +73 -0
- package/infrastructure/k8s/monitoring/deploy.sh +38 -0
- package/openapi/CHANGELOG.md +21 -0
- package/openapi/README.md +46 -0
- package/openapi/{ossa-core-api.openapi.yaml → core/ossa-core-api.openapi.yaml} +59 -4
- package/openapi/{ossa-registry.openapi.yaml → core/ossa-registry.openapi.yaml} +75 -2
- package/openapi/{unified-agent-gateway.openapi.yaml → core/unified-agent-gateway.openapi.yaml} +3 -3
- package/openapi/github-sync.yaml +115 -0
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +136 -0
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +192 -0
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +217 -0
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +193 -0
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +165 -0
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +148 -0
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +167 -0
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +242 -0
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +187 -0
- package/openapi/{self-evolving-ecosystem.openapi.yaml → reference-implementations/self-evolving-ecosystem.openapi.yaml} +2 -2
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +208 -0
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +193 -0
- package/package.json +53 -22
- package/release.config.js +20 -5
- package/scripts/README.md +103 -0
- package/scripts/auto-rebase-mrs.ts +106 -0
- package/scripts/batch-dependabot.sh +57 -0
- package/scripts/bump-version.ts +57 -0
- package/scripts/configure-gitlab-branch-protection.ts +95 -0
- package/scripts/create-issue-helper.ts +238 -0
- package/scripts/create-milestone-issue.ts +73 -0
- package/scripts/enhanced-version-manager.ts +257 -0
- package/scripts/fix-schema-formats.js +82 -0
- package/scripts/gen-types.ts +51 -0
- package/scripts/gen-zod.ts +51 -0
- package/scripts/generate-agents-catalog.ts +77 -0
- package/scripts/generate-api-docs.ts +218 -0
- package/scripts/generate-cli-docs.ts +410 -0
- package/scripts/generate-config-docs.ts +109 -0
- package/scripts/generate-errors-docs.ts +76 -0
- package/scripts/generate-examples-docs.ts +99 -0
- package/scripts/generate-schema-docs.ts +296 -0
- package/scripts/generate-types-docs.ts +48 -0
- package/scripts/lib/exec.ts +37 -0
- package/scripts/lib/file-ops.ts +58 -0
- package/scripts/lib/version.ts +83 -0
- package/scripts/lowercase-docs.ts +43 -0
- package/scripts/manage-milestone-mrs.ts +279 -0
- package/scripts/process-doc-templates.ts +37 -0
- package/scripts/rebase-all-mrs.sh +75 -0
- package/scripts/schemas/package.schema.ts +75 -0
- package/scripts/setup-branch-protection.sh +33 -0
- package/scripts/sync-github-pr.sh +48 -0
- package/scripts/sync-version.js +40 -0
- package/scripts/sync-version.ts +39 -0
- package/scripts/sync-versions.ts +488 -0
- package/scripts/sync-wiki.sh +50 -0
- package/scripts/validate-all.js +127 -0
- package/scripts/validate-schema.ts +49 -0
- package/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
- package/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
- package/spec/v0.2.3/CHANGELOG.md +7 -7
- package/spec/v0.2.3/README.md +9 -9
- package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
- package/{dist/spec/v0.2.4-dev → spec/v0.2.4}/CHANGELOG.md +8 -8
- package/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/{v0.2.4-dev/ossa-0.2.4-dev.yaml → v0.2.4/ossa-0.2.4.yaml} +1 -1
- package/spec/v0.2.5/CHANGELOG.md +401 -0
- package/spec/v0.2.5/README.md +72 -0
- package/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/spec/v0.2.5-RC/README.md +72 -0
- package/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/spec/v0.2.6/CHANGELOG.md +401 -0
- package/spec/v0.2.6/README.md +72 -0
- package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
- package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
- package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
- package/spec/v0.2.6-dev/README.md +75 -0
- package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.6-dev/ossa-0.2.5.schema.json +1696 -0
- package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
- package/spec/{v0.2.5-dev/ossa-0.2.5-dev.schema.json → v0.2.6-dev/ossa-0.2.6-dev.schema.json} +323 -359
- package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
- package/spec/v0.2.7/core/agentgraph.md +324 -0
- package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
- package/website/{.lighthouserc.js → .lighthouserc.ts} +5 -1
- package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +445 -0
- package/website/Dockerfile +18 -5
- package/website/app/about/page.tsx +60 -51
- package/website/app/blog/[slug]/page.tsx +61 -20
- package/website/app/blog/page.tsx +120 -33
- package/website/app/design-guide/page.tsx +511 -0
- package/website/app/docs/[[...slug]]/page.tsx +641 -143
- package/website/app/ecosystem/page.tsx +146 -111
- package/website/app/examples/page.tsx +51 -41
- package/website/app/globals.scss +370 -0
- package/website/app/layout.tsx +2 -2
- package/website/app/license/page.tsx +183 -0
- package/website/app/not-found.tsx +18 -0
- package/website/app/page.tsx +513 -236
- package/website/app/page.tsx.bak +679 -0
- package/website/app/page.tsx.bak2 +649 -0
- package/website/app/playground/page.tsx +25 -45
- package/website/app/schema/page.tsx +423 -392
- package/website/app/specification/page.tsx +245 -169
- package/website/components/Logo.tsx +75 -2
- package/website/components/docs/DocsSidebar.tsx +40 -3
- package/website/components/docs/MarkdownContent.tsx +265 -47
- package/website/components/docs/VersionSelector.tsx +64 -8
- package/website/components/examples/ExamplesViewer.tsx +2 -2
- package/website/components/layout/Footer.tsx +6 -1
- package/website/components/layout/Header.tsx +44 -42
- package/website/components/schema/SchemaComponentsAccordion.tsx +84 -0
- package/website/components/schema/SchemaExplorer.tsx +4 -4
- package/website/components/ui/Badge.tsx +82 -0
- package/website/components/ui/Button.tsx +116 -0
- package/website/components/ui/Card.tsx +167 -0
- package/website/components/ui/Checkbox.tsx +141 -0
- package/website/components/ui/Input.tsx +169 -0
- package/website/components/ui/Radio.tsx +141 -0
- package/website/components/ui/Select.tsx +182 -0
- package/website/components/ui/Tag.tsx +158 -0
- package/website/components/ui/Textarea.tsx +195 -0
- package/website/components/ui/index.ts +11 -0
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +276 -276
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +3 -14
- package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +286 -0
- package/website/content/blog/introducing-ossa-framework.md +1 -1
- package/website/content/blog/ossa-production-results.md +5 -5
- package/website/content/blog/welcome-to-ossa.md +2 -2
- package/website/content/blog/why-ai-agents-need-open-standard.md +5 -5
- package/website/content/docs/{00-HOME.md → 00-home.md} +18 -25
- package/website/content/docs/adapters/openai-adapter.md +693 -0
- package/website/content/docs/agents/catalog.md +28 -0
- package/website/content/docs/aiflow-framework-integration-with-ossa.md +107 -0
- package/website/content/docs/api-reference/index.md +38 -0
- package/website/content/docs/api-reference/ossa-core-api.md +634 -0
- package/website/content/docs/api-reference/ossa-registry-api.md +515 -0
- package/website/content/docs/api-reference/unified-agent-gateway.md +599 -0
- package/website/content/docs/architecture/execution-flow.md +3 -3
- package/website/content/docs/architecture/multi-agent-systems.md +4 -4
- package/website/content/docs/architecture/overview.md +4 -4
- package/website/content/docs/architecture/stack-integration.md +4 -4
- package/website/content/docs/changelog.md +4 -4
- package/website/content/docs/cli-reference/index.md +111 -0
- package/website/content/docs/cli-reference/ossa-agents.md +70 -0
- package/website/content/docs/cli-reference/ossa-export.md +56 -0
- package/website/content/docs/cli-reference/ossa-generate.md +66 -0
- package/website/content/docs/cli-reference/ossa-gitlab-agent.md +57 -0
- package/website/content/docs/cli-reference/ossa-import.md +56 -0
- package/website/content/docs/cli-reference/ossa-init.md +57 -0
- package/website/content/docs/cli-reference/ossa-migrate.md +62 -0
- package/website/content/docs/cli-reference/ossa-run.md +66 -0
- package/website/content/docs/cli-reference/ossa-schema.md +57 -0
- package/website/content/docs/cli-reference/ossa-setup.md +57 -0
- package/website/content/docs/cli-reference/ossa-validate.md +66 -0
- package/website/content/docs/configuration/index.md +97 -0
- package/website/content/docs/contributing.md +2 -2
- package/website/content/docs/deployment/github-mirroring.md +924 -0
- package/website/content/docs/documentation.md +100 -0
- package/website/content/docs/ecosystem/framework-support.md +551 -11
- package/website/content/docs/errors/index.md +10 -0
- package/website/content/docs/{AIFlow-Framework-Integration-with-OSSA.md → examples/aiflow-framework-integration-with-ossa.md} +2 -2
- package/website/content/docs/examples/catalog.md +300 -0
- package/website/content/docs/for-audiences/{Students-Researchers.md → students-researchers.md} +1 -1
- package/website/content/docs/getting-started/index.md +92 -0
- package/website/content/docs/getting-started/installation.md +7 -7
- package/website/content/docs/getting-started/running-agents.md +215 -13
- package/{docs → website/content/docs}/getting-started.md +10 -6
- package/website/content/docs/integrations/aiflow.md +2 -2
- package/website/content/docs/integrations/drupal.md +2 -2
- package/website/content/docs/migration-guides/agent-schema-comparison.md +232 -0
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +5 -5
- package/website/content/docs/migration-guides/crewai-to-ossa.md +3 -3
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +11 -11
- package/{docs/migration → website/content/docs/migration-guides}/general-agent-schema.yml +1 -9
- package/website/content/docs/migration-guides/index.md +1 -1
- package/website/content/docs/migration-guides/langchain-to-ossa.md +17 -17
- package/website/content/docs/migration-guides/langflow-to-ossa.md +3 -3
- package/website/content/docs/migration-guides/openai-to-ossa.md +10 -10
- package/website/content/docs/openapi-extensions/examples.md +9 -9
- package/website/content/docs/openapi-extensions/index.md +59 -3
- package/website/content/docs/openapi-extensions/operation-extensions.md +61 -2
- package/website/content/docs/openapi-extensions/root-extensions.md +49 -3
- package/{docs/OSSA-COMPLIANT-BADGE.md → website/content/docs/ossa-compliant-badge.md} +18 -15
- package/website/content/docs/pre-release/index.md +10 -10
- package/website/content/docs/readme.md +35 -0
- package/website/content/docs/releases/v0.2.6.md +99 -0
- package/website/content/docs/schema-reference/agent-capabilities.md +50 -0
- package/website/content/docs/schema-reference/agent-id.md +52 -0
- package/website/content/docs/schema-reference/agent-name.md +50 -0
- package/website/content/docs/schema-reference/agent-role.md +54 -0
- package/website/content/docs/schema-reference/agent-spec.md +2 -2
- package/website/content/docs/schema-reference/agent-version.md +50 -0
- package/website/content/docs/schema-reference/autonomy.md +5 -5
- package/website/content/docs/schema-reference/constraints.md +5 -5
- package/website/content/docs/schema-reference/index.md +26 -157
- package/website/content/docs/schema-reference/llm-config.md +1 -1
- package/website/content/docs/schema-reference/observability.md +5 -5
- package/website/content/docs/schema-reference/ossa-manifest.md +6 -6
- package/website/content/docs/schema-reference/taxonomy.md +3 -3
- package/website/content/docs/types-reference/index.md +105 -0
- package/website/content/docs/use-cases/00-index.md +1 -1
- package/{docs/VERSIONING.md → website/content/docs/versioning.md} +9 -5
- package/website/dev.sh +53 -0
- package/website/docker-compose.dev.yml +36 -0
- package/website/lib/version.ts +18 -1
- package/website/lib/versions.json +103 -0
- package/website/next.config.ts +3 -1
- package/website/package-lock.json +552 -18
- package/website/package.json +11 -5
- package/website/postcss.config.mjs +1 -1
- package/website/scripts/fetch-versions.js +166 -0
- package/website/scripts/generate-examples-index.js +163 -0
- package/website/scripts/merge-docs-to-wiki.ts +207 -0
- package/website/scripts/sync-version.js +28 -0
- package/website/scripts/sync-wiki.ts +64 -3
- package/website/scripts/upload-wiki.ts +199 -0
- package/website/styles/_spacing.scss +453 -0
- package/website/styles/_tokens.scss +245 -0
- package/website/styles/_typography.scss +361 -0
- package/website/styles/_variables.scss +287 -0
- package/website/tailwind.config.ts +127 -22
- package/.releaserc.json.disabled +0 -81
- package/dist/spec/v0.2.5-dev/CHANGELOG.md +0 -171
- package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
- package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
- package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
- package/docs/README.md +0 -31
- package/docs/agent-openapi-spec.yml +0 -942
- package/docs/openapi-extensions.md +0 -930
- package/docs/schemas/openapi-extensions.schema.json +0 -486
- package/openapi/gitlab-orchestrator.openapi.yaml +0 -330
- package/ossa-website-swarm-tasks.json +0 -105
- package/spec/v0.2.5-dev/CHANGELOG.md +0 -171
- package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
- package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
- package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
- package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
- package/website/app/api/validate/route.ts +0 -88
- package/website/app/globals.css +0 -108
- package/website/content/docs/OpenAPI-Extensions.md +0 -498
- package/website/content/docs/core-concepts/project-structure.md +0 -348
- package/website/content/docs/examples/Migration-Guides.md +0 -214
- package/website/content/docs/examples.md +0 -71
- package/website/content/docs/for-audiences/Enterprises.md +0 -256
- package/website/content/docs/for-audiences/architects.md +0 -224
- package/website/content/docs/for-audiences/developers.md +0 -220
- package/website/content/docs/getting-started/5-minute-overview.md +0 -85
- package/website/content/docs/getting-started/Hello-World.md +0 -184
- package/website/content/docs/getting-started/first-agent.md +0 -196
- package/website/content/docs/migration-guides/00-index.md +0 -76
- package/website/content/docs/migration-guides/README.md +0 -133
- package/website/next.config.js +0 -17
- package/website/postcss.config.js +0 -7
- package/website/tailwind.config.js +0 -58
- /package/dist/spec/{v0.2.4-dev/ossa-0.2.4-dev.schema.json → v0.2.4/ossa-0.2.4.schema.json} +0 -0
- /package/openapi/{ossa-registry-api.openapi.yaml → core/ossa-registry-api.openapi.yaml} +0 -0
- /package/openapi/{drupal-agent-api.openapi.yaml → reference-implementations/drupal-agent-api.openapi.yaml} +0 -0
- /package/openapi/{helm-generator.openapi.yaml → reference-implementations/helm-generator.openapi.yaml} +0 -0
- /package/spec/{v0.2.4-dev/ossa-0.2.4-dev.schema.json → v0.2.4/ossa-0.2.4.schema.json} +0 -0
- /package/{docs/migration → website/content/docs/migration-guides}/migration-manifest.json +0 -0
|
@@ -152,7 +152,7 @@ events:
|
|
|
152
152
|
|
|
153
153
|
**OSSA Agent (Webhook Integration):**
|
|
154
154
|
```yaml
|
|
155
|
-
ossaVersion:
|
|
155
|
+
ossaVersion: "0.2.6"
|
|
156
156
|
agent:
|
|
157
157
|
id: drupal-content-handler
|
|
158
158
|
name: Drupal Content Handler Agent
|
|
@@ -225,7 +225,7 @@ conditions:
|
|
|
225
225
|
|
|
226
226
|
**OSSA Agent (Schema + Policy Enforcement):**
|
|
227
227
|
```yaml
|
|
228
|
-
ossaVersion:
|
|
228
|
+
ossaVersion: "0.2.6"
|
|
229
229
|
agent:
|
|
230
230
|
id: content-moderator
|
|
231
231
|
name: Content Moderation Agent
|
|
@@ -283,7 +283,7 @@ actions:
|
|
|
283
283
|
|
|
284
284
|
**OSSA Agent (Multi-Capability):**
|
|
285
285
|
```yaml
|
|
286
|
-
ossaVersion:
|
|
286
|
+
ossaVersion: "0.2.6"
|
|
287
287
|
agent:
|
|
288
288
|
id: content-processor
|
|
289
289
|
name: Content Processing Agent
|
|
@@ -475,7 +475,7 @@ workflow:
|
|
|
475
475
|
|
|
476
476
|
**OSSA Orchestrator Agent:**
|
|
477
477
|
```yaml
|
|
478
|
-
ossaVersion:
|
|
478
|
+
ossaVersion: "0.2.6"
|
|
479
479
|
agent:
|
|
480
480
|
id: content-workflow-orchestrator
|
|
481
481
|
name: Content Workflow Orchestrator
|
|
@@ -673,7 +673,7 @@ actions:
|
|
|
673
673
|
|
|
674
674
|
```yaml
|
|
675
675
|
# drupal-content-moderator.ossa.yaml
|
|
676
|
-
ossaVersion:
|
|
676
|
+
ossaVersion: "0.2.6"
|
|
677
677
|
|
|
678
678
|
agent:
|
|
679
679
|
id: drupal-content-moderator
|
|
@@ -962,7 +962,7 @@ actions:
|
|
|
962
962
|
|
|
963
963
|
```yaml
|
|
964
964
|
# user-onboarding-agent.ossa.yaml
|
|
965
|
-
ossaVersion:
|
|
965
|
+
ossaVersion: "0.2.6"
|
|
966
966
|
|
|
967
967
|
agent:
|
|
968
968
|
id: user-onboarding-orchestrator
|
|
@@ -1272,7 +1272,7 @@ actions:
|
|
|
1272
1272
|
|
|
1273
1273
|
```yaml
|
|
1274
1274
|
# commerce-order-processor.ossa.yaml
|
|
1275
|
-
ossaVersion:
|
|
1275
|
+
ossaVersion: "0.2.6"
|
|
1276
1276
|
|
|
1277
1277
|
agent:
|
|
1278
1278
|
id: commerce-order-processor
|
|
@@ -1943,19 +1943,19 @@ if ($features->isEnabled('ossa_moderation')) {
|
|
|
1943
1943
|
### Documentation
|
|
1944
1944
|
- [OSSA Specification](https://github.com/blueflyio/openstandardagents/wiki/home)
|
|
1945
1945
|
- [Drupal ECA Guide](https://ecaguide.org/)
|
|
1946
|
-
- [BuildKit CLI Reference](https://github.com/blueflyio/
|
|
1946
|
+
- [BuildKit CLI Reference](https://github.com/blueflyio/documentation/-/wikis/BuildKit-CLI-Reference)
|
|
1947
1947
|
|
|
1948
1948
|
### Tools
|
|
1949
|
-
- OSSA CLI: `npm install -g @
|
|
1949
|
+
- OSSA CLI: `npm install -g @ossa/cli`
|
|
1950
1950
|
- BuildKit: `npm install -g @llm/agent-buildkit`
|
|
1951
1951
|
- OSSA Validator: `ossa validate <file>`
|
|
1952
1952
|
|
|
1953
1953
|
### Examples
|
|
1954
1954
|
- [OSSA Example Agents](https://github.com/blueflyio/openstandardagents/tree/main/examples)
|
|
1955
|
-
- [Drupal Integration Module](https://github.com/blueflyio/
|
|
1955
|
+
- [Drupal Integration Module](https://github.com/blueflyio/drupal/ossa_integration)
|
|
1956
1956
|
|
|
1957
1957
|
### Support
|
|
1958
|
-
- [
|
|
1958
|
+
- [GitLab Issues](https://github.com/blueflyio/documentation/-/issues)
|
|
1959
1959
|
- [OSSA Discussions](https://github.com/blueflyio/openstandardagents/issues)
|
|
1960
1960
|
|
|
1961
1961
|
---
|
|
@@ -26,15 +26,7 @@ components:
|
|
|
26
26
|
type: array
|
|
27
27
|
items:
|
|
28
28
|
type: string
|
|
29
|
-
enum:
|
|
30
|
-
[
|
|
31
|
-
code_generation,
|
|
32
|
-
code_review,
|
|
33
|
-
issue_analysis,
|
|
34
|
-
documentation,
|
|
35
|
-
testing,
|
|
36
|
-
deployment,
|
|
37
|
-
]
|
|
29
|
+
enum: [code_generation, code_review, issue_analysis, documentation, testing, deployment]
|
|
38
30
|
configuration:
|
|
39
31
|
type: object
|
|
40
32
|
properties:
|
|
@@ -116,7 +116,7 @@ Starting fresh? → Check Getting Started guide
|
|
|
116
116
|
|
|
117
117
|
- **Documentation:** `/Users/flux423/Sites/LLM/agent-buildkit/docs/`
|
|
118
118
|
- **Examples:** `/Users/flux423/Sites/LLM/agent-buildkit/.agents/`
|
|
119
|
-
- **OSSA Spec:** [
|
|
119
|
+
- **OSSA Spec:** [Schema Reference](/docs/schema-reference)
|
|
120
120
|
- **BuildKit CLI:** `buildkit agents --help`
|
|
121
121
|
|
|
122
122
|
## Contributing
|
|
@@ -173,7 +173,7 @@ print(result)
|
|
|
173
173
|
**Step 1: Create agent manifest** - `.agents/assistant-agent/agent.yml`
|
|
174
174
|
|
|
175
175
|
```yaml
|
|
176
|
-
ossaVersion: "
|
|
176
|
+
ossaVersion: "0.2.6"
|
|
177
177
|
metadata:
|
|
178
178
|
name: assistant-agent
|
|
179
179
|
version: "1.0.0"
|
|
@@ -471,7 +471,7 @@ agent.run("What's my name?") # Should remember "Alice"
|
|
|
471
471
|
**Agent manifest** - `.agents/conversational-agent/agent.yml`
|
|
472
472
|
|
|
473
473
|
```yaml
|
|
474
|
-
ossaVersion: "
|
|
474
|
+
ossaVersion: "0.2.6"
|
|
475
475
|
metadata:
|
|
476
476
|
name: conversational-agent
|
|
477
477
|
version: "1.0.0"
|
|
@@ -799,7 +799,7 @@ print(f"Story: {result['story']}")
|
|
|
799
799
|
**Agent manifest** - `.agents/story-writer-agent/agent.yml`
|
|
800
800
|
|
|
801
801
|
```yaml
|
|
802
|
-
ossaVersion: "
|
|
802
|
+
ossaVersion: "0.2.6"
|
|
803
803
|
metadata:
|
|
804
804
|
name: story-writer-agent
|
|
805
805
|
version: "1.0.0"
|
|
@@ -1257,7 +1257,7 @@ final = editor.run(f"Edit this draft: {draft}")
|
|
|
1257
1257
|
Use orchestrator agent with A2A (Agent-to-Agent) communication:
|
|
1258
1258
|
|
|
1259
1259
|
```yaml
|
|
1260
|
-
ossaVersion: "
|
|
1260
|
+
ossaVersion: "0.2.6"
|
|
1261
1261
|
agent:
|
|
1262
1262
|
id: article-orchestrator
|
|
1263
1263
|
name: Article Orchestrator
|
|
@@ -1617,9 +1617,9 @@ Use feature flags or load balancer to control traffic split.
|
|
|
1617
1617
|
|
|
1618
1618
|
5. **Join the community**
|
|
1619
1619
|
- [OSSA Specification](https://github.com/blueflyio/openstandardagents/wiki/home)
|
|
1620
|
-
- [Agent BuildKit](https://github.com/blueflyio/
|
|
1621
|
-
- [Examples Repository](https://github.com/blueflyio/
|
|
1622
|
-
- [Issue Tracker](https://github.com/blueflyio/
|
|
1620
|
+
- [Agent BuildKit](https://github.com/blueflyio/agent-buildkit)
|
|
1621
|
+
- [Examples Repository](https://github.com/blueflyio/agent-buildkit/-/tree/main/examples)
|
|
1622
|
+
- [Issue Tracker](https://github.com/blueflyio/agent-buildkit/-/issues)
|
|
1623
1623
|
|
|
1624
1624
|
---
|
|
1625
1625
|
|
|
@@ -1633,19 +1633,19 @@ Use feature flags or load balancer to control traffic split.
|
|
|
1633
1633
|
- [Getting Started Guide](/Getting-Started)
|
|
1634
1634
|
|
|
1635
1635
|
### Examples
|
|
1636
|
-
- [Simple Worker Agent](https://github.com/blueflyio/
|
|
1637
|
-
- [Orchestrator Agent](https://github.com/blueflyio/
|
|
1638
|
-
- [Multi-Agent System](https://github.com/blueflyio/
|
|
1636
|
+
- [Simple Worker Agent](https://github.com/blueflyio/agent-buildkit/-/tree/main/agents/review-agents)
|
|
1637
|
+
- [Orchestrator Agent](https://github.com/blueflyio/agent-buildkit/-/tree/main/agents/executive-agents)
|
|
1638
|
+
- [Multi-Agent System](https://github.com/blueflyio/agent-buildkit/-/tree/main/examples)
|
|
1639
1639
|
|
|
1640
1640
|
### Tools
|
|
1641
|
-
- [Agent Validator](https://github.com/blueflyio/
|
|
1642
|
-
- [Migration Script](https://github.com/blueflyio/
|
|
1643
|
-
- [Agent Templates](https://github.com/blueflyio/
|
|
1641
|
+
- [Agent Validator](https://github.com/blueflyio/agent-buildkit/-/blob/main/src/cli/agents/validate.ts)
|
|
1642
|
+
- [Migration Script](https://github.com/blueflyio/agent-buildkit/-/blob/main/scripts/migrate-agents-to-ossa.ts)
|
|
1643
|
+
- [Agent Templates](https://github.com/blueflyio/agent-buildkit/-/tree/main/templates/agents)
|
|
1644
1644
|
|
|
1645
1645
|
### Support
|
|
1646
|
-
- **Issues**: https://github.com/blueflyio/
|
|
1647
|
-
- **Discussions**: https://github.com/blueflyio/
|
|
1648
|
-
- **Wiki**: https://github.com/blueflyio/
|
|
1646
|
+
- **Issues**: https://github.com/blueflyio/agent-buildkit/-/issues
|
|
1647
|
+
- **Discussions**: https://github.com/blueflyio/agent-buildkit/-/merge_requests
|
|
1648
|
+
- **Wiki**: https://github.com/blueflyio/agent-buildkit/-/wikis/home
|
|
1649
1649
|
|
|
1650
1650
|
---
|
|
1651
1651
|
|
|
@@ -1711,4 +1711,4 @@ runtime:
|
|
|
1711
1711
|
|
|
1712
1712
|
---
|
|
1713
1713
|
|
|
1714
|
-
*For questions or issues with this migration guide, please create an issue at: https://github.com/blueflyio/
|
|
1714
|
+
*For questions or issues with this migration guide, please create an issue at: https://github.com/blueflyio/agent-buildkit/-/issues*
|
|
@@ -2052,7 +2052,7 @@ ossa-migrate validate \
|
|
|
2052
2052
|
|
|
2053
2053
|
- **OSSA Specification**: https://github.com/blueflyio/openstandardagents/wiki/home
|
|
2054
2054
|
- **OSSA Quick Reference**: [OSSA-QUICK-REFERENCE.md](../OSSA-QUICK-REFERENCE.md)
|
|
2055
|
-
- **BuildKit CLI**: https://github.com/blueflyio/
|
|
2055
|
+
- **BuildKit CLI**: https://github.com/blueflyio/documentation/-/wikis/BuildKit-CLI-Reference
|
|
2056
2056
|
- **Langflow Documentation**: https://docs.langflow.org/
|
|
2057
2057
|
|
|
2058
2058
|
### Example Repositories
|
|
@@ -2062,7 +2062,7 @@ ossa-migrate validate \
|
|
|
2062
2062
|
|
|
2063
2063
|
### Community & Support
|
|
2064
2064
|
|
|
2065
|
-
- **
|
|
2065
|
+
- **GitLab Issues**: https://github.com/blueflyio/documentation/-/issues
|
|
2066
2066
|
- **Migration Support**: Tag issues with `migration::langflow`
|
|
2067
2067
|
|
|
2068
2068
|
---
|
|
@@ -2072,4 +2072,4 @@ ossa-migrate validate \
|
|
|
2072
2072
|
**Maintained By:** OSSA Team
|
|
2073
2073
|
**License:** MIT
|
|
2074
2074
|
|
|
2075
|
-
**Feedback**: Please report issues or suggestions at https://github.com/blueflyio/
|
|
2075
|
+
**Feedback**: Please report issues or suggestions at https://github.com/blueflyio/documentation/-/issues/new?issue[title]=Langflow%20Migration%20Guide%20Feedback
|
|
@@ -83,7 +83,7 @@ assistant = client.beta.assistants.create(
|
|
|
83
83
|
|
|
84
84
|
**OSSA Equivalent:**
|
|
85
85
|
```yaml
|
|
86
|
-
apiVersion: ossa/v0.2.
|
|
86
|
+
apiVersion: ossa/v0.2.2
|
|
87
87
|
kind: Agent
|
|
88
88
|
metadata:
|
|
89
89
|
name: data-analyst
|
|
@@ -203,7 +203,7 @@ assistant = client.beta.assistants.create(
|
|
|
203
203
|
|
|
204
204
|
**OSSA Data Capabilities:**
|
|
205
205
|
```yaml
|
|
206
|
-
apiVersion: ossa/v0.2.
|
|
206
|
+
apiVersion: ossa/v0.2.2
|
|
207
207
|
kind: Agent
|
|
208
208
|
metadata:
|
|
209
209
|
name: research-assistant
|
|
@@ -397,7 +397,7 @@ print(messages.data[0].content[0].text.value)
|
|
|
397
397
|
|
|
398
398
|
**1. Create Agent Manifest (`math-tutor.ossa.yaml`):**
|
|
399
399
|
```yaml
|
|
400
|
-
apiVersion: ossa/v0.2.
|
|
400
|
+
apiVersion: ossa/v0.2.2
|
|
401
401
|
kind: Agent
|
|
402
402
|
metadata:
|
|
403
403
|
name: math-tutor
|
|
@@ -528,7 +528,7 @@ if run.status == 'requires_action':
|
|
|
528
528
|
|
|
529
529
|
**1. Create Agent Manifest (`stock-assistant.ossa.yaml`):**
|
|
530
530
|
```yaml
|
|
531
|
-
apiVersion: ossa/v0.2.
|
|
531
|
+
apiVersion: ossa/v0.2.2
|
|
532
532
|
kind: Agent
|
|
533
533
|
metadata:
|
|
534
534
|
name: stock-assistant
|
|
@@ -696,7 +696,7 @@ buildkit ecosystem services start qdrant
|
|
|
696
696
|
|
|
697
697
|
**2. Create Agent Manifest (`support-assistant.ossa.yaml`):**
|
|
698
698
|
```yaml
|
|
699
|
-
apiVersion: ossa/v0.2.
|
|
699
|
+
apiVersion: ossa/v0.2.2
|
|
700
700
|
kind: Agent
|
|
701
701
|
metadata:
|
|
702
702
|
name: support-assistant
|
|
@@ -905,7 +905,7 @@ OSSA provides native support for multi-agent orchestration, which OpenAI Assista
|
|
|
905
905
|
|
|
906
906
|
**OSSA Orchestrator Example:**
|
|
907
907
|
```yaml
|
|
908
|
-
apiVersion: ossa/v0.2.
|
|
908
|
+
apiVersion: ossa/v0.2.2
|
|
909
909
|
kind: Agent
|
|
910
910
|
metadata:
|
|
911
911
|
name: research-orchestrator
|
|
@@ -1181,7 +1181,7 @@ curl http://localhost:3000/metrics
|
|
|
1181
1181
|
## Additional Resources
|
|
1182
1182
|
|
|
1183
1183
|
- **OSSA Specification**: [https://github.com/blueflyio/openstandardagents/wiki/home](https://github.com/blueflyio/openstandardagents/wiki/home)
|
|
1184
|
-
- **BuildKit Documentation**: [https://github.com/blueflyio/
|
|
1184
|
+
- **BuildKit Documentation**: [https://github.com/blueflyio/documentation/-/wikis/BuildKit-CLI-Reference](https://github.com/blueflyio/documentation/-/wikis/BuildKit-CLI-Reference)
|
|
1185
1185
|
- **Agent Examples**: `/Users/flux423/Sites/LLM/agent-buildkit/templates/agents/`
|
|
1186
1186
|
- **OSSA Types**: `/Users/flux423/Sites/LLM/agent-buildkit/src/types/ossa.ts`
|
|
1187
1187
|
- **OpenAPI Spec**: `/Users/flux423/Sites/LLM/agent-buildkit/openapi/ossa-complete-v0.1.2.yaml`
|
|
@@ -1190,9 +1190,9 @@ curl http://localhost:3000/metrics
|
|
|
1190
1190
|
|
|
1191
1191
|
## Support
|
|
1192
1192
|
|
|
1193
|
-
- **Issues**: [https://github.com/blueflyio/
|
|
1194
|
-
- **BuildKit Repo**: [https://github.com/blueflyio/
|
|
1195
|
-
- **Wiki**: [https://github.com/blueflyio/
|
|
1193
|
+
- **Issues**: [https://github.com/blueflyio/documentation/-/issues](https://github.com/blueflyio/documentation/-/issues)
|
|
1194
|
+
- **BuildKit Repo**: [https://github.com/blueflyio/agent-buildkit](https://github.com/blueflyio/agent-buildkit)
|
|
1195
|
+
- **Wiki**: [https://github.com/blueflyio/documentation/-/wikis/home](https://github.com/blueflyio/documentation/-/wikis/home)
|
|
1196
1196
|
|
|
1197
1197
|
---
|
|
1198
1198
|
|
|
@@ -16,13 +16,13 @@ info:
|
|
|
16
16
|
description: Minimal OSSA-compliant agent API
|
|
17
17
|
|
|
18
18
|
x-ossa-metadata:
|
|
19
|
-
version: 0.2.
|
|
19
|
+
version: 0.2.x
|
|
20
20
|
compliance:
|
|
21
21
|
level: basic
|
|
22
22
|
frameworks: [OSSA, OpenAPI 3.1]
|
|
23
23
|
|
|
24
24
|
x-ossa:
|
|
25
|
-
version: 0.2.
|
|
25
|
+
version: 0.2.x
|
|
26
26
|
agent:
|
|
27
27
|
id: hello-world-agent
|
|
28
28
|
type: worker
|
|
@@ -89,7 +89,7 @@ info:
|
|
|
89
89
|
Supports pod inspection, log analysis, and event correlation.
|
|
90
90
|
|
|
91
91
|
x-ossa-metadata:
|
|
92
|
-
version: 0.2.
|
|
92
|
+
version: 0.2.x
|
|
93
93
|
compliance:
|
|
94
94
|
level: enterprise
|
|
95
95
|
frameworks:
|
|
@@ -110,7 +110,7 @@ x-ossa-metadata:
|
|
|
110
110
|
logging: true
|
|
111
111
|
|
|
112
112
|
x-ossa:
|
|
113
|
-
version: 0.2.
|
|
113
|
+
version: 0.2.x
|
|
114
114
|
agent:
|
|
115
115
|
id: k8s-troubleshooter
|
|
116
116
|
type: worker
|
|
@@ -268,13 +268,13 @@ info:
|
|
|
268
268
|
version: 1.0.0
|
|
269
269
|
|
|
270
270
|
x-ossa-metadata:
|
|
271
|
-
version: 0.2.
|
|
271
|
+
version: 0.2.x
|
|
272
272
|
compliance:
|
|
273
273
|
level: standard
|
|
274
274
|
frameworks: [OSSA, OpenAPI 3.1]
|
|
275
275
|
|
|
276
276
|
x-ossa:
|
|
277
|
-
version: 0.2.
|
|
277
|
+
version: 0.2.x
|
|
278
278
|
agent:
|
|
279
279
|
id: data-processor
|
|
280
280
|
type: worker
|
|
@@ -392,7 +392,7 @@ The OpenAPI spec should reference capabilities and tools defined in the manifest
|
|
|
392
392
|
|
|
393
393
|
**agent.ossa.yaml**:
|
|
394
394
|
```yaml
|
|
395
|
-
apiVersion: ossa/v0.2.
|
|
395
|
+
apiVersion: ossa/v0.2.x
|
|
396
396
|
kind: Agent
|
|
397
397
|
metadata:
|
|
398
398
|
name: k8s-troubleshooter
|
|
@@ -461,7 +461,7 @@ info:
|
|
|
461
461
|
version: 1.0.0
|
|
462
462
|
|
|
463
463
|
x-ossa:
|
|
464
|
-
version: 0.2.
|
|
464
|
+
version: 0.2.x
|
|
465
465
|
agent:
|
|
466
466
|
id: devops-assistant
|
|
467
467
|
type: worker
|
|
@@ -546,5 +546,5 @@ paths:
|
|
|
546
546
|
|
|
547
547
|
- [Root-Level Extensions](root-extensions)
|
|
548
548
|
- [Operation-Level Extensions](operation-extensions)
|
|
549
|
-
- [OSSA Specification
|
|
549
|
+
- [OSSA Specification](/docs/specification)
|
|
550
550
|
- [OpenAPI 3.1 Specification](https://spec.openapis.org/oas/v3.1.0)
|
|
@@ -45,7 +45,7 @@ info:
|
|
|
45
45
|
version: 1.0.0
|
|
46
46
|
|
|
47
47
|
x-ossa-metadata:
|
|
48
|
-
version: 0.2.
|
|
48
|
+
version: 0.2.x
|
|
49
49
|
compliance:
|
|
50
50
|
level: enterprise
|
|
51
51
|
frameworks:
|
|
@@ -78,7 +78,7 @@ Core OSSA compliance information with agent identification and validation metada
|
|
|
78
78
|
|
|
79
79
|
```yaml
|
|
80
80
|
x-ossa:
|
|
81
|
-
version: 0.2.
|
|
81
|
+
version: 0.2.x
|
|
82
82
|
agent:
|
|
83
83
|
id: k8s-troubleshooter
|
|
84
84
|
type: worker
|
|
@@ -395,7 +395,7 @@ See [Full Documentation](https://github.com/blueflyio/openstandardagents/blob/ma
|
|
|
395
395
|
- **Full Documentation**: [docs/openapi-extensions.md](https://github.com/blueflyio/openstandardagents/blob/main/docs/openapi-extensions.md)
|
|
396
396
|
- **JSON Schema**: [docs/schemas/openapi-extensions.schema.json](https://github.com/blueflyio/openstandardagents/blob/main/docs/schemas/openapi-extensions.schema.json)
|
|
397
397
|
- **Examples**: [examples/openapi-extensions/](https://github.com/blueflyio/openstandardagents/tree/main/examples/openapi-extensions)
|
|
398
|
-
- **OSSA Specification**: [spec/v0.2.
|
|
398
|
+
- **OSSA Specification**: [spec/v0.2.6/OSSA-SPECIFICATION-v0.2.x.md](https://github.com/blueflyio/openstandardagents/blob/main/spec/v0.2.6/OSSA-SPECIFICATION-v0.2.2.md)
|
|
399
399
|
- **npm Package**: [@bluefly/openstandardagents](https://www.npmjs.com/package/@bluefly/openstandardagents)
|
|
400
400
|
|
|
401
401
|
---
|
|
@@ -403,6 +403,62 @@ See [Full Documentation](https://github.com/blueflyio/openstandardagents/blob/ma
|
|
|
403
403
|
*For complete documentation with all examples and details, see the [main documentation file](https://github.com/blueflyio/openstandardagents/blob/main/docs/openapi-extensions.md).*
|
|
404
404
|
|
|
405
405
|
|
|
406
|
+
---
|
|
407
|
+
|
|
408
|
+
## Integration with OSSA Manifests
|
|
409
|
+
|
|
410
|
+
OSSA OpenAPI extensions complement OSSA agent manifests (`.ossa.yaml` files). They serve different but related purposes:
|
|
411
|
+
|
|
412
|
+
- **OSSA Agent Manifest** (`.ossa.yaml`) - Declarative agent definition with full configuration, capabilities, tools, LLM settings, and runtime configuration
|
|
413
|
+
- **OpenAPI Specification with OSSA Extensions** - API interface definition with agent metadata, operation-level autonomy, constraints, and tool requirements
|
|
414
|
+
|
|
415
|
+
### When to Use Each
|
|
416
|
+
|
|
417
|
+
**Use OSSA Manifest (`.ossa.yaml`)** when:
|
|
418
|
+
- Defining the complete agent configuration
|
|
419
|
+
- Specifying runtime environment (k8s, docker, serverless)
|
|
420
|
+
- Declaring all agent capabilities in one place
|
|
421
|
+
- Configuring default LLM settings
|
|
422
|
+
- Defining agent-to-agent communication protocols
|
|
423
|
+
|
|
424
|
+
**Use OpenAPI with OSSA Extensions** when:
|
|
425
|
+
- Documenting REST API endpoints
|
|
426
|
+
- Linking API operations to agent capabilities
|
|
427
|
+
- Defining operation-specific autonomy levels
|
|
428
|
+
- Setting per-operation cost and performance constraints
|
|
429
|
+
- Specifying which tools are needed for each API call
|
|
430
|
+
|
|
431
|
+
### Combining Both
|
|
432
|
+
|
|
433
|
+
You can use both together:
|
|
434
|
+
|
|
435
|
+
1. **OSSA Manifest** defines the agent's overall configuration
|
|
436
|
+
2. **OpenAPI Spec** defines the API interface with OSSA extensions
|
|
437
|
+
3. The `x-ossa-capability` extension links API operations to capabilities defined in the manifest
|
|
438
|
+
|
|
439
|
+
Example workflow:
|
|
440
|
+
```yaml
|
|
441
|
+
# agent.ossa.yaml
|
|
442
|
+
apiVersion: ossa/v0.2.x
|
|
443
|
+
kind: Agent
|
|
444
|
+
metadata:
|
|
445
|
+
name: data-processor
|
|
446
|
+
spec:
|
|
447
|
+
capabilities:
|
|
448
|
+
- name: data-transformation
|
|
449
|
+
description: Transform CSV to JSON
|
|
450
|
+
# ... capability config ...
|
|
451
|
+
|
|
452
|
+
# agent.openapi.yml
|
|
453
|
+
openapi: 3.1.0
|
|
454
|
+
paths:
|
|
455
|
+
/api/v1/transform:
|
|
456
|
+
post:
|
|
457
|
+
x-ossa-capability:
|
|
458
|
+
name: data-transformation # Links to capability in manifest
|
|
459
|
+
# ... operation config ...
|
|
460
|
+
```
|
|
461
|
+
|
|
406
462
|
---
|
|
407
463
|
|
|
408
464
|
## Governance & Autonomy Guidance
|
|
@@ -20,11 +20,24 @@ x-ossa-capability: "capability-name"
|
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
**Detailed object**:
|
|
23
|
+
```yaml
|
|
24
|
+
x-ossa-capability:
|
|
25
|
+
name: string # Capability name
|
|
26
|
+
description: string # Capability description (optional)
|
|
27
|
+
input: boolean # Whether this is an input capability (optional)
|
|
28
|
+
output: boolean # Whether this is an output capability (optional)
|
|
29
|
+
inputSchema: object # JSON Schema for capability input (optional)
|
|
30
|
+
outputSchema: object # JSON Schema for capability output (optional)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**Schema Reference Table:**
|
|
23
34
|
|
|
24
35
|
| Field | Type | Description |
|
|
25
36
|
|-------|------|-------------|
|
|
26
37
|
| `name` | string | Capability name |
|
|
27
38
|
| `description` | string | Capability description (optional) |
|
|
39
|
+
| `input` | boolean | Whether this is an input capability (optional) |
|
|
40
|
+
| `output` | boolean | Whether this is an output capability (optional) |
|
|
28
41
|
| `inputSchema` | object | JSON Schema for capability input (optional) |
|
|
29
42
|
| `outputSchema` | object | JSON Schema for capability output (optional) |
|
|
30
43
|
|
|
@@ -80,6 +93,16 @@ Operation object within path item
|
|
|
80
93
|
|
|
81
94
|
### Schema
|
|
82
95
|
|
|
96
|
+
```yaml
|
|
97
|
+
x-ossa-autonomy:
|
|
98
|
+
level: string # "supervised" | "semi-autonomous" | "autonomous"
|
|
99
|
+
approval_required: boolean # Whether human approval is required
|
|
100
|
+
allowed_actions: string[] # List of allowed actions (optional)
|
|
101
|
+
blocked_actions: string[] # List of blocked actions (optional)
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
**Schema Reference Table:**
|
|
105
|
+
|
|
83
106
|
| Field | Type | Description |
|
|
84
107
|
|-------|------|-------------|
|
|
85
108
|
| `level` | string | Autonomy level: "supervised" \| "autonomous" \| "semi-autonomous" |
|
|
@@ -137,6 +160,22 @@ Operation object within path item
|
|
|
137
160
|
|
|
138
161
|
### Schema
|
|
139
162
|
|
|
163
|
+
```yaml
|
|
164
|
+
x-ossa-constraints:
|
|
165
|
+
cost:
|
|
166
|
+
maxTokensPerDay: integer # Maximum tokens allowed per day
|
|
167
|
+
maxTokensPerRequest: integer # Maximum tokens allowed per request
|
|
168
|
+
maxCostPerDay: number # Maximum cost in USD per day
|
|
169
|
+
currency: string # Currency code (default: "USD")
|
|
170
|
+
performance:
|
|
171
|
+
maxLatencySeconds: number # Maximum acceptable latency in seconds
|
|
172
|
+
maxConcurrentRequests: integer # Maximum concurrent requests
|
|
173
|
+
time:
|
|
174
|
+
maxExecutionTime: integer # Maximum execution time in seconds
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
**Schema Reference Table:**
|
|
178
|
+
|
|
140
179
|
| Field | Type | Description |
|
|
141
180
|
|-------|------|-------------|
|
|
142
181
|
| `cost.maxTokensPerDay` | integer | Maximum tokens allowed per day |
|
|
@@ -191,7 +230,17 @@ Operation object within path item
|
|
|
191
230
|
|
|
192
231
|
### Schema
|
|
193
232
|
|
|
194
|
-
Each tool is an object
|
|
233
|
+
Each tool is an object in an array:
|
|
234
|
+
|
|
235
|
+
```yaml
|
|
236
|
+
x-ossa-tools:
|
|
237
|
+
- type: string # "mcp" | "http" | "custom"
|
|
238
|
+
server: string # Tool server identifier or URL
|
|
239
|
+
namespace: string # Namespace for the tool (optional, for MCP servers)
|
|
240
|
+
capabilities: string[] # List of tool capabilities (optional)
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
**Schema Reference Table:**
|
|
195
244
|
|
|
196
245
|
| Field | Type | Description |
|
|
197
246
|
|-------|------|-------------|
|
|
@@ -248,6 +297,16 @@ Operation object within path item
|
|
|
248
297
|
|
|
249
298
|
### Schema
|
|
250
299
|
|
|
300
|
+
```yaml
|
|
301
|
+
x-ossa-llm:
|
|
302
|
+
provider: string # "openai" | "anthropic" | "google" | "azure" | "custom"
|
|
303
|
+
model: string # Model identifier (e.g., "gpt-4", "claude-3-opus")
|
|
304
|
+
temperature: number # Sampling temperature (0-2, optional)
|
|
305
|
+
maxTokens: integer # Maximum tokens in response (optional)
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
**Schema Reference Table:**
|
|
309
|
+
|
|
251
310
|
| Field | Type | Description |
|
|
252
311
|
|-------|------|-------------|
|
|
253
312
|
| `provider` | string | Provider: "openai" \| "anthropic" \| "google" \| "azure" \| "custom" |
|
|
@@ -394,5 +453,5 @@ paths:
|
|
|
394
453
|
|
|
395
454
|
- [Root-Level Extensions](root-extensions)
|
|
396
455
|
- [Examples & Patterns](examples)
|
|
397
|
-
- [OSSA Specification
|
|
456
|
+
- [OSSA Specification](/docs/specification)
|
|
398
457
|
- [OpenAPI 3.1 Specification](https://spec.openapis.org/oas/v3.1.0)
|
|
@@ -14,6 +14,28 @@ Root level of OpenAPI spec
|
|
|
14
14
|
|
|
15
15
|
### Schema
|
|
16
16
|
|
|
17
|
+
```yaml
|
|
18
|
+
x-ossa-metadata:
|
|
19
|
+
version: string # OSSA specification version (e.g., "0.2.2", "1.0.0")
|
|
20
|
+
compliance:
|
|
21
|
+
level: string # "basic" | "standard" | "advanced" | "enterprise"
|
|
22
|
+
frameworks: string[] # List of compliance frameworks
|
|
23
|
+
governance:
|
|
24
|
+
approved: boolean # Whether specification has been approved
|
|
25
|
+
approvedBy: string # Entity that approved (optional)
|
|
26
|
+
approvalDate: string # Date of approval in YYYY-MM-DD format (optional)
|
|
27
|
+
security:
|
|
28
|
+
classification: string # "public" | "internal" | "confidential" | "restricted"
|
|
29
|
+
authentication: string # "required" | "optional" | "none"
|
|
30
|
+
encryption: string # Encryption requirements (e.g., "tls1.3")
|
|
31
|
+
observability:
|
|
32
|
+
tracing: boolean # Enable distributed tracing
|
|
33
|
+
metrics: boolean # Enable metrics collection
|
|
34
|
+
logging: boolean # Enable structured logging
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
**Schema Reference Table:**
|
|
38
|
+
|
|
17
39
|
| Field | Type | Description |
|
|
18
40
|
|-------|------|-------------|
|
|
19
41
|
| `version` | string | OSSA specification version (e.g., "0.2.2", "1.0.0") |
|
|
@@ -38,7 +60,7 @@ info:
|
|
|
38
60
|
version: 1.0.0
|
|
39
61
|
|
|
40
62
|
x-ossa-metadata:
|
|
41
|
-
version: 0.2.
|
|
63
|
+
version: 0.2.x
|
|
42
64
|
compliance:
|
|
43
65
|
level: enterprise
|
|
44
66
|
frameworks:
|
|
@@ -115,6 +137,20 @@ Root level or `info` section of OpenAPI spec
|
|
|
115
137
|
|
|
116
138
|
### Schema
|
|
117
139
|
|
|
140
|
+
```yaml
|
|
141
|
+
x-ossa:
|
|
142
|
+
version: string # OSSA specification version (e.g., "0.2.2")
|
|
143
|
+
agent:
|
|
144
|
+
id: string # Unique agent identifier (DNS subdomain format)
|
|
145
|
+
type: string # Agent type (see table below)
|
|
146
|
+
compliance:
|
|
147
|
+
standards: string[] # Architectural standards (e.g., ["openapi-first", "dry", "solid"])
|
|
148
|
+
validated: boolean # Whether agent has been validated
|
|
149
|
+
validatedAt: string # ISO 8601 timestamp of validation
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
**Schema Reference Table:**
|
|
153
|
+
|
|
118
154
|
| Field | Type | Description |
|
|
119
155
|
|-------|------|-------------|
|
|
120
156
|
| `version` | string | OSSA specification version (e.g., "0.2.2") |
|
|
@@ -148,7 +184,7 @@ info:
|
|
|
148
184
|
version: 1.0.0
|
|
149
185
|
|
|
150
186
|
x-ossa:
|
|
151
|
-
version: 0.2.
|
|
187
|
+
version: 0.2.x
|
|
152
188
|
agent:
|
|
153
189
|
id: k8s-troubleshooter
|
|
154
190
|
type: worker
|
|
@@ -185,6 +221,16 @@ Root level or `info` section of OpenAPI spec
|
|
|
185
221
|
|
|
186
222
|
### Schema
|
|
187
223
|
|
|
224
|
+
```yaml
|
|
225
|
+
x-agent:
|
|
226
|
+
capabilities: string[] # List of agent capability names
|
|
227
|
+
tools: string[] # List of tools/MCP servers available
|
|
228
|
+
environment: object # Environment-specific configuration (key-value pairs)
|
|
229
|
+
rules: string[] # List of rules or policies the agent follows
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
**Schema Reference Table:**
|
|
233
|
+
|
|
188
234
|
| Field | Type | Description |
|
|
189
235
|
|-------|------|-------------|
|
|
190
236
|
| `capabilities` | string[] | List of agent capability names |
|
|
@@ -360,5 +406,5 @@ components:
|
|
|
360
406
|
|
|
361
407
|
- [Operation-Level Extensions](operation-extensions)
|
|
362
408
|
- [Examples & Patterns](examples)
|
|
363
|
-
- [OSSA Specification
|
|
409
|
+
- [OSSA Specification](/docs/specification)
|
|
364
410
|
- [OpenAPI 3.1 Specification](https://spec.openapis.org/oas/v3.1.0)
|