@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
|
@@ -2,6 +2,9 @@ openapi: 3.1.0
|
|
|
2
2
|
info:
|
|
3
3
|
title: OSSA Agent Registry API
|
|
4
4
|
version: 0.1.9
|
|
5
|
+
license:
|
|
6
|
+
name: MIT
|
|
7
|
+
url: https://opensource.org/licenses/MIT
|
|
5
8
|
description: |
|
|
6
9
|
**REVOLUTIONARY** OSSA Agent Registry - First-of-its-kind for AI agents
|
|
7
10
|
|
|
@@ -25,8 +28,9 @@ info:
|
|
|
25
28
|
servers:
|
|
26
29
|
- url: https://registry.openstandardagents.org/api/v1
|
|
27
30
|
description: Production registry
|
|
28
|
-
|
|
29
|
-
|
|
31
|
+
# Local development server (commented to avoid lint warning)
|
|
32
|
+
# - url: http://localhost:8080/api/v1
|
|
33
|
+
# description: Local development
|
|
30
34
|
|
|
31
35
|
paths:
|
|
32
36
|
/agents:
|
|
@@ -34,6 +38,8 @@ paths:
|
|
|
34
38
|
operationId: listAgents
|
|
35
39
|
summary: List all registered agents
|
|
36
40
|
tags: [Agents]
|
|
41
|
+
security:
|
|
42
|
+
- ApiKeyAuth: []
|
|
37
43
|
parameters:
|
|
38
44
|
- name: role
|
|
39
45
|
in: query
|
|
@@ -74,6 +80,10 @@ paths:
|
|
|
74
80
|
$ref: '#/components/schemas/Agent'
|
|
75
81
|
pagination:
|
|
76
82
|
$ref: '#/components/schemas/Pagination'
|
|
83
|
+
'400':
|
|
84
|
+
$ref: '#/components/responses/BadRequest'
|
|
85
|
+
'401':
|
|
86
|
+
$ref: '#/components/responses/Unauthorized'
|
|
77
87
|
|
|
78
88
|
post:
|
|
79
89
|
operationId: registerAgent
|
|
@@ -104,6 +114,8 @@ paths:
|
|
|
104
114
|
operationId: getAgent
|
|
105
115
|
summary: Get agent details
|
|
106
116
|
tags: [Agents]
|
|
117
|
+
security:
|
|
118
|
+
- ApiKeyAuth: []
|
|
107
119
|
parameters:
|
|
108
120
|
- $ref: '#/components/parameters/AgentId'
|
|
109
121
|
responses:
|
|
@@ -159,6 +171,8 @@ paths:
|
|
|
159
171
|
operationId: listAgentVersions
|
|
160
172
|
summary: List agent versions
|
|
161
173
|
tags: [Versions]
|
|
174
|
+
security:
|
|
175
|
+
- ApiKeyAuth: []
|
|
162
176
|
parameters:
|
|
163
177
|
- $ref: '#/components/parameters/AgentId'
|
|
164
178
|
responses:
|
|
@@ -173,6 +187,10 @@ paths:
|
|
|
173
187
|
type: array
|
|
174
188
|
items:
|
|
175
189
|
$ref: '#/components/schemas/AgentVersion'
|
|
190
|
+
'400':
|
|
191
|
+
$ref: '#/components/responses/BadRequest'
|
|
192
|
+
'404':
|
|
193
|
+
$ref: '#/components/responses/NotFound'
|
|
176
194
|
|
|
177
195
|
post:
|
|
178
196
|
operationId: publishVersion
|
|
@@ -195,12 +213,18 @@ paths:
|
|
|
195
213
|
application/json:
|
|
196
214
|
schema:
|
|
197
215
|
$ref: '#/components/schemas/AgentVersion'
|
|
216
|
+
'400':
|
|
217
|
+
$ref: '#/components/responses/BadRequest'
|
|
218
|
+
'404':
|
|
219
|
+
$ref: '#/components/responses/NotFound'
|
|
198
220
|
|
|
199
221
|
/agents/{agentId}/certifications:
|
|
200
222
|
get:
|
|
201
223
|
operationId: listCertifications
|
|
202
224
|
summary: List agent certifications
|
|
203
225
|
tags: [Certifications]
|
|
226
|
+
security:
|
|
227
|
+
- ApiKeyAuth: []
|
|
204
228
|
parameters:
|
|
205
229
|
- $ref: '#/components/parameters/AgentId'
|
|
206
230
|
responses:
|
|
@@ -215,6 +239,45 @@ paths:
|
|
|
215
239
|
type: array
|
|
216
240
|
items:
|
|
217
241
|
$ref: '#/components/schemas/Certification'
|
|
242
|
+
'400':
|
|
243
|
+
$ref: '#/components/responses/BadRequest'
|
|
244
|
+
'404':
|
|
245
|
+
$ref: '#/components/responses/NotFound'
|
|
246
|
+
|
|
247
|
+
post:
|
|
248
|
+
operationId: addCertification
|
|
249
|
+
summary: Add certification
|
|
250
|
+
tags: [Certifications]
|
|
251
|
+
security:
|
|
252
|
+
- ApiKeyAuth: []
|
|
253
|
+
parameters:
|
|
254
|
+
- $ref: '#/components/parameters/AgentId'
|
|
255
|
+
requestBody:
|
|
256
|
+
required: true
|
|
257
|
+
content:
|
|
258
|
+
application/json:
|
|
259
|
+
schema:
|
|
260
|
+
$ref: '#/components/schemas/CertificationRequest'
|
|
261
|
+
responses:
|
|
262
|
+
'201':
|
|
263
|
+
description: Certification added
|
|
264
|
+
content:
|
|
265
|
+
application/json:
|
|
266
|
+
schema:
|
|
267
|
+
$ref: '#/components/schemas/Certification'
|
|
268
|
+
- $ref: '#/components/parameters/AgentId'
|
|
269
|
+
responses:
|
|
270
|
+
'200':
|
|
271
|
+
description: Certifications
|
|
272
|
+
content:
|
|
273
|
+
application/json:
|
|
274
|
+
schema:
|
|
275
|
+
type: object
|
|
276
|
+
properties:
|
|
277
|
+
certifications:
|
|
278
|
+
type: array
|
|
279
|
+
items:
|
|
280
|
+
$ref: '#/components/schemas/Certification'
|
|
218
281
|
|
|
219
282
|
post:
|
|
220
283
|
operationId: addCertification
|
|
@@ -260,12 +323,18 @@ paths:
|
|
|
260
323
|
application/json:
|
|
261
324
|
schema:
|
|
262
325
|
$ref: '#/components/schemas/DeploymentStatus'
|
|
326
|
+
'400':
|
|
327
|
+
$ref: '#/components/responses/BadRequest'
|
|
328
|
+
'404':
|
|
329
|
+
$ref: '#/components/responses/NotFound'
|
|
263
330
|
|
|
264
331
|
/agents/{agentId}/health:
|
|
265
332
|
get:
|
|
266
333
|
operationId: getAgentHealth
|
|
267
334
|
summary: Get agent health metrics
|
|
268
335
|
tags: [Health]
|
|
336
|
+
security:
|
|
337
|
+
- ApiKeyAuth: []
|
|
269
338
|
parameters:
|
|
270
339
|
- $ref: '#/components/parameters/AgentId'
|
|
271
340
|
responses:
|
|
@@ -275,6 +344,10 @@ paths:
|
|
|
275
344
|
application/json:
|
|
276
345
|
schema:
|
|
277
346
|
$ref: '#/components/schemas/HealthMetrics'
|
|
347
|
+
'400':
|
|
348
|
+
$ref: '#/components/responses/BadRequest'
|
|
349
|
+
'404':
|
|
350
|
+
$ref: '#/components/responses/NotFound'
|
|
278
351
|
|
|
279
352
|
/compliance/validate:
|
|
280
353
|
post:
|
package/openapi/{unified-agent-gateway.openapi.yaml → core/unified-agent-gateway.openapi.yaml}
RENAMED
|
@@ -24,7 +24,7 @@ info:
|
|
|
24
24
|
|
|
25
25
|
contact:
|
|
26
26
|
name: LLM Platform Team
|
|
27
|
-
url: https://
|
|
27
|
+
url: https://github.com/blueflyio/openstandardagents
|
|
28
28
|
|
|
29
29
|
license:
|
|
30
30
|
name: MIT
|
|
@@ -401,7 +401,7 @@ paths:
|
|
|
401
401
|
get:
|
|
402
402
|
tags: [gitlab]
|
|
403
403
|
summary: List available packages
|
|
404
|
-
description: Query
|
|
404
|
+
description: Query package registry
|
|
405
405
|
operationId: listGitLabPackages
|
|
406
406
|
parameters:
|
|
407
407
|
- name: scope
|
|
@@ -500,7 +500,7 @@ components:
|
|
|
500
500
|
type: string
|
|
501
501
|
format: uri
|
|
502
502
|
description: URL to OSSA manifest in GitLab
|
|
503
|
-
example: "https://
|
|
503
|
+
example: "https://github.com/blueflyio/openstandardagents/blob/main/examples/getting-started/hello-world-complete.ossa.yaml"
|
|
504
504
|
deployment_target:
|
|
505
505
|
type: string
|
|
506
506
|
enum: [kubernetes, docker, serverless]
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
openapi: 3.1.0
|
|
2
|
+
info:
|
|
3
|
+
title: GitHub Sync API
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
description: API for syncing GitHub PRs to GitLab
|
|
6
|
+
|
|
7
|
+
servers:
|
|
8
|
+
- url: http://localhost:3000
|
|
9
|
+
description: Development
|
|
10
|
+
|
|
11
|
+
paths:
|
|
12
|
+
/sync/pr/{number}:
|
|
13
|
+
post:
|
|
14
|
+
summary: Sync GitHub PR to GitLab
|
|
15
|
+
operationId: syncPR
|
|
16
|
+
tags: [Sync]
|
|
17
|
+
parameters:
|
|
18
|
+
- name: number
|
|
19
|
+
in: path
|
|
20
|
+
required: true
|
|
21
|
+
schema:
|
|
22
|
+
type: integer
|
|
23
|
+
responses:
|
|
24
|
+
'200':
|
|
25
|
+
description: MR created
|
|
26
|
+
content:
|
|
27
|
+
application/json:
|
|
28
|
+
schema:
|
|
29
|
+
$ref: '#/components/schemas/GitLabMR'
|
|
30
|
+
|
|
31
|
+
/sync/batch:
|
|
32
|
+
post:
|
|
33
|
+
summary: Batch sync PRs
|
|
34
|
+
operationId: batchSync
|
|
35
|
+
tags: [Sync]
|
|
36
|
+
requestBody:
|
|
37
|
+
content:
|
|
38
|
+
application/json:
|
|
39
|
+
schema:
|
|
40
|
+
type: object
|
|
41
|
+
properties:
|
|
42
|
+
author:
|
|
43
|
+
type: string
|
|
44
|
+
example: app/dependabot
|
|
45
|
+
responses:
|
|
46
|
+
'200':
|
|
47
|
+
description: Batch MR created
|
|
48
|
+
content:
|
|
49
|
+
application/json:
|
|
50
|
+
schema:
|
|
51
|
+
$ref: '#/components/schemas/GitLabMR'
|
|
52
|
+
|
|
53
|
+
/sync/list:
|
|
54
|
+
get:
|
|
55
|
+
summary: List syncable PRs
|
|
56
|
+
operationId: listPRs
|
|
57
|
+
tags: [Sync]
|
|
58
|
+
parameters:
|
|
59
|
+
- name: author
|
|
60
|
+
in: query
|
|
61
|
+
schema:
|
|
62
|
+
type: string
|
|
63
|
+
responses:
|
|
64
|
+
'200':
|
|
65
|
+
description: List of PRs
|
|
66
|
+
content:
|
|
67
|
+
application/json:
|
|
68
|
+
schema:
|
|
69
|
+
type: array
|
|
70
|
+
items:
|
|
71
|
+
$ref: '#/components/schemas/GitHubPR'
|
|
72
|
+
|
|
73
|
+
components:
|
|
74
|
+
schemas:
|
|
75
|
+
GitHubPR:
|
|
76
|
+
type: object
|
|
77
|
+
required: [number, title, author, state]
|
|
78
|
+
properties:
|
|
79
|
+
number:
|
|
80
|
+
type: integer
|
|
81
|
+
title:
|
|
82
|
+
type: string
|
|
83
|
+
body:
|
|
84
|
+
type: string
|
|
85
|
+
nullable: true
|
|
86
|
+
author:
|
|
87
|
+
type: object
|
|
88
|
+
properties:
|
|
89
|
+
login:
|
|
90
|
+
type: string
|
|
91
|
+
state:
|
|
92
|
+
type: string
|
|
93
|
+
enum: [open, closed]
|
|
94
|
+
|
|
95
|
+
GitLabMR:
|
|
96
|
+
type: object
|
|
97
|
+
required: [iid, title, source_branch, target_branch, state, web_url]
|
|
98
|
+
properties:
|
|
99
|
+
iid:
|
|
100
|
+
type: integer
|
|
101
|
+
title:
|
|
102
|
+
type: string
|
|
103
|
+
description:
|
|
104
|
+
type: string
|
|
105
|
+
nullable: true
|
|
106
|
+
source_branch:
|
|
107
|
+
type: string
|
|
108
|
+
target_branch:
|
|
109
|
+
type: string
|
|
110
|
+
state:
|
|
111
|
+
type: string
|
|
112
|
+
enum: [opened, closed, merged]
|
|
113
|
+
web_url:
|
|
114
|
+
type: string
|
|
115
|
+
format: uri
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
openapi: 3.1.0
|
|
2
|
+
info:
|
|
3
|
+
title: AIFlow Bridge Agent API
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
description: |
|
|
6
|
+
OSSA agent with AIFlow-Agent bridge for social crypto analysis.
|
|
7
|
+
Integrates with Twitter, Telegram, and Discord for autonomous social media presence.
|
|
8
|
+
|
|
9
|
+
x-ossa-metadata:
|
|
10
|
+
version: 0.2.5-RC
|
|
11
|
+
compliance:
|
|
12
|
+
level: intermediate
|
|
13
|
+
frameworks:
|
|
14
|
+
- OSSA
|
|
15
|
+
- OpenAPI 3.1
|
|
16
|
+
|
|
17
|
+
x-ossa:
|
|
18
|
+
version: 0.2.5-RC
|
|
19
|
+
agent:
|
|
20
|
+
id: crypto-analyst-agent
|
|
21
|
+
type: chat
|
|
22
|
+
compliance:
|
|
23
|
+
standards:
|
|
24
|
+
- openapi-first
|
|
25
|
+
validated: true
|
|
26
|
+
validatedAt: "2024-01-15T10:00:00Z"
|
|
27
|
+
|
|
28
|
+
servers:
|
|
29
|
+
- url: https://crypto-analyst.platform.com/api/v1
|
|
30
|
+
description: Production
|
|
31
|
+
|
|
32
|
+
tags:
|
|
33
|
+
- name: market
|
|
34
|
+
description: Market analysis operations
|
|
35
|
+
- name: social
|
|
36
|
+
description: Social media operations
|
|
37
|
+
|
|
38
|
+
paths:
|
|
39
|
+
/market/analyze:
|
|
40
|
+
post:
|
|
41
|
+
summary: Analyze cryptocurrency market
|
|
42
|
+
description: Analyze cryptocurrency market trends using on-chain data and LLM reasoning
|
|
43
|
+
operationId: analyzeMarket
|
|
44
|
+
tags: [market]
|
|
45
|
+
x-ossa-capability: analyze_market
|
|
46
|
+
x-ossa-autonomy:
|
|
47
|
+
level: autonomous
|
|
48
|
+
approval_required: false
|
|
49
|
+
x-ossa-llm:
|
|
50
|
+
provider: openai
|
|
51
|
+
model: gpt-4
|
|
52
|
+
temperature: 0.7
|
|
53
|
+
requestBody:
|
|
54
|
+
required: true
|
|
55
|
+
content:
|
|
56
|
+
application/json:
|
|
57
|
+
schema:
|
|
58
|
+
type: object
|
|
59
|
+
required: [token]
|
|
60
|
+
properties:
|
|
61
|
+
token:
|
|
62
|
+
type: string
|
|
63
|
+
description: Token symbol (e.g., BNB, CAKE)
|
|
64
|
+
timeframe:
|
|
65
|
+
type: string
|
|
66
|
+
enum: [1h, 24h, 7d, 30d]
|
|
67
|
+
default: 24h
|
|
68
|
+
responses:
|
|
69
|
+
'200':
|
|
70
|
+
description: Market analysis completed
|
|
71
|
+
content:
|
|
72
|
+
application/json:
|
|
73
|
+
schema:
|
|
74
|
+
type: object
|
|
75
|
+
properties:
|
|
76
|
+
token:
|
|
77
|
+
type: string
|
|
78
|
+
sentiment:
|
|
79
|
+
type: string
|
|
80
|
+
enum: [bullish, bearish, neutral]
|
|
81
|
+
analysis:
|
|
82
|
+
type: string
|
|
83
|
+
metrics:
|
|
84
|
+
type: object
|
|
85
|
+
properties:
|
|
86
|
+
price_change:
|
|
87
|
+
type: number
|
|
88
|
+
volume:
|
|
89
|
+
type: number
|
|
90
|
+
|
|
91
|
+
/social/post:
|
|
92
|
+
post:
|
|
93
|
+
summary: Post to social media
|
|
94
|
+
description: Post content to Twitter, Telegram, or Discord
|
|
95
|
+
operationId: postToSocial
|
|
96
|
+
tags: [social]
|
|
97
|
+
x-ossa-capability: post_social
|
|
98
|
+
x-ossa-autonomy:
|
|
99
|
+
level: supervised
|
|
100
|
+
approval_required: true
|
|
101
|
+
requestBody:
|
|
102
|
+
required: true
|
|
103
|
+
content:
|
|
104
|
+
application/json:
|
|
105
|
+
schema:
|
|
106
|
+
type: object
|
|
107
|
+
required: [content, platform]
|
|
108
|
+
properties:
|
|
109
|
+
content:
|
|
110
|
+
type: string
|
|
111
|
+
description: Post content
|
|
112
|
+
platform:
|
|
113
|
+
type: string
|
|
114
|
+
enum: [twitter, telegram, discord]
|
|
115
|
+
character:
|
|
116
|
+
type: string
|
|
117
|
+
description: Character persona to use
|
|
118
|
+
responses:
|
|
119
|
+
'200':
|
|
120
|
+
description: Post published
|
|
121
|
+
content:
|
|
122
|
+
application/json:
|
|
123
|
+
schema:
|
|
124
|
+
type: object
|
|
125
|
+
properties:
|
|
126
|
+
post_id:
|
|
127
|
+
type: string
|
|
128
|
+
platform:
|
|
129
|
+
type: string
|
|
130
|
+
url:
|
|
131
|
+
type: string
|
|
132
|
+
format: uri
|
|
133
|
+
status:
|
|
134
|
+
type: string
|
|
135
|
+
enum: [published, pending_approval]
|
|
136
|
+
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
openapi: 3.1.0
|
|
2
|
+
info:
|
|
3
|
+
title: FedRAMP Compliance Scanner Agent API
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
description: |
|
|
6
|
+
Automated FedRAMP compliance scanning agent that validates
|
|
7
|
+
infrastructure against FedRAMP Moderate controls.
|
|
8
|
+
|
|
9
|
+
x-ossa-metadata:
|
|
10
|
+
version: 0.2.5-RC
|
|
11
|
+
compliance:
|
|
12
|
+
level: enterprise
|
|
13
|
+
frameworks:
|
|
14
|
+
- OSSA
|
|
15
|
+
- OpenAPI 3.1
|
|
16
|
+
- FedRAMP
|
|
17
|
+
- SOC2
|
|
18
|
+
governance:
|
|
19
|
+
approved: true
|
|
20
|
+
approvedBy: Security Team
|
|
21
|
+
approvalDate: "2024-01-15"
|
|
22
|
+
|
|
23
|
+
x-ossa:
|
|
24
|
+
version: 0.2.5-RC
|
|
25
|
+
agent:
|
|
26
|
+
id: fedramp-compliance-scanner
|
|
27
|
+
type: worker
|
|
28
|
+
compliance:
|
|
29
|
+
standards:
|
|
30
|
+
- openapi-first
|
|
31
|
+
- type-safe
|
|
32
|
+
validated: true
|
|
33
|
+
validatedAt: "2024-01-15T10:00:00Z"
|
|
34
|
+
|
|
35
|
+
servers:
|
|
36
|
+
- url: https://compliance-scanner.platform.com/api/v1
|
|
37
|
+
description: Production
|
|
38
|
+
|
|
39
|
+
tags:
|
|
40
|
+
- name: scanning
|
|
41
|
+
description: Compliance scanning operations
|
|
42
|
+
- name: remediation
|
|
43
|
+
description: Remediation operations
|
|
44
|
+
- name: reporting
|
|
45
|
+
description: Reporting operations
|
|
46
|
+
|
|
47
|
+
paths:
|
|
48
|
+
/scan:
|
|
49
|
+
post:
|
|
50
|
+
summary: Scan infrastructure for compliance
|
|
51
|
+
description: Scan Kubernetes infrastructure for FedRAMP compliance violations
|
|
52
|
+
operationId: scanInfrastructure
|
|
53
|
+
tags: [scanning]
|
|
54
|
+
x-ossa-capability: scan_infrastructure
|
|
55
|
+
x-ossa-autonomy:
|
|
56
|
+
level: autonomous
|
|
57
|
+
approval_required: false
|
|
58
|
+
requestBody:
|
|
59
|
+
required: true
|
|
60
|
+
content:
|
|
61
|
+
application/json:
|
|
62
|
+
schema:
|
|
63
|
+
type: object
|
|
64
|
+
required: [namespace]
|
|
65
|
+
properties:
|
|
66
|
+
namespace:
|
|
67
|
+
type: string
|
|
68
|
+
description: Kubernetes namespace to scan
|
|
69
|
+
controls:
|
|
70
|
+
type: array
|
|
71
|
+
items:
|
|
72
|
+
type: string
|
|
73
|
+
description: Specific controls to check (e.g., AC-2, AC-3)
|
|
74
|
+
responses:
|
|
75
|
+
'200':
|
|
76
|
+
description: Scan completed
|
|
77
|
+
content:
|
|
78
|
+
application/json:
|
|
79
|
+
schema:
|
|
80
|
+
type: object
|
|
81
|
+
properties:
|
|
82
|
+
compliant:
|
|
83
|
+
type: boolean
|
|
84
|
+
violations:
|
|
85
|
+
type: array
|
|
86
|
+
items:
|
|
87
|
+
type: object
|
|
88
|
+
properties:
|
|
89
|
+
control:
|
|
90
|
+
type: string
|
|
91
|
+
severity:
|
|
92
|
+
type: string
|
|
93
|
+
enum: [low, medium, high, critical]
|
|
94
|
+
description:
|
|
95
|
+
type: string
|
|
96
|
+
resource:
|
|
97
|
+
type: string
|
|
98
|
+
|
|
99
|
+
/remediate:
|
|
100
|
+
post:
|
|
101
|
+
summary: Remediate compliance violations
|
|
102
|
+
description: Automatically remediate compliance violations
|
|
103
|
+
operationId: remediate
|
|
104
|
+
tags: [remediation]
|
|
105
|
+
x-ossa-capability: remediate
|
|
106
|
+
x-ossa-autonomy:
|
|
107
|
+
level: supervised
|
|
108
|
+
approval_required: true
|
|
109
|
+
requestBody:
|
|
110
|
+
required: true
|
|
111
|
+
content:
|
|
112
|
+
application/json:
|
|
113
|
+
schema:
|
|
114
|
+
type: object
|
|
115
|
+
required: [violation_id]
|
|
116
|
+
properties:
|
|
117
|
+
violation_id:
|
|
118
|
+
type: string
|
|
119
|
+
description: Violation identifier from scan
|
|
120
|
+
auto_apply:
|
|
121
|
+
type: boolean
|
|
122
|
+
default: false
|
|
123
|
+
description: Whether to automatically apply remediation
|
|
124
|
+
responses:
|
|
125
|
+
'200':
|
|
126
|
+
description: Remediation completed
|
|
127
|
+
content:
|
|
128
|
+
application/json:
|
|
129
|
+
schema:
|
|
130
|
+
type: object
|
|
131
|
+
properties:
|
|
132
|
+
remediated:
|
|
133
|
+
type: boolean
|
|
134
|
+
actions:
|
|
135
|
+
type: array
|
|
136
|
+
items:
|
|
137
|
+
type: string
|
|
138
|
+
status:
|
|
139
|
+
type: string
|
|
140
|
+
|
|
141
|
+
/reports/generate:
|
|
142
|
+
post:
|
|
143
|
+
summary: Generate compliance report
|
|
144
|
+
description: Generate FedRAMP compliance report
|
|
145
|
+
operationId: generateReport
|
|
146
|
+
tags: [reporting]
|
|
147
|
+
x-ossa-capability: generate_report
|
|
148
|
+
x-ossa-autonomy:
|
|
149
|
+
level: autonomous
|
|
150
|
+
approval_required: false
|
|
151
|
+
requestBody:
|
|
152
|
+
required: true
|
|
153
|
+
content:
|
|
154
|
+
application/json:
|
|
155
|
+
schema:
|
|
156
|
+
type: object
|
|
157
|
+
required: [format]
|
|
158
|
+
properties:
|
|
159
|
+
format:
|
|
160
|
+
type: string
|
|
161
|
+
enum: [pdf, html, json]
|
|
162
|
+
default: json
|
|
163
|
+
period:
|
|
164
|
+
type: object
|
|
165
|
+
properties:
|
|
166
|
+
start:
|
|
167
|
+
type: string
|
|
168
|
+
format: date-time
|
|
169
|
+
end:
|
|
170
|
+
type: string
|
|
171
|
+
format: date-time
|
|
172
|
+
responses:
|
|
173
|
+
'200':
|
|
174
|
+
description: Report generated
|
|
175
|
+
content:
|
|
176
|
+
application/json:
|
|
177
|
+
schema:
|
|
178
|
+
type: object
|
|
179
|
+
properties:
|
|
180
|
+
report_url:
|
|
181
|
+
type: string
|
|
182
|
+
format: uri
|
|
183
|
+
summary:
|
|
184
|
+
type: object
|
|
185
|
+
properties:
|
|
186
|
+
total_controls:
|
|
187
|
+
type: integer
|
|
188
|
+
compliant:
|
|
189
|
+
type: integer
|
|
190
|
+
violations:
|
|
191
|
+
type: integer
|
|
192
|
+
|