@bluefly/openstandardagents 0.2.5-RC → 0.2.8
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/.devfile.yaml +1 -1
- package/.env.example +1 -1
- 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/.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-design-audit → website-brand-identity}/design.md +381 -0
- package/.kiro/specs/{website-design-audit → website-brand-identity}/requirements.md +88 -0
- package/.kiro/specs/website-brand-identity/tasks.md +981 -0
- package/.version.json +2 -2
- package/.wiki-config.json +24 -0
- package/CHANGELOG.md +34 -18
- package/CODEOWNERS +75 -0
- package/CONTRIBUTING.md +1 -1
- package/README.md +176 -239
- 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/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/repositories/schema.repository.d.ts +6 -1
- package/dist/repositories/schema.repository.d.ts.map +1 -1
- package/dist/repositories/schema.repository.js +63 -36
- package/dist/repositories/schema.repository.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/migration.service.d.ts +4 -3
- package/dist/services/migration.service.d.ts.map +1 -1
- package/dist/services/migration.service.js +11 -10
- package/dist/services/migration.service.js.map +1 -1
- package/dist/services/release-automation/release.service.js +1 -1
- package/dist/services/release-automation/release.service.js.map +1 -1
- package/dist/services/release-automation/schemas/release.schema.js +1 -1
- 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/validation.service.d.ts.map +1 -1
- package/dist/services/validation.service.js +12 -1
- package/dist/services/validation.service.js.map +1 -1
- package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
- 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.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
- 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.yaml +581 -0
- 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/spec/v0.2.8/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.8/README.md +72 -0
- package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
- package/dist/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
- package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
- package/dist/types/index.d.ts +3 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +6 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/version.d.ts +68 -0
- package/dist/utils/version.d.ts.map +1 -0
- package/dist/utils/version.js +156 -0
- package/dist/utils/version.js.map +1 -0
- 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/eslint-report.json +1 -0
- package/examples/adk-integration/code-review-workflow.yml +1 -1
- package/examples/adk-integration/customer-support.yml +1 -1
- package/examples/adk-integration/data-pipeline.yml +1 -1
- package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
- package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
- package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
- package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
- package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
- package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
- package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
- package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
- package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
- package/examples/anthropic/claude-assistant.ossa.json +5 -4
- package/examples/autogen/multi-agent.ossa.json +6 -4
- package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
- package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
- package/examples/common_npm/agent-router.ossa.yaml +1 -0
- package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
- package/examples/crewai/research-team.ossa.json +14 -5
- package/examples/cursor/code-review-agent.ossa.json +21 -6
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
- package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
- package/examples/extensions/drupal-v1.yml +1 -1
- package/examples/extensions/kagent-v1.yml +1 -1
- package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
- package/examples/kagent/compliance-validator.ossa.yaml +1 -1
- package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
- package/examples/kagent/documentation-agent.ossa.yaml +1 -1
- package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
- package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
- package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
- package/examples/kagent/security-scanner.ossa.yaml +1 -1
- 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/migration-guides/from-langchain-to-ossa.yaml +4 -4
- package/examples/multi-agent/README.md +74 -0
- package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
- package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
- package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
- package/examples/openai/basic-agent.ossa.yaml +1 -1
- package/examples/openai/multi-tool-agent.ossa.json +33 -10
- package/examples/openai/swarm-agent.ossa.json +18 -5
- package/examples/production/document-analyzer-openai.yml +1 -1
- package/examples/quickstart/support-agent.ossa.yaml +1 -1
- package/examples/spec-examples/audit-agent.yml +1 -1
- package/examples/spec-examples/chat-agent.yml +1 -1
- package/examples/spec-examples/compliance-agent.yml +1 -1
- package/examples/spec-examples/monitoring-agent.yml +1 -1
- package/examples/spec-examples/workflow-agent.yml +1 -1
- package/examples/templates/ossa-compliance.yaml +1 -1
- package/examples/vercel/edge-agent.ossa.json +5 -4
- package/gl-code-quality-report.json +62 -0
- package/llms-ctx-full.txt +39 -0
- package/llms-ctx.txt +39 -0
- package/llms.txt +47 -0
- package/openapi/github-sync.yaml +115 -0
- package/package.json +26 -4
- package/scripts/README.md +103 -0
- package/scripts/auto-rebase-mrs.ts +106 -0
- package/scripts/batch-dependabot.sh +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/eslint-to-codequality.cjs +34 -0
- package/scripts/fix-schema-formats.js +82 -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-llms-ctx.sh +17 -0
- package/scripts/generate-schema-docs.ts +317 -0
- package/scripts/generate-types-docs.ts +48 -0
- package/scripts/lowercase-docs.ts +43 -0
- package/scripts/manage-milestone-mrs.ts +279 -0
- package/scripts/rebase-all-mrs.sh +75 -0
- package/scripts/sync-github-pr.sh +48 -0
- package/scripts/sync-version.js +32 -0
- package/scripts/sync-wiki.sh +50 -0
- package/scripts/validate-all.js +127 -0
- package/scripts/validate-schema.ts +2 -1
- package/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
- 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.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
- 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.yaml +581 -0
- 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/spec/v0.2.8/CHANGELOG.md +401 -0
- package/spec/v0.2.8/README.md +72 -0
- package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
- package/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
- package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
- package/test-results/junit.xml +299 -0
- package/.kiro/specs/agent-buildkit-templates/design.md +0 -495
- package/.kiro/specs/agent-buildkit-templates/requirements.md +0 -165
- package/.kiro/specs/kiro-ide-supercharger/README.md +0 -202
- package/.kiro/specs/kiro-ide-supercharger/design.md +0 -1005
- package/.kiro/specs/kiro-ide-supercharger/requirements.md +0 -141
- package/.kiro/specs/kiro-ide-supercharger/tasks.md +0 -507
- package/bin/validate-ossa-0.2.5-RC.ts +0 -244
- package/docs/issue-19-completion-summary.md +0 -648
- package/docs/issue-19-validation.md +0 -351
- package/scripts/lib/exec.ts +0 -37
- package/scripts/lib/file-ops.ts +0 -58
- package/scripts/lib/version.ts +0 -83
- package/website/.lighthouserc.ts +0 -24
- package/website/.prettierrc +0 -10
- package/website/Dockerfile +0 -30
- package/website/app/about/page.tsx +0 -295
- package/website/app/blog/[slug]/page.tsx +0 -208
- package/website/app/blog/page.tsx +0 -249
- package/website/app/design-guide/page.tsx +0 -511
- package/website/app/docs/[[...slug]]/page.tsx +0 -847
- package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
- package/website/app/ecosystem/page.tsx +0 -375
- package/website/app/examples/page.tsx +0 -133
- package/website/app/globals.scss +0 -135
- package/website/app/layout.tsx +0 -106
- package/website/app/license/page.tsx +0 -183
- package/website/app/not-found.tsx +0 -18
- package/website/app/page.tsx +0 -474
- package/website/app/playground/page.tsx +0 -487
- package/website/app/robots.ts +0 -19
- package/website/app/rss.xml/route.ts +0 -74
- package/website/app/schema/page.tsx +0 -1001
- package/website/app/sitemap.ts +0 -56
- package/website/app/specification/page.tsx +0 -287
- package/website/components/InstallCommand.tsx +0 -96
- package/website/components/Logo.tsx +0 -97
- package/website/components/StructuredData.tsx +0 -65
- package/website/components/docs/DocsSearch.tsx +0 -104
- package/website/components/docs/DocsSidebar.tsx +0 -155
- package/website/components/docs/MarkdownContent.tsx +0 -401
- package/website/components/docs/VersionSelector.tsx +0 -105
- package/website/components/examples/ExamplesViewer.tsx +0 -293
- package/website/components/layout/Footer.tsx +0 -116
- package/website/components/layout/Header.tsx +0 -168
- package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
- package/website/components/schema/SchemaExplorer.tsx +0 -213
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
- package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
- package/website/content/blog/introducing-ossa-framework.md +0 -328
- package/website/content/blog/ossa-production-results.md +0 -279
- package/website/content/blog/welcome-to-ossa.md +0 -43
- package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
- package/website/content/docs/00-HOME.md +0 -153
- package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +0 -107
- package/website/content/docs/Examples.md +0 -71
- package/website/content/docs/OpenAPI-Extensions.md +0 -934
- package/website/content/docs/adapters/openai-adapter.md +0 -693
- package/website/content/docs/architecture/execution-flow.md +0 -335
- package/website/content/docs/architecture/multi-agent-systems.md +0 -737
- package/website/content/docs/architecture/overview.md +0 -121
- package/website/content/docs/architecture/stack-integration.md +0 -461
- package/website/content/docs/changelog.md +0 -246
- package/website/content/docs/contributing.md +0 -599
- package/website/content/docs/core-concepts/Project-Structure.md +0 -348
- package/website/content/docs/ecosystem/framework-support.md +0 -819
- package/website/content/docs/ecosystem/overview.md +0 -366
- package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +0 -107
- package/website/content/docs/examples/Migration-Guides.md +0 -214
- package/website/content/docs/for-audiences/Architects.md +0 -224
- package/website/content/docs/for-audiences/Developers.md +0 -220
- package/website/content/docs/for-audiences/Enterprises.md +0 -256
- package/website/content/docs/for-audiences/Students-Researchers.md +0 -122
- package/website/content/docs/getting-started/5-Minute-Overview.md +0 -85
- package/website/content/docs/getting-started/First-Agent.md +0 -196
- package/website/content/docs/getting-started/Hello-World.md +0 -184
- package/website/content/docs/getting-started/Installation.md +0 -155
- package/website/content/docs/getting-started/index.md +0 -92
- package/website/content/docs/getting-started/running-agents.md +0 -309
- package/website/content/docs/getting-started.md +0 -91
- package/website/content/docs/integrations/aiflow.md +0 -104
- package/website/content/docs/integrations/drupal.md +0 -105
- package/website/content/docs/migration-guides/00-INDEX.md +0 -76
- package/website/content/docs/migration-guides/README.md +0 -133
- package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
- package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
- package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
- package/website/content/docs/migration-guides/index.md +0 -133
- package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
- package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
- package/website/content/docs/migration-guides/migration-manifest.json +0 -64
- package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
- package/website/content/docs/openapi-extensions/examples.md +0 -550
- package/website/content/docs/openapi-extensions/index.md +0 -551
- package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
- package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
- package/website/content/docs/ossa-compliant-badge.md +0 -251
- package/website/content/docs/pre-release/index.md +0 -175
- package/website/content/docs/quick-reference.md +0 -17
- package/website/content/docs/readme.md +0 -35
- package/website/content/docs/schema-reference/agent-spec.md +0 -406
- package/website/content/docs/schema-reference/autonomy.md +0 -568
- package/website/content/docs/schema-reference/constraints.md +0 -543
- package/website/content/docs/schema-reference/index.md +0 -176
- package/website/content/docs/schema-reference/llm-config.md +0 -445
- package/website/content/docs/schema-reference/observability.md +0 -654
- package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
- package/website/content/docs/schema-reference/taxonomy.md +0 -509
- package/website/content/docs/schema-reference/tools.md +0 -628
- package/website/content/docs/templates/blog-post.md +0 -43
- package/website/content/docs/use-cases/00-index.md +0 -395
- package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
- package/website/content/docs/use-cases/customer-support.md +0 -1234
- package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
- package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
- package/website/content/docs/versioning.md +0 -288
- package/website/lib/version.ts +0 -35
- package/website/lib/versions.json +0 -78
- package/website/next.config.ts +0 -18
- package/website/nginx.conf +0 -32
- package/website/package-lock.json +0 -9679
- package/website/package.json +0 -59
- package/website/postcss.config.mjs +0 -9
- package/website/scripts/fetch-versions.js +0 -166
- package/website/scripts/generate-examples-index.js +0 -163
- package/website/scripts/merge-docs-to-wiki.ts +0 -207
- package/website/scripts/sync-version.js +0 -72
- package/website/scripts/sync-wiki.ts +0 -322
- package/website/scripts/upload-wiki.ts +0 -199
- package/website/styles/_variables.scss +0 -36
- package/website/tailwind.config.ts +0 -136
- /package/dist/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
- /package/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
package/website/app/page.tsx
DELETED
|
@@ -1,474 +0,0 @@
|
|
|
1
|
-
import Link from 'next/link';
|
|
2
|
-
import type { Metadata } from 'next';
|
|
3
|
-
import { Logo } from '@/components/Logo';
|
|
4
|
-
|
|
5
|
-
export const metadata: Metadata = {
|
|
6
|
-
title: 'Open Standard Agents - Industry Standard for Agent Orchestration',
|
|
7
|
-
description: 'The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere. Zero vendor lock-in.',
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
export default function HomePage() {
|
|
11
|
-
return (
|
|
12
|
-
<div className="flex flex-col">
|
|
13
|
-
{/* Hero Section */}
|
|
14
|
-
<section className="bg-gradient-to-br from-secondary via-primary to-accent text-white py-24 px-4">
|
|
15
|
-
<div className="container mx-auto max-w-7xl text-center">
|
|
16
|
-
<div className="mb-6 flex flex-col items-center">
|
|
17
|
-
<span className="inline-block px-4 py-2 bg-white/20 backdrop-blur-sm rounded-full text-sm font-medium mb-4">
|
|
18
|
-
The OpenAPI for AI Agents
|
|
19
|
-
</span>
|
|
20
|
-
</div>
|
|
21
|
-
<h1 className="text-6xl md:text-7xl font-bold mb-6 leading-tight">
|
|
22
|
-
Open Standard for <span className="bg-gradient-to-r from-yellow-300 via-orange-300 to-pink-300 bg-clip-text text-transparent animate-pulse">Scalable Agents</span>
|
|
23
|
-
</h1>
|
|
24
|
-
<p className="text-3xl md:text-4xl mb-6 font-light">
|
|
25
|
-
The Interoperability Layer Your Agents Are Missing
|
|
26
|
-
</p>
|
|
27
|
-
<p className="text-xl md:text-2xl mb-4 text-gray-200 max-w-4xl mx-auto">
|
|
28
|
-
A vendor-neutral, open specification for defining, deploying, and managing AI agents.
|
|
29
|
-
</p>
|
|
30
|
-
<p className="text-lg mb-8 text-white max-w-4xl mx-auto">
|
|
31
|
-
Just as OpenAPI standardizes REST APIs, Open Standard Agents standardizes agent interoperability
|
|
32
|
-
across frameworks, runtimes, and organizations.
|
|
33
|
-
</p>
|
|
34
|
-
<div className="flex flex-col sm:flex-row gap-4 justify-center mb-12">
|
|
35
|
-
<Link href="#get-started" className="btn-primary text-lg px-8 py-4 border-2 border-transparent hover:border-white transition-all">
|
|
36
|
-
Get Started
|
|
37
|
-
</Link>
|
|
38
|
-
<Link href="https://github.com/blueflyio/openstandardagents" className="btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4" target="_blank" rel="noopener noreferrer">
|
|
39
|
-
View on GitHub
|
|
40
|
-
</Link>
|
|
41
|
-
<Link href="/schema/" className="btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4">
|
|
42
|
-
View Schema
|
|
43
|
-
</Link>
|
|
44
|
-
</div>
|
|
45
|
-
<div className="flex flex-wrap justify-center gap-6 text-sm text-gray-300">
|
|
46
|
-
<div className="flex items-center gap-2">
|
|
47
|
-
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
|
|
48
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
49
|
-
</svg>
|
|
50
|
-
<span>Vendor-Neutral</span>
|
|
51
|
-
</div>
|
|
52
|
-
<div className="flex items-center gap-2">
|
|
53
|
-
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
|
|
54
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
55
|
-
</svg>
|
|
56
|
-
<span>Framework-Agnostic</span>
|
|
57
|
-
</div>
|
|
58
|
-
<div className="flex items-center gap-2">
|
|
59
|
-
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
|
|
60
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
61
|
-
</svg>
|
|
62
|
-
<span>Open Source</span>
|
|
63
|
-
</div>
|
|
64
|
-
<div className="flex items-center gap-2">
|
|
65
|
-
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
|
|
66
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
67
|
-
</svg>
|
|
68
|
-
<span>JSON Schema Validated</span>
|
|
69
|
-
</div>
|
|
70
|
-
</div>
|
|
71
|
-
</div>
|
|
72
|
-
</section>
|
|
73
|
-
|
|
74
|
-
{/* Why OSSA - The Problem Section */}
|
|
75
|
-
<section className="py-16 px-4 bg-gradient-to-br from-amber-50 via-orange-50 to-yellow-50">
|
|
76
|
-
<div className="container mx-auto max-w-5xl">
|
|
77
|
-
<div className="text-center mb-8">
|
|
78
|
-
<h2 className="text-4xl font-bold mb-6 text-gray-900">Why Does This Matter?</h2>
|
|
79
|
-
</div>
|
|
80
|
-
<div className="prose prose-lg max-w-none">
|
|
81
|
-
<p className="text-xl text-gray-700 mb-6 leading-relaxed">
|
|
82
|
-
In the world of AI agents, <strong className="text-gray-900">everyone calls an agent something different</strong>.
|
|
83
|
-
LangChain has "chains," CrewAI has "crews," OpenAI has "assistants," Anthropic has Claude with "tools."
|
|
84
|
-
Every framework invents its own terminology, its own configuration format, its own orchestration model.
|
|
85
|
-
</p>
|
|
86
|
-
<p className="text-xl text-gray-700 mb-6 leading-relaxed">
|
|
87
|
-
This fragmentation creates <strong className="text-red-600">vendor lock-in</strong>, makes agents impossible
|
|
88
|
-
to share between teams, and forces developers to rewrite everything when switching frameworks. Want to move
|
|
89
|
-
your LangChain agent to CrewAI? Complete rewrite. Need to deploy the same agent logic across multiple
|
|
90
|
-
frameworks? Maintain separate implementations.
|
|
91
|
-
</p>
|
|
92
|
-
<p className="text-xl text-gray-700 mb-6 leading-relaxed">
|
|
93
|
-
Imagine if every API framework required its own documentation format—that was the world before OpenAPI.
|
|
94
|
-
Every API provider wrote docs differently, integration was chaos, and tooling couldn't be shared.
|
|
95
|
-
<strong className="text-gray-900"> OpenAPI solved this by creating one standard that every API could follow</strong>.
|
|
96
|
-
</p>
|
|
97
|
-
<div className="bg-white rounded-xl p-8 shadow-lg border-2 border-blue-200">
|
|
98
|
-
<p className="text-2xl text-gray-900 font-bold mb-4">
|
|
99
|
-
OSSA solves this for AI agents.
|
|
100
|
-
</p>
|
|
101
|
-
<p className="text-xl text-gray-700">
|
|
102
|
-
<strong>One standard. Any framework. True portability.</strong> Define your agent once in OSSA format,
|
|
103
|
-
then deploy it with LangChain, CrewAI, Anthropic, OpenAI, or any other framework. Just like OpenAPI
|
|
104
|
-
unified REST APIs, OSSA unifies AI agents.
|
|
105
|
-
</p>
|
|
106
|
-
</div>
|
|
107
|
-
</div>
|
|
108
|
-
</div>
|
|
109
|
-
</section>
|
|
110
|
-
|
|
111
|
-
{/* What is OSSA Section */}
|
|
112
|
-
<section className="py-20 px-4 bg-white">
|
|
113
|
-
<div className="container mx-auto max-w-7xl">
|
|
114
|
-
<div className="text-center mb-16">
|
|
115
|
-
<h2 className="text-5xl font-bold mb-6">What is Open Standard Agents?</h2>
|
|
116
|
-
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
|
117
|
-
Open Standard Agents (OSSA) is an open, vendor-neutral specification for defining AI agents,
|
|
118
|
-
similar to how OpenAPI standardizes REST APIs. It enables interoperability across frameworks,
|
|
119
|
-
runtimes, and organizations.
|
|
120
|
-
</p>
|
|
121
|
-
</div>
|
|
122
|
-
|
|
123
|
-
<div className="grid md:grid-cols-3 gap-8 mb-12">
|
|
124
|
-
<div className="card-hover p-8">
|
|
125
|
-
<h3 className="text-2xl font-semibold mb-4 text-primary">Specification Standard</h3>
|
|
126
|
-
<p className="text-gray-700 mb-4">
|
|
127
|
-
OSSA is <strong>NOT a framework</strong> - it's a specification that defines the contract
|
|
128
|
-
for agent definition, deployment, and management.
|
|
129
|
-
</p>
|
|
130
|
-
<p className="text-gray-700">
|
|
131
|
-
Just like OpenAPI doesn't implement APIs, OSSA doesn't implement agents.
|
|
132
|
-
It provides the standard that implementations follow.
|
|
133
|
-
</p>
|
|
134
|
-
</div>
|
|
135
|
-
<div className="card-hover p-8">
|
|
136
|
-
<h3 className="text-2xl font-semibold mb-4 text-primary">Framework-Agnostic</h3>
|
|
137
|
-
<p className="text-gray-700 mb-4">
|
|
138
|
-
Works seamlessly with any LLM framework or SDK - LangChain, Anthropic, OpenAI,
|
|
139
|
-
CrewAI, Langflow, AutoGen, and more.
|
|
140
|
-
</p>
|
|
141
|
-
<p className="text-gray-700">
|
|
142
|
-
Deploy to Kubernetes, Docker, serverless, or on-premise. OSSA is infrastructure-agnostic.
|
|
143
|
-
</p>
|
|
144
|
-
</div>
|
|
145
|
-
<div className="card-hover p-8">
|
|
146
|
-
<h3 className="text-2xl font-semibold mb-4 text-primary">Vendor-Neutral</h3>
|
|
147
|
-
<p className="text-gray-700 mb-4">
|
|
148
|
-
No vendor lock-in. Write once, deploy anywhere. Move agents between teams,
|
|
149
|
-
organizations, and infrastructures without rewriting code.
|
|
150
|
-
</p>
|
|
151
|
-
<p className="text-gray-700">
|
|
152
|
-
Maintained by the open source community, ensuring long-term viability and innovation.
|
|
153
|
-
</p>
|
|
154
|
-
</div>
|
|
155
|
-
</div>
|
|
156
|
-
|
|
157
|
-
{/* OpenAPI Comparison */}
|
|
158
|
-
<div className="bg-gradient-to-br from-blue-50 via-indigo-50 to-purple-50 rounded-2xl p-8 md:p-12 mt-16 border-2 border-blue-100 shadow-xl">
|
|
159
|
-
<div className="text-center mb-12">
|
|
160
|
-
<h3 className="text-4xl md:text-5xl font-bold mb-4 bg-gradient-to-r from-primary via-secondary to-primary bg-clip-text text-transparent">
|
|
161
|
-
The OpenAPI for Agents
|
|
162
|
-
</h3>
|
|
163
|
-
<div className="w-24 h-1 bg-gradient-to-r from-primary to-secondary mx-auto rounded-full"></div>
|
|
164
|
-
</div>
|
|
165
|
-
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-7xl mx-auto">
|
|
166
|
-
<div className="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300">
|
|
167
|
-
<h4 className="text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100">OpenAPI for REST APIs</h4>
|
|
168
|
-
<ul className="space-y-3 text-gray-700">
|
|
169
|
-
<li className="flex items-start gap-3">
|
|
170
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
171
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
172
|
-
</svg>
|
|
173
|
-
<span className="font-medium">Standardizes REST API contracts</span>
|
|
174
|
-
</li>
|
|
175
|
-
<li className="flex items-start gap-3">
|
|
176
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
177
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
178
|
-
</svg>
|
|
179
|
-
<span className="font-medium">Enables API interoperability</span>
|
|
180
|
-
</li>
|
|
181
|
-
<li className="flex items-start gap-3">
|
|
182
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
183
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
184
|
-
</svg>
|
|
185
|
-
<span className="font-medium">Vendor-neutral specification</span>
|
|
186
|
-
</li>
|
|
187
|
-
<li className="flex items-start gap-3">
|
|
188
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
189
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
190
|
-
</svg>
|
|
191
|
-
<span className="font-medium">JSON Schema validation</span>
|
|
192
|
-
</li>
|
|
193
|
-
</ul>
|
|
194
|
-
</div>
|
|
195
|
-
<div className="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300">
|
|
196
|
-
<h4 className="text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100">OSSA for AI Agents</h4>
|
|
197
|
-
<ul className="space-y-3 text-gray-700">
|
|
198
|
-
<li className="flex items-start gap-3">
|
|
199
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
200
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
201
|
-
</svg>
|
|
202
|
-
<span className="font-medium">Standardizes AI agent contracts</span>
|
|
203
|
-
</li>
|
|
204
|
-
<li className="flex items-start gap-3">
|
|
205
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
206
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
207
|
-
</svg>
|
|
208
|
-
<span className="font-medium">Enables agent interoperability</span>
|
|
209
|
-
</li>
|
|
210
|
-
<li className="flex items-start gap-3">
|
|
211
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
212
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
213
|
-
</svg>
|
|
214
|
-
<span className="font-medium">Vendor-neutral specification</span>
|
|
215
|
-
</li>
|
|
216
|
-
<li className="flex items-start gap-3">
|
|
217
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
218
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
219
|
-
</svg>
|
|
220
|
-
<span className="font-medium">JSON Schema validation</span>
|
|
221
|
-
</li>
|
|
222
|
-
</ul>
|
|
223
|
-
</div>
|
|
224
|
-
<div className="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300">
|
|
225
|
-
<h4 className="text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100">OpenAPI Integration</h4>
|
|
226
|
-
<ul className="space-y-3 text-gray-700">
|
|
227
|
-
<li className="flex items-start gap-3">
|
|
228
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
229
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
230
|
-
</svg>
|
|
231
|
-
<span className="font-medium">Seamless OpenAPI compatibility</span>
|
|
232
|
-
</li>
|
|
233
|
-
<li className="flex items-start gap-3">
|
|
234
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
235
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
236
|
-
</svg>
|
|
237
|
-
<span className="font-medium">Import existing OpenAPI specs</span>
|
|
238
|
-
</li>
|
|
239
|
-
<li className="flex items-start gap-3">
|
|
240
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
241
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
242
|
-
</svg>
|
|
243
|
-
<span className="font-medium">Export agents as OpenAPI</span>
|
|
244
|
-
</li>
|
|
245
|
-
<li className="flex items-start gap-3">
|
|
246
|
-
<svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
247
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
248
|
-
</svg>
|
|
249
|
-
<span className="font-medium">Unified API and agent standards</span>
|
|
250
|
-
</li>
|
|
251
|
-
</ul>
|
|
252
|
-
</div>
|
|
253
|
-
<div className="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300">
|
|
254
|
-
<h4 className="text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100">API-to-Agent Bridge</h4>
|
|
255
|
-
<ul className="space-y-3 text-gray-700">
|
|
256
|
-
<li className="flex items-start gap-3">
|
|
257
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
258
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
259
|
-
</svg>
|
|
260
|
-
<span className="font-medium">Connect REST APIs to agents</span>
|
|
261
|
-
</li>
|
|
262
|
-
<li className="flex items-start gap-3">
|
|
263
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
264
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
265
|
-
</svg>
|
|
266
|
-
<span className="font-medium">Use OpenAPI as agent tools</span>
|
|
267
|
-
</li>
|
|
268
|
-
<li className="flex items-start gap-3">
|
|
269
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
270
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
271
|
-
</svg>
|
|
272
|
-
<span className="font-medium">Automatic API discovery</span>
|
|
273
|
-
</li>
|
|
274
|
-
<li className="flex items-start gap-3">
|
|
275
|
-
<svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
|
|
276
|
-
<path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clipRule="evenodd" />
|
|
277
|
-
</svg>
|
|
278
|
-
<span className="font-medium">Bidirectional integration</span>
|
|
279
|
-
</li>
|
|
280
|
-
</ul>
|
|
281
|
-
</div>
|
|
282
|
-
</div>
|
|
283
|
-
</div>
|
|
284
|
-
</div>
|
|
285
|
-
</section>
|
|
286
|
-
|
|
287
|
-
{/* Quick Start Section */}
|
|
288
|
-
<section id="get-started" className="py-20 px-4 bg-gray-50 scroll-mt-20">
|
|
289
|
-
<div className="container mx-auto max-w-7xl">
|
|
290
|
-
<div className="text-center mb-12">
|
|
291
|
-
<h2 className="text-5xl font-bold mb-6">Get Started in Minutes</h2>
|
|
292
|
-
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
|
293
|
-
Install the CLI, create your first agent, and start building with Open Standard Agents.
|
|
294
|
-
</p>
|
|
295
|
-
</div>
|
|
296
|
-
|
|
297
|
-
<div className="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12">
|
|
298
|
-
<div className="card p-8">
|
|
299
|
-
<h3 className="text-2xl font-semibold mb-4 text-primary">1. Install CLI</h3>
|
|
300
|
-
<div className="bg-code-bg rounded-lg p-4 mb-4">
|
|
301
|
-
<pre className="text-code-text text-sm overflow-x-auto">
|
|
302
|
-
<code>npm install -g @bluefly/openstandardagents</code>
|
|
303
|
-
</pre>
|
|
304
|
-
</div>
|
|
305
|
-
</div>
|
|
306
|
-
<div className="card p-8">
|
|
307
|
-
<h3 className="text-2xl font-semibold mb-4 text-primary">2. Create Agent</h3>
|
|
308
|
-
<div className="bg-code-bg rounded-lg p-4 mb-4">
|
|
309
|
-
<pre className="text-code-text text-sm overflow-x-auto">
|
|
310
|
-
<code>{`osa init my-agent
|
|
311
|
-
cd my-agent`}</code>
|
|
312
|
-
</pre>
|
|
313
|
-
</div>
|
|
314
|
-
</div>
|
|
315
|
-
<div className="card p-8">
|
|
316
|
-
<h3 className="text-2xl font-semibold mb-4 text-primary">3. Validate</h3>
|
|
317
|
-
<div className="bg-code-bg rounded-lg p-4 mb-4">
|
|
318
|
-
<pre className="text-code-text text-sm overflow-x-auto">
|
|
319
|
-
<code>osa validate my-agent.ossa.yaml</code>
|
|
320
|
-
</pre>
|
|
321
|
-
</div>
|
|
322
|
-
</div>
|
|
323
|
-
<div className="card p-8">
|
|
324
|
-
<h3 className="text-2xl font-semibold mb-4 text-primary">4. Export</h3>
|
|
325
|
-
<div className="bg-code-bg rounded-lg p-4 mb-4">
|
|
326
|
-
<pre className="text-code-text text-sm overflow-x-auto">
|
|
327
|
-
<code>{`osa export --to cursor
|
|
328
|
-
osa export --to langchain`}</code>
|
|
329
|
-
</pre>
|
|
330
|
-
</div>
|
|
331
|
-
</div>
|
|
332
|
-
</div>
|
|
333
|
-
|
|
334
|
-
<div className="text-center">
|
|
335
|
-
<Link href="/docs/getting-started/5-minute-overview/" className="btn-primary text-lg px-8 py-4">
|
|
336
|
-
Read Full Getting Started Guide
|
|
337
|
-
</Link>
|
|
338
|
-
</div>
|
|
339
|
-
</div>
|
|
340
|
-
</section>
|
|
341
|
-
|
|
342
|
-
{/* Integrations & Adoption Section */}
|
|
343
|
-
<section className="py-16 px-4 bg-gray-50">
|
|
344
|
-
<div className="container mx-auto max-w-7xl">
|
|
345
|
-
<div className="text-center mb-12">
|
|
346
|
-
<h2 className="text-4xl font-bold mb-4">Works With Your Favorite Tools</h2>
|
|
347
|
-
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
|
348
|
-
OSSA integrates seamlessly with leading AI frameworks, platforms, and tools.
|
|
349
|
-
Build once, deploy anywhere.
|
|
350
|
-
</p>
|
|
351
|
-
</div>
|
|
352
|
-
|
|
353
|
-
{/* Logos Grid - Row 1 */}
|
|
354
|
-
<div className="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-8">
|
|
355
|
-
<Logo domain="openai.com" name="OpenAI" />
|
|
356
|
-
<Logo domain="anthropic.com" name="Anthropic" />
|
|
357
|
-
<Logo domain="deepmind.google" name="Gemini" />
|
|
358
|
-
<Logo domain="microsoft.com" name="Microsoft" />
|
|
359
|
-
<Logo domain="langchain.com" name="LangChain" />
|
|
360
|
-
<Logo domain="huggingface.co" name="Hugging Face" />
|
|
361
|
-
</div>
|
|
362
|
-
|
|
363
|
-
{/* Logos Grid - Row 2 */}
|
|
364
|
-
<div className="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-12">
|
|
365
|
-
<Logo domain="kagent.dev" name="kAgent" />
|
|
366
|
-
<Logo domain="crewai.com" name="CrewAI" />
|
|
367
|
-
<Logo domain="langflow.com" name="Langflow" />
|
|
368
|
-
<Logo domain="llamaindex.ai" name="LlamaIndex" />
|
|
369
|
-
<Logo domain="langchain.com" name="LangGraph" />
|
|
370
|
-
<Logo domain="modelcontextprotocol.io" name="MCP" />
|
|
371
|
-
<Logo domain="drupal.org" name="Drupal" />
|
|
372
|
-
<Logo domain="librechat.com" name="LibreChat" />
|
|
373
|
-
<Logo domain="docker.com" name="Docker" />
|
|
374
|
-
<Logo domain="kubernetes.io" name="Kubernetes" />
|
|
375
|
-
<Logo domain="aws.amazon.com" name="AWS" />
|
|
376
|
-
<Logo domain="github.com" name="GitHub" />
|
|
377
|
-
</div>
|
|
378
|
-
|
|
379
|
-
<div className="text-center">
|
|
380
|
-
<p className="text-lg text-gray-600 mb-6">
|
|
381
|
-
And many more frameworks, platforms, and tools...
|
|
382
|
-
</p>
|
|
383
|
-
<Link href="/docs/ecosystem/framework-support/" className="btn-primary">
|
|
384
|
-
View All Integrations
|
|
385
|
-
</Link>
|
|
386
|
-
</div>
|
|
387
|
-
</div>
|
|
388
|
-
</section>
|
|
389
|
-
|
|
390
|
-
{/* Features Section */}
|
|
391
|
-
<section className="py-20 px-4 bg-white">
|
|
392
|
-
<div className="container mx-auto max-w-7xl">
|
|
393
|
-
<div className="text-center mb-16">
|
|
394
|
-
<h2 className="text-5xl font-bold mb-6">Why Open Standard Agents?</h2>
|
|
395
|
-
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
|
396
|
-
Build agent-based systems with confidence, knowing your agents will work across
|
|
397
|
-
frameworks, teams, and infrastructures.
|
|
398
|
-
</p>
|
|
399
|
-
</div>
|
|
400
|
-
|
|
401
|
-
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
|
|
402
|
-
<div className="card-hover p-6 text-center">
|
|
403
|
-
<h3 className="text-xl font-semibold mb-3">Framework-Agnostic</h3>
|
|
404
|
-
<p className="text-gray-700">
|
|
405
|
-
Works with LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more.
|
|
406
|
-
No vendor lock-in.
|
|
407
|
-
</p>
|
|
408
|
-
</div>
|
|
409
|
-
<div className="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow">
|
|
410
|
-
<h3 className="text-xl font-semibold mb-3">Portable</h3>
|
|
411
|
-
<p className="text-gray-700">
|
|
412
|
-
Move agents between teams, organizations, and infrastructures without rewriting code.
|
|
413
|
-
</p>
|
|
414
|
-
</div>
|
|
415
|
-
<div className="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow">
|
|
416
|
-
<h3 className="text-xl font-semibold mb-3">Validatable</h3>
|
|
417
|
-
<p className="text-gray-700">
|
|
418
|
-
JSON Schema validation ensures correctness before deployment. Catch errors early.
|
|
419
|
-
</p>
|
|
420
|
-
</div>
|
|
421
|
-
<div className="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow">
|
|
422
|
-
<h3 className="text-xl font-semibold mb-3">Well-Documented</h3>
|
|
423
|
-
<p className="text-gray-700">
|
|
424
|
-
Comprehensive documentation, examples, and tooling. Built for developers, by developers.
|
|
425
|
-
</p>
|
|
426
|
-
</div>
|
|
427
|
-
<div className="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow">
|
|
428
|
-
<h3 className="text-xl font-semibold mb-3">Open Source</h3>
|
|
429
|
-
<p className="text-gray-700">
|
|
430
|
-
Apache 2.0 licensed. Community-driven. Transparent development process.
|
|
431
|
-
</p>
|
|
432
|
-
</div>
|
|
433
|
-
<div className="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow">
|
|
434
|
-
<h3 className="text-xl font-semibold mb-3">Fast Integration</h3>
|
|
435
|
-
<p className="text-gray-700">
|
|
436
|
-
Export to any framework format. Import existing agents. Seamless migration paths.
|
|
437
|
-
</p>
|
|
438
|
-
</div>
|
|
439
|
-
<div className="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow">
|
|
440
|
-
<h3 className="text-xl font-semibold mb-3">Secure by Design</h3>
|
|
441
|
-
<p className="text-gray-700">
|
|
442
|
-
Built-in security patterns, authentication, and compliance features.
|
|
443
|
-
</p>
|
|
444
|
-
</div>
|
|
445
|
-
<div className="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow">
|
|
446
|
-
<h3 className="text-xl font-semibold mb-3">Observable</h3>
|
|
447
|
-
<p className="text-gray-700">
|
|
448
|
-
Built-in observability, logging, and monitoring. Track agent performance and behavior.
|
|
449
|
-
</p>
|
|
450
|
-
</div>
|
|
451
|
-
</div>
|
|
452
|
-
</div>
|
|
453
|
-
</section>
|
|
454
|
-
|
|
455
|
-
{/* CTA Section */}
|
|
456
|
-
<section className="py-16 px-4 bg-primary text-white">
|
|
457
|
-
<div className="container mx-auto max-w-6xl text-center">
|
|
458
|
-
<h2 className="text-4xl font-bold mb-6">Ready to Get Started?</h2>
|
|
459
|
-
<p className="text-xl mb-8 text-gray-200">
|
|
460
|
-
Join the community and start building with Open Standard Agents today.
|
|
461
|
-
</p>
|
|
462
|
-
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
|
463
|
-
<Link href="/examples/" className="btn-secondary">
|
|
464
|
-
View Examples
|
|
465
|
-
</Link>
|
|
466
|
-
<Link href="https://github.com/blueflyio/openstandardagents/issues" className="btn-outline border-white text-white hover:bg-white hover:text-primary" target="_blank" rel="noopener noreferrer">
|
|
467
|
-
Report Issues
|
|
468
|
-
</Link>
|
|
469
|
-
</div>
|
|
470
|
-
</div>
|
|
471
|
-
</section>
|
|
472
|
-
</div>
|
|
473
|
-
);
|
|
474
|
-
}
|