@bluefly/openstandardagents 0.2.7 → 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.
Files changed (277) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.version.json +2 -2
  4. package/.wiki-config.json +24 -0
  5. package/CHANGELOG.md +11 -18
  6. package/CODEOWNERS +75 -0
  7. package/CONTRIBUTING.md +1 -1
  8. package/README.md +171 -243
  9. package/dist/index.d.ts +1 -0
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +2 -0
  12. package/dist/index.js.map +1 -1
  13. package/dist/repositories/schema.repository.d.ts +6 -1
  14. package/dist/repositories/schema.repository.d.ts.map +1 -1
  15. package/dist/repositories/schema.repository.js +49 -27
  16. package/dist/repositories/schema.repository.js.map +1 -1
  17. package/dist/services/migration.service.d.ts +4 -3
  18. package/dist/services/migration.service.d.ts.map +1 -1
  19. package/dist/services/migration.service.js +11 -10
  20. package/dist/services/migration.service.js.map +1 -1
  21. package/dist/services/release-automation/release.service.js +1 -1
  22. package/dist/services/release-automation/release.service.js.map +1 -1
  23. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  24. package/dist/services/runtime/claude/claude-adapter.js +1 -1
  25. package/dist/services/runtime/claude/claude-adapter.js.map +1 -1
  26. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  27. package/dist/spec/v0.2.8/README.md +72 -0
  28. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  29. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  30. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  31. package/{spec/v0.2.6-dev/ossa-0.2.5.schema.json → dist/spec/v0.2.8/ossa-0.2.8.schema.json} +1509 -52
  32. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  33. package/dist/types/index.d.ts +3 -2
  34. package/dist/types/index.d.ts.map +1 -1
  35. package/dist/utils/index.d.ts +6 -0
  36. package/dist/utils/index.d.ts.map +1 -0
  37. package/dist/utils/index.js +6 -0
  38. package/dist/utils/index.js.map +1 -0
  39. package/dist/utils/version.d.ts +68 -0
  40. package/dist/utils/version.d.ts.map +1 -0
  41. package/dist/utils/version.js +156 -0
  42. package/dist/utils/version.js.map +1 -0
  43. package/eslint-report.json +1 -0
  44. package/examples/adk-integration/code-review-workflow.yml +1 -1
  45. package/examples/adk-integration/customer-support.yml +1 -1
  46. package/examples/adk-integration/data-pipeline.yml +1 -1
  47. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  48. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  49. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  50. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  51. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  52. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  53. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  54. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  55. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  56. package/examples/anthropic/claude-assistant.ossa.json +1 -1
  57. package/examples/autogen/multi-agent.ossa.json +1 -1
  58. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  59. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  60. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  61. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  62. package/examples/crewai/research-team.ossa.json +1 -1
  63. package/examples/cursor/code-review-agent.ossa.json +1 -1
  64. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  65. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  66. package/examples/extensions/drupal-v1.yml +1 -1
  67. package/examples/extensions/kagent-v1.yml +1 -1
  68. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  69. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  70. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  71. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  72. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  73. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  74. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  75. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  76. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  77. package/examples/langchain/chain-agent.ossa.json +1 -1
  78. package/examples/langflow/workflow-agent.ossa.json +1 -1
  79. package/examples/langgraph/state-machine-agent.ossa.json +1 -1
  80. package/examples/llamaindex/rag-agent.ossa.json +1 -1
  81. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  82. package/examples/multi-agent/README.md +74 -0
  83. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  84. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  85. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  86. package/examples/openai/basic-agent.ossa.yaml +1 -1
  87. package/examples/openai/multi-tool-agent.ossa.json +1 -1
  88. package/examples/openai/swarm-agent.ossa.json +1 -1
  89. package/examples/production/document-analyzer-openai.yml +1 -1
  90. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  91. package/examples/spec-examples/audit-agent.yml +1 -1
  92. package/examples/spec-examples/chat-agent.yml +1 -1
  93. package/examples/spec-examples/compliance-agent.yml +1 -1
  94. package/examples/spec-examples/monitoring-agent.yml +1 -1
  95. package/examples/spec-examples/workflow-agent.yml +1 -1
  96. package/examples/templates/ossa-compliance.yaml +1 -1
  97. package/examples/vercel/edge-agent.ossa.json +1 -1
  98. package/gl-code-quality-report.json +62 -0
  99. package/llms-ctx-full.txt +39 -0
  100. package/llms-ctx.txt +39 -0
  101. package/llms.txt +47 -0
  102. package/package.json +3 -2
  103. package/scripts/eslint-to-codequality.cjs +34 -0
  104. package/scripts/generate-llms-ctx.sh +17 -0
  105. package/scripts/generate-schema-docs.ts +31 -10
  106. package/scripts/sync-version.js +4 -12
  107. package/scripts/validate-schema.ts +2 -1
  108. package/spec/v0.2.8/CHANGELOG.md +401 -0
  109. package/spec/v0.2.8/README.md +72 -0
  110. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  111. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  112. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  113. package/{dist/spec/v0.2.6-dev/ossa-0.2.5.schema.json → spec/v0.2.8/ossa-0.2.8.schema.json} +1509 -52
  114. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  115. package/test-results/junit.xml +299 -0
  116. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  117. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.schema.json +0 -1696
  118. package/scripts/lib/exec.ts +0 -37
  119. package/scripts/lib/file-ops.ts +0 -58
  120. package/scripts/lib/version.ts +0 -83
  121. package/spec/v0.2.6-dev/ossa-0.2.6-dev.schema.json +0 -1696
  122. package/website/.lighthouserc.ts +0 -24
  123. package/website/.prettierrc +0 -10
  124. package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +0 -445
  125. package/website/Dockerfile +0 -30
  126. package/website/app/about/page.tsx +0 -304
  127. package/website/app/blog/[slug]/page.tsx +0 -208
  128. package/website/app/blog/page.tsx +0 -249
  129. package/website/app/design-guide/page.tsx +0 -511
  130. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  131. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  132. package/website/app/ecosystem/page.tsx +0 -410
  133. package/website/app/examples/page.tsx +0 -133
  134. package/website/app/globals.scss +0 -370
  135. package/website/app/layout.tsx +0 -106
  136. package/website/app/license/page.tsx +0 -183
  137. package/website/app/not-found.tsx +0 -18
  138. package/website/app/page.tsx +0 -686
  139. package/website/app/page.tsx.bak +0 -679
  140. package/website/app/page.tsx.bak2 +0 -649
  141. package/website/app/playground/page.tsx +0 -487
  142. package/website/app/robots.ts +0 -19
  143. package/website/app/rss.xml/route.ts +0 -74
  144. package/website/app/schema/page.tsx +0 -1001
  145. package/website/app/sitemap.ts +0 -56
  146. package/website/app/specification/page.tsx +0 -287
  147. package/website/components/InstallCommand.tsx +0 -96
  148. package/website/components/Logo.tsx +0 -97
  149. package/website/components/StructuredData.tsx +0 -65
  150. package/website/components/docs/DocsSearch.tsx +0 -104
  151. package/website/components/docs/DocsSidebar.tsx +0 -155
  152. package/website/components/docs/MarkdownContent.tsx +0 -401
  153. package/website/components/docs/VersionSelector.tsx +0 -105
  154. package/website/components/examples/ExamplesViewer.tsx +0 -293
  155. package/website/components/layout/Footer.tsx +0 -116
  156. package/website/components/layout/Header.tsx +0 -172
  157. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  158. package/website/components/schema/SchemaExplorer.tsx +0 -213
  159. package/website/components/ui/Badge.tsx +0 -82
  160. package/website/components/ui/Button.tsx +0 -116
  161. package/website/components/ui/Card.tsx +0 -167
  162. package/website/components/ui/Checkbox.tsx +0 -141
  163. package/website/components/ui/Input.tsx +0 -169
  164. package/website/components/ui/Radio.tsx +0 -141
  165. package/website/components/ui/Select.tsx +0 -182
  166. package/website/components/ui/Tag.tsx +0 -158
  167. package/website/components/ui/Textarea.tsx +0 -195
  168. package/website/components/ui/index.ts +0 -11
  169. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  170. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  171. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  172. package/website/content/blog/introducing-ossa-framework.md +0 -328
  173. package/website/content/blog/ossa-production-results.md +0 -279
  174. package/website/content/blog/welcome-to-ossa.md +0 -43
  175. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  176. package/website/content/docs/00-home.md +0 -153
  177. package/website/content/docs/adapters/openai-adapter.md +0 -693
  178. package/website/content/docs/agents/catalog.md +0 -28
  179. package/website/content/docs/aiflow-framework-integration-with-ossa.md +0 -107
  180. package/website/content/docs/api-reference/index.md +0 -38
  181. package/website/content/docs/api-reference/ossa-core-api.md +0 -634
  182. package/website/content/docs/api-reference/ossa-registry-api.md +0 -515
  183. package/website/content/docs/api-reference/unified-agent-gateway.md +0 -599
  184. package/website/content/docs/architecture/execution-flow.md +0 -335
  185. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  186. package/website/content/docs/architecture/overview.md +0 -121
  187. package/website/content/docs/architecture/stack-integration.md +0 -461
  188. package/website/content/docs/changelog.md +0 -246
  189. package/website/content/docs/cli-reference/index.md +0 -111
  190. package/website/content/docs/cli-reference/ossa-agents.md +0 -70
  191. package/website/content/docs/cli-reference/ossa-export.md +0 -56
  192. package/website/content/docs/cli-reference/ossa-generate.md +0 -66
  193. package/website/content/docs/cli-reference/ossa-gitlab-agent.md +0 -57
  194. package/website/content/docs/cli-reference/ossa-import.md +0 -56
  195. package/website/content/docs/cli-reference/ossa-init.md +0 -57
  196. package/website/content/docs/cli-reference/ossa-migrate.md +0 -62
  197. package/website/content/docs/cli-reference/ossa-run.md +0 -66
  198. package/website/content/docs/cli-reference/ossa-schema.md +0 -57
  199. package/website/content/docs/cli-reference/ossa-setup.md +0 -57
  200. package/website/content/docs/cli-reference/ossa-validate.md +0 -66
  201. package/website/content/docs/configuration/index.md +0 -97
  202. package/website/content/docs/contributing.md +0 -599
  203. package/website/content/docs/deployment/github-mirroring.md +0 -924
  204. package/website/content/docs/documentation.md +0 -100
  205. package/website/content/docs/ecosystem/framework-support.md +0 -1361
  206. package/website/content/docs/ecosystem/overview.md +0 -366
  207. package/website/content/docs/errors/index.md +0 -10
  208. package/website/content/docs/examples/aiflow-framework-integration-with-ossa.md +0 -107
  209. package/website/content/docs/examples/catalog.md +0 -300
  210. package/website/content/docs/for-audiences/students-researchers.md +0 -122
  211. package/website/content/docs/getting-started/index.md +0 -92
  212. package/website/content/docs/getting-started/installation.md +0 -155
  213. package/website/content/docs/getting-started/running-agents.md +0 -309
  214. package/website/content/docs/getting-started.md +0 -91
  215. package/website/content/docs/integrations/aiflow.md +0 -104
  216. package/website/content/docs/integrations/drupal.md +0 -105
  217. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  218. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  219. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  220. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  221. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  222. package/website/content/docs/migration-guides/index.md +0 -133
  223. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  224. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  225. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  226. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  227. package/website/content/docs/openapi-extensions/examples.md +0 -550
  228. package/website/content/docs/openapi-extensions/index.md +0 -551
  229. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  230. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  231. package/website/content/docs/ossa-compliant-badge.md +0 -251
  232. package/website/content/docs/pre-release/index.md +0 -175
  233. package/website/content/docs/quick-reference.md +0 -17
  234. package/website/content/docs/readme.md +0 -35
  235. package/website/content/docs/releases/v0.2.6.md +0 -99
  236. package/website/content/docs/schema-reference/agent-capabilities.md +0 -50
  237. package/website/content/docs/schema-reference/agent-id.md +0 -52
  238. package/website/content/docs/schema-reference/agent-name.md +0 -50
  239. package/website/content/docs/schema-reference/agent-role.md +0 -54
  240. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  241. package/website/content/docs/schema-reference/agent-version.md +0 -50
  242. package/website/content/docs/schema-reference/autonomy.md +0 -568
  243. package/website/content/docs/schema-reference/constraints.md +0 -543
  244. package/website/content/docs/schema-reference/index.md +0 -45
  245. package/website/content/docs/schema-reference/llm-config.md +0 -445
  246. package/website/content/docs/schema-reference/observability.md +0 -654
  247. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  248. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  249. package/website/content/docs/schema-reference/tools.md +0 -628
  250. package/website/content/docs/templates/blog-post.md +0 -43
  251. package/website/content/docs/types-reference/index.md +0 -105
  252. package/website/content/docs/use-cases/00-index.md +0 -395
  253. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  254. package/website/content/docs/use-cases/customer-support.md +0 -1234
  255. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  256. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  257. package/website/content/docs/versioning.md +0 -288
  258. package/website/dev.sh +0 -53
  259. package/website/docker-compose.dev.yml +0 -36
  260. package/website/lib/version.ts +0 -35
  261. package/website/lib/versions.json +0 -103
  262. package/website/next.config.ts +0 -18
  263. package/website/nginx.conf +0 -32
  264. package/website/package-lock.json +0 -9679
  265. package/website/package.json +0 -59
  266. package/website/postcss.config.mjs +0 -9
  267. package/website/scripts/fetch-versions.js +0 -166
  268. package/website/scripts/generate-examples-index.js +0 -163
  269. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  270. package/website/scripts/sync-version.js +0 -72
  271. package/website/scripts/sync-wiki.ts +0 -322
  272. package/website/scripts/upload-wiki.ts +0 -199
  273. package/website/styles/_spacing.scss +0 -453
  274. package/website/styles/_tokens.scss +0 -245
  275. package/website/styles/_typography.scss +0 -361
  276. package/website/styles/_variables.scss +0 -287
  277. package/website/tailwind.config.ts +0 -170
