@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,256 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: "Enterprises"
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# For Enterprises
|
|
6
|
-
|
|
7
|
-
Adopt OSSA for vendor independence, compliance, and enterprise-scale agent management.
|
|
8
|
-
|
|
9
|
-
## Enterprise Benefits
|
|
10
|
-
|
|
11
|
-
### Vendor Independence
|
|
12
|
-
|
|
13
|
-
✅ **No Framework Lock-in**: Build with any framework, deploy anywhere
|
|
14
|
-
✅ **Portable Agents**: Move agents between teams, clouds, organizations
|
|
15
|
-
✅ **Standard Contracts**: Consistent agent definitions across teams
|
|
16
|
-
✅ **Multi-Cloud Ready**: Deploy to AWS, GCP, Azure, on-premise
|
|
17
|
-
|
|
18
|
-
### Compliance & Governance
|
|
19
|
-
|
|
20
|
-
✅ **Standard Format**: Enables automated compliance checking
|
|
21
|
-
✅ **Audit Logging**: Standard observability across all agents
|
|
22
|
-
✅ **Cost Controls**: Declarative cost limits prevent overspending
|
|
23
|
-
✅ **Security Policies**: Standard security configuration
|
|
24
|
-
|
|
25
|
-
### Scalability
|
|
26
|
-
|
|
27
|
-
✅ **Enterprise Patterns**: Multi-agent orchestration, service mesh
|
|
28
|
-
✅ **Observability**: Distributed tracing, metrics, logging
|
|
29
|
-
✅ **Resource Management**: Declarative resource constraints
|
|
30
|
-
✅ **Performance Controls**: Latency and throughput limits
|
|
31
|
-
|
|
32
|
-
## Enterprise Adoption Guide
|
|
33
|
-
|
|
34
|
-
### Phase 1: Evaluation
|
|
35
|
-
|
|
36
|
-
1. **Understand OSSA**
|
|
37
|
-
- Review specification
|
|
38
|
-
- Study examples
|
|
39
|
-
- Evaluate fit
|
|
40
|
-
|
|
41
|
-
2. **Pilot Project**
|
|
42
|
-
- Select one team/project
|
|
43
|
-
- Migrate existing agent
|
|
44
|
-
- Measure results
|
|
45
|
-
|
|
46
|
-
3. **Assess Impact**
|
|
47
|
-
- Portability gains
|
|
48
|
-
- Cost savings
|
|
49
|
-
- Compliance improvements
|
|
50
|
-
|
|
51
|
-
### Phase 2: Rollout
|
|
52
|
-
|
|
53
|
-
1. **Training**
|
|
54
|
-
- Developer training
|
|
55
|
-
- Architecture guidelines
|
|
56
|
-
- Best practices
|
|
57
|
-
|
|
58
|
-
2. **Tooling**
|
|
59
|
-
- CI/CD integration
|
|
60
|
-
- Validation pipelines
|
|
61
|
-
- Deployment automation
|
|
62
|
-
|
|
63
|
-
3. **Governance**
|
|
64
|
-
- Policy enforcement
|
|
65
|
-
- Cost management
|
|
66
|
-
- Security controls
|
|
67
|
-
|
|
68
|
-
### Phase 3: Scale
|
|
69
|
-
|
|
70
|
-
1. **Organization-Wide**
|
|
71
|
-
- All teams adopt OSSA
|
|
72
|
-
- Central registry
|
|
73
|
-
- Shared patterns
|
|
74
|
-
|
|
75
|
-
2. **Optimization**
|
|
76
|
-
- Cost optimization
|
|
77
|
-
- Performance tuning
|
|
78
|
-
- Pattern refinement
|
|
79
|
-
|
|
80
|
-
## Compliance & Security
|
|
81
|
-
|
|
82
|
-
### Compliance Features
|
|
83
|
-
|
|
84
|
-
OSSA enables:
|
|
85
|
-
|
|
86
|
-
- **FedRAMP**: Compliance scanning agents
|
|
87
|
-
- **SOC 2**: Audit logging and controls
|
|
88
|
-
- **GDPR**: Data residency and encryption
|
|
89
|
-
- **HIPAA**: Healthcare compliance patterns
|
|
90
|
-
|
|
91
|
-
### Example: Compliance Agent
|
|
92
|
-
|
|
93
|
-
```yaml
|
|
94
|
-
apiVersion: ossa/v0.2.3
|
|
95
|
-
kind: Agent
|
|
96
|
-
|
|
97
|
-
metadata:
|
|
98
|
-
name: compliance-scanner
|
|
99
|
-
labels:
|
|
100
|
-
compliance: fedramp
|
|
101
|
-
classification: internal
|
|
102
|
-
|
|
103
|
-
spec:
|
|
104
|
-
role: Scan infrastructure for compliance
|
|
105
|
-
constraints:
|
|
106
|
-
cost:
|
|
107
|
-
maxCostPerDay: 50.00
|
|
108
|
-
observability:
|
|
109
|
-
logging:
|
|
110
|
-
level: info
|
|
111
|
-
format: json
|
|
112
|
-
audit: true
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
## Cost Management
|
|
116
|
-
|
|
117
|
-
### Cost Controls
|
|
118
|
-
|
|
119
|
-
```yaml
|
|
120
|
-
constraints:
|
|
121
|
-
cost:
|
|
122
|
-
maxTokensPerDay: 1000000
|
|
123
|
-
maxCostPerDay: 100.00
|
|
124
|
-
currency: USD
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
### Cost Optimization
|
|
128
|
-
|
|
129
|
-
1. **Model Selection**: Use appropriate models for tasks
|
|
130
|
-
2. **Token Limits**: Set realistic maxTokens
|
|
131
|
-
3. **Caching**: Cache responses
|
|
132
|
-
4. **Monitoring**: Track costs per agent
|
|
133
|
-
|
|
134
|
-
## Security Architecture
|
|
135
|
-
|
|
136
|
-
### Authentication & Authorization
|
|
137
|
-
|
|
138
|
-
```yaml
|
|
139
|
-
tools:
|
|
140
|
-
- type: http
|
|
141
|
-
auth:
|
|
142
|
-
type: mtls
|
|
143
|
-
credentials: CLIENT_CERT_SECRET
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
### Network Security
|
|
147
|
-
|
|
148
|
-
- Service mesh integration
|
|
149
|
-
- mTLS between agents
|
|
150
|
-
- Network policies
|
|
151
|
-
- API gateways
|
|
152
|
-
|
|
153
|
-
### Secrets Management
|
|
154
|
-
|
|
155
|
-
- Use secret references (not values)
|
|
156
|
-
- Integrate with secret managers
|
|
157
|
-
- Rotate credentials regularly
|
|
158
|
-
|
|
159
|
-
## Governance
|
|
160
|
-
|
|
161
|
-
### Agent Lifecycle
|
|
162
|
-
|
|
163
|
-
1. **Development**: Validate with OSSA CLI
|
|
164
|
-
2. **Testing**: Automated validation in CI/CD
|
|
165
|
-
3. **Deployment**: Standardized deployment process
|
|
166
|
-
4. **Monitoring**: Observability and cost tracking
|
|
167
|
-
5. **Retirement**: Deprecation and cleanup
|
|
168
|
-
|
|
169
|
-
### Policy Enforcement
|
|
170
|
-
|
|
171
|
-
- **Cost Limits**: Enforce via constraints
|
|
172
|
-
- **Security**: Standard security config
|
|
173
|
-
- **Compliance**: Automated compliance checking
|
|
174
|
-
- **Quality**: Validation requirements
|
|
175
|
-
|
|
176
|
-
## Multi-Tenant Support
|
|
177
|
-
|
|
178
|
-
### Tenant Isolation
|
|
179
|
-
|
|
180
|
-
- Separate agent namespaces
|
|
181
|
-
- Resource quotas per tenant
|
|
182
|
-
- Cost tracking per tenant
|
|
183
|
-
- Access controls
|
|
184
|
-
|
|
185
|
-
### Example: Multi-Tenant Agent
|
|
186
|
-
|
|
187
|
-
```yaml
|
|
188
|
-
metadata:
|
|
189
|
-
name: tenant-{tenant-id}-agent
|
|
190
|
-
labels:
|
|
191
|
-
tenant: {tenant-id}
|
|
192
|
-
spec:
|
|
193
|
-
constraints:
|
|
194
|
-
cost:
|
|
195
|
-
maxCostPerDay: 10.00 # Per tenant
|
|
196
|
-
```
|
|
197
|
-
|
|
198
|
-
## Enterprise Patterns
|
|
199
|
-
|
|
200
|
-
### Pattern 1: Centralized Orchestration
|
|
201
|
-
|
|
202
|
-
- Central orchestrator agent
|
|
203
|
-
- Worker agents per team
|
|
204
|
-
- Shared infrastructure
|
|
205
|
-
- Centralized monitoring
|
|
206
|
-
|
|
207
|
-
### Pattern 2: Federated Agents
|
|
208
|
-
|
|
209
|
-
- Team-owned agents
|
|
210
|
-
- Shared registry
|
|
211
|
-
- Cross-team communication
|
|
212
|
-
- Distributed governance
|
|
213
|
-
|
|
214
|
-
### Pattern 3: Hybrid Approach
|
|
215
|
-
|
|
216
|
-
- Mix of centralized and federated
|
|
217
|
-
- Core services centralized
|
|
218
|
-
- Team services federated
|
|
219
|
-
- Shared patterns and tools
|
|
220
|
-
|
|
221
|
-
## Migration Strategy
|
|
222
|
-
|
|
223
|
-
### From Framework-Specific Agents
|
|
224
|
-
|
|
225
|
-
1. **Inventory**: List all existing agents
|
|
226
|
-
2. **Prioritize**: Start with high-value agents
|
|
227
|
-
3. **Migrate**: Convert to OSSA format
|
|
228
|
-
4. **Validate**: Ensure correctness
|
|
229
|
-
5. **Deploy**: Standard deployment process
|
|
230
|
-
|
|
231
|
-
### Migration Tools
|
|
232
|
-
|
|
233
|
-
- OSSA CLI migration command
|
|
234
|
-
- Custom migration scripts
|
|
235
|
-
- Framework-specific guides
|
|
236
|
-
|
|
237
|
-
## Support & Resources
|
|
238
|
-
|
|
239
|
-
### Enterprise Support
|
|
240
|
-
|
|
241
|
-
- [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues)
|
|
242
|
-
- [Documentation](../Technical/Specification-Deep-Dive)
|
|
243
|
-
- [Examples](../Examples/Enterprise-Examples)
|
|
244
|
-
|
|
245
|
-
### Training
|
|
246
|
-
|
|
247
|
-
- Architecture workshops
|
|
248
|
-
- Developer training
|
|
249
|
-
- Best practices sessions
|
|
250
|
-
|
|
251
|
-
## Related Resources
|
|
252
|
-
|
|
253
|
-
- [Architecture Guide](../For-Audiences/Architects)
|
|
254
|
-
- [Technical Documentation](../Technical/Specification-Deep-Dive)
|
|
255
|
-
- [Enterprise Examples](../Examples/Enterprise-Examples)
|
|
256
|
-
|
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: "Architects"
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# For Architects & Platform Engineers
|
|
6
|
-
|
|
7
|
-
Design and govern multi-agent systems using OSSA's standard architecture patterns.
|
|
8
|
-
|
|
9
|
-
## Architecture Overview
|
|
10
|
-
|
|
11
|
-
### OSSA's Role in Agent Architecture
|
|
12
|
-
|
|
13
|
-
OSSA provides:
|
|
14
|
-
- **Standard Contract**: Framework-agnostic agent definition
|
|
15
|
-
- **Portability**: Move agents across infrastructures
|
|
16
|
-
- **Governance**: Standard format enables policy enforcement
|
|
17
|
-
- **Observability**: Consistent monitoring across agents
|
|
18
|
-
|
|
19
|
-
## Design Patterns
|
|
20
|
-
|
|
21
|
-
### Pattern 1: Single Agent
|
|
22
|
-
|
|
23
|
-
Simple, standalone agent:
|
|
24
|
-
|
|
25
|
-
```yaml
|
|
26
|
-
apiVersion: ossa/v0.2.3
|
|
27
|
-
kind: Agent
|
|
28
|
-
metadata:
|
|
29
|
-
name: standalone-agent
|
|
30
|
-
spec:
|
|
31
|
-
role: Agent description
|
|
32
|
-
llm: { ... }
|
|
33
|
-
tools: [ ... ]
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
### Pattern 2: Agent Orchestration
|
|
37
|
-
|
|
38
|
-
Orchestrator coordinates multiple agents:
|
|
39
|
-
|
|
40
|
-
```yaml
|
|
41
|
-
# Orchestrator Agent
|
|
42
|
-
spec:
|
|
43
|
-
role: Coordinate workflow
|
|
44
|
-
tools:
|
|
45
|
-
- type: http
|
|
46
|
-
name: invoke_worker_agent
|
|
47
|
-
endpoint: http://worker-agent:8080/api
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
See: [Integration Patterns](../Examples/Integration-Patterns)
|
|
51
|
-
|
|
52
|
-
### Pattern 3: Agent Mesh
|
|
53
|
-
|
|
54
|
-
Agents communicate directly:
|
|
55
|
-
|
|
56
|
-
- Peer-to-peer communication
|
|
57
|
-
- Event-driven patterns
|
|
58
|
-
- Service mesh integration
|
|
59
|
-
|
|
60
|
-
## Multi-Agent Systems
|
|
61
|
-
|
|
62
|
-
### Architecture Decisions
|
|
63
|
-
|
|
64
|
-
1. **Orchestration vs. Choreography**
|
|
65
|
-
- Orchestration: Central coordinator
|
|
66
|
-
- Choreography: Distributed coordination
|
|
67
|
-
|
|
68
|
-
2. **Communication Patterns**
|
|
69
|
-
- HTTP/gRPC for synchronous
|
|
70
|
-
- Message queues for asynchronous
|
|
71
|
-
- MCP for tool sharing
|
|
72
|
-
|
|
73
|
-
3. **State Management**
|
|
74
|
-
- Stateless agents (recommended)
|
|
75
|
-
- Shared state via external store
|
|
76
|
-
- Event sourcing patterns
|
|
77
|
-
|
|
78
|
-
## Governance & Compliance
|
|
79
|
-
|
|
80
|
-
### Policy Enforcement
|
|
81
|
-
|
|
82
|
-
OSSA enables:
|
|
83
|
-
|
|
84
|
-
- **Cost Controls**: Declarative cost limits
|
|
85
|
-
- **Security Policies**: Standard security configuration
|
|
86
|
-
- **Compliance**: Automated compliance checking
|
|
87
|
-
- **Audit Logging**: Standard observability
|
|
88
|
-
|
|
89
|
-
### Example: Compliance Agent
|
|
90
|
-
|
|
91
|
-
```yaml
|
|
92
|
-
spec:
|
|
93
|
-
role: Compliance checking agent
|
|
94
|
-
constraints:
|
|
95
|
-
cost:
|
|
96
|
-
maxCostPerDay: 50.00
|
|
97
|
-
observability:
|
|
98
|
-
logging:
|
|
99
|
-
level: info
|
|
100
|
-
format: json
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
## Infrastructure Planning
|
|
104
|
-
|
|
105
|
-
### Deployment Options
|
|
106
|
-
|
|
107
|
-
1. **Kubernetes**
|
|
108
|
-
- Native K8s resources
|
|
109
|
-
- Service mesh integration
|
|
110
|
-
- Auto-scaling
|
|
111
|
-
|
|
112
|
-
2. **Serverless**
|
|
113
|
-
- AWS Lambda
|
|
114
|
-
- Google Cloud Functions
|
|
115
|
-
- Azure Functions
|
|
116
|
-
|
|
117
|
-
3. **Container Orchestration**
|
|
118
|
-
- Docker Compose
|
|
119
|
-
- Nomad
|
|
120
|
-
- Custom orchestration
|
|
121
|
-
|
|
122
|
-
### Resource Planning
|
|
123
|
-
|
|
124
|
-
```yaml
|
|
125
|
-
constraints:
|
|
126
|
-
resources:
|
|
127
|
-
cpu: "500m"
|
|
128
|
-
memory: "1Gi"
|
|
129
|
-
performance:
|
|
130
|
-
maxConcurrentRequests: 10
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
## Observability Strategy
|
|
134
|
-
|
|
135
|
-
### Distributed Tracing
|
|
136
|
-
|
|
137
|
-
```yaml
|
|
138
|
-
observability:
|
|
139
|
-
tracing:
|
|
140
|
-
enabled: true
|
|
141
|
-
exporter: otlp
|
|
142
|
-
endpoint: http://jaeger:4318
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
### Metrics Collection
|
|
146
|
-
|
|
147
|
-
```yaml
|
|
148
|
-
observability:
|
|
149
|
-
metrics:
|
|
150
|
-
enabled: true
|
|
151
|
-
exporter: prometheus
|
|
152
|
-
endpoint: http://prometheus:9090/metrics
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
### Logging Strategy
|
|
156
|
-
|
|
157
|
-
```yaml
|
|
158
|
-
observability:
|
|
159
|
-
logging:
|
|
160
|
-
level: info
|
|
161
|
-
format: json
|
|
162
|
-
```
|
|
163
|
-
|
|
164
|
-
## Cost Management
|
|
165
|
-
|
|
166
|
-
### Cost Constraints
|
|
167
|
-
|
|
168
|
-
```yaml
|
|
169
|
-
constraints:
|
|
170
|
-
cost:
|
|
171
|
-
maxTokensPerDay: 100000
|
|
172
|
-
maxCostPerDay: 10.00
|
|
173
|
-
currency: USD
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
### Cost Optimization Strategies
|
|
177
|
-
|
|
178
|
-
1. **Model Selection**: Use appropriate model for task
|
|
179
|
-
2. **Token Limits**: Set maxTokens per request
|
|
180
|
-
3. **Caching**: Cache responses where possible
|
|
181
|
-
4. **Batching**: Batch requests when possible
|
|
182
|
-
|
|
183
|
-
## Security Architecture
|
|
184
|
-
|
|
185
|
-
### Authentication
|
|
186
|
-
|
|
187
|
-
```yaml
|
|
188
|
-
tools:
|
|
189
|
-
- type: http
|
|
190
|
-
auth:
|
|
191
|
-
type: bearer
|
|
192
|
-
credentials: API_KEY_SECRET
|
|
193
|
-
```
|
|
194
|
-
|
|
195
|
-
### Network Security
|
|
196
|
-
|
|
197
|
-
- Service mesh integration
|
|
198
|
-
- mTLS between agents
|
|
199
|
-
- Network policies
|
|
200
|
-
- API gateways
|
|
201
|
-
|
|
202
|
-
## Scalability Patterns
|
|
203
|
-
|
|
204
|
-
### Horizontal Scaling
|
|
205
|
-
|
|
206
|
-
- Stateless agents
|
|
207
|
-
- Load balancing
|
|
208
|
-
- Auto-scaling based on metrics
|
|
209
|
-
|
|
210
|
-
### Vertical Scaling
|
|
211
|
-
|
|
212
|
-
```yaml
|
|
213
|
-
constraints:
|
|
214
|
-
resources:
|
|
215
|
-
cpu: "2"
|
|
216
|
-
memory: "4Gi"
|
|
217
|
-
```
|
|
218
|
-
|
|
219
|
-
## Related Resources
|
|
220
|
-
|
|
221
|
-
- [Technical Documentation](../Technical/Specification-Deep-Dive)
|
|
222
|
-
- [Integration Patterns](../Examples/Integration-Patterns)
|
|
223
|
-
- [Enterprise Guide](../For-Audiences/Enterprises)
|
|
224
|
-
|
|
@@ -1,220 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: "Developers"
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# For Developers
|
|
6
|
-
|
|
7
|
-
Build OSSA-compliant agents using your preferred framework and deploy anywhere.
|
|
8
|
-
|
|
9
|
-
## Quick Start
|
|
10
|
-
|
|
11
|
-
### 1. Install OSSA CLI
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npm install -g @bluefly/openstandardagents
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
### 2. Generate Your First Agent
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
ossa generate chat --name "My Agent" --output agent.ossa.yaml
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### 3. Validate
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
ossa validate agent.ossa.yaml
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
### 4. Deploy
|
|
30
|
-
|
|
31
|
-
Use your preferred deployment method - OSSA doesn't care!
|
|
32
|
-
|
|
33
|
-
## Development Workflow
|
|
34
|
-
|
|
35
|
-
### Build with Your Framework
|
|
36
|
-
|
|
37
|
-
OSSA is framework-agnostic. Build agents with:
|
|
38
|
-
|
|
39
|
-
- **LangChain** - Python-based agent framework
|
|
40
|
-
- **Anthropic SDK** - TypeScript/Python SDK
|
|
41
|
-
- **Custom Code** - Your own implementation
|
|
42
|
-
- **Any Framework** - OSSA works with all
|
|
43
|
-
|
|
44
|
-
### Validate with OSSA
|
|
45
|
-
|
|
46
|
-
Once built, validate against OSSA:
|
|
47
|
-
|
|
48
|
-
```bash
|
|
49
|
-
ossa validate my-agent.ossa.yaml
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
### Deploy Anywhere
|
|
53
|
-
|
|
54
|
-
Deploy to:
|
|
55
|
-
- Kubernetes
|
|
56
|
-
- Docker
|
|
57
|
-
- Serverless (AWS Lambda, Google Cloud Functions)
|
|
58
|
-
- On-premise
|
|
59
|
-
- Your infrastructure
|
|
60
|
-
|
|
61
|
-
## Migration from Existing Frameworks
|
|
62
|
-
|
|
63
|
-
### LangChain → OSSA
|
|
64
|
-
|
|
65
|
-
See: [Migration Guide: LangChain](../Examples/Migration-Guides/from-langchain-to-ossa)
|
|
66
|
-
|
|
67
|
-
### Anthropic SDK → OSSA
|
|
68
|
-
|
|
69
|
-
Coming soon: Anthropic SDK migration guide
|
|
70
|
-
|
|
71
|
-
### Custom Framework → OSSA
|
|
72
|
-
|
|
73
|
-
1. Map your agent structure to OSSA format
|
|
74
|
-
2. Define tools/capabilities
|
|
75
|
-
3. Configure LLM settings
|
|
76
|
-
4. Add observability
|
|
77
|
-
5. Validate
|
|
78
|
-
|
|
79
|
-
## API Reference
|
|
80
|
-
|
|
81
|
-
### CLI Commands
|
|
82
|
-
|
|
83
|
-
```bash
|
|
84
|
-
# Validate agent
|
|
85
|
-
ossa validate <path> [--schema <version>] [--verbose]
|
|
86
|
-
|
|
87
|
-
# Generate agent
|
|
88
|
-
ossa generate <type> [--name <name>] [--output <file>]
|
|
89
|
-
|
|
90
|
-
# Migrate agent
|
|
91
|
-
ossa migrate <source> [--target-version <version>]
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
### Programmatic API
|
|
95
|
-
|
|
96
|
-
```typescript
|
|
97
|
-
import { ValidationService } from '@bluefly/openstandardagents/validation';
|
|
98
|
-
import { GenerationService } from '@bluefly/openstandardagents/generation';
|
|
99
|
-
|
|
100
|
-
// Validate
|
|
101
|
-
const validationService = new ValidationService();
|
|
102
|
-
const result = await validationService.validate(manifest, '0.2.2');
|
|
103
|
-
|
|
104
|
-
// Generate
|
|
105
|
-
const generationService = new GenerationService();
|
|
106
|
-
const manifest = await generationService.generate(template);
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
## Best Practices
|
|
110
|
-
|
|
111
|
-
### 1. Use Descriptive Names
|
|
112
|
-
|
|
113
|
-
```yaml
|
|
114
|
-
metadata:
|
|
115
|
-
name: customer-support-agent # Good
|
|
116
|
-
# name: agent1 # Bad
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
### 2. Add Comprehensive Descriptions
|
|
120
|
-
|
|
121
|
-
```yaml
|
|
122
|
-
metadata:
|
|
123
|
-
description: |
|
|
124
|
-
Customer support agent that handles:
|
|
125
|
-
- Product inquiries
|
|
126
|
-
- Order status
|
|
127
|
-
- Returns and refunds
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
### 3. Configure Constraints
|
|
131
|
-
|
|
132
|
-
```yaml
|
|
133
|
-
constraints:
|
|
134
|
-
cost:
|
|
135
|
-
maxTokensPerDay: 100000
|
|
136
|
-
maxCostPerDay: 10.00
|
|
137
|
-
performance:
|
|
138
|
-
maxLatencySeconds: 5.0
|
|
139
|
-
```
|
|
140
|
-
|
|
141
|
-
### 4. Enable Observability
|
|
142
|
-
|
|
143
|
-
```yaml
|
|
144
|
-
observability:
|
|
145
|
-
tracing:
|
|
146
|
-
enabled: true
|
|
147
|
-
metrics:
|
|
148
|
-
enabled: true
|
|
149
|
-
logging:
|
|
150
|
-
level: info
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
## Common Patterns
|
|
154
|
-
|
|
155
|
-
### Pattern 1: Simple Chat Agent
|
|
156
|
-
|
|
157
|
-
```yaml
|
|
158
|
-
spec:
|
|
159
|
-
role: You are a helpful assistant
|
|
160
|
-
llm:
|
|
161
|
-
provider: openai
|
|
162
|
-
model: gpt-3.5-turbo
|
|
163
|
-
tools: []
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
### Pattern 2: Agent with Tools
|
|
167
|
-
|
|
168
|
-
```yaml
|
|
169
|
-
spec:
|
|
170
|
-
role: You are a research assistant
|
|
171
|
-
llm:
|
|
172
|
-
provider: openai
|
|
173
|
-
model: gpt-4
|
|
174
|
-
tools:
|
|
175
|
-
- type: http
|
|
176
|
-
name: web_search
|
|
177
|
-
endpoint: https://api.search.com/search
|
|
178
|
-
```
|
|
179
|
-
|
|
180
|
-
### Pattern 3: Multi-Agent Orchestration
|
|
181
|
-
|
|
182
|
-
See: [Integration Patterns](../Examples/Integration-Patterns)
|
|
183
|
-
|
|
184
|
-
## Testing
|
|
185
|
-
|
|
186
|
-
### Validate Before Deployment
|
|
187
|
-
|
|
188
|
-
```bash
|
|
189
|
-
ossa validate agent.ossa.yaml --verbose
|
|
190
|
-
```
|
|
191
|
-
|
|
192
|
-
### Test with Examples
|
|
193
|
-
|
|
194
|
-
```bash
|
|
195
|
-
# Validate all examples
|
|
196
|
-
npm run validate:examples
|
|
197
|
-
```
|
|
198
|
-
|
|
199
|
-
## Troubleshooting
|
|
200
|
-
|
|
201
|
-
### Validation Errors
|
|
202
|
-
|
|
203
|
-
```bash
|
|
204
|
-
# Get detailed error messages
|
|
205
|
-
ossa validate agent.ossa.yaml --verbose
|
|
206
|
-
```
|
|
207
|
-
|
|
208
|
-
### Common Issues
|
|
209
|
-
|
|
210
|
-
1. **Missing required fields**: Check schema reference
|
|
211
|
-
2. **Invalid tool types**: Use supported types (http, function, mcp, etc.)
|
|
212
|
-
3. **LLM provider not supported**: Check provider enum values
|
|
213
|
-
|
|
214
|
-
## Resources
|
|
215
|
-
|
|
216
|
-
- [Getting Started](../Getting-Started/Hello-World)
|
|
217
|
-
- [API Reference](../Technical/CLI-Reference)
|
|
218
|
-
- [Migration Guides](../Examples/Migration-Guides)
|
|
219
|
-
- [Examples](../Examples/Getting-Started-Examples)
|
|
220
|
-
|