@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
package/README.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# OSSA - Open Standard for Scalable AI Agents
|
|
2
2
|
|
|
3
|
+
> **š¦ NPM Package**: [@bluefly/openstandardagents](https://www.npmjs.com/package/@bluefly/openstandardagents)
|
|
4
|
+
>
|
|
5
|
+
> - **š GitHub**: [github.com/blueflyio/openstandardagents](https://github.com/blueflyio/openstandardagents) - Submit PRs and issues
|
|
6
|
+
> - **š Website**: [openstandardagents.org](https://openstandardagents.org)
|
|
7
|
+
> - **š¬ Discord**: [Open Standard for AI Agents (OSSA)](https://discord.com/channels/1440574820390801561/1440574821841899562)
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
3
11
|
**The OpenAPI for AI Agents**
|
|
4
12
|
|
|
5
13
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
6
|
-
[](https://
|
|
8
|
-
[](https://github.com/
|
|
9
|
-
[](https://
|
|
14
|
+
[](https://www.npmjs.com/package/@bluefly/openstandardagents)
|
|
15
|
+
[](https://github.com/blueflyio/openstandardagents)
|
|
16
|
+
[](https://github.com/blueflyio/openstandardagents)
|
|
17
|
+
[](https://github.com/blueflyio/openstandardagents)
|
|
10
18
|
|
|
11
19
|
---
|
|
12
20
|
|
|
@@ -19,10 +27,10 @@ Just as OpenAPI standardized REST APIs, OSSA standardizes AI agent interaction,
|
|
|
19
27
|
**OSSA is NOT a framework** - it's a standard that defines the contract. Implementations provide the functionality.
|
|
20
28
|
|
|
21
29
|
**Key Qualities:**
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
30
|
+
- **Vendor-Neutral** - Community-driven, not controlled by any single company
|
|
31
|
+
- **Interoperable** - Common language enabling diverse AI agents to work together
|
|
32
|
+
- **Trustworthy** - Built with compliance and security in mind
|
|
33
|
+
- **Open** - Collaborative effort for the "Internet of Agents"
|
|
26
34
|
|
|
27
35
|
| Component | Role | Comparable To |
|
|
28
36
|
|-----------|------|---------------|
|
|
@@ -47,7 +55,7 @@ Just as OpenAPI standardized REST APIs, OSSA standardizes AI agent interaction,
|
|
|
47
55
|
### Installation
|
|
48
56
|
|
|
49
57
|
```bash
|
|
50
|
-
npm install -g @bluefly/
|
|
58
|
+
npm install -g @bluefly/openstandardagents
|
|
51
59
|
```
|
|
52
60
|
|
|
53
61
|
### Create Agent
|
|
@@ -63,6 +71,22 @@ ossa generate worker --name "My Agent" --id my-agent
|
|
|
63
71
|
ossa validate agent.yml
|
|
64
72
|
```
|
|
65
73
|
|
|
74
|
+
### Run Your Agent
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
# Set your API key
|
|
78
|
+
export OPENAI_API_KEY=sk-your-key-here
|
|
79
|
+
|
|
80
|
+
# Run interactively
|
|
81
|
+
ossa run agent.ossa.yaml
|
|
82
|
+
|
|
83
|
+
# Or send a single message
|
|
84
|
+
ossa run agent.ossa.yaml -m "Hello, how can you help me?"
|
|
85
|
+
|
|
86
|
+
# With verbose output
|
|
87
|
+
ossa run agent.ossa.yaml -v
|
|
88
|
+
```
|
|
89
|
+
|
|
66
90
|
### Deploy
|
|
67
91
|
|
|
68
92
|
Deploy to **YOUR** infrastructure:
|
|
@@ -82,32 +106,65 @@ The OSSA CLI provides basic tooling:
|
|
|
82
106
|
```bash
|
|
83
107
|
ossa validate <path> # Validate against OSSA schema
|
|
84
108
|
ossa generate <type> # Generate agent from template (chat, workflow, compliance, etc.)
|
|
85
|
-
ossa migrate <source> # Migrate
|
|
109
|
+
ossa migrate <source> # Migrate between OSSA versions
|
|
110
|
+
ossa run <path> # Run agents with OpenAI adapter
|
|
86
111
|
```
|
|
87
112
|
|
|
88
113
|
**What OSSA CLI does:**
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
114
|
+
- Validate agent manifests
|
|
115
|
+
- Generate project scaffolding
|
|
116
|
+
- Provide templates
|
|
117
|
+
- Run agents interactively (OpenAI adapter)
|
|
92
118
|
|
|
93
119
|
**What OSSA CLI does NOT do:**
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
120
|
+
- Runtime orchestration
|
|
121
|
+
- Deployment
|
|
122
|
+
- Production monitoring
|
|
123
|
+
- Infrastructure management
|
|
124
|
+
|
|
125
|
+
For production features, see [Agent Buildkit](https://github.com/blueflyio/agent-buildkit).
|
|
98
126
|
|
|
99
|
-
|
|
127
|
+
### Running Agents
|
|
128
|
+
|
|
129
|
+
The `ossa run` command allows you to execute agents using the OpenAI adapter:
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
# Interactive mode (REPL)
|
|
133
|
+
ossa run my-agent.ossa.yaml
|
|
134
|
+
|
|
135
|
+
# Single message mode
|
|
136
|
+
ossa run my-agent.ossa.yaml -m "What is the weather today?"
|
|
137
|
+
|
|
138
|
+
# Verbose output (show tool calls)
|
|
139
|
+
ossa run my-agent.ossa.yaml -v
|
|
140
|
+
|
|
141
|
+
# Custom options
|
|
142
|
+
ossa run my-agent.ossa.yaml --max-turns 20 --no-validate
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
**Features:**
|
|
146
|
+
- Interactive REPL mode for conversations
|
|
147
|
+
- Single message mode for quick queries
|
|
148
|
+
- Tool execution with custom handlers
|
|
149
|
+
- Verbose mode for debugging
|
|
150
|
+
- Configurable max turns to prevent loops
|
|
151
|
+
|
|
152
|
+
**Requirements:**
|
|
153
|
+
- OpenAI API key: `export OPENAI_API_KEY=sk-...`
|
|
154
|
+
- Valid OSSA manifest (YAML or JSON)
|
|
155
|
+
|
|
156
|
+
See [Running Agents Guide](https://openstandardagents.org/docs/getting-started/running-agents) for more details.
|
|
100
157
|
|
|
101
158
|
---
|
|
102
159
|
|
|
103
160
|
## Specification
|
|
104
161
|
|
|
105
|
-
OSSA v0.2.
|
|
162
|
+
OSSA v0.2.6 Schema: [`spec/v0.2.6/ossa-0.2.6.schema.json`](spec/v0.2.6/ossa-0.2.6.schema.json)
|
|
106
163
|
|
|
107
164
|
### Required Fields
|
|
108
165
|
|
|
109
166
|
```yaml
|
|
110
|
-
ossaVersion: "0.2.
|
|
167
|
+
ossaVersion: "0.2.6"
|
|
111
168
|
|
|
112
169
|
agent:
|
|
113
170
|
id: my-agent # DNS-1123 format
|
|
@@ -129,6 +186,38 @@ Full schema documentation: [`docs/specification/`](docs/specification/)
|
|
|
129
186
|
|
|
130
187
|
---
|
|
131
188
|
|
|
189
|
+
## Production-Ready Example: GitLab Kubernetes Agent Ecosystem
|
|
190
|
+
|
|
191
|
+
**NEW**: Complete production ecosystem with **8 specialized agents** for GitLab-integrated Kubernetes deployments.
|
|
192
|
+
|
|
193
|
+
[**View Full Documentation**](https://github.com/blueflyio/openstandardagents/wiki/OSSA-Agent-Ecosystem-for-GitLab-Kubernetes-Deployments)
|
|
194
|
+
|
|
195
|
+
### Highlights
|
|
196
|
+
|
|
197
|
+
- **8 OSSA-compliant agents**: Security, Performance, Database, Config, Monitoring, Rollback, Cost, Compliance
|
|
198
|
+
- **Agent mesh** with Istio + STRICT mTLS
|
|
199
|
+
- **Elite DORA metrics**: 12 deployments/day, 45min lead time, 8.5% change failure rate
|
|
200
|
+
- **Massive ROI**: $80-145K/month cost savings (31-57x return)
|
|
201
|
+
- **Full compliance**: SOC2, HIPAA, PCI-DSS, GDPR, FedRAMP
|
|
202
|
+
|
|
203
|
+
### Quick Deploy
|
|
204
|
+
|
|
205
|
+
```bash
|
|
206
|
+
# Deploy agent mesh
|
|
207
|
+
kubectl apply -f .gitlab/agents/mesh-config.yaml
|
|
208
|
+
|
|
209
|
+
# Deploy all 8 agents
|
|
210
|
+
for agent in security-scanner performance-optimizer db-migrator \
|
|
211
|
+
config-validator monitoring-agent rollback-coordinator \
|
|
212
|
+
cost-analyzer compliance-auditor; do
|
|
213
|
+
buildkit agents deploy .gitlab/agents/$agent/manifest.ossa.yaml
|
|
214
|
+
done
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
**Location**: [`.gitlab/agents/`](.gitlab/agents/)
|
|
218
|
+
|
|
219
|
+
---
|
|
220
|
+
|
|
132
221
|
## Examples
|
|
133
222
|
|
|
134
223
|
Reference implementations: [`examples/`](examples/)
|
|
@@ -136,6 +225,7 @@ Reference implementations: [`examples/`](examples/)
|
|
|
136
225
|
- `compliance-agent.yml` - FedRAMP compliance
|
|
137
226
|
- `chat-agent.yml` - Conversation agent
|
|
138
227
|
- `workflow-agent.yml` - Workflow orchestration
|
|
228
|
+
- **GitLab K8s Ecosystem** - Production-ready multi-agent system (see above)
|
|
139
229
|
|
|
140
230
|
---
|
|
141
231
|
|
|
@@ -154,14 +244,12 @@ Reference implementations: [`examples/`](examples/)
|
|
|
154
244
|
- GitLab integration
|
|
155
245
|
- Kubernetes deployment
|
|
156
246
|
- Production monitoring
|
|
157
|
-
- [Learn more ā](https://gitlab.bluefly.io/llm/npm/agent-buildkit)
|
|
158
247
|
|
|
159
248
|
**Agent Studio** - GUI platform for agent orchestration
|
|
160
249
|
- macOS-aligned design
|
|
161
250
|
- Visual workflow design
|
|
162
251
|
- Agent monitoring and debugging
|
|
163
252
|
- End-to-end agent lifecycle management
|
|
164
|
-
- [Learn more ā](https://gitlab.bluefly.io/llm/demos/llm-platform-demo)
|
|
165
253
|
|
|
166
254
|
### Part of the OSSA Ecosystem
|
|
167
255
|
|
|
@@ -180,16 +268,16 @@ Together, they form a complete ecosystem for AI agent development, deployment, a
|
|
|
180
268
|
|
|
181
269
|
### For Enterprises
|
|
182
270
|
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
271
|
+
- **Lightweight** - Just a standard, minimal dependencies
|
|
272
|
+
- **No Vendor Lock-in** - Use any implementation
|
|
273
|
+
- **Deploy Anywhere** - Your infrastructure, your choice
|
|
274
|
+
- **Clear Specification** - Well-defined contract
|
|
187
275
|
|
|
188
276
|
### For Framework Builders
|
|
189
277
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
278
|
+
- **Standard to Build On** - Like OpenAPI for APIs
|
|
279
|
+
- **Reference Implementation** - Agent Buildkit shows the way
|
|
280
|
+
- **Clear Boundaries** - Standard vs. implementation
|
|
193
281
|
|
|
194
282
|
---
|
|
195
283
|
|
|
@@ -198,7 +286,7 @@ Together, they form a complete ecosystem for AI agent development, deployment, a
|
|
|
198
286
|
### As a Standard (Validation Only)
|
|
199
287
|
|
|
200
288
|
```bash
|
|
201
|
-
npm install -g @bluefly/
|
|
289
|
+
npm install -g @bluefly/openstandardagents
|
|
202
290
|
ossa validate my-agent.yml
|
|
203
291
|
```
|
|
204
292
|
|
|
@@ -216,7 +304,7 @@ buildkit ossa sync-docs # GitLab integration
|
|
|
216
304
|
|
|
217
305
|
### Official Website & Documentation Portal
|
|
218
306
|
|
|
219
|
-
**Live Website**: https://
|
|
307
|
+
**Live Website**: https://openstandardagents.org
|
|
220
308
|
|
|
221
309
|
The OSSA website features:
|
|
222
310
|
- **Interactive Documentation** - Browse the complete OSSA wiki with an enhanced UI
|
|
@@ -236,11 +324,11 @@ The documentation is organized into:
|
|
|
236
324
|
|
|
237
325
|
### Additional Resources
|
|
238
326
|
|
|
239
|
-
- **Specification**: [spec/v0.2.
|
|
327
|
+
- **Specification**: [spec/v0.2.6/ossa-0.2.6.schema.json](spec/v0.2.6/ossa-0.2.6.schema.json)
|
|
240
328
|
- **Examples**: [examples/](examples/)
|
|
241
329
|
- **API Reference**: [docs/](docs/)
|
|
242
|
-
- **
|
|
243
|
-
- **
|
|
330
|
+
- **Deployment Guides**: [GitHub Mirroring](https://openstandardagents.org/docs/deployment/github-mirroring)
|
|
331
|
+
- **GitHub Issues**: https://github.com/blueflyio/openstandardagents/issues
|
|
244
332
|
|
|
245
333
|
---
|
|
246
334
|
|
|
@@ -248,17 +336,16 @@ The documentation is organized into:
|
|
|
248
336
|
|
|
249
337
|
OSSA is an open standard. Contributions welcome.
|
|
250
338
|
|
|
251
|
-
**
|
|
252
|
-
**
|
|
339
|
+
**Repository**: https://github.com/blueflyio/openstandardagents/
|
|
340
|
+
**Homepage**: https://openstandardagents.org
|
|
341
|
+
**Issues**: https://github.com/blueflyio/openstandardagents/issues
|
|
253
342
|
|
|
254
|
-
1. Fork the repository
|
|
343
|
+
1. Fork the repository on GitHub
|
|
255
344
|
2. Create feature branch
|
|
256
|
-
3. Submit
|
|
345
|
+
3. Submit pull request
|
|
257
346
|
|
|
258
347
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
259
348
|
|
|
260
|
-
> **Note**: This repository is automatically mirrored from GitLab to GitHub. The GitHub repository is read-only. All development happens on GitLab. See [GitHub Mirror Setup Guide](docs/GITHUB-MIRROR-SETUP.md) for details.
|
|
261
|
-
|
|
262
349
|
---
|
|
263
350
|
|
|
264
351
|
## License
|
|
@@ -271,9 +358,9 @@ Apache 2.0 - see [LICENSE](LICENSE) for details.
|
|
|
271
358
|
|
|
272
359
|
OSSA is part of a unified ecosystem for AI agent development:
|
|
273
360
|
|
|
274
|
-
- **
|
|
275
|
-
- **
|
|
276
|
-
- **
|
|
361
|
+
- **OSSA** - The open standard (this repository)
|
|
362
|
+
- **Agent Buildkit** - CLI for building and managing agents
|
|
363
|
+
- **Agent Studio** - GUI platform for agent orchestration
|
|
277
364
|
|
|
278
365
|
**OSSA: Open. Interoperable. Trustworthy.**
|
|
279
366
|
|
package/bin/ossa
CHANGED
|
@@ -1,8 +1,29 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* OSSA CLI
|
|
5
|
-
*
|
|
4
|
+
* OSSA CLI Entry Point
|
|
5
|
+
* Enhanced with error handling, version detection, and better UX
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import '
|
|
8
|
+
import { fileURLToPath } from 'url';
|
|
9
|
+
import { dirname, resolve } from 'path';
|
|
10
|
+
import { existsSync } from 'fs';
|
|
11
|
+
|
|
12
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
13
|
+
const __dirname = dirname(__filename);
|
|
14
|
+
|
|
15
|
+
// Try to load compiled CLI
|
|
16
|
+
const cliPath = resolve(__dirname, '../dist/cli/index.js');
|
|
17
|
+
|
|
18
|
+
if (!existsSync(cliPath)) {
|
|
19
|
+
console.error('ā OSSA CLI not built. Run: npm run build');
|
|
20
|
+
process.exit(1);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
try {
|
|
24
|
+
await import(cliPath);
|
|
25
|
+
} catch (error) {
|
|
26
|
+
console.error('ā Failed to load OSSA CLI:');
|
|
27
|
+
console.error(error);
|
|
28
|
+
process.exit(1);
|
|
29
|
+
}
|
package/bin/ossa-dev
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { spawn } from 'child_process';
|
|
4
|
+
import { watch } from 'fs';
|
|
5
|
+
import { resolve } from 'path';
|
|
6
|
+
|
|
7
|
+
const args = process.argv.slice(2);
|
|
8
|
+
const agentPath = args[0] || './agent.yaml';
|
|
9
|
+
const port = args[1] || '3000';
|
|
10
|
+
|
|
11
|
+
let server;
|
|
12
|
+
|
|
13
|
+
function startServer() {
|
|
14
|
+
if (server) server.kill();
|
|
15
|
+
|
|
16
|
+
console.log(`\nš Starting OSSA agent: ${agentPath}`);
|
|
17
|
+
server = spawn('node', ['--loader', 'tsx', '-e', `
|
|
18
|
+
import { readFileSync } from 'fs';
|
|
19
|
+
import { createServer } from 'http';
|
|
20
|
+
|
|
21
|
+
const agent = readFileSync('${agentPath}', 'utf-8');
|
|
22
|
+
|
|
23
|
+
createServer((req, res) => {
|
|
24
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
25
|
+
res.end(JSON.stringify({ status: 'ok', agent: '${agentPath}' }));
|
|
26
|
+
}).listen(${port}, () => {
|
|
27
|
+
console.log('ā Agent running on http://localhost:${port}');
|
|
28
|
+
});
|
|
29
|
+
`], { stdio: 'inherit' });
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
watch(resolve(agentPath), () => {
|
|
33
|
+
console.log('š Agent config changed, reloading...');
|
|
34
|
+
startServer();
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
startServer();
|
|
38
|
+
|
|
39
|
+
process.on('SIGINT', () => {
|
|
40
|
+
if (server) server.kill();
|
|
41
|
+
process.exit(0);
|
|
42
|
+
});
|
package/bin/ossa-export
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* OSSA Export Utility
|
|
5
|
+
* Quick export of OSSA manifests to various formats
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
const { execSync } = require('child_process');
|
|
9
|
+
const path = require('path');
|
|
10
|
+
|
|
11
|
+
const args = process.argv.slice(2);
|
|
12
|
+
const format = args[0];
|
|
13
|
+
const file = args[1];
|
|
14
|
+
|
|
15
|
+
if (!format || !file) {
|
|
16
|
+
console.log('Usage: ossa-export <format> <file>');
|
|
17
|
+
console.log('');
|
|
18
|
+
console.log('Formats:');
|
|
19
|
+
console.log(' cursor - Export to Cursor AI format');
|
|
20
|
+
console.log(' langchain - Export to LangChain format');
|
|
21
|
+
console.log(' openai - Export to OpenAI Assistants format');
|
|
22
|
+
console.log(' anthropic - Export to Anthropic Claude format');
|
|
23
|
+
console.log('');
|
|
24
|
+
console.log('Example: ossa-export cursor my-agent.ossa.yaml');
|
|
25
|
+
process.exit(1);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
try {
|
|
29
|
+
execSync(`ossa export --to ${format} ${file}`, { stdio: 'inherit' });
|
|
30
|
+
} catch (error) {
|
|
31
|
+
process.exit(1);
|
|
32
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { writeFileSync, mkdirSync } from 'fs';
|
|
4
|
+
import { join } from 'path';
|
|
5
|
+
|
|
6
|
+
const [type, name] = process.argv.slice(2);
|
|
7
|
+
|
|
8
|
+
if (!type || !name) {
|
|
9
|
+
console.log('Usage: ossa-generate <agent|adapter> <name>');
|
|
10
|
+
process.exit(1);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const templates = {
|
|
14
|
+
agent: `apiVersion: ossa.ai/v0.2.6
|
|
15
|
+
kind: Agent
|
|
16
|
+
metadata:
|
|
17
|
+
name: ${name}
|
|
18
|
+
version: 1.0.0
|
|
19
|
+
spec:
|
|
20
|
+
description: ${name} agent
|
|
21
|
+
capabilities:
|
|
22
|
+
- text-generation
|
|
23
|
+
interface:
|
|
24
|
+
input:
|
|
25
|
+
type: object
|
|
26
|
+
properties:
|
|
27
|
+
prompt:
|
|
28
|
+
type: string
|
|
29
|
+
output:
|
|
30
|
+
type: object
|
|
31
|
+
properties:
|
|
32
|
+
response:
|
|
33
|
+
type: string
|
|
34
|
+
`,
|
|
35
|
+
adapter: `import { Adapter } from '@ossa/core';
|
|
36
|
+
|
|
37
|
+
export class ${name.charAt(0).toUpperCase() + name.slice(1)}Adapter implements Adapter {
|
|
38
|
+
async execute(input: any): Promise<any> {
|
|
39
|
+
// Implementation
|
|
40
|
+
return { result: 'success' };
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
`
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
if (!templates[type]) {
|
|
47
|
+
console.log('ā Unknown type. Use: agent or adapter');
|
|
48
|
+
process.exit(1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const ext = type === 'agent' ? 'yaml' : 'ts';
|
|
52
|
+
const filename = `${name}.${ext}`;
|
|
53
|
+
|
|
54
|
+
try {
|
|
55
|
+
writeFileSync(filename, templates[type]);
|
|
56
|
+
console.log(`ā Created ${type}: ${filename}`);
|
|
57
|
+
} catch (err) {
|
|
58
|
+
console.error('ā Error:', err.message);
|
|
59
|
+
process.exit(1);
|
|
60
|
+
}
|
package/bin/ossa-health
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { readFileSync, existsSync } from 'fs';
|
|
4
|
+
import { parse } from 'yaml';
|
|
5
|
+
|
|
6
|
+
const agentPath = process.argv[2] || './agent.yaml';
|
|
7
|
+
|
|
8
|
+
if (!existsSync(agentPath)) {
|
|
9
|
+
console.log('ā Agent file not found:', agentPath);
|
|
10
|
+
process.exit(1);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
try {
|
|
14
|
+
const content = readFileSync(agentPath, 'utf-8');
|
|
15
|
+
const agent = parse(content);
|
|
16
|
+
|
|
17
|
+
const checks = {
|
|
18
|
+
'Valid YAML': !!agent,
|
|
19
|
+
'Has apiVersion': !!agent.apiVersion,
|
|
20
|
+
'Has kind': agent.kind === 'Agent',
|
|
21
|
+
'Has metadata': !!agent.metadata?.name,
|
|
22
|
+
'Has spec': !!agent.spec
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
console.log('\nš„ OSSA Agent Health Check\n');
|
|
26
|
+
console.log(`Agent: ${agentPath}\n`);
|
|
27
|
+
|
|
28
|
+
let passed = 0;
|
|
29
|
+
for (const [check, result] of Object.entries(checks)) {
|
|
30
|
+
console.log(`${result ? 'ā' : 'ā'} ${check}`);
|
|
31
|
+
if (result) passed++;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
console.log(`\n${passed}/${Object.keys(checks).length} checks passed\n`);
|
|
35
|
+
|
|
36
|
+
process.exit(passed === Object.keys(checks).length ? 0 : 1);
|
|
37
|
+
} catch (err) {
|
|
38
|
+
console.log('ā Error:', err.message);
|
|
39
|
+
process.exit(1);
|
|
40
|
+
}
|
package/bin/ossa-init
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* OSSA Init Utility
|
|
5
|
+
* Quick project initialization
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
const { execSync } = require('child_process');
|
|
9
|
+
|
|
10
|
+
const args = process.argv.slice(2);
|
|
11
|
+
const name = args[0] || 'my-agent';
|
|
12
|
+
|
|
13
|
+
console.log(`š Initializing OSSA agent: ${name}`);
|
|
14
|
+
|
|
15
|
+
try {
|
|
16
|
+
execSync(`ossa init ${name}`, { stdio: 'inherit' });
|
|
17
|
+
console.log('');
|
|
18
|
+
console.log('ā
Agent initialized!');
|
|
19
|
+
console.log('');
|
|
20
|
+
console.log('Next steps:');
|
|
21
|
+
console.log(` cd ${name}`);
|
|
22
|
+
console.log(' ossa validate agent.ossa.yaml');
|
|
23
|
+
console.log(' ossa export --to cursor agent.ossa.yaml');
|
|
24
|
+
} catch (error) {
|
|
25
|
+
process.exit(1);
|
|
26
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* OSSA Validate All
|
|
5
|
+
* Validates all OSSA manifests in examples directory
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
#!/usr/bin/env node
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* OSSA Validate All
|
|
12
|
+
* Validates all OSSA manifests in examples directory
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { execSync } from 'child_process';
|
|
16
|
+
import { glob } from 'glob';
|
|
17
|
+
import { resolve, dirname } from 'path';
|
|
18
|
+
import { fileURLToPath } from 'url';
|
|
19
|
+
|
|
20
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
21
|
+
const __dirname = dirname(__filename);
|
|
22
|
+
const root = resolve(__dirname, '..');
|
|
23
|
+
|
|
24
|
+
async function main() {
|
|
25
|
+
const examples = await glob('examples/**/*.ossa.{yaml,yml}', { cwd: root });
|
|
26
|
+
|
|
27
|
+
if (examples.length === 0) {
|
|
28
|
+
console.log('No OSSA manifests found in examples/');
|
|
29
|
+
process.exit(0);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
console.log(`Found ${examples.length} OSSA manifests to validate\n`);
|
|
33
|
+
|
|
34
|
+
let passed = 0;
|
|
35
|
+
let failed = 0;
|
|
36
|
+
|
|
37
|
+
for (const file of examples) {
|
|
38
|
+
try {
|
|
39
|
+
execSync(`node bin/ossa validate ${file}`, {
|
|
40
|
+
cwd: root,
|
|
41
|
+
stdio: 'inherit'
|
|
42
|
+
});
|
|
43
|
+
passed++;
|
|
44
|
+
} catch (error) {
|
|
45
|
+
failed++;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
console.log(`\nā
Passed: ${passed}`);
|
|
50
|
+
console.log(`ā Failed: ${failed}`);
|
|
51
|
+
process.exit(failed > 0 ? 1 : 0);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
main();
|
|
55
|
+
|
package/bin/ossa-version
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* OSSA Version Checker
|
|
5
|
+
* Shows current OSSA CLI version and schema version
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { readFileSync } from 'fs';
|
|
9
|
+
import { resolve, dirname } from 'path';
|
|
10
|
+
import { fileURLToPath } from 'url';
|
|
11
|
+
|
|
12
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
13
|
+
const __dirname = dirname(__filename);
|
|
14
|
+
|
|
15
|
+
try {
|
|
16
|
+
const pkg = JSON.parse(readFileSync(resolve(__dirname, '../package.json'), 'utf-8'));
|
|
17
|
+
console.log(`OSSA CLI: ${pkg.version}`);
|
|
18
|
+
console.log(`Schema: ${pkg.version}`);
|
|
19
|
+
} catch (error) {
|
|
20
|
+
console.error('Failed to read version');
|
|
21
|
+
process.exit(1);
|
|
22
|
+
}
|
|
23
|
+
|