@@ -1,679 +0,0 @@
1
- import Link from 'next/link';
2
- import type { Metadata } from 'next';
3
- import { Logo } from '@/components/Logo';
4
- import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card';
5
- import fs from 'fs';
6
- import path from 'path';
7
-
8
- // Get version dynamically
9
- function getVersion(): string {
10
- try {
11
- const pkgPath = path.join(process.cwd(), '../package.json');
12
- if (fs.existsSync(pkgPath)) {
13
- const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
14
- return pkg.version;
15
- }
16
- } catch (error) {
17
- console.error('Failed to load version:', error);
18
- }
19
- return '0.2.6';
20
- }
21
-
22
- export const metadata: Metadata = {
23
- title: 'Open Standard Agents - Industry Standard for Agent Orchestration',
24
- description: 'The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere. Zero vendor lock-in.',
25
- };
26
-
27
- export default function HomePage() {
28
- const version = getVersion();
29
-
30
- return (
31
- <div className="flex flex-col">
32
- {/* Hero Section */}
33
- <section className="bg-gradient-to-br from-secondary via-primary to-accent text-white py-24 px-4">
34
- <div className="container mx-auto max-w-7xl text-center">
35
- <div className="mb-6 flex flex-col items-center">
36
- <span className="inline-block px-4 py-2 bg-white/20 backdrop-blur-sm rounded-full text-sm font-medium mb-4">
37
- The OpenAPI for AI Agents (v{version})
38
- </span>
39
- </div>
40
- <h1 className="text-4xl md:text-6xl lg:text-7xl font-bold mb-6 leading-tight">
41
- Open Standard for AI Agents
42
- </h1>
43
- <p className="text-2xl md:text-3xl lg:text-4xl mb-6 font-bold">
44
- Vendor-neutral, compliance-ready, enterprise-grade
45
- </p>
46
- <div className="max-w-4xl mx-auto mb-8 space-y-3">
47
- <p className="text-lg md:text-xl text-gray-100 flex items-center justify-center gap-2">
48
- <svg className="w-5 h-5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
49
- <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" />
50
- </svg>
51
- Switch between AI providers without code changes
52
- </p>
53
- <p className="text-lg md:text-xl text-gray-100 flex items-center justify-center gap-2">
54
- <svg className="w-5 h-5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
55
- <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" />
56
- </svg>
57
- Built-in compliance and security frameworks
58
- </p>
59
- <p className="text-lg md:text-xl text-gray-100 flex items-center justify-center gap-2">
60
- <svg className="w-5 h-5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
61
- <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" />
62
- </svg>
63
- Standardized agent lifecycle and governance
64
- </p>
65
- <p className="text-lg md:text-xl text-gray-100 flex items-center justify-center gap-2">
66
- <svg className="w-5 h-5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
67
- <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" />
68
- </svg>
69
- Multi-runtime support (Node.js, Python, more)
70
- </p>
71
- </div>
72
- <div className="flex flex-col sm:flex-row gap-4 justify-center mb-12">
73
- <Link href="#get-started" className="text-lg px-8 py-4 bg-[#3224c9] text-white font-bold rounded-lg shadow-xl hover:shadow-2xl transform hover:scale-105 transition-all border-2 border-white hover:bg-white hover:text-[#3224c9]">
74
- Get Started
75
- </Link>
76
- <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">
77
- View on GitHub
78
- </Link>
79
- <Link href="/schema/" className="btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4">
80
- View Schema
81
- </Link>
82
- </div>
83
- <div className="flex flex-wrap justify-center gap-6 text-sm text-gray-300">
84
- <div className="flex items-center gap-2">
85
- <svg className="w-5 h-5 text-orange-400" fill="currentColor" viewBox="0 0 20 20">
86
- <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" />
87
- </svg>
88
- <span className="text-orange-400 font-bold">Vendor-Neutral</span>
89
- </div>
90
- <div className="flex items-center gap-2">
91
- <svg className="w-5 h-5 text-orange-400" fill="currentColor" viewBox="0 0 20 20">
92
- <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" />
93
- </svg>
94
- <span className="text-orange-400 font-bold">Framework-Agnostic</span>
95
- </div>
96
- <div className="flex items-center gap-2">
97
- <svg className="w-5 h-5 text-orange-400" fill="currentColor" viewBox="0 0 20 20">
98
- <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" />
99
- </svg>
100
- <span className="text-orange-400 font-bold">Open Source</span>
101
- </div>
102
- <div className="flex items-center gap-2">
103
- <svg className="w-5 h-5 text-orange-400" fill="currentColor" viewBox="0 0 20 20">
104
- <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" />
105
- </svg>
106
- <span className="text-orange-400 font-bold">JSON Schema Validated</span>
107
- </div>
108
- </div>
109
- </div>
110
- </section>
111
-
112
- {/* What is OSSA Section */}
113
- <section className="py-20 px-4 bg-white">
114
- <div className="container mx-auto max-w-7xl">
115
- <div className="text-center mb-16">
116
- <h2 className="text-5xl font-bold mb-6">What is Open Standard Agents?</h2>
117
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
118
- Open Standard Agents (OSSA) is an open, vendor-neutral specification for defining AI agents,
119
- similar to how OpenAPI standardizes REST APIs. It enables interoperability across frameworks,
120
- runtimes, and organizations.
121
- </p>
122
- </div>
123
-
124
- <div className="grid md:grid-cols-3 gap-8 mb-12">
125
- <Card variant="default" padding="lg" elevation={1} hover>
126
- <CardHeader>
127
- <CardTitle className="text-primary">Specification Standard</CardTitle>
128
- </CardHeader>
129
- <CardContent>
130
- <p className="text-gray-700 mb-4">
131
- OSSA is <strong>NOT a framework</strong> - it&apos;s a specification that defines the contract
132
- for agent definition, deployment, and management.
133
- </p>
134
- <p className="text-gray-700">
135
- Just like OpenAPI doesn&apos;t implement APIs, OSSA doesn&apos;t implement agents.
136
- It provides the standard that implementations follow.
137
- </p>
138
- </CardContent>
139
- </Card>
140
- <Card variant="default" padding="lg" elevation={1} hover>
141
- <CardHeader>
142
- <CardTitle className="text-primary">Framework-Agnostic</CardTitle>
143
- </CardHeader>
144
- <CardContent>
145
- <p className="text-gray-700 mb-4">
146
- Works seamlessly with any LLM framework or SDK - LangChain, Anthropic, OpenAI,
147
- CrewAI, Langflow, AutoGen, and more.
148
- </p>
149
- <p className="text-gray-700">
150
- Deploy to Kubernetes, Docker, serverless, or on-premise. OSSA is infrastructure-agnostic.
151
- </p>
152
- </CardContent>
153
- </Card>
154
- <Card variant="default" padding="lg" elevation={1} hover>
155
- <CardHeader>
156
- <CardTitle className="text-primary">Vendor-Neutral</CardTitle>
157
- </CardHeader>
158
- <CardContent>
159
- <p className="text-gray-700 mb-4">
160
- No vendor lock-in. Write once, deploy anywhere. Move agents between teams,
161
- organizations, and infrastructures without rewriting code.
162
- </p>
163
- <p className="text-gray-700">
164
- Maintained by the open source community, ensuring long-term viability and innovation.
165
- </p>
166
- </CardContent>
167
- </Card>
168
- </div>
169
-
170
- {/* OpenAPI Comparison */}
171
- <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">
172
- <div className="text-center mb-12">
173
- <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">
174
- The OpenAPI for Agents
175
- </h3>
176
- <div className="w-24 h-1 bg-gradient-to-r from-primary to-secondary mx-auto rounded-full"></div>
177
- </div>
178
- <div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-7xl mx-auto">
179
- <Card variant="default" padding="md" elevation={2} hover className="border-2 border-blue-100">
180
- <h4 className="text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100">OpenAPI for REST APIs</h4>
181
- <ul className="space-y-3 text-gray-700">
182
- <li className="flex items-start gap-3">
183
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
184
- <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" />
185
- </svg>
186
- <span className="font-medium">Standardizes REST API contracts</span>
187
- </li>
188
- <li className="flex items-start gap-3">
189
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
190
- <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" />
191
- </svg>
192
- <span className="font-medium">Enables API interoperability</span>
193
- </li>
194
- <li className="flex items-start gap-3">
195
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
196
- <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" />
197
- </svg>
198
- <span className="font-medium">Vendor-neutral specification</span>
199
- </li>
200
- <li className="flex items-start gap-3">
201
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
202
- <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" />
203
- </svg>
204
- <span className="font-medium">JSON Schema validation</span>
205
- </li>
206
- </ul>
207
- </Card>
208
- <Card variant="default" padding="md" elevation={2} hover className="border-2 border-blue-100">
209
- <h4 className="text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100">OSSA for AI Agents</h4>
210
- <ul className="space-y-3 text-gray-700">
211
- <li className="flex items-start gap-3">
212
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
213
- <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" />
214
- </svg>
215
- <span className="font-medium">Standardizes AI agent contracts</span>
216
- </li>
217
- <li className="flex items-start gap-3">
218
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
219
- <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" />
220
- </svg>
221
- <span className="font-medium">Enables agent interoperability</span>
222
- </li>
223
- <li className="flex items-start gap-3">
224
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
225
- <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" />
226
- </svg>
227
- <span className="font-medium">Vendor-neutral specification</span>
228
- </li>
229
- <li className="flex items-start gap-3">
230
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
231
- <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" />
232
- </svg>
233
- <span className="font-medium">JSON Schema validation</span>
234
- </li>
235
- </ul>
236
- </Card>
237
- <Card variant="default" padding="md" elevation={2} hover className="border-2 border-blue-100">
238
- <h4 className="text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100">OpenAPI Integration</h4>
239
- <ul className="space-y-3 text-gray-700">
240
- <li className="flex items-start gap-3">
241
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
242
- <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" />
243
- </svg>
244
- <span className="font-medium">Seamless OpenAPI compatibility</span>
245
- </li>
246
- <li className="flex items-start gap-3">
247
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
248
- <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" />
249
- </svg>
250
- <span className="font-medium">Import existing OpenAPI specs</span>
251
- </li>
252
- <li className="flex items-start gap-3">
253
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
254
- <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" />
255
- </svg>
256
- <span className="font-medium">Export agents as OpenAPI</span>
257
- </li>
258
- <li className="flex items-start gap-3">
259
- <svg className="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
260
- <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" />
261
- </svg>
262
- <span className="font-medium">Unified API and agent standards</span>
263
- </li>
264
- </ul>
265
- </Card>
266
- <Card variant="default" padding="md" elevation={2} hover className="border-2 border-blue-100">
267
- <h4 className="text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100">API-to-Agent Bridge</h4>
268
- <ul className="space-y-3 text-gray-700">
269
- <li className="flex items-start gap-3">
270
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
271
- <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" />
272
- </svg>
273
- <span className="font-medium">Connect REST APIs to agents</span>
274
- </li>
275
- <li className="flex items-start gap-3">
276
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
277
- <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" />
278
- </svg>
279
- <span className="font-medium">Use OpenAPI as agent tools</span>
280
- </li>
281
- <li className="flex items-start gap-3">
282
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
283
- <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" />
284
- </svg>
285
- <span className="font-medium">Automatic API discovery</span>
286
- </li>
287
- <li className="flex items-start gap-3">
288
- <svg className="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20">
289
- <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" />
290
- </svg>
291
- <span className="font-medium">Bidirectional integration</span>
292
- </li>
293
- </ul>
294
- </Card>
295
- </div>
296
- </div>
297
- </div>
298
- </section>
299
-
300
- {/* Why OSSA - The Problem Section */}
301
- <section className="py-16 px-4 bg-white">
302
- <div className="container mx-auto max-w-5xl">
303
- <div className="text-center mb-12">
304
- <h2 className="text-4xl md:text-5xl font-bold mb-4 text-gray-900">Why Does This Matter?</h2>
305
- <p className="text-xl text-gray-600">Leading with portability, regulatory compliance, and vendor independence</p>
306
- </div>
307
- <div className="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
308
- <Card variant="default" padding="lg" elevation={1}>
309
- <h3 className="text-2xl font-bold mb-3 text-gray-900">Portability: Avoid Vendor Lock-in</h3>
310
- <p className="text-lg text-gray-700 leading-relaxed">
311
- Switch between AI providers (OpenAI, Anthropic, Azure) without rewriting code. Define your agent once in OSSA format,
312
- deploy anywhere. No more complete rewrites when changing frameworks.
313
- </p>
314
- </Card>
315
- <Card variant="default" padding="lg" elevation={1}>
316
- <h3 className="text-2xl font-bold mb-3 text-gray-900">Regulatory Compliance: Built-in Frameworks</h3>
317
- <p className="text-lg text-gray-700 leading-relaxed">
318
- Meet SOC2, FedRAMP, HIPAA, and GDPR requirements with standardized security models, audit trails,
319
- and data boundary controls. Compliance-ready from day one.
320
- </p>
321
- </Card>
322
- <Card variant="default" padding="lg" elevation={1}>
323
- <h3 className="text-2xl font-bold mb-3 text-gray-900">Vendor Independence: True Interoperability</h3>
324
- <p className="text-lg text-gray-700 leading-relaxed">
325
- Community-driven standard, not controlled by any single company. Works with LangChain, CrewAI, AutoGen,
326
- and any framework. Your agents, your choice.
327
- </p>
328
- </Card>
329
- </div>
330
- <Card variant="featured" padding="lg" elevation={3}>
331
- <p className="text-2xl text-gray-900 font-bold mb-4">
332
- OSSA solves this for AI agents.
333
- </p>
334
- <p className="text-xl text-gray-700">
335
- <strong>One standard. Any framework. True portability.</strong> Define your agent once in OSSA format,
336
- then deploy it with LangChain, CrewAI, Anthropic, OpenAI, or any other framework. Just like OpenAPI
337
- unified REST APIs, OSSA unifies AI agents.
338
- </p>
339
- </Card>
340
- </div>
341
- </section>
342
-
343
- {/* Comparison Matrix Section */}
344
- <section className="py-20 px-4 bg-gradient-to-br from-gray-50 to-blue-50">
345
- <div className="container mx-auto max-w-7xl">
346
- <div className="text-center mb-12">
347
- <h2 className="text-4xl md:text-5xl font-bold mb-4">How OSSA Compares</h2>
348
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
349
- OSSA is a specification standard, not a framework. See how it enables true interoperability.
350
- </p>
351
- </div>
352
-
353
- {/* Desktop Table */}
354
- <div className="hidden lg:block overflow-x-auto">
355
- <table className="w-full bg-white rounded-lg shadow-lg overflow-hidden">
356
- <thead className="bg-gradient-to-r from-primary to-secondary text-white">
357
- <tr>
358
- <th className="px-6 py-4 text-left font-bold">Feature</th>
359
- <th className="px-6 py-4 text-center font-bold">OSSA</th>
360
- <th className="px-6 py-4 text-center font-bold">LangChain</th>
361
- <th className="px-6 py-4 text-center font-bold">AutoGen</th>
362
- <th className="px-6 py-4 text-center font-bold">MCP</th>
363
- <th className="px-6 py-4 text-center font-bold">Semantic Kernel</th>
364
- </tr>
365
- </thead>
366
- <tbody className="divide-y divide-gray-200">
367
- <tr className="hover:bg-gray-50">
368
- <td className="px-6 py-4 font-medium text-gray-900">Vendor Neutral<br/><span className="text-sm font-normal text-gray-600">Not controlled by any single company</span></td>
369
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
370
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
371
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
372
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
373
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
374
- </tr>
375
- <tr className="hover:bg-gray-50 bg-blue-50">
376
- <td className="px-6 py-4 font-medium text-gray-900">Formal Standard<br/><span className="text-sm font-normal text-gray-600">JSON Schema validated specification</span></td>
377
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
378
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
379
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
380
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
381
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
382
- </tr>
383
- <tr className="hover:bg-gray-50">
384
- <td className="px-6 py-4 font-medium text-gray-900">Multi-runtime<br/><span className="text-sm font-normal text-gray-600">Works across Node.js, Python, and more</span></td>
385
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
386
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
387
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
388
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
389
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
390
- </tr>
391
- <tr className="hover:bg-gray-50 bg-blue-50">
392
- <td className="px-6 py-4 font-medium text-gray-900">Enterprise Governance<br/><span className="text-sm font-normal text-gray-600">Built-in audit trails and policy controls</span></td>
393
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
394
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
395
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
396
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
397
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
398
- </tr>
399
- <tr className="hover:bg-gray-50">
400
- <td className="px-6 py-4 font-medium text-gray-900">Compliance Ready<br/><span className="text-sm font-normal text-gray-600">SOC2, FedRAMP, HIPAA, GDPR frameworks</span></td>
401
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
402
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
403
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
404
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
405
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-red-600" fill="currentColor" viewBox="0 0 20 20"><path fillRule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clipRule="evenodd" /></svg></td>
406
- </tr>
407
- <tr className="hover:bg-gray-50 bg-blue-50">
408
- <td className="px-6 py-4 font-medium text-gray-900">Open Source<br/><span className="text-sm font-normal text-gray-600">Community-driven development</span></td>
409
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
410
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
411
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
412
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
413
- <td className="px-6 py-4 text-center"><svg className="w-6 h-6 mx-auto text-green-600" fill="currentColor" viewBox="0 0 20 20"><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" /></svg></td>
414
- </tr>
415
- </tbody>
416
- </table>
417
- </div>
418
-
419
- {/* Mobile Cards */}
420
- <div className="lg:hidden space-y-4">
421
- <Card variant="featured" padding="lg" elevation={2}>
422
- <h3 className="text-xl font-bold mb-4 text-primary">OSSA</h3>
423
- <div className="space-y-2 text-sm">
424
- <div className="flex justify-between"><span>Vendor Neutral</span><span className="text-xl">✅</span></div>
425
- <div className="flex justify-between"><span>Formal Standard</span><span className="text-xl">✅</span></div>
426
- <div className="flex justify-between"><span>Multi-runtime</span><span className="text-xl">✅</span></div>
427
- <div className="flex justify-between"><span>Enterprise Governance</span><span className="text-xl">✅</span></div>
428
- <div className="flex justify-between"><span>Compliance Ready</span><span className="text-xl">✅</span></div>
429
- <div className="flex justify-between"><span>Open Source</span><span className="text-xl">✅</span></div>
430
- </div>
431
- </Card>
432
- <Card variant="default" padding="md" elevation={1}>
433
- <h3 className="text-lg font-bold mb-3">LangChain / AutoGen / Semantic Kernel</h3>
434
- <p className="text-sm text-gray-600">Framework-specific implementations. Open source but vendor-controlled.</p>
435
- </Card>
436
- <Card variant="default" padding="md" elevation={1}>
437
- <h3 className="text-lg font-bold mb-3">MCP (Model Context Protocol)</h3>
438
- <p className="text-sm text-gray-600">Formal standard with multi-runtime support. Focused on context, not full agent lifecycle.</p>
439
- </Card>
440
- </div>
441
- </div>
442
- </section>
443
-
444
- {/* Quick Start Section */}
445
- <section id="get-started" className="py-20 px-4 bg-gray-50 scroll-mt-20">
446
- <div className="container mx-auto max-w-7xl">
447
- <div className="text-center mb-12">
448
- <h2 className="text-5xl font-bold mb-6">Get Started in Minutes</h2>
449
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
450
- Install the CLI, create your first agent, and start building with Open Standard Agents.
451
- </p>
452
- </div>
453
-
454
- <div className="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12">
455
- <Card variant="default" padding="lg" elevation={2}>
456
- <CardHeader>
457
- <CardTitle className="text-primary">1. Install CLI</CardTitle>
458
- </CardHeader>
459
- <CardContent>
460
- <div className="bg-code-bg rounded-lg p-4">
461
- <pre className="text-code-text text-sm overflow-x-auto">
462
- <code>npm install -g @bluefly/openstandardagents</code>
463
- </pre>
464
- </div>
465
- </CardContent>
466
- </Card>
467
- <Card variant="default" padding="lg" elevation={2}>
468
- <CardHeader>
469
- <CardTitle className="text-primary">2. Create Agent</CardTitle>
470
- </CardHeader>
471
- <CardContent>
472
- <div className="bg-code-bg rounded-lg p-4">
473
- <pre className="text-code-text text-sm overflow-x-auto">
474
- <code>{`osa init my-agent
475
- cd my-agent`}</code>
476
- </pre>
477
- </div>
478
- </CardContent>
479
- </Card>
480
- <Card variant="default" padding="lg" elevation={2}>
481
- <CardHeader>
482
- <CardTitle className="text-primary">3. Validate</CardTitle>
483
- </CardHeader>
484
- <CardContent>
485
- <div className="bg-code-bg rounded-lg p-4">
486
- <pre className="text-code-text text-sm overflow-x-auto">
487
- <code>osa validate my-agent.ossa.yaml</code>
488
- </pre>
489
- </div>
490
- </CardContent>
491
- </Card>
492
- <Card variant="default" padding="lg" elevation={2}>
493
- <CardHeader>
494
- <CardTitle className="text-primary">4. Export</CardTitle>
495
- </CardHeader>
496
- <CardContent>
497
- <div className="bg-code-bg rounded-lg p-4">
498
- <pre className="text-code-text text-sm overflow-x-auto">
499
- <code>{`osa export --to cursor
500
- osa export --to langchain`}</code>
501
- </pre>
502
- </div>
503
- </CardContent>
504
- </Card>
505
- </div>
506
-
507
- <div className="text-center">
508
- <Link href="/docs/getting-started/5-minute-overview/" className="btn-primary text-lg px-8 py-4">
509
- Read Full Getting Started Guide
510
- </Link>
511
- </div>
512
- </div>
513
- </section>
514
-
515
- {/* Integrations & Adoption Section */}
516
- <section className="py-16 px-4 bg-gray-50">
517
- <div className="container mx-auto max-w-7xl">
518
- <div className="text-center mb-12">
519
- <h2 className="text-4xl font-bold mb-4">Works With Your Favorite Tools</h2>
520
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
521
- OSSA integrates seamlessly with leading AI frameworks, platforms, and tools.
522
- Build once, deploy anywhere.
523
- </p>
524
- </div>
525
-
526
- {/* Logos Grid - Row 1 */}
527
- <div className="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-8">
528
- <Logo domain="openai.com" name="OpenAI" />
529
- <Logo domain="anthropic.com" name="Anthropic" />
530
- <Logo domain="deepmind.google" name="Gemini" />
531
- <Logo domain="microsoft.com" name="Microsoft" />
532
- <Logo domain="langchain.com" name="LangChain" />
533
- <Logo domain="huggingface.co" name="Hugging Face" />
534
- </div>
535
-
536
- {/* Logos Grid - Row 2 */}
537
- <div className="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-12">
538
- <Logo domain="kagent.dev" name="kAgent" />
539
- <Logo domain="crewai.com" name="CrewAI" />
540
- <Logo domain="langflow.com" name="Langflow" />
541
- <Logo domain="llamaindex.ai" name="LlamaIndex" />
542
- <Logo domain="langchain.com" name="LangGraph" />
543
- <Logo domain="modelcontextprotocol.io" name="MCP" />
544
- <Logo domain="drupal.org" name="Drupal" />
545
- <Logo domain="librechat.com" name="LibreChat" />
546
- <Logo domain="docker.com" name="Docker" />
547
- <Logo domain="kubernetes.io" name="Kubernetes" />
548
- <Logo domain="aws.amazon.com" name="AWS" />
549
- <Logo domain="github.com" name="GitHub" />
550
- </div>
551
-
552
- <div className="text-center">
553
- <p className="text-lg text-gray-600 mb-6">
554
- And many more frameworks, platforms, and tools...
555
- </p>
556
- <Link href="/docs/ecosystem/framework-support/" className="btn-primary">
557
- View All Integrations
558
- </Link>
559
- </div>
560
- </div>
561
- </section>
562
-
563
- {/* Features Section */}
564
- <section className="py-20 px-4 bg-white">
565
- <div className="container mx-auto max-w-7xl">
566
- <div className="text-center mb-16">
567
- <h2 className="text-5xl font-bold mb-6">Why Open Standard Agents?</h2>
568
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
569
- Build agent-based systems with confidence, knowing your agents will work across
570
- frameworks, teams, and infrastructures.
571
- </p>
572
- </div>
573
-
574
- <div className="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
575
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
576
- <CardHeader>
577
- <CardTitle className="text-xl">Framework-Agnostic</CardTitle>
578
- </CardHeader>
579
- <CardContent>
580
- <p className="text-gray-700">
581
- Works with LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more.
582
- No vendor lock-in.
583
- </p>
584
- </CardContent>
585
- </Card>
586
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
587
- <CardHeader>
588
- <CardTitle className="text-xl">Portable</CardTitle>
589
- </CardHeader>
590
- <CardContent>
591
- <p className="text-gray-700">
592
- Move agents between teams, organizations, and infrastructures without rewriting code.
593
- </p>
594
- </CardContent>
595
- </Card>
596
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
597
- <CardHeader>
598
- <CardTitle className="text-xl">Validatable</CardTitle>
599
- </CardHeader>
600
- <CardContent>
601
- <p className="text-gray-700">
602
- JSON Schema validation ensures correctness before deployment. Catch errors early.
603
- </p>
604
- </CardContent>
605
- </Card>
606
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
607
- <CardHeader>
608
- <CardTitle className="text-xl">Well-Documented</CardTitle>
609
- </CardHeader>
610
- <CardContent>
611
- <p className="text-gray-700">
612
- Comprehensive documentation, examples, and tooling. Built for developers, by developers.
613
- </p>
614
- </CardContent>
615
- </Card>
616
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
617
- <CardHeader>
618
- <CardTitle className="text-xl">Open Source</CardTitle>
619
- </CardHeader>
620
- <CardContent>
621
- <p className="text-gray-700">
622
- Apache 2.0 licensed. Community-driven. Transparent development process.
623
- </p>
624
- </CardContent>
625
- </Card>
626
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
627
- <CardHeader>
628
- <CardTitle className="text-xl">Fast Integration</CardTitle>
629
- </CardHeader>
630
- <CardContent>
631
- <p className="text-gray-700">
632
- Export to any framework format. Import existing agents. Seamless migration paths.
633
- </p>
634
- </CardContent>
635
- </Card>
636
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
637
- <CardHeader>
638
- <CardTitle className="text-xl">Secure by Design</CardTitle>
639
- </CardHeader>
640
- <CardContent>
641
- <p className="text-gray-700">
642
- Built-in security patterns, authentication, and compliance features.
643
- </p>
644
- </CardContent>
645
- </Card>
646
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
647
- <CardHeader>
648
- <CardTitle className="text-xl">Observable</CardTitle>
649
- </CardHeader>
650
- <CardContent>
651
- <p className="text-gray-700">
652
- Built-in observability, logging, and monitoring. Track agent performance and behavior.
653
- </p>
654
- </CardContent>
655
- </Card>
656
- </div>
657
- </div>
658
- </section>
659
-
660
- {/* CTA Section */}
661
- <section className="py-16 px-4 bg-primary text-white">
662
- <div className="container mx-auto max-w-6xl text-center">
663
- <h2 className="text-4xl font-bold mb-6">Ready to Get Started?</h2>
664
- <p className="text-xl mb-8 text-gray-200">
665
- Join the community and start building with Open Standard Agents today.
666
- </p>
667
- <div className="flex flex-col sm:flex-row gap-4 justify-center">
668
- <Link href="/examples/" className="btn-secondary">
669
- View Examples
670
- </Link>
671
- <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">
672
- Report Issues
673
- </Link>
674
- </div>
675
- </div>
676
- </section>
677
- </div>
678
- );
679
- }