@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,317 +0,0 @@
|
|
|
1
|
-
# Migration Guide: OSSA v0.2.4 to v0.2.5-dev
|
|
2
|
-
|
|
3
|
-
This guide covers migrating from OSSA v0.2.4 to v0.2.5-dev.
|
|
4
|
-
|
|
5
|
-
## Overview
|
|
6
|
-
|
|
7
|
-
v0.2.5-dev is a **backward-compatible** release. Existing Agent manifests will continue to work without modification. The major addition is the new `AgentGraph` resource type for multi-agent compositions.
|
|
8
|
-
|
|
9
|
-
## Breaking Changes
|
|
10
|
-
|
|
11
|
-
**None** - This is a fully backward-compatible release.
|
|
12
|
-
|
|
13
|
-
## What's New
|
|
14
|
-
|
|
15
|
-
### 1. AgentGraph Resource Type
|
|
16
|
-
|
|
17
|
-
v0.2.5-dev introduces a new `kind` value: `AgentGraph`
|
|
18
|
-
|
|
19
|
-
```yaml
|
|
20
|
-
# Old: Single agent (still works)
|
|
21
|
-
apiVersion: ossa/v0.2.4
|
|
22
|
-
kind: Agent
|
|
23
|
-
metadata:
|
|
24
|
-
name: my-agent
|
|
25
|
-
spec:
|
|
26
|
-
role: "Agent role"
|
|
27
|
-
|
|
28
|
-
# New: Multi-agent graph
|
|
29
|
-
apiVersion: ossa/v0.2.5-dev
|
|
30
|
-
kind: AgentGraph
|
|
31
|
-
metadata:
|
|
32
|
-
name: my-agent-graph
|
|
33
|
-
spec:
|
|
34
|
-
process: sequential
|
|
35
|
-
agents:
|
|
36
|
-
- ref: agent-1
|
|
37
|
-
- ref: agent-2
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
### 2. New Framework Extensions
|
|
41
|
-
|
|
42
|
-
Three new framework extensions are available:
|
|
43
|
-
|
|
44
|
-
- `google_adk` - Google Agent Development Kit
|
|
45
|
-
- `microsoft_af` - Microsoft AutoGen/Magentic-One
|
|
46
|
-
- `metagpt` - MetaGPT software teams
|
|
47
|
-
|
|
48
|
-
### 3. Enhanced CrewAI Extension
|
|
49
|
-
|
|
50
|
-
The `crewai` extension now includes crew-level configuration:
|
|
51
|
-
|
|
52
|
-
```yaml
|
|
53
|
-
extensions:
|
|
54
|
-
crewai:
|
|
55
|
-
enabled: true
|
|
56
|
-
# Existing agent properties
|
|
57
|
-
role: "Researcher"
|
|
58
|
-
goal: "Find information"
|
|
59
|
-
backstory: "Expert researcher"
|
|
60
|
-
# New crew properties
|
|
61
|
-
crew:
|
|
62
|
-
process: hierarchical
|
|
63
|
-
manager_llm: gpt-4
|
|
64
|
-
verbose: true
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## Migration Steps
|
|
68
|
-
|
|
69
|
-
### Step 1: Update API Version
|
|
70
|
-
|
|
71
|
-
Update the `apiVersion` field in your manifests:
|
|
72
|
-
|
|
73
|
-
```yaml
|
|
74
|
-
# From
|
|
75
|
-
apiVersion: ossa/v0.2.4
|
|
76
|
-
|
|
77
|
-
# To
|
|
78
|
-
apiVersion: ossa/v0.2.5-dev
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
### Step 2: Review Existing Manifests
|
|
82
|
-
|
|
83
|
-
Existing Agent manifests require no changes. Verify they validate against the new schema:
|
|
84
|
-
|
|
85
|
-
```bash
|
|
86
|
-
# Validate using JSON Schema
|
|
87
|
-
ajv validate -s ossa-0.2.5-dev.schema.json -d your-agent.ossa.yaml
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
### Step 3: Create AgentGraph Manifests (Optional)
|
|
91
|
-
|
|
92
|
-
If you have multi-agent workflows, consider migrating them to AgentGraph:
|
|
93
|
-
|
|
94
|
-
#### Before: Multiple Separate Agents
|
|
95
|
-
|
|
96
|
-
```yaml
|
|
97
|
-
# agent-1.ossa.yaml
|
|
98
|
-
apiVersion: ossa/v0.2.4
|
|
99
|
-
kind: Agent
|
|
100
|
-
metadata:
|
|
101
|
-
name: intake-agent
|
|
102
|
-
spec:
|
|
103
|
-
role: "Handle incoming requests"
|
|
104
|
-
|
|
105
|
-
# agent-2.ossa.yaml
|
|
106
|
-
apiVersion: ossa/v0.2.4
|
|
107
|
-
kind: Agent
|
|
108
|
-
metadata:
|
|
109
|
-
name: process-agent
|
|
110
|
-
spec:
|
|
111
|
-
role: "Process requests"
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
#### After: Unified AgentGraph
|
|
115
|
-
|
|
116
|
-
```yaml
|
|
117
|
-
# workflow.ossa.yaml
|
|
118
|
-
apiVersion: ossa/v0.2.5-dev
|
|
119
|
-
kind: AgentGraph
|
|
120
|
-
metadata:
|
|
121
|
-
name: request-workflow
|
|
122
|
-
description: "End-to-end request processing"
|
|
123
|
-
spec:
|
|
124
|
-
process: sequential
|
|
125
|
-
agents:
|
|
126
|
-
- ref: intake-agent
|
|
127
|
-
- ref: process-agent
|
|
128
|
-
edges:
|
|
129
|
-
- from: intake-agent
|
|
130
|
-
to: process-agent
|
|
131
|
-
entry_point: intake-agent
|
|
132
|
-
exit_points:
|
|
133
|
-
- process-agent
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
## Framework-Specific Migration
|
|
137
|
-
|
|
138
|
-
### CrewAI Users
|
|
139
|
-
|
|
140
|
-
If you're using CrewAI's crew orchestration:
|
|
141
|
-
|
|
142
|
-
```yaml
|
|
143
|
-
# v0.2.4 - Agent only
|
|
144
|
-
apiVersion: ossa/v0.2.4
|
|
145
|
-
kind: Agent
|
|
146
|
-
metadata:
|
|
147
|
-
name: researcher
|
|
148
|
-
spec:
|
|
149
|
-
role: "Research specialist"
|
|
150
|
-
extensions:
|
|
151
|
-
crewai:
|
|
152
|
-
enabled: true
|
|
153
|
-
role: "Researcher"
|
|
154
|
-
goal: "Find and analyze information"
|
|
155
|
-
|
|
156
|
-
# v0.2.5-dev - Add AgentGraph for crew
|
|
157
|
-
apiVersion: ossa/v0.2.5-dev
|
|
158
|
-
kind: AgentGraph
|
|
159
|
-
metadata:
|
|
160
|
-
name: research-crew
|
|
161
|
-
spec:
|
|
162
|
-
process: hierarchical
|
|
163
|
-
agents:
|
|
164
|
-
- ref: researcher
|
|
165
|
-
role: worker
|
|
166
|
-
- ref: writer
|
|
167
|
-
role: worker
|
|
168
|
-
extensions:
|
|
169
|
-
crewai:
|
|
170
|
-
enabled: true
|
|
171
|
-
crew:
|
|
172
|
-
process: hierarchical
|
|
173
|
-
manager_llm: gpt-4
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
### LangGraph Users
|
|
177
|
-
|
|
178
|
-
If you're using LangGraph state machines:
|
|
179
|
-
|
|
180
|
-
```yaml
|
|
181
|
-
# Map your existing LangGraph to AgentGraph
|
|
182
|
-
apiVersion: ossa/v0.2.5-dev
|
|
183
|
-
kind: AgentGraph
|
|
184
|
-
metadata:
|
|
185
|
-
name: state-machine
|
|
186
|
-
spec:
|
|
187
|
-
process: conditional
|
|
188
|
-
agents:
|
|
189
|
-
- ref: router
|
|
190
|
-
- ref: handler-a
|
|
191
|
-
- ref: handler-b
|
|
192
|
-
edges:
|
|
193
|
-
- from: router
|
|
194
|
-
to: handler-a
|
|
195
|
-
condition: "route == 'a'"
|
|
196
|
-
- from: router
|
|
197
|
-
to: handler-b
|
|
198
|
-
condition: "route == 'b'"
|
|
199
|
-
state:
|
|
200
|
-
schema:
|
|
201
|
-
type: object
|
|
202
|
-
properties:
|
|
203
|
-
route:
|
|
204
|
-
type: string
|
|
205
|
-
messages:
|
|
206
|
-
type: array
|
|
207
|
-
extensions:
|
|
208
|
-
langgraph:
|
|
209
|
-
enabled: true
|
|
210
|
-
checkpoint:
|
|
211
|
-
enabled: true
|
|
212
|
-
type: sqlite
|
|
213
|
-
```
|
|
214
|
-
|
|
215
|
-
### AutoGen Users
|
|
216
|
-
|
|
217
|
-
For AutoGen GroupChat migrations:
|
|
218
|
-
|
|
219
|
-
```yaml
|
|
220
|
-
# v0.2.5-dev with Microsoft AF extension
|
|
221
|
-
apiVersion: ossa/v0.2.5-dev
|
|
222
|
-
kind: AgentGraph
|
|
223
|
-
metadata:
|
|
224
|
-
name: autogen-team
|
|
225
|
-
spec:
|
|
226
|
-
process: conditional
|
|
227
|
-
agents:
|
|
228
|
-
- ref: assistant
|
|
229
|
-
- ref: user-proxy
|
|
230
|
-
- ref: coder
|
|
231
|
-
extensions:
|
|
232
|
-
microsoft_af:
|
|
233
|
-
enabled: true
|
|
234
|
-
framework: autogen_v0.4
|
|
235
|
-
team_type: selector
|
|
236
|
-
termination:
|
|
237
|
-
type: text_mention
|
|
238
|
-
condition: "TERMINATE"
|
|
239
|
-
```
|
|
240
|
-
|
|
241
|
-
## Validation
|
|
242
|
-
|
|
243
|
-
### Schema Validation
|
|
244
|
-
|
|
245
|
-
```bash
|
|
246
|
-
# Install ajv-cli
|
|
247
|
-
npm install -g ajv-cli
|
|
248
|
-
|
|
249
|
-
# Validate Agent manifest
|
|
250
|
-
ajv validate \
|
|
251
|
-
-s /path/to/ossa-0.2.5-dev.schema.json \
|
|
252
|
-
-d your-manifest.ossa.yaml
|
|
253
|
-
|
|
254
|
-
# Validate with referenced agents
|
|
255
|
-
ajv validate \
|
|
256
|
-
-s /path/to/ossa-0.2.5-dev.schema.json \
|
|
257
|
-
-d your-graph.ossa.yaml \
|
|
258
|
-
-r agent-1.ossa.yaml \
|
|
259
|
-
-r agent-2.ossa.yaml
|
|
260
|
-
```
|
|
261
|
-
|
|
262
|
-
### Runtime Validation
|
|
263
|
-
|
|
264
|
-
```typescript
|
|
265
|
-
// TypeScript validation
|
|
266
|
-
import { validateOSSA } from '@ossa/validator';
|
|
267
|
-
|
|
268
|
-
const manifest = loadYAML('workflow.ossa.yaml');
|
|
269
|
-
const result = validateOSSA(manifest, '0.2.5-dev');
|
|
270
|
-
|
|
271
|
-
if (!result.valid) {
|
|
272
|
-
console.error('Validation errors:', result.errors);
|
|
273
|
-
}
|
|
274
|
-
```
|
|
275
|
-
|
|
276
|
-
## Common Issues
|
|
277
|
-
|
|
278
|
-
### Issue: Schema validation fails
|
|
279
|
-
|
|
280
|
-
**Cause**: Using v0.2.5-dev features with v0.2.4 schema
|
|
281
|
-
|
|
282
|
-
**Solution**: Update apiVersion and use v0.2.5-dev schema
|
|
283
|
-
|
|
284
|
-
### Issue: Agent refs not found
|
|
285
|
-
|
|
286
|
-
**Cause**: AgentGraph references agents that don't exist
|
|
287
|
-
|
|
288
|
-
**Solution**: Ensure all referenced agents are defined or use inline specs
|
|
289
|
-
|
|
290
|
-
```yaml
|
|
291
|
-
spec:
|
|
292
|
-
agents:
|
|
293
|
-
- ref: existing-agent # Must exist
|
|
294
|
-
- inline: # Or define inline
|
|
295
|
-
role: "Inline agent role"
|
|
296
|
-
```
|
|
297
|
-
|
|
298
|
-
### Issue: Invalid process type
|
|
299
|
-
|
|
300
|
-
**Cause**: Using unsupported process value
|
|
301
|
-
|
|
302
|
-
**Solution**: Use one of: sequential, parallel, hierarchical, conditional, loop
|
|
303
|
-
|
|
304
|
-
## Rollback
|
|
305
|
-
|
|
306
|
-
To rollback to v0.2.4:
|
|
307
|
-
|
|
308
|
-
1. Change `apiVersion` back to `ossa/v0.2.4`
|
|
309
|
-
2. Remove any `AgentGraph` manifests (or convert to individual Agents)
|
|
310
|
-
3. Remove new extension properties (google_adk, microsoft_af, metagpt)
|
|
311
|
-
4. Remove `crew` property from crewai extension
|
|
312
|
-
|
|
313
|
-
## Support
|
|
314
|
-
|
|
315
|
-
- Documentation: https://gitlab.bluefly.io/llm/ossa/-/wikis
|
|
316
|
-
- Issues: https://gitlab.bluefly.io/llm/ossa/-/issues
|
|
317
|
-
- Discussions: https://gitlab.bluefly.io/llm/ossa/-/discussions
|
|
@@ -1,409 +0,0 @@
|
|
|
1
|
-
# OSSA v0.2.5-dev Specification
|
|
2
|
-
# Open Standard for Scalable AI Agents
|
|
3
|
-
# Multi-Agent Composition Support
|
|
4
|
-
#
|
|
5
|
-
# STATUS: DEVELOPMENT/UNSTABLE
|
|
6
|
-
# This is a development version and may change without notice.
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
version: "0.2.5-dev"
|
|
10
|
-
status: "development"
|
|
11
|
-
title: "OSSA v0.2.5-dev - Multi-Agent Composition"
|
|
12
|
-
description: |
|
|
13
|
-
OSSA v0.2.5-dev introduces the AgentGraph resource type for defining
|
|
14
|
-
multi-agent compositions and workflows. This enables complex orchestration
|
|
15
|
-
patterns across multiple agent frameworks.
|
|
16
|
-
|
|
17
|
-
# =============================================================================
|
|
18
|
-
# NEW IN v0.2.5-dev: AgentGraph Resource Type
|
|
19
|
-
# =============================================================================
|
|
20
|
-
|
|
21
|
-
agentGraph:
|
|
22
|
-
description: |
|
|
23
|
-
AgentGraph is a new resource type that defines how multiple agents
|
|
24
|
-
collaborate to accomplish complex tasks. It supports various execution
|
|
25
|
-
patterns and maps to framework-specific implementations.
|
|
26
|
-
|
|
27
|
-
kind: "AgentGraph"
|
|
28
|
-
|
|
29
|
-
# ---------------------------------------------------------------------------
|
|
30
|
-
# Core AgentGraphSpec Properties
|
|
31
|
-
# ---------------------------------------------------------------------------
|
|
32
|
-
|
|
33
|
-
spec:
|
|
34
|
-
agents:
|
|
35
|
-
description: "Array of agent references that compose this graph"
|
|
36
|
-
required: true
|
|
37
|
-
properties:
|
|
38
|
-
- ref: "Reference to agent metadata.name"
|
|
39
|
-
- role: "Role of this agent within the graph context"
|
|
40
|
-
- inline: "Inline AgentSpec (alternative to ref)"
|
|
41
|
-
- config: "Agent-specific configuration overrides"
|
|
42
|
-
|
|
43
|
-
edges:
|
|
44
|
-
description: "Connections between agents defining execution flow"
|
|
45
|
-
properties:
|
|
46
|
-
- from: "Source agent ref"
|
|
47
|
-
- to: "Target agent ref"
|
|
48
|
-
- condition: "Condition expression for this edge"
|
|
49
|
-
- priority: "Edge priority (higher = preferred)"
|
|
50
|
-
- transform: "Data transformation between agents"
|
|
51
|
-
|
|
52
|
-
process:
|
|
53
|
-
description: "Execution pattern for the agent graph"
|
|
54
|
-
enum:
|
|
55
|
-
- sequential: "Agents execute one after another in order"
|
|
56
|
-
- parallel: "Agents execute simultaneously"
|
|
57
|
-
- hierarchical: "Manager agent delegates to worker agents"
|
|
58
|
-
- conditional: "Execution path determined by conditions"
|
|
59
|
-
- loop: "Agents execute in a loop until termination"
|
|
60
|
-
default: "sequential"
|
|
61
|
-
|
|
62
|
-
entry_point:
|
|
63
|
-
description: "Starting agent ref (first agent to execute)"
|
|
64
|
-
|
|
65
|
-
exit_points:
|
|
66
|
-
description: "Agent refs that can terminate graph execution"
|
|
67
|
-
|
|
68
|
-
state:
|
|
69
|
-
description: "Shared state configuration"
|
|
70
|
-
properties:
|
|
71
|
-
- schema: "JSON Schema for state structure"
|
|
72
|
-
- initial: "Initial state values"
|
|
73
|
-
- persistence: "State persistence mechanism (none/memory/redis/database)"
|
|
74
|
-
|
|
75
|
-
# =============================================================================
|
|
76
|
-
# Execution Patterns
|
|
77
|
-
# =============================================================================
|
|
78
|
-
|
|
79
|
-
executionPatterns:
|
|
80
|
-
|
|
81
|
-
sequential:
|
|
82
|
-
description: |
|
|
83
|
-
Agents execute one after another in a defined order.
|
|
84
|
-
Output from one agent becomes input to the next.
|
|
85
|
-
useCases:
|
|
86
|
-
- "Customer support workflows"
|
|
87
|
-
- "Document processing pipelines"
|
|
88
|
-
- "Data transformation chains"
|
|
89
|
-
frameworkMappings:
|
|
90
|
-
crewai: "Process.sequential"
|
|
91
|
-
langgraph: "Linear graph with single path"
|
|
92
|
-
autogen: "Sequential chat with handoffs"
|
|
93
|
-
google_adk: "SequentialAgent"
|
|
94
|
-
microsoft_af: "RoundRobinGroupChat"
|
|
95
|
-
example: |
|
|
96
|
-
process: sequential
|
|
97
|
-
agents:
|
|
98
|
-
- ref: intake-agent
|
|
99
|
-
- ref: analysis-agent
|
|
100
|
-
- ref: response-agent
|
|
101
|
-
edges:
|
|
102
|
-
- from: intake-agent
|
|
103
|
-
to: analysis-agent
|
|
104
|
-
- from: analysis-agent
|
|
105
|
-
to: response-agent
|
|
106
|
-
|
|
107
|
-
parallel:
|
|
108
|
-
description: |
|
|
109
|
-
Multiple agents execute simultaneously on the same input.
|
|
110
|
-
Results are aggregated at completion.
|
|
111
|
-
useCases:
|
|
112
|
-
- "Multi-perspective analysis"
|
|
113
|
-
- "Parallel data processing"
|
|
114
|
-
- "Ensemble methods"
|
|
115
|
-
frameworkMappings:
|
|
116
|
-
crewai: "Async task execution"
|
|
117
|
-
langgraph: "Fan-out/fan-in pattern"
|
|
118
|
-
autogen: "Parallel agent calls"
|
|
119
|
-
google_adk: "ParallelAgent"
|
|
120
|
-
microsoft_af: "Parallel tool execution"
|
|
121
|
-
example: |
|
|
122
|
-
process: parallel
|
|
123
|
-
agents:
|
|
124
|
-
- ref: sentiment-analyzer
|
|
125
|
-
- ref: entity-extractor
|
|
126
|
-
- ref: topic-classifier
|
|
127
|
-
entry_point: input-router
|
|
128
|
-
exit_points:
|
|
129
|
-
- result-aggregator
|
|
130
|
-
|
|
131
|
-
hierarchical:
|
|
132
|
-
description: |
|
|
133
|
-
A manager agent coordinates worker agents.
|
|
134
|
-
The manager decides task delegation and aggregates results.
|
|
135
|
-
useCases:
|
|
136
|
-
- "Research teams"
|
|
137
|
-
- "Complex project management"
|
|
138
|
-
- "Multi-domain expertise"
|
|
139
|
-
frameworkMappings:
|
|
140
|
-
crewai: "Process.hierarchical with manager_llm"
|
|
141
|
-
langgraph: "Supervisor pattern"
|
|
142
|
-
autogen: "GroupChat with manager"
|
|
143
|
-
google_adk: "Root agent with sub_agents"
|
|
144
|
-
microsoft_af: "SelectorGroupChat or MagenticOneGroupChat"
|
|
145
|
-
metagpt: "Team with role hierarchy"
|
|
146
|
-
example: |
|
|
147
|
-
process: hierarchical
|
|
148
|
-
agents:
|
|
149
|
-
- ref: research-manager
|
|
150
|
-
role: manager
|
|
151
|
-
- ref: web-researcher
|
|
152
|
-
role: worker
|
|
153
|
-
- ref: data-analyst
|
|
154
|
-
role: worker
|
|
155
|
-
- ref: report-writer
|
|
156
|
-
role: worker
|
|
157
|
-
entry_point: research-manager
|
|
158
|
-
|
|
159
|
-
conditional:
|
|
160
|
-
description: |
|
|
161
|
-
Execution path determined by conditions evaluated at runtime.
|
|
162
|
-
Supports branching and decision-based routing.
|
|
163
|
-
useCases:
|
|
164
|
-
- "Intelligent routing"
|
|
165
|
-
- "Error handling"
|
|
166
|
-
- "Dynamic workflows"
|
|
167
|
-
frameworkMappings:
|
|
168
|
-
crewai: "Conditional task dependencies"
|
|
169
|
-
langgraph: "Conditional edges with router functions"
|
|
170
|
-
autogen: "Nested chat with conditions"
|
|
171
|
-
google_adk: "Agent with transfer_to_agent"
|
|
172
|
-
microsoft_af: "HandoffTermination patterns"
|
|
173
|
-
example: |
|
|
174
|
-
process: conditional
|
|
175
|
-
agents:
|
|
176
|
-
- ref: router-agent
|
|
177
|
-
- ref: technical-support
|
|
178
|
-
- ref: billing-support
|
|
179
|
-
- ref: general-support
|
|
180
|
-
edges:
|
|
181
|
-
- from: router-agent
|
|
182
|
-
to: technical-support
|
|
183
|
-
condition: "category == 'technical'"
|
|
184
|
-
- from: router-agent
|
|
185
|
-
to: billing-support
|
|
186
|
-
condition: "category == 'billing'"
|
|
187
|
-
- from: router-agent
|
|
188
|
-
to: general-support
|
|
189
|
-
condition: "default"
|
|
190
|
-
|
|
191
|
-
loop:
|
|
192
|
-
description: |
|
|
193
|
-
Agents execute in a loop until a termination condition is met.
|
|
194
|
-
Supports iterative refinement and feedback loops.
|
|
195
|
-
useCases:
|
|
196
|
-
- "Iterative refinement"
|
|
197
|
-
- "Continuous improvement"
|
|
198
|
-
- "Feedback-driven processing"
|
|
199
|
-
frameworkMappings:
|
|
200
|
-
crewai: "Task with iteration"
|
|
201
|
-
langgraph: "Cycles in graph with checkpoints"
|
|
202
|
-
autogen: "Chat with max_turns"
|
|
203
|
-
google_adk: "LoopAgent with max_iterations"
|
|
204
|
-
microsoft_af: "MaxMessageTermination"
|
|
205
|
-
example: |
|
|
206
|
-
process: loop
|
|
207
|
-
agents:
|
|
208
|
-
- ref: code-writer
|
|
209
|
-
- ref: code-reviewer
|
|
210
|
-
- ref: code-tester
|
|
211
|
-
edges:
|
|
212
|
-
- from: code-writer
|
|
213
|
-
to: code-reviewer
|
|
214
|
-
- from: code-reviewer
|
|
215
|
-
to: code-tester
|
|
216
|
-
- from: code-tester
|
|
217
|
-
to: code-writer
|
|
218
|
-
condition: "tests_failed"
|
|
219
|
-
state:
|
|
220
|
-
schema:
|
|
221
|
-
type: object
|
|
222
|
-
properties:
|
|
223
|
-
iteration_count:
|
|
224
|
-
type: integer
|
|
225
|
-
max_iterations:
|
|
226
|
-
type: integer
|
|
227
|
-
initial:
|
|
228
|
-
iteration_count: 0
|
|
229
|
-
max_iterations: 5
|
|
230
|
-
|
|
231
|
-
# =============================================================================
|
|
232
|
-
# Framework-Specific Mappings
|
|
233
|
-
# =============================================================================
|
|
234
|
-
|
|
235
|
-
frameworkMappings:
|
|
236
|
-
|
|
237
|
-
crewai:
|
|
238
|
-
description: "CrewAI crew and task orchestration"
|
|
239
|
-
graphMapping:
|
|
240
|
-
sequential: |
|
|
241
|
-
from crewai import Crew, Process
|
|
242
|
-
crew = Crew(
|
|
243
|
-
agents=[...],
|
|
244
|
-
tasks=[...],
|
|
245
|
-
process=Process.sequential
|
|
246
|
-
)
|
|
247
|
-
hierarchical: |
|
|
248
|
-
from crewai import Crew, Process
|
|
249
|
-
crew = Crew(
|
|
250
|
-
agents=[...],
|
|
251
|
-
tasks=[...],
|
|
252
|
-
process=Process.hierarchical,
|
|
253
|
-
manager_llm=ChatOpenAI(model="gpt-4")
|
|
254
|
-
)
|
|
255
|
-
extensionProperties:
|
|
256
|
-
- crew.process
|
|
257
|
-
- crew.verbose
|
|
258
|
-
- crew.manager_llm
|
|
259
|
-
|
|
260
|
-
google_adk:
|
|
261
|
-
description: "Google Agent Development Kit orchestration agents"
|
|
262
|
-
graphMapping:
|
|
263
|
-
sequential: "SequentialAgent(name, sub_agents)"
|
|
264
|
-
parallel: "ParallelAgent(name, sub_agents)"
|
|
265
|
-
loop: "LoopAgent(name, sub_agents, max_iterations)"
|
|
266
|
-
hierarchical: "Root agent with sub_agents list"
|
|
267
|
-
extensionProperties:
|
|
268
|
-
- agent_type
|
|
269
|
-
- sub_agents
|
|
270
|
-
- session.service
|
|
271
|
-
|
|
272
|
-
microsoft_af:
|
|
273
|
-
description: "Microsoft AutoGen 0.4+ and Magentic-One"
|
|
274
|
-
graphMapping:
|
|
275
|
-
sequential: "RoundRobinGroupChat"
|
|
276
|
-
conditional: "SelectorGroupChat with selector_func"
|
|
277
|
-
hierarchical: "MagenticOneGroupChat with Orchestrator"
|
|
278
|
-
extensionProperties:
|
|
279
|
-
- team_type
|
|
280
|
-
- termination
|
|
281
|
-
- model_client
|
|
282
|
-
|
|
283
|
-
langgraph:
|
|
284
|
-
description: "LangGraph state machine orchestration"
|
|
285
|
-
graphMapping:
|
|
286
|
-
all: |
|
|
287
|
-
from langgraph.graph import StateGraph
|
|
288
|
-
graph = StateGraph(State)
|
|
289
|
-
graph.add_node("agent_name", agent_func)
|
|
290
|
-
graph.add_edge("from", "to")
|
|
291
|
-
graph.add_conditional_edges("node", router_func, {...})
|
|
292
|
-
extensionProperties:
|
|
293
|
-
- graph_name
|
|
294
|
-
- state_schema
|
|
295
|
-
- nodes
|
|
296
|
-
- edges
|
|
297
|
-
- checkpoint
|
|
298
|
-
|
|
299
|
-
metagpt:
|
|
300
|
-
description: "MetaGPT software development team SOPs"
|
|
301
|
-
graphMapping:
|
|
302
|
-
hierarchical: |
|
|
303
|
-
Team with roles: ProductManager, Architect,
|
|
304
|
-
ProjectManager, Engineer, QAEngineer
|
|
305
|
-
Following SOP phases: requirements -> design ->
|
|
306
|
-
implementation -> testing
|
|
307
|
-
extensionProperties:
|
|
308
|
-
- role
|
|
309
|
-
- sop.name
|
|
310
|
-
- sop.phases
|
|
311
|
-
- actions
|
|
312
|
-
- environment
|
|
313
|
-
|
|
314
|
-
# =============================================================================
|
|
315
|
-
# Extension Properties Added in v0.2.5-dev
|
|
316
|
-
# =============================================================================
|
|
317
|
-
|
|
318
|
-
newExtensions:
|
|
319
|
-
|
|
320
|
-
google_adk:
|
|
321
|
-
description: "Google Agent Development Kit integration"
|
|
322
|
-
properties:
|
|
323
|
-
enabled: "Enable ADK integration"
|
|
324
|
-
agent_type: "llm_agent | sequential_agent | parallel_agent | loop_agent"
|
|
325
|
-
model: "Gemini model (e.g., gemini-2.0-flash-exp)"
|
|
326
|
-
instruction: "Agent instruction/prompt"
|
|
327
|
-
sub_agents: "Array of sub-agent refs for orchestration"
|
|
328
|
-
tools: "ADK tools (function, google_search, code_execution)"
|
|
329
|
-
session: "Session service configuration"
|
|
330
|
-
|
|
331
|
-
microsoft_af:
|
|
332
|
-
description: "Microsoft AutoGen/Magentic-One integration"
|
|
333
|
-
properties:
|
|
334
|
-
enabled: "Enable Microsoft AF integration"
|
|
335
|
-
framework: "autogen_v0.4 | magentic_one | semantic_kernel"
|
|
336
|
-
team_type: "round_robin | selector | swarm | magentic_one"
|
|
337
|
-
agent_type: "assistant | code_executor | orchestrator | web_surfer | coder"
|
|
338
|
-
model_client: "Model client configuration"
|
|
339
|
-
termination: "Termination condition configuration"
|
|
340
|
-
|
|
341
|
-
metagpt:
|
|
342
|
-
description: "MetaGPT software development team integration"
|
|
343
|
-
properties:
|
|
344
|
-
enabled: "Enable MetaGPT integration"
|
|
345
|
-
role: "product_manager | architect | project_manager | engineer | qa_engineer"
|
|
346
|
-
sop: "Standard Operating Procedure configuration"
|
|
347
|
-
actions: "MetaGPT actions this agent can perform"
|
|
348
|
-
memory: "Memory type (role_memory, team_memory, long_term)"
|
|
349
|
-
environment: "Workspace and budget configuration"
|
|
350
|
-
|
|
351
|
-
# =============================================================================
|
|
352
|
-
# Validation Rules
|
|
353
|
-
# =============================================================================
|
|
354
|
-
|
|
355
|
-
validation:
|
|
356
|
-
agentGraph:
|
|
357
|
-
- "spec.agents must have at least one agent"
|
|
358
|
-
- "All agent refs must be valid metadata.name values"
|
|
359
|
-
- "entry_point must reference an agent in the agents array"
|
|
360
|
-
- "exit_points must reference agents in the agents array"
|
|
361
|
-
- "edges.from and edges.to must reference agents in the agents array"
|
|
362
|
-
- "Conditional edges should have condition expressions"
|
|
363
|
-
- "Loop process should define termination conditions"
|
|
364
|
-
|
|
365
|
-
edges:
|
|
366
|
-
- "No orphan agents (all agents must be connected)"
|
|
367
|
-
- "Entry point must have outgoing edges (unless single agent)"
|
|
368
|
-
- "Exit points must not have outgoing edges"
|
|
369
|
-
- "Conditional process requires condition on at least one edge"
|
|
370
|
-
|
|
371
|
-
state:
|
|
372
|
-
- "State schema must be valid JSON Schema"
|
|
373
|
-
- "Initial values must conform to state schema"
|
|
374
|
-
- "Persistence type must be supported by runtime"
|
|
375
|
-
|
|
376
|
-
# =============================================================================
|
|
377
|
-
# Backward Compatibility
|
|
378
|
-
# =============================================================================
|
|
379
|
-
|
|
380
|
-
compatibility:
|
|
381
|
-
apiVersion: |
|
|
382
|
-
Pattern updated to: ^ossa/v(0\.2\.[2-5]|1)(\.[0-9]+)?(-[a-zA-Z0-9]+)?$
|
|
383
|
-
Supports: ossa/v0.2.2, ossa/v0.2.3, ossa/v0.2.4, ossa/v0.2.5-dev, ossa/v1
|
|
384
|
-
|
|
385
|
-
kind: |
|
|
386
|
-
Now supports: Agent, AgentGraph
|
|
387
|
-
Existing Agent manifests remain fully compatible
|
|
388
|
-
|
|
389
|
-
spec: |
|
|
390
|
-
Uses oneOf to support either AgentSpec or AgentGraphSpec
|
|
391
|
-
AgentSpec unchanged from v0.2.3
|
|
392
|
-
|
|
393
|
-
extensions: |
|
|
394
|
-
All existing extensions preserved
|
|
395
|
-
Added: google_adk, microsoft_af, metagpt
|
|
396
|
-
Enhanced: crewai (added crew property)
|
|
397
|
-
|
|
398
|
-
# =============================================================================
|
|
399
|
-
# Development Notes
|
|
400
|
-
# =============================================================================
|
|
401
|
-
|
|
402
|
-
developmentNotes:
|
|
403
|
-
status: "UNSTABLE - API may change"
|
|
404
|
-
feedback: "https://gitlab.bluefly.io/llm/ossa/-/issues"
|
|
405
|
-
roadmap:
|
|
406
|
-
- "v0.2.5: Stabilize AgentGraph API"
|
|
407
|
-
- "v0.2.6: Add resource dependencies"
|
|
408
|
-
- "v0.3.0: Multi-file manifest support"
|
|
409
|
-
- "v1.0.0: Stable release"
|