@bluefly/openstandardagents 0.2.7 → 0.2.9

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 (327) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.github/AGENTS.md +245 -0
  4. package/.github/agents/github-issue-triage.ossa.yaml +99 -0
  5. package/.github/agents/github-pr-triage.ossa.yaml +137 -0
  6. package/.github/workflows/issue-sync-to-gitlab.yml +138 -0
  7. package/.github/workflows/pr-triage-to-gitlab.yml +164 -0
  8. package/.version.json +2 -2
  9. package/.wiki-config.json +24 -0
  10. package/CHANGELOG.md +44 -18
  11. package/CODEOWNERS +75 -0
  12. package/CONTRIBUTING.md +103 -4
  13. package/README.md +178 -243
  14. package/dist/index.d.ts +1 -0
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +2 -0
  17. package/dist/index.js.map +1 -1
  18. package/dist/repositories/schema.repository.d.ts +6 -1
  19. package/dist/repositories/schema.repository.d.ts.map +1 -1
  20. package/dist/repositories/schema.repository.js +49 -27
  21. package/dist/repositories/schema.repository.js.map +1 -1
  22. package/dist/services/migration.service.d.ts +4 -3
  23. package/dist/services/migration.service.d.ts.map +1 -1
  24. package/dist/services/migration.service.js +11 -10
  25. package/dist/services/migration.service.js.map +1 -1
  26. package/dist/services/release-automation/release.service.js +1 -1
  27. package/dist/services/release-automation/release.service.js.map +1 -1
  28. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  29. package/dist/services/release-automation/webhook.service.js +3 -3
  30. package/dist/services/release-automation/webhook.service.js.map +1 -1
  31. package/dist/services/runtime/claude/claude-adapter.d.ts +1 -1
  32. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -1
  33. package/dist/services/runtime/claude/claude-adapter.js +2 -2
  34. package/dist/services/runtime/claude/claude-adapter.js.map +1 -1
  35. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  36. package/dist/spec/v0.2.8/README.md +72 -0
  37. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  38. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  39. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  40. 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
  41. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  42. package/dist/spec/v0.2.9/a2a-protocol.md +1337 -0
  43. package/dist/spec/v0.2.9/agent.md +1946 -0
  44. package/dist/spec/v0.2.9/capabilities/index.yaml +25 -0
  45. package/dist/spec/v0.2.9/capabilities/memory.yaml +251 -0
  46. package/dist/spec/v0.2.9/capability-schema.md +576 -0
  47. package/dist/spec/v0.2.9/compliance-profiles.md +533 -0
  48. package/dist/spec/v0.2.9/conformance-testing.md +1527 -0
  49. package/dist/spec/v0.2.9/gitlab-duo-integration.md +621 -0
  50. package/dist/spec/v0.2.9/ossa-0.2.9.schema.json +3699 -0
  51. package/dist/spec/v0.2.9/runtime-semantics.md +464 -0
  52. package/dist/spec/v0.2.9/security-model.md +1245 -0
  53. package/dist/spec/v0.2.9/semantic-conventions.md +347 -0
  54. package/dist/spec/v0.2.9/types.ts +522 -0
  55. package/dist/types/index.d.ts +3 -2
  56. package/dist/types/index.d.ts.map +1 -1
  57. package/dist/types/policy.d.ts +377 -0
  58. package/dist/types/policy.d.ts.map +1 -0
  59. package/dist/types/policy.js +84 -0
  60. package/dist/types/policy.js.map +1 -0
  61. package/dist/utils/index.d.ts +6 -0
  62. package/dist/utils/index.d.ts.map +1 -0
  63. package/dist/utils/index.js +6 -0
  64. package/dist/utils/index.js.map +1 -0
  65. package/dist/utils/version.d.ts +68 -0
  66. package/dist/utils/version.d.ts.map +1 -0
  67. package/dist/utils/version.js +156 -0
  68. package/dist/utils/version.js.map +1 -0
  69. package/docs/specs/policy-dsl.md +925 -0
  70. package/eslint-report.json +1 -0
  71. package/examples/adk-integration/code-review-workflow.yml +1 -1
  72. package/examples/adk-integration/customer-support.yml +1 -1
  73. package/examples/adk-integration/data-pipeline.yml +1 -1
  74. package/examples/advanced/reasoning-agent.yaml +136 -0
  75. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  76. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  77. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  78. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  79. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  80. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  81. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  82. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  83. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  84. package/examples/agents-md/code-agent.ossa.json +100 -0
  85. package/examples/agents-md/monorepo-agent.ossa.yaml +180 -0
  86. package/examples/anthropic/claude-assistant.ossa.json +1 -1
  87. package/examples/autogen/multi-agent.ossa.json +1 -1
  88. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  89. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  90. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  91. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  92. package/examples/crewai/research-team.ossa.json +1 -1
  93. package/examples/cursor/code-review-agent.ossa.json +1 -1
  94. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  95. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  96. package/examples/extensions/agents-md-v1.yml +175 -0
  97. package/examples/extensions/drupal-v1.yml +1 -1
  98. package/examples/extensions/kagent-v1.yml +1 -1
  99. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  100. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  101. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  102. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  103. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  104. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  105. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  106. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  107. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  108. package/examples/langchain/chain-agent.ossa.json +1 -1
  109. package/examples/langflow/workflow-agent.ossa.json +1 -1
  110. package/examples/langgraph/state-machine-agent.ossa.json +1 -1
  111. package/examples/llamaindex/rag-agent.ossa.json +1 -1
  112. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  113. package/examples/multi-agent/README.md +74 -0
  114. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  115. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  116. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  117. package/examples/openai/basic-agent.ossa.yaml +1 -1
  118. package/examples/openai/multi-tool-agent.ossa.json +1 -1
  119. package/examples/openai/swarm-agent.ossa.json +1 -1
  120. package/examples/production/document-analyzer-openai.yml +1 -1
  121. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  122. package/examples/spec-examples/audit-agent.yml +1 -1
  123. package/examples/spec-examples/chat-agent.yml +1 -1
  124. package/examples/spec-examples/compliance-agent.yml +1 -1
  125. package/examples/spec-examples/monitoring-agent.yml +1 -1
  126. package/examples/spec-examples/workflow-agent.yml +1 -1
  127. package/examples/templates/ossa-compliance.yaml +1 -1
  128. package/examples/vercel/edge-agent.ossa.json +1 -1
  129. package/gl-code-quality-report.json +62 -0
  130. package/llms-ctx-full.txt +39 -0
  131. package/llms-ctx.txt +39 -0
  132. package/llms.txt +47 -0
  133. package/package.json +6 -3
  134. package/scripts/README.md +25 -0
  135. package/scripts/compliance-audit.ts +796 -0
  136. package/scripts/eslint-to-codequality.cjs +34 -0
  137. package/scripts/generate-agents-catalog.ts +2 -1
  138. package/scripts/generate-api-docs.ts +2 -1
  139. package/scripts/generate-examples-docs.ts +2 -1
  140. package/scripts/generate-llms-ctx.sh +17 -0
  141. package/scripts/generate-schema-docs.ts +31 -10
  142. package/scripts/sync-version.js +4 -12
  143. package/scripts/validate-schema.ts +2 -1
  144. package/spec/v0.2.8/CHANGELOG.md +401 -0
  145. package/spec/v0.2.8/README.md +72 -0
  146. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  147. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  148. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  149. package/spec/{v0.2.6-dev/ossa-0.2.6-dev.schema.json → v0.2.8/ossa-0.2.8.schema.json} +1509 -52
  150. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  151. package/spec/v0.2.9/a2a-protocol.md +1337 -0
  152. package/spec/v0.2.9/agent.md +1946 -0
  153. package/spec/v0.2.9/capabilities/index.yaml +25 -0
  154. package/spec/v0.2.9/capabilities/memory.yaml +251 -0
  155. package/spec/v0.2.9/capability-schema.md +576 -0
  156. package/spec/v0.2.9/compliance-profiles.md +533 -0
  157. package/spec/v0.2.9/conformance-testing.md +1527 -0
  158. package/spec/v0.2.9/gitlab-duo-integration.md +621 -0
  159. package/spec/v0.2.9/ossa-0.2.9.schema.json +3699 -0
  160. package/spec/v0.2.9/runtime-semantics.md +464 -0
  161. package/spec/v0.2.9/security-model.md +1245 -0
  162. package/spec/v0.2.9/semantic-conventions.md +347 -0
  163. package/spec/v0.2.9/types.ts +522 -0
  164. package/test-results/junit.xml +337 -0
  165. package/.github/workflows/pr-comment.yml +0 -33
  166. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  167. package/dist/spec/v0.2.6-dev/ossa-0.2.5.schema.json +0 -1696
  168. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.schema.json +0 -1696
  169. package/scripts/lib/exec.ts +0 -37
  170. package/scripts/lib/file-ops.ts +0 -58
  171. package/scripts/lib/version.ts +0 -83
  172. package/website/.lighthouserc.ts +0 -24
  173. package/website/.prettierrc +0 -10
  174. package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +0 -445
  175. package/website/Dockerfile +0 -30
  176. package/website/app/about/page.tsx +0 -304
  177. package/website/app/blog/[slug]/page.tsx +0 -208
  178. package/website/app/blog/page.tsx +0 -249
  179. package/website/app/design-guide/page.tsx +0 -511
  180. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  181. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  182. package/website/app/ecosystem/page.tsx +0 -410
  183. package/website/app/examples/page.tsx +0 -133
  184. package/website/app/globals.scss +0 -370
  185. package/website/app/layout.tsx +0 -106
  186. package/website/app/license/page.tsx +0 -183
  187. package/website/app/not-found.tsx +0 -18
  188. package/website/app/page.tsx +0 -686
  189. package/website/app/page.tsx.bak +0 -679
  190. package/website/app/page.tsx.bak2 +0 -649
  191. package/website/app/playground/page.tsx +0 -487
  192. package/website/app/robots.ts +0 -19
  193. package/website/app/rss.xml/route.ts +0 -74
  194. package/website/app/schema/page.tsx +0 -1001
  195. package/website/app/sitemap.ts +0 -56
  196. package/website/app/specification/page.tsx +0 -287
  197. package/website/components/InstallCommand.tsx +0 -96
  198. package/website/components/Logo.tsx +0 -97
  199. package/website/components/StructuredData.tsx +0 -65
  200. package/website/components/docs/DocsSearch.tsx +0 -104
  201. package/website/components/docs/DocsSidebar.tsx +0 -155
  202. package/website/components/docs/MarkdownContent.tsx +0 -401
  203. package/website/components/docs/VersionSelector.tsx +0 -105
  204. package/website/components/examples/ExamplesViewer.tsx +0 -293
  205. package/website/components/layout/Footer.tsx +0 -116
  206. package/website/components/layout/Header.tsx +0 -172
  207. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  208. package/website/components/schema/SchemaExplorer.tsx +0 -213
  209. package/website/components/ui/Badge.tsx +0 -82
  210. package/website/components/ui/Button.tsx +0 -116
  211. package/website/components/ui/Card.tsx +0 -167
  212. package/website/components/ui/Checkbox.tsx +0 -141
  213. package/website/components/ui/Input.tsx +0 -169
  214. package/website/components/ui/Radio.tsx +0 -141
  215. package/website/components/ui/Select.tsx +0 -182
  216. package/website/components/ui/Tag.tsx +0 -158
  217. package/website/components/ui/Textarea.tsx +0 -195
  218. package/website/components/ui/index.ts +0 -11
  219. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  220. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  221. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  222. package/website/content/blog/introducing-ossa-framework.md +0 -328
  223. package/website/content/blog/ossa-production-results.md +0 -279
  224. package/website/content/blog/welcome-to-ossa.md +0 -43
  225. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  226. package/website/content/docs/00-home.md +0 -153
  227. package/website/content/docs/adapters/openai-adapter.md +0 -693
  228. package/website/content/docs/agents/catalog.md +0 -28
  229. package/website/content/docs/aiflow-framework-integration-with-ossa.md +0 -107
  230. package/website/content/docs/api-reference/index.md +0 -38
  231. package/website/content/docs/api-reference/ossa-core-api.md +0 -634
  232. package/website/content/docs/api-reference/ossa-registry-api.md +0 -515
  233. package/website/content/docs/api-reference/unified-agent-gateway.md +0 -599
  234. package/website/content/docs/architecture/execution-flow.md +0 -335
  235. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  236. package/website/content/docs/architecture/overview.md +0 -121
  237. package/website/content/docs/architecture/stack-integration.md +0 -461
  238. package/website/content/docs/changelog.md +0 -246
  239. package/website/content/docs/cli-reference/index.md +0 -111
  240. package/website/content/docs/cli-reference/ossa-agents.md +0 -70
  241. package/website/content/docs/cli-reference/ossa-export.md +0 -56
  242. package/website/content/docs/cli-reference/ossa-generate.md +0 -66
  243. package/website/content/docs/cli-reference/ossa-gitlab-agent.md +0 -57
  244. package/website/content/docs/cli-reference/ossa-import.md +0 -56
  245. package/website/content/docs/cli-reference/ossa-init.md +0 -57
  246. package/website/content/docs/cli-reference/ossa-migrate.md +0 -62
  247. package/website/content/docs/cli-reference/ossa-run.md +0 -66
  248. package/website/content/docs/cli-reference/ossa-schema.md +0 -57
  249. package/website/content/docs/cli-reference/ossa-setup.md +0 -57
  250. package/website/content/docs/cli-reference/ossa-validate.md +0 -66
  251. package/website/content/docs/configuration/index.md +0 -97
  252. package/website/content/docs/contributing.md +0 -599
  253. package/website/content/docs/deployment/github-mirroring.md +0 -924
  254. package/website/content/docs/documentation.md +0 -100
  255. package/website/content/docs/ecosystem/framework-support.md +0 -1361
  256. package/website/content/docs/ecosystem/overview.md +0 -366
  257. package/website/content/docs/errors/index.md +0 -10
  258. package/website/content/docs/examples/aiflow-framework-integration-with-ossa.md +0 -107
  259. package/website/content/docs/examples/catalog.md +0 -300
  260. package/website/content/docs/for-audiences/students-researchers.md +0 -122
  261. package/website/content/docs/getting-started/index.md +0 -92
  262. package/website/content/docs/getting-started/installation.md +0 -155
  263. package/website/content/docs/getting-started/running-agents.md +0 -309
  264. package/website/content/docs/getting-started.md +0 -91
  265. package/website/content/docs/integrations/aiflow.md +0 -104
  266. package/website/content/docs/integrations/drupal.md +0 -105
  267. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  268. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  269. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  270. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  271. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  272. package/website/content/docs/migration-guides/index.md +0 -133
  273. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  274. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  275. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  276. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  277. package/website/content/docs/openapi-extensions/examples.md +0 -550
  278. package/website/content/docs/openapi-extensions/index.md +0 -551
  279. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  280. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  281. package/website/content/docs/ossa-compliant-badge.md +0 -251
  282. package/website/content/docs/pre-release/index.md +0 -175
  283. package/website/content/docs/quick-reference.md +0 -17
  284. package/website/content/docs/readme.md +0 -35
  285. package/website/content/docs/releases/v0.2.6.md +0 -99
  286. package/website/content/docs/schema-reference/agent-capabilities.md +0 -50
  287. package/website/content/docs/schema-reference/agent-id.md +0 -52
  288. package/website/content/docs/schema-reference/agent-name.md +0 -50
  289. package/website/content/docs/schema-reference/agent-role.md +0 -54
  290. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  291. package/website/content/docs/schema-reference/agent-version.md +0 -50
  292. package/website/content/docs/schema-reference/autonomy.md +0 -568
  293. package/website/content/docs/schema-reference/constraints.md +0 -543
  294. package/website/content/docs/schema-reference/index.md +0 -45
  295. package/website/content/docs/schema-reference/llm-config.md +0 -445
  296. package/website/content/docs/schema-reference/observability.md +0 -654
  297. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  298. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  299. package/website/content/docs/schema-reference/tools.md +0 -628
  300. package/website/content/docs/templates/blog-post.md +0 -43
  301. package/website/content/docs/types-reference/index.md +0 -105
  302. package/website/content/docs/use-cases/00-index.md +0 -395
  303. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  304. package/website/content/docs/use-cases/customer-support.md +0 -1234
  305. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  306. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  307. package/website/content/docs/versioning.md +0 -288
  308. package/website/dev.sh +0 -53
  309. package/website/docker-compose.dev.yml +0 -36
  310. package/website/lib/version.ts +0 -35
  311. package/website/lib/versions.json +0 -103
  312. package/website/next.config.ts +0 -18
  313. package/website/nginx.conf +0 -32
  314. package/website/package-lock.json +0 -9679
  315. package/website/package.json +0 -59
  316. package/website/postcss.config.mjs +0 -9
  317. package/website/scripts/fetch-versions.js +0 -166
  318. package/website/scripts/generate-examples-index.js +0 -163
  319. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  320. package/website/scripts/sync-version.js +0 -72
  321. package/website/scripts/sync-wiki.ts +0 -322
  322. package/website/scripts/upload-wiki.ts +0 -199
  323. package/website/styles/_spacing.scss +0 -453
  324. package/website/styles/_tokens.scss +0 -245
  325. package/website/styles/_typography.scss +0 -361
  326. package/website/styles/_variables.scss +0 -287
  327. package/website/tailwind.config.ts +0 -170
