@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,330 +0,0 @@
|
|
|
1
|
-
openapi: 3.1.0
|
|
2
|
-
info:
|
|
3
|
-
title: GitLab CI/CD Orchestrator API
|
|
4
|
-
version: 1.0.0
|
|
5
|
-
description: |
|
|
6
|
-
**Multi-Project CI/CD Orchestration**
|
|
7
|
-
|
|
8
|
-
Orchestrates GitLab CI/CD across all LLM platform projects:
|
|
9
|
-
- Triggers pipelines for agent deployment
|
|
10
|
-
- Manages GitLab package publishing (npm, PyPI)
|
|
11
|
-
- Coordinates multi-repo workflows
|
|
12
|
-
- Tracks deployment status
|
|
13
|
-
|
|
14
|
-
**No GitHub. Only GitLab.**
|
|
15
|
-
|
|
16
|
-
servers:
|
|
17
|
-
- url: https://ci-orchestrator.agents.orb.local/api/v1
|
|
18
|
-
description: Production
|
|
19
|
-
|
|
20
|
-
security:
|
|
21
|
-
- GitLabToken: []
|
|
22
|
-
|
|
23
|
-
tags:
|
|
24
|
-
- name: pipelines
|
|
25
|
-
description: Pipeline orchestration
|
|
26
|
-
- name: packages
|
|
27
|
-
description: GitLab package management
|
|
28
|
-
- name: deployments
|
|
29
|
-
description: Multi-project deployments
|
|
30
|
-
|
|
31
|
-
paths:
|
|
32
|
-
/pipelines/trigger:
|
|
33
|
-
post:
|
|
34
|
-
tags: [pipelines]
|
|
35
|
-
summary: Trigger GitLab pipeline
|
|
36
|
-
operationId: triggerPipeline
|
|
37
|
-
requestBody:
|
|
38
|
-
required: true
|
|
39
|
-
content:
|
|
40
|
-
application/json:
|
|
41
|
-
schema:
|
|
42
|
-
type: object
|
|
43
|
-
required:
|
|
44
|
-
- project
|
|
45
|
-
- ref
|
|
46
|
-
properties:
|
|
47
|
-
project:
|
|
48
|
-
type: string
|
|
49
|
-
description: GitLab project path
|
|
50
|
-
example: "llm/npm/agent-chat"
|
|
51
|
-
ref:
|
|
52
|
-
type: string
|
|
53
|
-
description: Branch or tag
|
|
54
|
-
example: "development"
|
|
55
|
-
variables:
|
|
56
|
-
type: object
|
|
57
|
-
additionalProperties:
|
|
58
|
-
type: string
|
|
59
|
-
example:
|
|
60
|
-
DEPLOY_ENV: "staging"
|
|
61
|
-
AGENT_ID: "agent-chat"
|
|
62
|
-
responses:
|
|
63
|
-
'202':
|
|
64
|
-
description: Pipeline triggered
|
|
65
|
-
content:
|
|
66
|
-
application/json:
|
|
67
|
-
schema:
|
|
68
|
-
type: object
|
|
69
|
-
properties:
|
|
70
|
-
pipeline_id:
|
|
71
|
-
type: integer
|
|
72
|
-
web_url:
|
|
73
|
-
type: string
|
|
74
|
-
format: uri
|
|
75
|
-
status:
|
|
76
|
-
type: string
|
|
77
|
-
|
|
78
|
-
/pipelines/multi-trigger:
|
|
79
|
-
post:
|
|
80
|
-
tags: [pipelines]
|
|
81
|
-
summary: Trigger pipelines for multiple projects
|
|
82
|
-
description: |
|
|
83
|
-
Coordinate deployment across multiple projects.
|
|
84
|
-
Example: Deploy all agents (chat, studio, brain, mesh, etc.)
|
|
85
|
-
operationId: multiTriggerPipelines
|
|
86
|
-
requestBody:
|
|
87
|
-
required: true
|
|
88
|
-
content:
|
|
89
|
-
application/json:
|
|
90
|
-
schema:
|
|
91
|
-
type: object
|
|
92
|
-
required:
|
|
93
|
-
- projects
|
|
94
|
-
properties:
|
|
95
|
-
projects:
|
|
96
|
-
type: array
|
|
97
|
-
items:
|
|
98
|
-
type: object
|
|
99
|
-
required:
|
|
100
|
-
- project
|
|
101
|
-
- ref
|
|
102
|
-
properties:
|
|
103
|
-
project:
|
|
104
|
-
type: string
|
|
105
|
-
ref:
|
|
106
|
-
type: string
|
|
107
|
-
variables:
|
|
108
|
-
type: object
|
|
109
|
-
strategy:
|
|
110
|
-
type: string
|
|
111
|
-
enum: [parallel, sequential]
|
|
112
|
-
default: parallel
|
|
113
|
-
responses:
|
|
114
|
-
'202':
|
|
115
|
-
description: Pipelines triggered
|
|
116
|
-
content:
|
|
117
|
-
application/json:
|
|
118
|
-
schema:
|
|
119
|
-
type: object
|
|
120
|
-
properties:
|
|
121
|
-
job_id:
|
|
122
|
-
type: string
|
|
123
|
-
pipelines:
|
|
124
|
-
type: array
|
|
125
|
-
items:
|
|
126
|
-
type: object
|
|
127
|
-
properties:
|
|
128
|
-
project:
|
|
129
|
-
type: string
|
|
130
|
-
pipeline_id:
|
|
131
|
-
type: integer
|
|
132
|
-
web_url:
|
|
133
|
-
type: string
|
|
134
|
-
|
|
135
|
-
/packages/publish:
|
|
136
|
-
post:
|
|
137
|
-
tags: [packages]
|
|
138
|
-
summary: Publish to GitLab package registry
|
|
139
|
-
description: Publish npm or PyPI package to gitlab.bluefly.io
|
|
140
|
-
operationId: publishPackage
|
|
141
|
-
requestBody:
|
|
142
|
-
required: true
|
|
143
|
-
content:
|
|
144
|
-
application/json:
|
|
145
|
-
schema:
|
|
146
|
-
type: object
|
|
147
|
-
required:
|
|
148
|
-
- project
|
|
149
|
-
- package_type
|
|
150
|
-
- version
|
|
151
|
-
properties:
|
|
152
|
-
project:
|
|
153
|
-
type: string
|
|
154
|
-
example: "llm/npm/agent-chat"
|
|
155
|
-
package_type:
|
|
156
|
-
type: string
|
|
157
|
-
enum: [npm, pypi, generic]
|
|
158
|
-
version:
|
|
159
|
-
type: string
|
|
160
|
-
example: "0.1.0"
|
|
161
|
-
build_ref:
|
|
162
|
-
type: string
|
|
163
|
-
description: Git ref to build from
|
|
164
|
-
responses:
|
|
165
|
-
'202':
|
|
166
|
-
description: Package build started
|
|
167
|
-
content:
|
|
168
|
-
application/json:
|
|
169
|
-
schema:
|
|
170
|
-
type: object
|
|
171
|
-
properties:
|
|
172
|
-
job_id:
|
|
173
|
-
type: string
|
|
174
|
-
pipeline_url:
|
|
175
|
-
type: string
|
|
176
|
-
|
|
177
|
-
/packages/list:
|
|
178
|
-
get:
|
|
179
|
-
tags: [packages]
|
|
180
|
-
summary: List GitLab packages
|
|
181
|
-
description: Query gitlab.bluefly.io package registry
|
|
182
|
-
operationId: listPackages
|
|
183
|
-
parameters:
|
|
184
|
-
- name: scope
|
|
185
|
-
in: query
|
|
186
|
-
schema:
|
|
187
|
-
type: string
|
|
188
|
-
example: "@llm"
|
|
189
|
-
- name: package_type
|
|
190
|
-
in: query
|
|
191
|
-
schema:
|
|
192
|
-
type: string
|
|
193
|
-
enum: [npm, pypi, generic]
|
|
194
|
-
responses:
|
|
195
|
-
'200':
|
|
196
|
-
description: Package list
|
|
197
|
-
content:
|
|
198
|
-
application/json:
|
|
199
|
-
schema:
|
|
200
|
-
type: array
|
|
201
|
-
items:
|
|
202
|
-
type: object
|
|
203
|
-
properties:
|
|
204
|
-
name:
|
|
205
|
-
type: string
|
|
206
|
-
version:
|
|
207
|
-
type: string
|
|
208
|
-
package_type:
|
|
209
|
-
type: string
|
|
210
|
-
created_at:
|
|
211
|
-
type: string
|
|
212
|
-
package_url:
|
|
213
|
-
type: string
|
|
214
|
-
|
|
215
|
-
/deployments/orchestrate:
|
|
216
|
-
post:
|
|
217
|
-
tags: [deployments]
|
|
218
|
-
summary: Orchestrate multi-project deployment
|
|
219
|
-
description: |
|
|
220
|
-
Deploy entire LLM platform stack:
|
|
221
|
-
1. Deploy Drupal platform
|
|
222
|
-
2. Deploy all agents (chat, studio, brain, etc.)
|
|
223
|
-
3. Deploy workflows (langflow, workflow-engine)
|
|
224
|
-
4. Configure networking and ingress
|
|
225
|
-
5. Verify health and start monitoring
|
|
226
|
-
operationId: orchestrateDeployment
|
|
227
|
-
requestBody:
|
|
228
|
-
required: true
|
|
229
|
-
content:
|
|
230
|
-
application/json:
|
|
231
|
-
schema:
|
|
232
|
-
type: object
|
|
233
|
-
required:
|
|
234
|
-
- environment
|
|
235
|
-
properties:
|
|
236
|
-
environment:
|
|
237
|
-
type: string
|
|
238
|
-
enum: [staging, production]
|
|
239
|
-
projects:
|
|
240
|
-
type: array
|
|
241
|
-
items:
|
|
242
|
-
type: string
|
|
243
|
-
description: Specific projects (or all if empty)
|
|
244
|
-
helm_values:
|
|
245
|
-
type: object
|
|
246
|
-
description: Global Helm overrides
|
|
247
|
-
responses:
|
|
248
|
-
'202':
|
|
249
|
-
description: Deployment orchestration started
|
|
250
|
-
content:
|
|
251
|
-
application/json:
|
|
252
|
-
schema:
|
|
253
|
-
type: object
|
|
254
|
-
properties:
|
|
255
|
-
orchestration_id:
|
|
256
|
-
type: string
|
|
257
|
-
status_url:
|
|
258
|
-
type: string
|
|
259
|
-
estimated_duration:
|
|
260
|
-
type: string
|
|
261
|
-
projects:
|
|
262
|
-
type: array
|
|
263
|
-
items:
|
|
264
|
-
type: object
|
|
265
|
-
|
|
266
|
-
components:
|
|
267
|
-
securitySchemes:
|
|
268
|
-
OAuth2:
|
|
269
|
-
type: oauth2
|
|
270
|
-
flows:
|
|
271
|
-
clientCredentials:
|
|
272
|
-
tokenUrl: https://gitlab.bluefly.io/oauth/token
|
|
273
|
-
scopes:
|
|
274
|
-
api: Full API access
|
|
275
|
-
|
|
276
|
-
GitLabToken:
|
|
277
|
-
type: http
|
|
278
|
-
scheme: bearer
|
|
279
|
-
bearerFormat: GitLab Personal Access Token
|
|
280
|
-
|
|
281
|
-
ApiKeyAuth:
|
|
282
|
-
type: apiKey
|
|
283
|
-
in: header
|
|
284
|
-
name: X-Drupal-API-Key
|
|
285
|
-
|
|
286
|
-
schemas:
|
|
287
|
-
ContentCreateRequest:
|
|
288
|
-
type: object
|
|
289
|
-
required:
|
|
290
|
-
- type
|
|
291
|
-
- title
|
|
292
|
-
properties:
|
|
293
|
-
type:
|
|
294
|
-
type: string
|
|
295
|
-
title:
|
|
296
|
-
type: string
|
|
297
|
-
body:
|
|
298
|
-
type: object
|
|
299
|
-
fields:
|
|
300
|
-
type: object
|
|
301
|
-
agent_context:
|
|
302
|
-
type: object
|
|
303
|
-
properties:
|
|
304
|
-
agent_id:
|
|
305
|
-
type: string
|
|
306
|
-
session_id:
|
|
307
|
-
type: string
|
|
308
|
-
task_id:
|
|
309
|
-
type: string
|
|
310
|
-
|
|
311
|
-
ContentResponse:
|
|
312
|
-
type: object
|
|
313
|
-
properties:
|
|
314
|
-
nid:
|
|
315
|
-
type: integer
|
|
316
|
-
uuid:
|
|
317
|
-
type: string
|
|
318
|
-
type:
|
|
319
|
-
type: string
|
|
320
|
-
title:
|
|
321
|
-
type: string
|
|
322
|
-
url:
|
|
323
|
-
type: string
|
|
324
|
-
api_url:
|
|
325
|
-
type: string
|
|
326
|
-
created:
|
|
327
|
-
type: string
|
|
328
|
-
changed:
|
|
329
|
-
type: string
|
|
330
|
-
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"swarm": {
|
|
3
|
-
"name": "OSSA Website Build Team",
|
|
4
|
-
"description": "Parallel team to build out comprehensive OSSA website with diagrams, docs, and examples",
|
|
5
|
-
"tasks": [
|
|
6
|
-
{
|
|
7
|
-
"id": "architecture-diagrams",
|
|
8
|
-
"name": "Architecture & Flow Diagrams Agent",
|
|
9
|
-
"description": "Create Mermaid diagrams for agent execution flow, OSSA stack, multi-agent systems, and tool integration. Add to /website/content/docs/architecture/ with explanations.",
|
|
10
|
-
"agent_type": "documentation",
|
|
11
|
-
"priority": "critical",
|
|
12
|
-
"dependencies": [],
|
|
13
|
-
"deliverables": [
|
|
14
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/architecture/overview.md",
|
|
15
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/architecture/execution-flow.md",
|
|
16
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/architecture/stack-integration.md",
|
|
17
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/architecture/multi-agent-systems.md"
|
|
18
|
-
],
|
|
19
|
-
"context": "User wants data flow maps similar to OpenAPI.org. Create Mermaid sequence diagrams and architecture visuals showing how OSSA agents execute, where OSSA fits in the stack, and how multi-agent systems communicate."
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"id": "gitlab-wiki-sync",
|
|
23
|
-
"name": "GitLab Wiki Integration Agent",
|
|
24
|
-
"description": "Fetch all 23+ GitLab Wiki pages via API and integrate into /website/content/docs/. Pull migration guides, OpenAPI extensions, AIFlow integration, contributing, changelog, quick reference.",
|
|
25
|
-
"agent_type": "integration",
|
|
26
|
-
"priority": "high",
|
|
27
|
-
"dependencies": [],
|
|
28
|
-
"deliverables": [
|
|
29
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/migration-guides/",
|
|
30
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/openapi-extensions/",
|
|
31
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/integrations/aiflow.md",
|
|
32
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/contributing.md",
|
|
33
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/changelog.md",
|
|
34
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/quick-reference.md"
|
|
35
|
-
],
|
|
36
|
-
"context": "Use GitLab API: GITLAB_HOST=gitlab.bluefly.io glab api projects/llm%2Fopenstandardagents/wikis to fetch all pages. Convert to website markdown format and organize in proper directory structure."
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"id": "schema-reference",
|
|
40
|
-
"name": "Schema Reference Documentation Agent",
|
|
41
|
-
"description": "Create OpenAPI-style schema reference docs with field tables (Field Name | Type | Required | Description) for all OSSA objects: OSSAManifest, Agent, Capabilities, LLM, Tools, Observability, Compliance.",
|
|
42
|
-
"agent_type": "documentation",
|
|
43
|
-
"priority": "high",
|
|
44
|
-
"dependencies": [],
|
|
45
|
-
"deliverables": [
|
|
46
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/schema-reference/index.md",
|
|
47
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/schema-reference/ossa-manifest.md",
|
|
48
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/schema-reference/agent-object.md",
|
|
49
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/schema-reference/capabilities-object.md",
|
|
50
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/schema-reference/llm-object.md",
|
|
51
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/schema-reference/tools-object.md"
|
|
52
|
-
],
|
|
53
|
-
"context": "Parse /Users/flux423/Sites/LLM/OSSA/schema/ossa-0.2.3.schema.json and generate markdown docs with tables like OpenAPI.org spec. Include YAML examples for each object."
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"id": "use-case-gallery",
|
|
57
|
-
"name": "Use Case & Examples Agent",
|
|
58
|
-
"description": "Create real-world use case deep dives with code examples in TypeScript/Python. Cover: Enterprise compliance agent, CI/CD code review agent, customer support agent, research multi-agent system.",
|
|
59
|
-
"agent_type": "documentation",
|
|
60
|
-
"priority": "medium",
|
|
61
|
-
"dependencies": [],
|
|
62
|
-
"deliverables": [
|
|
63
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/use-cases/enterprise-compliance.md",
|
|
64
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/use-cases/cicd-code-review.md",
|
|
65
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/use-cases/customer-support.md",
|
|
66
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/use-cases/research-multi-agent.md"
|
|
67
|
-
],
|
|
68
|
-
"context": "Each use case needs: problem statement, OSSA manifest YAML, implementation code in TypeScript/Python, architecture diagram, and deployment instructions."
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"id": "ecosystem-page",
|
|
72
|
-
"name": "Ecosystem & Integrations Agent",
|
|
73
|
-
"description": "Create ecosystem page with framework support matrix (LangChain, CrewAI, kAgent, Anthropic MCP), runtime compatibility table, and integration guides.",
|
|
74
|
-
"agent_type": "documentation",
|
|
75
|
-
"priority": "medium",
|
|
76
|
-
"dependencies": ["gitlab-wiki-sync"],
|
|
77
|
-
"deliverables": [
|
|
78
|
-
"/Users/flux423/Sites/LLM/OSSA/website/app/ecosystem/page.tsx",
|
|
79
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/ecosystem/overview.md",
|
|
80
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/ecosystem/framework-support.md"
|
|
81
|
-
],
|
|
82
|
-
"context": "Create comparison tables showing OSSA support across frameworks. Include status (Supported/Beta/Planned), migration guide links, and example code links."
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"id": "openapi-extensions",
|
|
86
|
-
"name": "OpenAPI Extensions Page Agent",
|
|
87
|
-
"description": "Integrate existing /docs/openapi-extensions.md (23KB) into website. Format with tables showing extension fields, types, and descriptions like OpenAPI spec.",
|
|
88
|
-
"agent_type": "integration",
|
|
89
|
-
"priority": "high",
|
|
90
|
-
"dependencies": [],
|
|
91
|
-
"deliverables": [
|
|
92
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/openapi-extensions/index.md",
|
|
93
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/openapi-extensions/root-extensions.md",
|
|
94
|
-
"/Users/flux423/Sites/LLM/OSSA/website/content/docs/openapi-extensions/operation-extensions.md"
|
|
95
|
-
],
|
|
96
|
-
"context": "Source file exists at /Users/flux423/Sites/LLM/OSSA/docs/openapi-extensions.md. Convert to website format with proper navigation structure."
|
|
97
|
-
}
|
|
98
|
-
]
|
|
99
|
-
},
|
|
100
|
-
"execution": {
|
|
101
|
-
"mode": "parallel",
|
|
102
|
-
"max_concurrent": 6,
|
|
103
|
-
"runtime": "local"
|
|
104
|
-
}
|
|
105
|
-
}
|
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
# Changelog - OSSA v0.2.5-dev
|
|
2
|
-
|
|
3
|
-
All notable changes to the OSSA specification are documented in this file.
|
|
4
|
-
|
|
5
|
-
## [0.2.5-dev] - 2024-11-18
|
|
6
|
-
|
|
7
|
-
### Status: DEVELOPMENT/UNSTABLE
|
|
8
|
-
|
|
9
|
-
This is a development version. The API may change without notice.
|
|
10
|
-
|
|
11
|
-
### Added
|
|
12
|
-
|
|
13
|
-
#### New Resource Type: AgentGraph
|
|
14
|
-
- Introduced `AgentGraph` kind for multi-agent composition
|
|
15
|
-
- Support for defining complex agent workflows and orchestration patterns
|
|
16
|
-
- Shared state management across agent graphs
|
|
17
|
-
|
|
18
|
-
#### AgentGraphSpec Properties
|
|
19
|
-
- `agents`: Array of agent references with role assignments
|
|
20
|
-
- `edges`: Graph connections with conditions and priorities
|
|
21
|
-
- `process`: Execution pattern (sequential, parallel, hierarchical, conditional, loop)
|
|
22
|
-
- `entry_point`: Starting agent for graph execution
|
|
23
|
-
- `exit_points`: Agents that can terminate execution
|
|
24
|
-
- `state`: Shared state configuration with persistence options
|
|
25
|
-
|
|
26
|
-
#### Execution Patterns
|
|
27
|
-
- **sequential**: Agents execute one after another
|
|
28
|
-
- **parallel**: Agents execute simultaneously
|
|
29
|
-
- **hierarchical**: Manager delegates to workers (CrewAI style)
|
|
30
|
-
- **conditional**: Branching based on conditions
|
|
31
|
-
- **loop**: Iterative execution until termination
|
|
32
|
-
|
|
33
|
-
#### New Framework Extensions
|
|
34
|
-
- `google_adk`: Google Agent Development Kit integration
|
|
35
|
-
- Support for SequentialAgent, ParallelAgent, LoopAgent
|
|
36
|
-
- Gemini model configuration
|
|
37
|
-
- Session service options
|
|
38
|
-
- `microsoft_af`: Microsoft AutoGen 0.4+ / Magentic-One
|
|
39
|
-
- Team types: round_robin, selector, swarm, magentic_one
|
|
40
|
-
- Agent types: assistant, orchestrator, web_surfer, coder
|
|
41
|
-
- Termination conditions
|
|
42
|
-
- `metagpt`: MetaGPT software development teams
|
|
43
|
-
- Role types: product_manager, architect, engineer, qa_engineer
|
|
44
|
-
- SOP (Standard Operating Procedure) configuration
|
|
45
|
-
- Action definitions
|
|
46
|
-
|
|
47
|
-
#### Enhanced Existing Extensions
|
|
48
|
-
- `crewai`: Added `crew` property for Process configuration
|
|
49
|
-
- Process type (sequential/hierarchical)
|
|
50
|
-
- Manager LLM configuration
|
|
51
|
-
- Verbose mode
|
|
52
|
-
|
|
53
|
-
### Changed
|
|
54
|
-
|
|
55
|
-
#### Schema Updates
|
|
56
|
-
- `kind` enum now includes: `Agent`, `AgentGraph`
|
|
57
|
-
- `spec` uses `oneOf` to support AgentSpec or AgentGraphSpec
|
|
58
|
-
- `apiVersion` pattern updated to support v0.2.5-dev
|
|
59
|
-
|
|
60
|
-
#### API Version Pattern
|
|
61
|
-
```regex
|
|
62
|
-
^ossa/v(0\.2\.[2-5]|1)(\.[0-9]+)?(-[a-zA-Z0-9]+)?$
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
### Framework Mapping Examples
|
|
66
|
-
|
|
67
|
-
#### CrewAI Crews
|
|
68
|
-
```yaml
|
|
69
|
-
apiVersion: ossa/v0.2.5-dev
|
|
70
|
-
kind: AgentGraph
|
|
71
|
-
metadata:
|
|
72
|
-
name: research-crew
|
|
73
|
-
spec:
|
|
74
|
-
process: hierarchical
|
|
75
|
-
agents:
|
|
76
|
-
- ref: researcher
|
|
77
|
-
role: worker
|
|
78
|
-
- ref: writer
|
|
79
|
-
role: worker
|
|
80
|
-
extensions:
|
|
81
|
-
crewai:
|
|
82
|
-
enabled: true
|
|
83
|
-
crew:
|
|
84
|
-
process: hierarchical
|
|
85
|
-
manager_llm: gpt-4
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
#### Google ADK Sequential
|
|
89
|
-
```yaml
|
|
90
|
-
apiVersion: ossa/v0.2.5-dev
|
|
91
|
-
kind: AgentGraph
|
|
92
|
-
metadata:
|
|
93
|
-
name: processing-pipeline
|
|
94
|
-
spec:
|
|
95
|
-
process: sequential
|
|
96
|
-
agents:
|
|
97
|
-
- ref: intake
|
|
98
|
-
- ref: process
|
|
99
|
-
- ref: output
|
|
100
|
-
extensions:
|
|
101
|
-
google_adk:
|
|
102
|
-
enabled: true
|
|
103
|
-
agent_type: sequential_agent
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
#### Microsoft AutoGen Team
|
|
107
|
-
```yaml
|
|
108
|
-
apiVersion: ossa/v0.2.5-dev
|
|
109
|
-
kind: AgentGraph
|
|
110
|
-
metadata:
|
|
111
|
-
name: dev-team
|
|
112
|
-
spec:
|
|
113
|
-
process: conditional
|
|
114
|
-
agents:
|
|
115
|
-
- ref: orchestrator
|
|
116
|
-
- ref: coder
|
|
117
|
-
- ref: web-surfer
|
|
118
|
-
extensions:
|
|
119
|
-
microsoft_af:
|
|
120
|
-
enabled: true
|
|
121
|
-
framework: magentic_one
|
|
122
|
-
team_type: magentic_one
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
#### MetaGPT SOP
|
|
126
|
-
```yaml
|
|
127
|
-
apiVersion: ossa/v0.2.5-dev
|
|
128
|
-
kind: AgentGraph
|
|
129
|
-
metadata:
|
|
130
|
-
name: software-team
|
|
131
|
-
spec:
|
|
132
|
-
process: hierarchical
|
|
133
|
-
agents:
|
|
134
|
-
- ref: product-manager
|
|
135
|
-
- ref: architect
|
|
136
|
-
- ref: engineer
|
|
137
|
-
extensions:
|
|
138
|
-
metagpt:
|
|
139
|
-
enabled: true
|
|
140
|
-
sop:
|
|
141
|
-
name: software_development
|
|
142
|
-
phases:
|
|
143
|
-
- requirements
|
|
144
|
-
- design
|
|
145
|
-
- implementation
|
|
146
|
-
- testing
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
### Migration Notes
|
|
150
|
-
|
|
151
|
-
See `migrations/v0.2.4-to-v0.2.5.md` for detailed migration guidance.
|
|
152
|
-
|
|
153
|
-
#### Quick Migration
|
|
154
|
-
1. Update `apiVersion` to `ossa/v0.2.5-dev`
|
|
155
|
-
2. Existing Agent manifests remain unchanged
|
|
156
|
-
3. New AgentGraph manifests use `kind: AgentGraph`
|
|
157
|
-
|
|
158
|
-
### Known Limitations
|
|
159
|
-
- Graph validation is not fully implemented
|
|
160
|
-
- Some framework mappings may require manual configuration
|
|
161
|
-
- State persistence options are runtime-dependent
|
|
162
|
-
|
|
163
|
-
### Roadmap
|
|
164
|
-
- v0.2.5: Stabilize AgentGraph API based on feedback
|
|
165
|
-
- v0.2.6: Add resource dependencies and imports
|
|
166
|
-
- v0.3.0: Multi-file manifest support
|
|
167
|
-
- v1.0.0: Stable release
|
|
168
|
-
|
|
169
|
-
### Feedback
|
|
170
|
-
Report issues and feedback at:
|
|
171
|
-
https://gitlab.bluefly.io/llm/ossa/-/issues
|