@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
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "OSSA COMPLIANT BADGE"
|
|
3
|
+
---
|
|
4
|
+
|
|
1
5
|
# OSSA Compliant Badge
|
|
2
6
|
|
|
3
7
|
Display the **OSSA Compliant** badge in your project to show that your AI agent follows the Open Standard for AI Agents (OSSA) specification.
|
|
@@ -9,16 +13,16 @@ Display the **OSSA Compliant** badge in your project to show that your AI agent
|
|
|
9
13
|
### Markdown
|
|
10
14
|
|
|
11
15
|
```markdown
|
|
12
|
-
[](https://
|
|
16
|
+
[](https://github.com/blueflyio/openstandardagents)
|
|
13
17
|
```
|
|
14
18
|
|
|
15
19
|
**Result**:
|
|
16
|
-
[](https://
|
|
20
|
+
[](https://github.com/blueflyio/openstandardagents)
|
|
17
21
|
|
|
18
22
|
### HTML
|
|
19
23
|
|
|
20
24
|
```html
|
|
21
|
-
<a href="https://
|
|
25
|
+
<a href="https://github.com/blueflyio/openstandardagents">
|
|
22
26
|
<img src="https://img.shields.io/badge/OSSA-Compliant-00B8D4.svg" alt="OSSA Compliant">
|
|
23
27
|
</a>
|
|
24
28
|
```
|
|
@@ -27,7 +31,7 @@ Display the **OSSA Compliant** badge in your project to show that your AI agent
|
|
|
27
31
|
|
|
28
32
|
```rst
|
|
29
33
|
.. image:: https://img.shields.io/badge/OSSA-Compliant-00B8D4.svg
|
|
30
|
-
:target: https://
|
|
34
|
+
:target: https://github.com/blueflyio/openstandardagents
|
|
31
35
|
:alt: OSSA Compliant
|
|
32
36
|
```
|
|
33
37
|
|
|
@@ -59,7 +63,7 @@ To display the OSSA Compliant badge, your project must:
|
|
|
59
63
|
|
|
60
64
|
```bash
|
|
61
65
|
# Install OSSA CLI
|
|
62
|
-
npm install -g @bluefly/
|
|
66
|
+
npm install -g @bluefly/openstandardagents
|
|
63
67
|
|
|
64
68
|
# Validate your manifest
|
|
65
69
|
ossa validate path/to/your-agent.ossa.yaml
|
|
@@ -74,7 +78,7 @@ ossa-validation:
|
|
|
74
78
|
stage: test
|
|
75
79
|
image: node:20-alpine
|
|
76
80
|
script:
|
|
77
|
-
- npm install -g @bluefly/
|
|
81
|
+
- npm install -g @bluefly/openstandardagents
|
|
78
82
|
- ossa validate agents/*.ossa.yaml
|
|
79
83
|
```
|
|
80
84
|
|
|
@@ -91,7 +95,7 @@ jobs:
|
|
|
91
95
|
- uses: actions/setup-node@v3
|
|
92
96
|
with:
|
|
93
97
|
node-version: '20'
|
|
94
|
-
- run: npm install -g @bluefly/
|
|
98
|
+
- run: npm install -g @bluefly/openstandardagents
|
|
95
99
|
- run: ossa validate agents/*.ossa.yaml
|
|
96
100
|
```
|
|
97
101
|
|
|
@@ -128,9 +132,9 @@ Projects that have achieved OSSA compliance:
|
|
|
128
132
|
|
|
129
133
|
| Project | Level | Version | Link |
|
|
130
134
|
|---------|-------|---------|------|
|
|
131
|
-
| Agent Buildkit | Advanced | v0.2.3 | [
|
|
132
|
-
| Agent Studio | Advanced | v0.2.3 | [
|
|
133
|
-
| KAgent | Advanced | v0.2.3 | [
|
|
135
|
+
| Agent Buildkit | Advanced | v0.2.3 | [GitHub](https://github.com/blueflyio/openstandardagents) |
|
|
136
|
+
| Agent Studio | Advanced | v0.2.3 | [GitHub](https://github.com/blueflyio/openstandardagents) |
|
|
137
|
+
| KAgent | Advanced | v0.2.3 | [GitHub](https://github.com/blueflyio/openstandardagents) |
|
|
134
138
|
|
|
135
139
|
**Add your project**: Submit a merge request to update this table!
|
|
136
140
|
|
|
@@ -230,16 +234,15 @@ extensions:
|
|
|
230
234
|
|
|
231
235
|
## Resources
|
|
232
236
|
|
|
233
|
-
- **OSSA Specification**: [spec/v0.2.
|
|
234
|
-
- **Examples**: [examples/](
|
|
237
|
+
- **OSSA Specification**: [spec/v0.2.6/](Specification/v0.2.3/)
|
|
238
|
+
- **Examples**: [examples/](Examples/)
|
|
235
239
|
- **CLI Documentation**: [docs/cli/](./cli/)
|
|
236
240
|
- **Contributing**: [CONTRIBUTING.md](../CONTRIBUTING.md)
|
|
237
|
-
- **
|
|
238
|
-
- **GitHub Mirror**: https://github.com/BlueflyCollective/OSSA
|
|
241
|
+
- **GitHub Repository**: https://github.com/blueflyio/openstandardagents
|
|
239
242
|
|
|
240
243
|
---
|
|
241
244
|
|
|
242
|
-
**Questions?** Open an issue on [
|
|
245
|
+
**Questions?** Open an issue on [GitHub](https://github.com/blueflyio/openstandardagents/issues)
|
|
243
246
|
|
|
244
247
|
**Want to contribute?** See [CONTRIBUTING.md](../CONTRIBUTING.md)
|
|
245
248
|
|
|
@@ -46,17 +46,17 @@ OSSA follows semantic versioning. Development specs are marked with `-dev` suffi
|
|
|
46
46
|
|
|
47
47
|
---
|
|
48
48
|
|
|
49
|
-
### v0.2.5-dev - Multi-Agent Composition
|
|
49
|
+
### v0.2.5-RC-dev - Multi-Agent Composition
|
|
50
50
|
|
|
51
51
|
**Status**: Development
|
|
52
52
|
**Target Release**: March 2025
|
|
53
|
-
**Milestone**: [v0.2.5 - Multi-Agent Composition](https://github.com/blueflyio/openstandardagents/milestones/13)
|
|
53
|
+
**Milestone**: [v0.2.5-RC - Multi-Agent Composition](https://github.com/blueflyio/openstandardagents/milestones/13)
|
|
54
54
|
|
|
55
55
|
#### New Features
|
|
56
56
|
|
|
57
57
|
1. **AgentGraph Resource Type**
|
|
58
58
|
```yaml
|
|
59
|
-
apiVersion: ossa/v0.2.5
|
|
59
|
+
apiVersion: ossa/v0.2.5-RC
|
|
60
60
|
kind: AgentGraph # New!
|
|
61
61
|
metadata:
|
|
62
62
|
name: customer-support-cluster
|
|
@@ -112,8 +112,8 @@ git clone https://github.com/blueflyio/openstandardagents.git
|
|
|
112
112
|
cd openstandardagents
|
|
113
113
|
|
|
114
114
|
# View development specs
|
|
115
|
-
ls spec/v0.2.
|
|
116
|
-
ls spec/v0.2.
|
|
115
|
+
ls spec/v0.2.6/
|
|
116
|
+
ls spec/v0.2.6/
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
### Validation
|
|
@@ -130,9 +130,9 @@ ossa validate your-agent.yaml --version 0.2.4-dev
|
|
|
130
130
|
|
|
131
131
|
Development examples are in the spec directories:
|
|
132
132
|
|
|
133
|
-
- `spec/v0.2.
|
|
134
|
-
- `spec/v0.2.
|
|
135
|
-
- `spec/v0.2.
|
|
133
|
+
- `spec/v0.2.6/examples/customer-support-graph.ossa.yaml` - Sequential process
|
|
134
|
+
- `spec/v0.2.6/examples/research-team.ossa.yaml` - Hierarchical process
|
|
135
|
+
- `spec/v0.2.6/examples/parallel-processors.ossa.yaml` - Parallel process
|
|
136
136
|
|
|
137
137
|
---
|
|
138
138
|
|
|
@@ -152,7 +152,7 @@ We welcome feedback on development specifications:
|
|
|
152
152
|
- [#224 - Google ADK extension](https://github.com/blueflyio/openstandardagents/issues/224)
|
|
153
153
|
- [#225 - MS AF adapter](https://github.com/blueflyio/openstandardagents/issues/225)
|
|
154
154
|
|
|
155
|
-
### v0.2.5 Issues
|
|
155
|
+
### v0.2.5-RC Issues
|
|
156
156
|
- [#211-212 - AgentGraph resource](https://github.com/blueflyio/openstandardagents/issues/211)
|
|
157
157
|
- [#213 - Process patterns](https://github.com/blueflyio/openstandardagents/issues/213)
|
|
158
158
|
- [#214 - Edge routing](https://github.com/blueflyio/openstandardagents/issues/214)
|
|
@@ -168,7 +168,7 @@ We welcome feedback on development specifications:
|
|
|
168
168
|
|---------|-------|--------|--------|
|
|
169
169
|
| v0.2.3 | Documentation & Examples | **Stable** | Released |
|
|
170
170
|
| v0.2.4 | Transport & Security | Development | Feb 2025 |
|
|
171
|
-
| v0.2.5 | Multi-Agent Composition | Development | Mar 2025 |
|
|
171
|
+
| v0.2.5-RC | Multi-Agent Composition | Development | Mar 2025 |
|
|
172
172
|
| v0.3.0 | Gamma Release | Planned | Apr 2025 |
|
|
173
173
|
| v1.0.0 | Genesis Release | Planned | TBD |
|
|
174
174
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "README"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# OSSA Documentation
|
|
6
|
+
|
|
7
|
+
## Core Documentation
|
|
8
|
+
|
|
9
|
+
- **[Getting Started](Getting-Started)** - Quick start guide for OSSA
|
|
10
|
+
- **[OpenAPI Extensions](OpenAPI-Extensions)** - How OSSA extends OpenAPI/Swagger for AI agents
|
|
11
|
+
- **[Migration Guide](migration/)** - Upgrading from v0.1.x to v1.0
|
|
12
|
+
- **[Specification](Specification/)** - OSSA 1.0 JSON Schema
|
|
13
|
+
- **[Examples](Examples/)** - Reference implementations
|
|
14
|
+
|
|
15
|
+
## Additional Resources
|
|
16
|
+
|
|
17
|
+
For comprehensive documentation, guides, and architecture details, visit:
|
|
18
|
+
|
|
19
|
+
**[GitHub Repository](https://github.com/blueflyio/openstandardagents)**
|
|
20
|
+
|
|
21
|
+
The repository contains:
|
|
22
|
+
- Architecture guides
|
|
23
|
+
- Deployment strategies
|
|
24
|
+
- Integration tutorials
|
|
25
|
+
- Best practices
|
|
26
|
+
- Community guidelines
|
|
27
|
+
- Contributing guidelines
|
|
28
|
+
|
|
29
|
+
## Quick Links
|
|
30
|
+
|
|
31
|
+
- **Specification**: [spec/ossa-1.0.schema.json](Specification/ossa-1.0.schema.json)
|
|
32
|
+
- **npm Package**: [@bluefly/openstandardagents](https://www.npmjs.com/package/@bluefly/openstandardagents)
|
|
33
|
+
- **GitHub Repository**: [blueflyio/openstandardagents](https://github.com/blueflyio/openstandardagents)
|
|
34
|
+
- **Issues**: [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues)
|
|
35
|
+
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# OSSA v0.2.6 Release Notes
|
|
2
|
+
|
|
3
|
+
**Release Date:** November 26, 2025
|
|
4
|
+
**Type:** Bug Fixes & Documentation
|
|
5
|
+
|
|
6
|
+
## Overview
|
|
7
|
+
|
|
8
|
+
Version 0.2.6 focuses on critical bug fixes, documentation improvements, and website enhancements to improve the developer experience and project stability.
|
|
9
|
+
|
|
10
|
+
## What's New
|
|
11
|
+
|
|
12
|
+
### Website Enhancements
|
|
13
|
+
|
|
14
|
+
#### Brand Identity & Design System
|
|
15
|
+
- **New Design Token System**: Comprehensive color, typography, and spacing tokens
|
|
16
|
+
- **Component Library**: Button, Card, and Badge components with full accessibility support
|
|
17
|
+
- **Enterprise Messaging**: Updated homepage with vendor-neutral, compliance-ready positioning
|
|
18
|
+
- **Comparison Matrix**: Visual comparison of OSSA vs LangChain, AutoGen, MCP, and Semantic Kernel
|
|
19
|
+
|
|
20
|
+
#### Improved User Experience
|
|
21
|
+
- Mobile-optimized typography and responsive design
|
|
22
|
+
- Enhanced call-to-action buttons with better visual hierarchy
|
|
23
|
+
- Improved contrast and WCAG 2.1 AA compliance
|
|
24
|
+
- Card-based layouts across all pages
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
- Fixed website deployment and version display issues
|
|
29
|
+
- Resolved spec directory structure inconsistencies
|
|
30
|
+
- Corrected version references across documentation
|
|
31
|
+
|
|
32
|
+
### Documentation
|
|
33
|
+
|
|
34
|
+
- Updated all version references to 0.2.6
|
|
35
|
+
- Improved specification documentation
|
|
36
|
+
- Enhanced integration guides
|
|
37
|
+
|
|
38
|
+
## Breaking Changes
|
|
39
|
+
|
|
40
|
+
None. This is a backward-compatible release.
|
|
41
|
+
|
|
42
|
+
## Migration Guide
|
|
43
|
+
|
|
44
|
+
No migration required. Update your package:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm install @bluefly/openstandardagents@0.2.6
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Upgrade Instructions
|
|
51
|
+
|
|
52
|
+
### For Existing Projects
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Update package
|
|
56
|
+
npm install @bluefly/openstandardagents@latest
|
|
57
|
+
|
|
58
|
+
# Verify installation
|
|
59
|
+
ossa --version
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### For New Projects
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
# Install globally
|
|
66
|
+
npm install -g @bluefly/openstandardagents
|
|
67
|
+
|
|
68
|
+
# Create new agent
|
|
69
|
+
ossa init my-agent
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## What's Next
|
|
73
|
+
|
|
74
|
+
### v0.2.7 - Multi-Agent & Adapters
|
|
75
|
+
- Enhanced multi-agent orchestration
|
|
76
|
+
- Additional LLM provider integrations (Mistral Devstral)
|
|
77
|
+
- Improved adapter system
|
|
78
|
+
|
|
79
|
+
### v0.2.8 - Developer Experience
|
|
80
|
+
- CLI enhancements
|
|
81
|
+
- Better error messages
|
|
82
|
+
- Improved validation feedback
|
|
83
|
+
|
|
84
|
+
## Contributors
|
|
85
|
+
|
|
86
|
+
Thank you to all contributors who made this release possible!
|
|
87
|
+
|
|
88
|
+
## Resources
|
|
89
|
+
|
|
90
|
+
- [Full Changelog](https://gitlab.com/blueflyio/openstandardagents/-/blob/main/CHANGELOG.md)
|
|
91
|
+
- [Documentation](https://openstandardagents.org/docs)
|
|
92
|
+
- [Examples](https://openstandardagents.org/examples)
|
|
93
|
+
- [Issue Tracker](https://gitlab.com/blueflyio/openstandardagents/-/issues)
|
|
94
|
+
|
|
95
|
+
## Support
|
|
96
|
+
|
|
97
|
+
- [GitLab Issues](https://gitlab.com/blueflyio/openstandardagents/-/issues)
|
|
98
|
+
- [Documentation](https://openstandardagents.org/docs)
|
|
99
|
+
- [Community](https://gitlab.com/blueflyio/openstandardagents)
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# agent.capabilities
|
|
2
|
+
|
|
3
|
+
**Type**: `string`
|
|
4
|
+
**Required**: Yes
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
The agent.capabilities field
|
|
9
|
+
|
|
10
|
+
## Why This Field Exists
|
|
11
|
+
|
|
12
|
+
Define what the agent can do, enabling capability-based routing and discovery
|
|
13
|
+
|
|
14
|
+
## How to Use
|
|
15
|
+
|
|
16
|
+
List all capabilities with input/output schemas and descriptions
|
|
17
|
+
|
|
18
|
+
## Where It's Used
|
|
19
|
+
|
|
20
|
+
Used by orchestrators to route tasks and by registry for discovery
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
```yaml
|
|
25
|
+
agent.capabilities: process_data
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
agent.capabilities: validate_compliance
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```yaml
|
|
33
|
+
agent.capabilities: generate_report
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Validation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
ossa validate agent.ossa.yaml
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Related Fields
|
|
43
|
+
|
|
44
|
+
- [agent.tools](./agent-tools.md)
|
|
45
|
+
- [agent.role](./agent-role.md)
|
|
46
|
+
|
|
47
|
+
## Related Documentation
|
|
48
|
+
|
|
49
|
+
- [defining-capabilities](../guides/defining-capabilities.md)
|
|
50
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# agent.id
|
|
2
|
+
|
|
3
|
+
**Type**: `string`
|
|
4
|
+
**Required**: Yes
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
The agent.id field
|
|
9
|
+
|
|
10
|
+
## Why This Field Exists
|
|
11
|
+
|
|
12
|
+
Unique identifier for agent registration, API routing, and inter-agent communication
|
|
13
|
+
|
|
14
|
+
## How to Use
|
|
15
|
+
|
|
16
|
+
Use DNS-1123 subdomain format: lowercase alphanumeric with hyphens, max 63 chars
|
|
17
|
+
|
|
18
|
+
## Where It's Used
|
|
19
|
+
|
|
20
|
+
Used in API endpoints (/agents/{id}), Kubernetes resources, and registry URLs
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
```yaml
|
|
25
|
+
agent.id: my-agent
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
agent.id: data-processor-v2
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```yaml
|
|
33
|
+
agent.id: compliance-checker-prod
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Validation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
ossa validate agent.ossa.yaml
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Related Fields
|
|
43
|
+
|
|
44
|
+
- [agent.name](./agent-name.md)
|
|
45
|
+
- [agent.version](./agent-version.md)
|
|
46
|
+
- [agent.role](./agent-role.md)
|
|
47
|
+
|
|
48
|
+
## Related Documentation
|
|
49
|
+
|
|
50
|
+
- [ossa-validate](../cli-reference/ossa-validate.md)
|
|
51
|
+
- [core-api](../api-reference/core-api.md)
|
|
52
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# agent.name
|
|
2
|
+
|
|
3
|
+
**Type**: `string`
|
|
4
|
+
**Required**: Yes
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
The agent.name field
|
|
9
|
+
|
|
10
|
+
## Why This Field Exists
|
|
11
|
+
|
|
12
|
+
Human-readable name for display in UIs and documentation
|
|
13
|
+
|
|
14
|
+
## How to Use
|
|
15
|
+
|
|
16
|
+
Use descriptive names that clearly indicate the agent's purpose
|
|
17
|
+
|
|
18
|
+
## Where It's Used
|
|
19
|
+
|
|
20
|
+
Displayed in agent lists, dashboards, and documentation
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
```yaml
|
|
25
|
+
agent.name: Data Processing Agent
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
agent.name: Compliance Checker
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```yaml
|
|
33
|
+
agent.name: Customer Support Bot
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Validation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
ossa validate agent.ossa.yaml
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Related Fields
|
|
43
|
+
|
|
44
|
+
- [agent.id](./agent-id.md)
|
|
45
|
+
- [agent.description](./agent-description.md)
|
|
46
|
+
|
|
47
|
+
## Related Documentation
|
|
48
|
+
|
|
49
|
+
- [creating-agents](../guides/creating-agents.md)
|
|
50
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# agent.role
|
|
2
|
+
|
|
3
|
+
**Type**: `string`
|
|
4
|
+
**Required**: Yes
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
The agent.role field
|
|
9
|
+
|
|
10
|
+
## Why This Field Exists
|
|
11
|
+
|
|
12
|
+
Classify agents by their function in the system for routing and orchestration
|
|
13
|
+
|
|
14
|
+
## How to Use
|
|
15
|
+
|
|
16
|
+
Choose from predefined roles or use custom roles
|
|
17
|
+
|
|
18
|
+
## Where It's Used
|
|
19
|
+
|
|
20
|
+
Used for agent discovery, filtering, and orchestration patterns
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
```yaml
|
|
25
|
+
agent.role: worker
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
agent.role: orchestrator
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```yaml
|
|
33
|
+
agent.role: compliance
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
```yaml
|
|
37
|
+
agent.role: monitor
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Validation
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
ossa validate agent.ossa.yaml
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Related Fields
|
|
47
|
+
|
|
48
|
+
- [agent.capabilities](./agent-capabilities.md)
|
|
49
|
+
- [agent.taxonomy](./agent-taxonomy.md)
|
|
50
|
+
|
|
51
|
+
## Related Documentation
|
|
52
|
+
|
|
53
|
+
- [multi-agent-systems](../architecture/multi-agent-systems.md)
|
|
54
|
+
|
|
@@ -350,7 +350,7 @@ spec:
|
|
|
350
350
|
The only required field in `spec` is `role`:
|
|
351
351
|
|
|
352
352
|
```yaml
|
|
353
|
-
apiVersion: ossa/v0.2.
|
|
353
|
+
apiVersion: ossa/v0.2.x
|
|
354
354
|
kind: Agent
|
|
355
355
|
metadata:
|
|
356
356
|
name: simple-agent
|
|
@@ -397,7 +397,7 @@ spec:
|
|
|
397
397
|
|
|
398
398
|
The `spec` object is validated against the JSON Schema:
|
|
399
399
|
```
|
|
400
|
-
https://openstandardagents.org/schemas/v0.2.
|
|
400
|
+
https://openstandardagents.org/schemas/v0.2.x/agent.json#/definitions/AgentSpec
|
|
401
401
|
```
|
|
402
402
|
|
|
403
403
|
Required fields:
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# agent.version
|
|
2
|
+
|
|
3
|
+
**Type**: `string`
|
|
4
|
+
**Required**: Yes
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
The agent.version field
|
|
9
|
+
|
|
10
|
+
## Why This Field Exists
|
|
11
|
+
|
|
12
|
+
Track agent versions for compatibility, rollback, and change management
|
|
13
|
+
|
|
14
|
+
## How to Use
|
|
15
|
+
|
|
16
|
+
Use semantic versioning (MAJOR.MINOR.PATCH)
|
|
17
|
+
|
|
18
|
+
## Where It's Used
|
|
19
|
+
|
|
20
|
+
Used in registry, deployment manifests, and API responses
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
```yaml
|
|
25
|
+
agent.version: 1.0.0
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
agent.version: 2.1.3
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```yaml
|
|
33
|
+
agent.version: 0.1.0-beta
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Validation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
ossa validate agent.ossa.yaml
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Related Fields
|
|
43
|
+
|
|
44
|
+
- [agent.id](./agent-id.md)
|
|
45
|
+
- [ossaVersion](./ossaVersion.md)
|
|
46
|
+
|
|
47
|
+
## Related Documentation
|
|
48
|
+
|
|
49
|
+
- [versioning](../guides/versioning.md)
|
|
50
|
+
|
|
@@ -260,7 +260,7 @@ autonomy:
|
|
|
260
260
|
### Read-Only Analysis Agent
|
|
261
261
|
|
|
262
262
|
```yaml
|
|
263
|
-
apiVersion: ossa/v0.2.
|
|
263
|
+
apiVersion: ossa/v0.2.x
|
|
264
264
|
kind: Agent
|
|
265
265
|
metadata:
|
|
266
266
|
name: log-analyzer
|
|
@@ -296,7 +296,7 @@ spec:
|
|
|
296
296
|
### Code Review Agent (Supervised)
|
|
297
297
|
|
|
298
298
|
```yaml
|
|
299
|
-
apiVersion: ossa/v0.2.
|
|
299
|
+
apiVersion: ossa/v0.2.x
|
|
300
300
|
kind: Agent
|
|
301
301
|
metadata:
|
|
302
302
|
name: code-reviewer
|
|
@@ -328,7 +328,7 @@ spec:
|
|
|
328
328
|
### Infrastructure Automation Agent
|
|
329
329
|
|
|
330
330
|
```yaml
|
|
331
|
-
apiVersion: ossa/v0.2.
|
|
331
|
+
apiVersion: ossa/v0.2.x
|
|
332
332
|
kind: Agent
|
|
333
333
|
metadata:
|
|
334
334
|
name: k8s-autoscaler
|
|
@@ -366,7 +366,7 @@ spec:
|
|
|
366
366
|
### Customer Support Agent
|
|
367
367
|
|
|
368
368
|
```yaml
|
|
369
|
-
apiVersion: ossa/v0.2.
|
|
369
|
+
apiVersion: ossa/v0.2.x
|
|
370
370
|
kind: Agent
|
|
371
371
|
metadata:
|
|
372
372
|
name: support-assistant
|
|
@@ -411,7 +411,7 @@ spec:
|
|
|
411
411
|
### DevOps Incident Response
|
|
412
412
|
|
|
413
413
|
```yaml
|
|
414
|
-
apiVersion: ossa/v0.2.
|
|
414
|
+
apiVersion: ossa/v0.2.x
|
|
415
415
|
kind: Agent
|
|
416
416
|
metadata:
|
|
417
417
|
name: incident-responder
|
|
@@ -251,7 +251,7 @@ constraints:
|
|
|
251
251
|
### Production Chatbot
|
|
252
252
|
|
|
253
253
|
```yaml
|
|
254
|
-
apiVersion: ossa/v0.2.
|
|
254
|
+
apiVersion: ossa/v0.2.x
|
|
255
255
|
kind: Agent
|
|
256
256
|
metadata:
|
|
257
257
|
name: customer-chatbot
|
|
@@ -283,7 +283,7 @@ spec:
|
|
|
283
283
|
### Background Data Analyzer
|
|
284
284
|
|
|
285
285
|
```yaml
|
|
286
|
-
apiVersion: ossa/v0.2.
|
|
286
|
+
apiVersion: ossa/v0.2.x
|
|
287
287
|
kind: Agent
|
|
288
288
|
metadata:
|
|
289
289
|
name: data-analyzer
|
|
@@ -314,7 +314,7 @@ spec:
|
|
|
314
314
|
### Development/Testing Agent
|
|
315
315
|
|
|
316
316
|
```yaml
|
|
317
|
-
apiVersion: ossa/v0.2.
|
|
317
|
+
apiVersion: ossa/v0.2.x
|
|
318
318
|
kind: Agent
|
|
319
319
|
metadata:
|
|
320
320
|
name: dev-assistant
|
|
@@ -343,7 +343,7 @@ spec:
|
|
|
343
343
|
### High-Performance Code Generator
|
|
344
344
|
|
|
345
345
|
```yaml
|
|
346
|
-
apiVersion: ossa/v0.2.
|
|
346
|
+
apiVersion: ossa/v0.2.x
|
|
347
347
|
kind: Agent
|
|
348
348
|
metadata:
|
|
349
349
|
name: code-generator
|
|
@@ -375,7 +375,7 @@ spec:
|
|
|
375
375
|
### Cost-Optimized Agent
|
|
376
376
|
|
|
377
377
|
```yaml
|
|
378
|
-
apiVersion: ossa/v0.2.
|
|
378
|
+
apiVersion: ossa/v0.2.x
|
|
379
379
|
kind: Agent
|
|
380
380
|
metadata:
|
|
381
381
|
name: budget-agent
|