@@ -1,649 +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
- {/* Quick Start Section */}
344
- <section id="get-started" className="py-20 px-4 bg-gray-50 scroll-mt-20">
345
- <div className="container mx-auto max-w-7xl">
346
- <div className="text-center mb-12">
347
- <h2 className="text-5xl font-bold mb-6">Get Started in Minutes</h2>
348
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
349
- Install the CLI, create your first agent, and start building with Open Standard Agents.
350
- </p>
351
- </div>
352
-
353
- <div className="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12">
354
- <Card variant="default" padding="lg" elevation={2}>
355
- <CardHeader>
356
- <CardTitle className="text-primary">1. Install CLI</CardTitle>
357
- </CardHeader>
358
- <CardContent>
359
- <div className="bg-code-bg rounded-lg p-4">
360
- <pre className="text-code-text text-sm overflow-x-auto">
361
- <code>npm install -g @bluefly/openstandardagents</code>
362
- </pre>
363
- </div>
364
- </CardContent>
365
- </Card>
366
- <Card variant="default" padding="lg" elevation={2}>
367
- <CardHeader>
368
- <CardTitle className="text-primary">2. Create Agent</CardTitle>
369
- </CardHeader>
370
- <CardContent>
371
- <div className="bg-code-bg rounded-lg p-4">
372
- <pre className="text-code-text text-sm overflow-x-auto">
373
- <code>{`osa init my-agent
374
- cd my-agent`}</code>
375
- </pre>
376
- </div>
377
- </CardContent>
378
- </Card>
379
- <Card variant="default" padding="lg" elevation={2}>
380
- <CardHeader>
381
- <CardTitle className="text-primary">3. Validate</CardTitle>
382
- </CardHeader>
383
- <CardContent>
384
- <div className="bg-code-bg rounded-lg p-4">
385
- <pre className="text-code-text text-sm overflow-x-auto">
386
- <code>osa validate my-agent.ossa.yaml</code>
387
- </pre>
388
- </div>
389
- </CardContent>
390
- </Card>
391
- <Card variant="default" padding="lg" elevation={2}>
392
- <CardHeader>
393
- <CardTitle className="text-primary">4. Export</CardTitle>
394
- </CardHeader>
395
- <CardContent>
396
- <div className="bg-code-bg rounded-lg p-4">
397
- <pre className="text-code-text text-sm overflow-x-auto">
398
- <code>{`osa export --to cursor
399
- osa export --to langchain`}</code>
400
- </pre>
401
- </div>
402
- </CardContent>
403
- </Card>
404
- </div>
405
-
406
- <div className="text-center">
407
- <Link href="/docs/getting-started/5-minute-overview/" className="btn-primary text-lg px-8 py-4">
408
- Read Full Getting Started Guide
409
- </Link>
410
- </div>
411
- </div>
412
- </section>
413
-
414
- {/* Quick Start Section */}
415
- <section id="get-started" className="py-20 px-4 bg-gray-50 scroll-mt-20">
416
- <div className="container mx-auto max-w-7xl">
417
- <div className="text-center mb-12">
418
- <h2 className="text-5xl font-bold mb-6">Get Started in Minutes</h2>
419
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
420
- Install the CLI, create your first agent, and start building with Open Standard Agents.
421
- </p>
422
- </div>
423
-
424
- <div className="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12">
425
- <Card variant="default" padding="lg" elevation={2}>
426
- <CardHeader>
427
- <CardTitle className="text-primary">1. Install CLI</CardTitle>
428
- </CardHeader>
429
- <CardContent>
430
- <div className="bg-code-bg rounded-lg p-4">
431
- <pre className="text-code-text text-sm overflow-x-auto">
432
- <code>npm install -g @bluefly/openstandardagents</code>
433
- </pre>
434
- </div>
435
- </CardContent>
436
- </Card>
437
- <Card variant="default" padding="lg" elevation={2}>
438
- <CardHeader>
439
- <CardTitle className="text-primary">2. Create Agent</CardTitle>
440
- </CardHeader>
441
- <CardContent>
442
- <div className="bg-code-bg rounded-lg p-4">
443
- <pre className="text-code-text text-sm overflow-x-auto">
444
- <code>{`osa init my-agent
445
- cd my-agent`}</code>
446
- </pre>
447
- </div>
448
- </CardContent>
449
- </Card>
450
- <Card variant="default" padding="lg" elevation={2}>
451
- <CardHeader>
452
- <CardTitle className="text-primary">3. Validate</CardTitle>
453
- </CardHeader>
454
- <CardContent>
455
- <div className="bg-code-bg rounded-lg p-4">
456
- <pre className="text-code-text text-sm overflow-x-auto">
457
- <code>osa validate my-agent.ossa.yaml</code>
458
- </pre>
459
- </div>
460
- </CardContent>
461
- </Card>
462
- <Card variant="default" padding="lg" elevation={2}>
463
- <CardHeader>
464
- <CardTitle className="text-primary">4. Export</CardTitle>
465
- </CardHeader>
466
- <CardContent>
467
- <div className="bg-code-bg rounded-lg p-4">
468
- <pre className="text-code-text text-sm overflow-x-auto">
469
- <code>{`osa export --to cursor
470
- osa export --to langchain`}</code>
471
- </pre>
472
- </div>
473
- </CardContent>
474
- </Card>
475
- </div>
476
-
477
- <div className="text-center">
478
- <Link href="/docs/getting-started/5-minute-overview/" className="btn-primary text-lg px-8 py-4">
479
- Read Full Getting Started Guide
480
- </Link>
481
- </div>
482
- </div>
483
- </section>
484
-
485
- {/* Integrations & Adoption Section */}
486
- <section className="py-16 px-4 bg-gray-50">
487
- <div className="container mx-auto max-w-7xl">
488
- <div className="text-center mb-12">
489
- <h2 className="text-4xl font-bold mb-4">Works With Your Favorite Tools</h2>
490
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
491
- OSSA integrates seamlessly with leading AI frameworks, platforms, and tools.
492
- Build once, deploy anywhere.
493
- </p>
494
- </div>
495
-
496
- {/* Logos Grid - Row 1 */}
497
- <div className="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-8">
498
- <Logo domain="openai.com" name="OpenAI" />
499
- <Logo domain="anthropic.com" name="Anthropic" />
500
- <Logo domain="deepmind.google" name="Gemini" />
501
- <Logo domain="microsoft.com" name="Microsoft" />
502
- <Logo domain="langchain.com" name="LangChain" />
503
- <Logo domain="huggingface.co" name="Hugging Face" />
504
- </div>
505
-
506
- {/* Logos Grid - Row 2 */}
507
- <div className="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-12">
508
- <Logo domain="kagent.dev" name="kAgent" />
509
- <Logo domain="crewai.com" name="CrewAI" />
510
- <Logo domain="langflow.com" name="Langflow" />
511
- <Logo domain="llamaindex.ai" name="LlamaIndex" />
512
- <Logo domain="langchain.com" name="LangGraph" />
513
- <Logo domain="modelcontextprotocol.io" name="MCP" />
514
- <Logo domain="drupal.org" name="Drupal" />
515
- <Logo domain="librechat.com" name="LibreChat" />
516
- <Logo domain="docker.com" name="Docker" />
517
- <Logo domain="kubernetes.io" name="Kubernetes" />
518
- <Logo domain="aws.amazon.com" name="AWS" />
519
- <Logo domain="github.com" name="GitHub" />
520
- </div>
521
-
522
- <div className="text-center">
523
- <p className="text-lg text-gray-600 mb-6">
524
- And many more frameworks, platforms, and tools...
525
- </p>
526
- <Link href="/docs/ecosystem/framework-support/" className="btn-primary">
527
- View All Integrations
528
- </Link>
529
- </div>
530
- </div>
531
- </section>
532
-
533
- {/* Features Section */}
534
- <section className="py-20 px-4 bg-white">
535
- <div className="container mx-auto max-w-7xl">
536
- <div className="text-center mb-16">
537
- <h2 className="text-5xl font-bold mb-6">Why Open Standard Agents?</h2>
538
- <p className="text-xl text-gray-600 max-w-3xl mx-auto">
539
- Build agent-based systems with confidence, knowing your agents will work across
540
- frameworks, teams, and infrastructures.
541
- </p>
542
- </div>
543
-
544
- <div className="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
545
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
546
- <CardHeader>
547
- <CardTitle className="text-xl">Framework-Agnostic</CardTitle>
548
- </CardHeader>
549
- <CardContent>
550
- <p className="text-gray-700">
551
- Works with LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more.
552
- No vendor lock-in.
553
- </p>
554
- </CardContent>
555
- </Card>
556
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
557
- <CardHeader>
558
- <CardTitle className="text-xl">Portable</CardTitle>
559
- </CardHeader>
560
- <CardContent>
561
- <p className="text-gray-700">
562
- Move agents between teams, organizations, and infrastructures without rewriting code.
563
- </p>
564
- </CardContent>
565
- </Card>
566
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
567
- <CardHeader>
568
- <CardTitle className="text-xl">Validatable</CardTitle>
569
- </CardHeader>
570
- <CardContent>
571
- <p className="text-gray-700">
572
- JSON Schema validation ensures correctness before deployment. Catch errors early.
573
- </p>
574
- </CardContent>
575
- </Card>
576
- <Card variant="default" padding="md" elevation={1} hover className="text-center">
577
- <CardHeader>
578
- <CardTitle className="text-xl">Well-Documented</CardTitle>
579
- </CardHeader>
580
- <CardContent>
581
- <p className="text-gray-700">
582
- Comprehensive documentation, examples, and tooling. Built for developers, by developers.
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">Open Source</CardTitle>
589
- </CardHeader>
590
- <CardContent>
591
- <p className="text-gray-700">
592
- Apache 2.0 licensed. Community-driven. Transparent development process.
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">Fast Integration</CardTitle>
599
- </CardHeader>
600
- <CardContent>
601
- <p className="text-gray-700">
602
- Export to any framework format. Import existing agents. Seamless migration paths.
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">Secure by Design</CardTitle>
609
- </CardHeader>
610
- <CardContent>
611
- <p className="text-gray-700">
612
- Built-in security patterns, authentication, and compliance features.
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">Observable</CardTitle>
619
- </CardHeader>
620
- <CardContent>
621
- <p className="text-gray-700">
622
- Built-in observability, logging, and monitoring. Track agent performance and behavior.
623
- </p>
624
- </CardContent>
625
- </Card>
626
- </div>
627
- </div>
628
- </section>
629
-
630
- {/* CTA Section */}
631
- <section className="py-16 px-4 bg-primary text-white">
632
- <div className="container mx-auto max-w-6xl text-center">
633
- <h2 className="text-4xl font-bold mb-6">Ready to Get Started?</h2>
634
- <p className="text-xl mb-8 text-gray-200">
635
- Join the community and start building with Open Standard Agents today.
636
- </p>
637
- <div className="flex flex-col sm:flex-row gap-4 justify-center">
638
- <Link href="/examples/" className="btn-secondary">
639
- View Examples
640
- </Link>
641
- <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">
642
- Report Issues
643
- </Link>
644
- </div>
645
- </div>
646
- </section>
647
- </div>
648
- );
649
- }