@bluefly/openstandardagents 0.1.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 (738) hide show
  1. package/.buildkit/agent-first-policy.sh +65 -0
  2. package/.buildkit/branching-workflow.json +41 -0
  3. package/.buildkit/hooks.yaml +23 -0
  4. package/.buildkit/install-buildkit-setup.cjs +483 -0
  5. package/.cursor/plans/ossa-comprehensive-enhancement-issue-audit-plan.plan.md +735 -0
  6. package/.cursor/plans/ossa-enterprise-transformation-plan-0ccaf09b.plan.md +373 -0
  7. package/.cursor/plans/ossa-milestone-organization-and-v0-2-4-release-6dafa4ec.plan.md +214 -0
  8. package/.cursor/rules/problems.json +483 -0
  9. package/.cursor/settings.json +29 -0
  10. package/.cursor/worktrees.json +95 -0
  11. package/.env.example +41 -0
  12. package/.env.local +31 -0
  13. package/.github/ISSUE_TEMPLATE/README.md +33 -0
  14. package/.github/ISSUE_TEMPLATE/bug_report.md +61 -0
  15. package/.github/ISSUE_TEMPLATE/config.yml +12 -0
  16. package/.github/ISSUE_TEMPLATE/feature_request.md +75 -0
  17. package/.github/wiki_templates/home.md +39 -0
  18. package/.gitignore.bak +489 -0
  19. package/.gitlab-ci-trigger +1 -0
  20. package/.husky/pre-commit +31 -0
  21. package/.lintstagedrc.json +16 -0
  22. package/.redocly.yaml +63 -0
  23. package/.vscode/extensions.json +6 -0
  24. package/.vscode/settings.json +3 -0
  25. package/AUDIT_FIXES.md +139 -0
  26. package/AUDIT_REPORT.md +308 -0
  27. package/BUILDKIT_INTEGRATION.md +146 -0
  28. package/Dockerfile +35 -0
  29. package/README.md +559 -0
  30. package/dist/adk/adapters/index.d.ts +64 -0
  31. package/dist/adk/adapters/index.d.ts.map +1 -0
  32. package/dist/adk/adapters/index.js +257 -0
  33. package/dist/adk/adapters/index.js.map +1 -0
  34. package/dist/adk/agents/custom-agent.d.ts +55 -0
  35. package/dist/adk/agents/custom-agent.d.ts.map +1 -0
  36. package/dist/adk/agents/custom-agent.js +167 -0
  37. package/dist/adk/agents/custom-agent.js.map +1 -0
  38. package/dist/adk/agents/index.d.ts +64 -0
  39. package/dist/adk/agents/index.d.ts.map +1 -0
  40. package/dist/adk/agents/index.js +125 -0
  41. package/dist/adk/agents/index.js.map +1 -0
  42. package/dist/adk/agents/llm-agent.d.ts +27 -0
  43. package/dist/adk/agents/llm-agent.d.ts.map +1 -0
  44. package/dist/adk/agents/llm-agent.js +63 -0
  45. package/dist/adk/agents/llm-agent.js.map +1 -0
  46. package/dist/adk/agents/workflow-agent.d.ts +42 -0
  47. package/dist/adk/agents/workflow-agent.d.ts.map +1 -0
  48. package/dist/adk/agents/workflow-agent.js +144 -0
  49. package/dist/adk/agents/workflow-agent.js.map +1 -0
  50. package/dist/adk/index.d.ts +10 -0
  51. package/dist/adk/index.d.ts.map +1 -0
  52. package/dist/adk/index.js +10 -0
  53. package/dist/adk/index.js.map +1 -0
  54. package/dist/adk/orchestration/index.d.ts +63 -0
  55. package/dist/adk/orchestration/index.d.ts.map +1 -0
  56. package/dist/adk/orchestration/index.js +264 -0
  57. package/dist/adk/orchestration/index.js.map +1 -0
  58. package/dist/adk/state/index.d.ts +73 -0
  59. package/dist/adk/state/index.d.ts.map +1 -0
  60. package/dist/adk/state/index.js +177 -0
  61. package/dist/adk/state/index.js.map +1 -0
  62. package/dist/adk/tools/index.d.ts +65 -0
  63. package/dist/adk/tools/index.d.ts.map +1 -0
  64. package/dist/adk/tools/index.js +252 -0
  65. package/dist/adk/tools/index.js.map +1 -0
  66. package/dist/cli/agent-deployment.d.ts +34 -0
  67. package/dist/cli/agent-deployment.d.ts.map +1 -0
  68. package/dist/cli/agent-deployment.js +396 -0
  69. package/dist/cli/agent-deployment.js.map +1 -0
  70. package/dist/cli/commands/discover.command.d.ts +7 -0
  71. package/dist/cli/commands/discover.command.d.ts.map +1 -0
  72. package/dist/cli/commands/discover.command.js +80 -0
  73. package/dist/cli/commands/discover.command.js.map +1 -0
  74. package/dist/cli/commands/export.command.d.ts +7 -0
  75. package/dist/cli/commands/export.command.d.ts.map +1 -0
  76. package/dist/cli/commands/export.command.js +56 -0
  77. package/dist/cli/commands/export.command.js.map +1 -0
  78. package/dist/cli/commands/generate.command.d.ts +7 -0
  79. package/dist/cli/commands/generate.command.d.ts.map +1 -0
  80. package/dist/cli/commands/generate.command.js +66 -0
  81. package/dist/cli/commands/generate.command.js.map +1 -0
  82. package/dist/cli/commands/gitlab-agent.command.d.ts +8 -0
  83. package/dist/cli/commands/gitlab-agent.command.d.ts.map +1 -0
  84. package/dist/cli/commands/gitlab-agent.command.js +201 -0
  85. package/dist/cli/commands/gitlab-agent.command.js.map +1 -0
  86. package/dist/cli/commands/import.command.d.ts +7 -0
  87. package/dist/cli/commands/import.command.d.ts.map +1 -0
  88. package/dist/cli/commands/import.command.js +36 -0
  89. package/dist/cli/commands/import.command.js.map +1 -0
  90. package/dist/cli/commands/init.command.d.ts +7 -0
  91. package/dist/cli/commands/init.command.d.ts.map +1 -0
  92. package/dist/cli/commands/init.command.js +146 -0
  93. package/dist/cli/commands/init.command.js.map +1 -0
  94. package/dist/cli/commands/migrate.command.d.ts +7 -0
  95. package/dist/cli/commands/migrate.command.d.ts.map +1 -0
  96. package/dist/cli/commands/migrate.command.js +110 -0
  97. package/dist/cli/commands/migrate.command.js.map +1 -0
  98. package/dist/cli/commands/ossa.d.ts +9 -0
  99. package/dist/cli/commands/ossa.d.ts.map +1 -0
  100. package/dist/cli/commands/ossa.js +234 -0
  101. package/dist/cli/commands/ossa.js.map +1 -0
  102. package/dist/cli/commands/run.command.d.ts +7 -0
  103. package/dist/cli/commands/run.command.d.ts.map +1 -0
  104. package/dist/cli/commands/run.command.js +114 -0
  105. package/dist/cli/commands/run.command.js.map +1 -0
  106. package/dist/cli/commands/schema.command.d.ts +7 -0
  107. package/dist/cli/commands/schema.command.d.ts.map +1 -0
  108. package/dist/cli/commands/schema.command.js +72 -0
  109. package/dist/cli/commands/schema.command.js.map +1 -0
  110. package/dist/cli/commands/validate.command.d.ts +7 -0
  111. package/dist/cli/commands/validate.command.d.ts.map +1 -0
  112. package/dist/cli/commands/validate.command.js +125 -0
  113. package/dist/cli/commands/validate.command.js.map +1 -0
  114. package/dist/cli/commands/worktree.d.ts +7 -0
  115. package/dist/cli/commands/worktree.d.ts.map +1 -0
  116. package/dist/cli/commands/worktree.js +509 -0
  117. package/dist/cli/commands/worktree.js.map +1 -0
  118. package/dist/cli/index.d.ts +7 -0
  119. package/dist/cli/index.d.ts.map +1 -0
  120. package/dist/cli/index.js +50 -0
  121. package/dist/cli/index.js.map +1 -0
  122. package/dist/cli/ossa-cli.d.ts +52 -0
  123. package/dist/cli/ossa-cli.d.ts.map +1 -0
  124. package/dist/cli/ossa-cli.js +1061 -0
  125. package/dist/cli/ossa-cli.js.map +1 -0
  126. package/dist/core/index.d.ts +31 -0
  127. package/dist/core/index.d.ts.map +1 -0
  128. package/dist/core/index.js +37 -0
  129. package/dist/core/index.js.map +1 -0
  130. package/dist/core/mcp-server-implementation.d.ts +39 -0
  131. package/dist/core/mcp-server-implementation.d.ts.map +1 -0
  132. package/dist/core/mcp-server-implementation.js +1262 -0
  133. package/dist/core/mcp-server-implementation.js.map +1 -0
  134. package/dist/core/orchestrator/index.d.ts +156 -0
  135. package/dist/core/orchestrator/index.d.ts.map +1 -0
  136. package/dist/core/orchestrator/index.js +446 -0
  137. package/dist/core/orchestrator/index.js.map +1 -0
  138. package/dist/core/orchestrator/ossa-orchestrator.d.ts +106 -0
  139. package/dist/core/orchestrator/ossa-orchestrator.d.ts.map +1 -0
  140. package/dist/core/orchestrator/ossa-orchestrator.js +396 -0
  141. package/dist/core/orchestrator/ossa-orchestrator.js.map +1 -0
  142. package/dist/di-container.d.ts +18 -0
  143. package/dist/di-container.d.ts.map +1 -0
  144. package/dist/di-container.js +46 -0
  145. package/dist/di-container.js.map +1 -0
  146. package/dist/index.d.ts +31 -0
  147. package/dist/index.d.ts.map +1 -0
  148. package/dist/index.js +37 -0
  149. package/dist/index.js.map +1 -0
  150. package/dist/protocols/acap.d.ts +61 -0
  151. package/dist/protocols/acap.d.ts.map +1 -0
  152. package/dist/protocols/acap.js +92 -0
  153. package/dist/protocols/acap.js.map +1 -0
  154. package/dist/protocols/index.d.ts +8 -0
  155. package/dist/protocols/index.d.ts.map +1 -0
  156. package/dist/protocols/index.js +8 -0
  157. package/dist/protocols/index.js.map +1 -0
  158. package/dist/protocols/rasp.d.ts +58 -0
  159. package/dist/protocols/rasp.d.ts.map +1 -0
  160. package/dist/protocols/rasp.js +212 -0
  161. package/dist/protocols/rasp.js.map +1 -0
  162. package/dist/repositories/manifest.repository.d.ts +26 -0
  163. package/dist/repositories/manifest.repository.d.ts.map +1 -0
  164. package/dist/repositories/manifest.repository.js +90 -0
  165. package/dist/repositories/manifest.repository.js.map +1 -0
  166. package/dist/repositories/schema.repository.d.ts +30 -0
  167. package/dist/repositories/schema.repository.d.ts.map +1 -0
  168. package/dist/repositories/schema.repository.js +144 -0
  169. package/dist/repositories/schema.repository.js.map +1 -0
  170. package/dist/server/simple-app.d.ts +18 -0
  171. package/dist/server/simple-app.d.ts.map +1 -0
  172. package/dist/server/simple-app.js +155 -0
  173. package/dist/server/simple-app.js.map +1 -0
  174. package/dist/server/types/agent.d.ts +498 -0
  175. package/dist/server/types/agent.d.ts.map +1 -0
  176. package/dist/server/types/agent.js +37 -0
  177. package/dist/server/types/agent.js.map +1 -0
  178. package/dist/server/types/server.d.ts +370 -0
  179. package/dist/server/types/server.d.ts.map +1 -0
  180. package/dist/server/types/server.js +68 -0
  181. package/dist/server/types/server.js.map +1 -0
  182. package/dist/services/discovery.service.d.ts +78 -0
  183. package/dist/services/discovery.service.d.ts.map +1 -0
  184. package/dist/services/discovery.service.js +212 -0
  185. package/dist/services/discovery.service.js.map +1 -0
  186. package/dist/services/generation.service.d.ts +54 -0
  187. package/dist/services/generation.service.d.ts.map +1 -0
  188. package/dist/services/generation.service.js +298 -0
  189. package/dist/services/generation.service.js.map +1 -0
  190. package/dist/services/gitlab-agent.service.d.ts +94 -0
  191. package/dist/services/gitlab-agent.service.d.ts.map +1 -0
  192. package/dist/services/gitlab-agent.service.js +158 -0
  193. package/dist/services/gitlab-agent.service.js.map +1 -0
  194. package/dist/services/migration.service.d.ts +30 -0
  195. package/dist/services/migration.service.d.ts.map +1 -0
  196. package/dist/services/migration.service.js +231 -0
  197. package/dist/services/migration.service.js.map +1 -0
  198. package/dist/services/orchestration/worktree-orchestrator.d.ts +146 -0
  199. package/dist/services/orchestration/worktree-orchestrator.d.ts.map +1 -0
  200. package/dist/services/orchestration/worktree-orchestrator.js +591 -0
  201. package/dist/services/orchestration/worktree-orchestrator.js.map +1 -0
  202. package/dist/services/runtime/openai.adapter.d.ts +94 -0
  203. package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
  204. package/dist/services/runtime/openai.adapter.js +209 -0
  205. package/dist/services/runtime/openai.adapter.js.map +1 -0
  206. package/dist/services/validation.service.d.ts +45 -0
  207. package/dist/services/validation.service.d.ts.map +1 -0
  208. package/dist/services/validation.service.js +362 -0
  209. package/dist/services/validation.service.js.map +1 -0
  210. package/dist/services/validators/anthropic.validator.d.ts +9 -0
  211. package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
  212. package/dist/services/validators/anthropic.validator.js +105 -0
  213. package/dist/services/validators/anthropic.validator.js.map +1 -0
  214. package/dist/services/validators/autogen.validator.d.ts +9 -0
  215. package/dist/services/validators/autogen.validator.d.ts.map +1 -0
  216. package/dist/services/validators/autogen.validator.js +111 -0
  217. package/dist/services/validators/autogen.validator.js.map +1 -0
  218. package/dist/services/validators/crewai.validator.d.ts +9 -0
  219. package/dist/services/validators/crewai.validator.d.ts.map +1 -0
  220. package/dist/services/validators/crewai.validator.js +117 -0
  221. package/dist/services/validators/crewai.validator.js.map +1 -0
  222. package/dist/services/validators/cursor.validator.d.ts +9 -0
  223. package/dist/services/validators/cursor.validator.d.ts.map +1 -0
  224. package/dist/services/validators/cursor.validator.js +88 -0
  225. package/dist/services/validators/cursor.validator.js.map +1 -0
  226. package/dist/services/validators/index.d.ts +15 -0
  227. package/dist/services/validators/index.d.ts.map +1 -0
  228. package/dist/services/validators/index.js +15 -0
  229. package/dist/services/validators/index.js.map +1 -0
  230. package/dist/services/validators/langchain.validator.d.ts +9 -0
  231. package/dist/services/validators/langchain.validator.d.ts.map +1 -0
  232. package/dist/services/validators/langchain.validator.js +103 -0
  233. package/dist/services/validators/langchain.validator.js.map +1 -0
  234. package/dist/services/validators/langflow.validator.d.ts +9 -0
  235. package/dist/services/validators/langflow.validator.d.ts.map +1 -0
  236. package/dist/services/validators/langflow.validator.js +92 -0
  237. package/dist/services/validators/langflow.validator.js.map +1 -0
  238. package/dist/services/validators/langgraph.validator.d.ts +9 -0
  239. package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
  240. package/dist/services/validators/langgraph.validator.js +123 -0
  241. package/dist/services/validators/langgraph.validator.js.map +1 -0
  242. package/dist/services/validators/llamaindex.validator.d.ts +9 -0
  243. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
  244. package/dist/services/validators/llamaindex.validator.js +121 -0
  245. package/dist/services/validators/llamaindex.validator.js.map +1 -0
  246. package/dist/services/validators/openai.validator.d.ts +9 -0
  247. package/dist/services/validators/openai.validator.d.ts.map +1 -0
  248. package/dist/services/validators/openai.validator.js +126 -0
  249. package/dist/services/validators/openai.validator.js.map +1 -0
  250. package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
  251. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
  252. package/dist/services/validators/vercel-ai.validator.js +99 -0
  253. package/dist/services/validators/vercel-ai.validator.js.map +1 -0
  254. package/dist/services/worktree/branching-strategy.d.ts +17 -0
  255. package/dist/services/worktree/branching-strategy.d.ts.map +1 -0
  256. package/dist/services/worktree/branching-strategy.js +66 -0
  257. package/dist/services/worktree/branching-strategy.js.map +1 -0
  258. package/dist/services/worktree/git-worktree-manager.d.ts +32 -0
  259. package/dist/services/worktree/git-worktree-manager.d.ts.map +1 -0
  260. package/dist/services/worktree/git-worktree-manager.js +61 -0
  261. package/dist/services/worktree/git-worktree-manager.js.map +1 -0
  262. package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  263. package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
  264. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  265. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  266. package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
  267. package/dist/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
  268. package/dist/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
  269. package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
  270. package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  271. package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  272. package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  273. package/dist/spec/v0.2.3/README.md +154 -0
  274. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  275. package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  276. package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  277. package/dist/spec/v0.2.4-dev/README.md +61 -0
  278. package/dist/spec/v0.2.4-dev/RELEASE-PROCESS.md +130 -0
  279. package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  280. package/dist/spec/v0.2.4-dev/openapi/CHANGELOG-0.2.4.md +177 -0
  281. package/dist/spec/v0.2.4-dev/openapi/README-0.2.4.md +51 -0
  282. package/dist/spec/v0.2.4-dev/openapi/VERIFICATION-0.2.4.md +147 -0
  283. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1717 -0
  284. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  285. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  286. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  287. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  288. package/dist/specification/validator.d.ts +82 -0
  289. package/dist/specification/validator.d.ts.map +1 -0
  290. package/dist/specification/validator.js +562 -0
  291. package/dist/specification/validator.js.map +1 -0
  292. package/dist/types/acdl-api.d.ts +335 -0
  293. package/dist/types/acdl-api.d.ts.map +1 -0
  294. package/dist/types/acdl-api.js +6 -0
  295. package/dist/types/acdl-api.js.map +1 -0
  296. package/dist/types/agents/index.d.ts +53 -0
  297. package/dist/types/agents/index.d.ts.map +1 -0
  298. package/dist/types/agents/index.js +5 -0
  299. package/dist/types/agents/index.js.map +1 -0
  300. package/dist/types/api.d.ts +225 -0
  301. package/dist/types/api.d.ts.map +1 -0
  302. package/dist/types/api.js +6 -0
  303. package/dist/types/api.js.map +1 -0
  304. package/dist/types/architecture/index.d.ts +530 -0
  305. package/dist/types/architecture/index.d.ts.map +1 -0
  306. package/dist/types/architecture/index.js +258 -0
  307. package/dist/types/architecture/index.js.map +1 -0
  308. package/dist/types/index.d.ts +279 -0
  309. package/dist/types/index.d.ts.map +1 -0
  310. package/dist/types/index.js +68 -0
  311. package/dist/types/index.js.map +1 -0
  312. package/dist/types/openapi-extensions.d.ts +164 -0
  313. package/dist/types/openapi-extensions.d.ts.map +1 -0
  314. package/dist/types/openapi-extensions.js +6 -0
  315. package/dist/types/openapi-extensions.js.map +1 -0
  316. package/dist/types/policies/index.d.ts +35 -0
  317. package/dist/types/policies/index.d.ts.map +1 -0
  318. package/dist/types/policies/index.js +5 -0
  319. package/dist/types/policies/index.js.map +1 -0
  320. package/dist/types/workflows/index.d.ts +40 -0
  321. package/dist/types/workflows/index.d.ts.map +1 -0
  322. package/dist/types/workflows/index.js +5 -0
  323. package/dist/types/workflows/index.js.map +1 -0
  324. package/dist/utils/version-resolver.d.ts +28 -0
  325. package/dist/utils/version-resolver.d.ts.map +1 -0
  326. package/dist/utils/version-resolver.js +110 -0
  327. package/dist/utils/version-resolver.js.map +1 -0
  328. package/docker-compose.yml +160 -0
  329. package/junit.xml +1 -0
  330. package/package.json +105 -0
  331. package/public/api-docs.html +206 -0
  332. package/public/assets/favicon.svg +8 -0
  333. package/public/assets/script.js +279 -0
  334. package/public/assets/style.css +632 -0
  335. package/public/index.html +307 -0
  336. package/public/redocly-config.yaml +80 -0
  337. package/public/src/api/acdl-specification.yml +531 -0
  338. package/public/src/api/clean-architecture.openapi.yml +1435 -0
  339. package/public/src/api/context7-mcp.openapi.yml +313 -0
  340. package/public/src/api/magic-mcp.openapi.yml +647 -0
  341. package/public/src/api/mcp-infrastructure.openapi.yml +904 -0
  342. package/public/src/api/orchestration.openapi.yml +444 -0
  343. package/public/src/api/ossa-complete.openapi.yml +2250 -0
  344. package/public/src/api/project-discovery.openapi.yml +1293 -0
  345. package/public/src/api/rebuild-audit.openapi.yml +800 -0
  346. package/public/src/api/specification.openapi.yml +498 -0
  347. package/public/src/api/voice-agent-specification.yml +640 -0
  348. package/public/src/api/web-eval-mcp.openapi.yml +426 -0
  349. package/pyrightconfig.json +13 -0
  350. package/redocly.yaml +56 -0
  351. package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  352. package/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
  353. package/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
  354. package/spec/v0.2.4/ossa-0.2.4.schema.json +1717 -0
  355. package/spec/v0.2.4/ossa-0.2.4.yaml +581 -0
  356. package/specs/README.md +31 -0
  357. package/specs/acdl-specification.yml +531 -0
  358. package/specs/clean-architecture.openapi.yml +1435 -0
  359. package/specs/context7-mcp.openapi.yml +313 -0
  360. package/specs/magic-mcp.openapi.yml +647 -0
  361. package/specs/mcp-infrastructure.openapi.yml +904 -0
  362. package/specs/orchestration.openapi.yml +444 -0
  363. package/specs/ossa-complete.openapi.yml +2250 -0
  364. package/specs/project-discovery.openapi.yml +1293 -0
  365. package/specs/rebuild-audit.openapi.yml +800 -0
  366. package/specs/specification.openapi.yml +498 -0
  367. package/specs/test-api.openapi.yml +20 -0
  368. package/specs/voice-agent-specification.yml +640 -0
  369. package/specs/web-eval-mcp.openapi.yml +426 -0
  370. package/src/adk/adapters/index.ts +310 -0
  371. package/src/adk/agents/custom-agent.ts +206 -0
  372. package/src/adk/agents/index.ts +158 -0
  373. package/src/adk/agents/llm-agent.ts +76 -0
  374. package/src/adk/agents/workflow-agent.ts +191 -0
  375. package/src/adk/index.ts +10 -0
  376. package/src/adk/orchestration/index.ts +352 -0
  377. package/src/adk/state/index.ts +217 -0
  378. package/src/adk/tools/index.ts +291 -0
  379. package/src/api/acdl-specification.yml +531 -0
  380. package/src/api/agent-manifest.schema.json +859 -0
  381. package/src/api/agent-worktree-schema.json +320 -0
  382. package/src/api/clean-architecture.openapi.yml +1435 -0
  383. package/src/api/context7-mcp.openapi.yml +313 -0
  384. package/src/api/magic-mcp.openapi.yml +647 -0
  385. package/src/api/mcp-infrastructure.openapi.yml +904 -0
  386. package/src/api/openapi.redoc.config.json +6 -0
  387. package/src/api/orchestration.openapi.yml +444 -0
  388. package/src/api/ossa-complete.openapi.yml +2250 -0
  389. package/src/api/project-discovery.openapi.yml +1293 -0
  390. package/src/api/rebuild-audit.openapi.yml +800 -0
  391. package/src/api/specification.openapi.yml +498 -0
  392. package/src/api/test-api.openapi.yml +20 -0
  393. package/src/api/voice-agent-specification.yml +640 -0
  394. package/src/api/web-eval-mcp.openapi.yml +426 -0
  395. package/src/api/workflow.schema.json +524 -0
  396. package/src/cli/agent-deployment.ts +452 -0
  397. package/src/cli/commands/ossa.ts +272 -0
  398. package/src/cli/commands/worktree.ts +603 -0
  399. package/src/cli/ossa-cli.ts +1176 -0
  400. package/src/core/index.ts +42 -0
  401. package/src/core/mcp-server-implementation.ts +1409 -0
  402. package/src/core/orchestrator/index.ts +611 -0
  403. package/src/core/orchestrator/ossa-orchestrator.ts +504 -0
  404. package/src/mcp/simple-server.ts +322 -0
  405. package/src/protocols/acap.ts +146 -0
  406. package/src/protocols/index.ts +8 -0
  407. package/src/protocols/rasp.ts +263 -0
  408. package/src/server/app.ts +472 -0
  409. package/src/server/middleware/agentAccess.ts +10 -0
  410. package/src/server/middleware/asyncHandler.ts +10 -0
  411. package/src/server/middleware/auth.ts +10 -0
  412. package/src/server/middleware/errorHandler.ts +9 -0
  413. package/src/server/middleware/logging.ts +10 -0
  414. package/src/server/middleware/metrics.ts +10 -0
  415. package/src/server/middleware/validation.ts +10 -0
  416. package/src/server/routes/agents.ts +632 -0
  417. package/src/server/routes/monitoring.ts +13 -0
  418. package/src/server/routes/orchestration.ts +13 -0
  419. package/src/server/routes/specifications.ts +13 -0
  420. package/src/server/services/AgentService.ts +46 -0
  421. package/src/server/services/ExecutionService.ts +51 -0
  422. package/src/server/services/SpecificationService.ts +22 -0
  423. package/src/server/services/WebhookService.ts +24 -0
  424. package/src/server/simple-app.ts +174 -0
  425. package/src/server/types/agent.ts +612 -0
  426. package/src/server/types/server.ts +465 -0
  427. package/src/services/orchestration/worktree-orchestrator.ts +779 -0
  428. package/src/services/worktree/branching-strategy.ts +76 -0
  429. package/src/services/worktree/git-worktree-manager.ts +86 -0
  430. package/website/.next/BUILD_ID +1 -0
  431. package/website/.next/app-build-manifest.json +151 -0
  432. package/website/.next/app-path-routes-manifest.json +19 -0
  433. package/website/.next/build-manifest.json +33 -0
  434. package/website/.next/cache/.previewinfo +1 -0
  435. package/website/.next/cache/.rscinfo +1 -0
  436. package/website/.next/cache/.tsbuildinfo +1 -0
  437. package/website/.next/cache/fetch-cache/920aec34c288eefa97c5efba3baf95a846a0beb0c48a5064980a2c24b83e941c +1 -0
  438. package/website/.next/cache/fetch-cache/c2ad7a72b43463a0daaa85ca926a8af38defd17ecb64f1fdd2dd4fe2293e8b26 +1 -0
  439. package/website/.next/cache/fetch-cache/d10eb963d5980c8a50ee9ed24472339ee6da054ead33e00676e61e8b8e62cc83 +1 -0
  440. package/website/.next/cache/fetch-cache/f243d84640477f3205b74a85013018acd63b692144675630a74d1af8a3e9eab5 +1 -0
  441. package/website/.next/cache/webpack/client-production/0.pack +0 -0
  442. package/website/.next/cache/webpack/client-production/1.pack +0 -0
  443. package/website/.next/cache/webpack/client-production/10.pack +0 -0
  444. package/website/.next/cache/webpack/client-production/11.pack +0 -0
  445. package/website/.next/cache/webpack/client-production/12.pack +0 -0
  446. package/website/.next/cache/webpack/client-production/13.pack +0 -0
  447. package/website/.next/cache/webpack/client-production/14.pack +0 -0
  448. package/website/.next/cache/webpack/client-production/15.pack +0 -0
  449. package/website/.next/cache/webpack/client-production/16.pack +0 -0
  450. package/website/.next/cache/webpack/client-production/17.pack +0 -0
  451. package/website/.next/cache/webpack/client-production/18.pack +0 -0
  452. package/website/.next/cache/webpack/client-production/2.pack +0 -0
  453. package/website/.next/cache/webpack/client-production/3.pack +0 -0
  454. package/website/.next/cache/webpack/client-production/4.pack +0 -0
  455. package/website/.next/cache/webpack/client-production/5.pack +0 -0
  456. package/website/.next/cache/webpack/client-production/6.pack +0 -0
  457. package/website/.next/cache/webpack/client-production/7.pack +0 -0
  458. package/website/.next/cache/webpack/client-production/8.pack +0 -0
  459. package/website/.next/cache/webpack/client-production/9.pack +0 -0
  460. package/website/.next/cache/webpack/client-production/index.pack +0 -0
  461. package/website/.next/cache/webpack/client-production/index.pack.old +0 -0
  462. package/website/.next/cache/webpack/edge-server-production/0.pack +0 -0
  463. package/website/.next/cache/webpack/edge-server-production/index.pack +0 -0
  464. package/website/.next/cache/webpack/server-production/0.pack +0 -0
  465. package/website/.next/cache/webpack/server-production/1.pack +0 -0
  466. package/website/.next/cache/webpack/server-production/10.pack +0 -0
  467. package/website/.next/cache/webpack/server-production/11.pack +0 -0
  468. package/website/.next/cache/webpack/server-production/12.pack +0 -0
  469. package/website/.next/cache/webpack/server-production/2.pack +0 -0
  470. package/website/.next/cache/webpack/server-production/3.pack +0 -0
  471. package/website/.next/cache/webpack/server-production/4.pack +0 -0
  472. package/website/.next/cache/webpack/server-production/5.pack +0 -0
  473. package/website/.next/cache/webpack/server-production/6.pack +0 -0
  474. package/website/.next/cache/webpack/server-production/7.pack +0 -0
  475. package/website/.next/cache/webpack/server-production/8.pack +0 -0
  476. package/website/.next/cache/webpack/server-production/9.pack +0 -0
  477. package/website/.next/cache/webpack/server-production/index.pack +0 -0
  478. package/website/.next/cache/webpack/server-production/index.pack.old +0 -0
  479. package/website/.next/diagnostics/build-diagnostics.json +6 -0
  480. package/website/.next/diagnostics/framework.json +1 -0
  481. package/website/.next/export-detail.json +5 -0
  482. package/website/.next/export-marker.json +6 -0
  483. package/website/.next/images-manifest.json +57 -0
  484. package/website/.next/next-minimal-server.js.nft.json +1 -0
  485. package/website/.next/next-server.js.nft.json +1 -0
  486. package/website/.next/package.json +1 -0
  487. package/website/.next/prerender-manifest.json +2143 -0
  488. package/website/.next/react-loadable-manifest.json +1898 -0
  489. package/website/.next/required-server-files.json +320 -0
  490. package/website/.next/routes-manifest.json +161 -0
  491. package/website/.next/server/app/_not-found/page.js +2 -0
  492. package/website/.next/server/app/_not-found/page.js.nft.json +1 -0
  493. package/website/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
  494. package/website/.next/server/app/_not-found.html +1 -0
  495. package/website/.next/server/app/_not-found.meta +8 -0
  496. package/website/.next/server/app/_not-found.rsc +23 -0
  497. package/website/.next/server/app/about/page.js +2 -0
  498. package/website/.next/server/app/about/page.js.nft.json +1 -0
  499. package/website/.next/server/app/about/page_client-reference-manifest.js +1 -0
  500. package/website/.next/server/app/about.html +1 -0
  501. package/website/.next/server/app/about.meta +7 -0
  502. package/website/.next/server/app/about.rsc +40 -0
  503. package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.html +217 -0
  504. package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.meta +7 -0
  505. package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.rsc +308 -0
  506. package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.html +180 -0
  507. package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.meta +7 -0
  508. package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.rsc +232 -0
  509. package/website/.next/server/app/blog/[slug]/page.js +2 -0
  510. package/website/.next/server/app/blog/[slug]/page.js.nft.json +1 -0
  511. package/website/.next/server/app/blog/[slug]/page_client-reference-manifest.js +1 -0
  512. package/website/.next/server/app/blog/introducing-ossa-framework.html +263 -0
  513. package/website/.next/server/app/blog/introducing-ossa-framework.meta +7 -0
  514. package/website/.next/server/app/blog/introducing-ossa-framework.rsc +351 -0
  515. package/website/.next/server/app/blog/ossa-production-results.html +198 -0
  516. package/website/.next/server/app/blog/ossa-production-results.meta +7 -0
  517. package/website/.next/server/app/blog/ossa-production-results.rsc +302 -0
  518. package/website/.next/server/app/blog/page.js +2 -0
  519. package/website/.next/server/app/blog/page.js.nft.json +1 -0
  520. package/website/.next/server/app/blog/page_client-reference-manifest.js +1 -0
  521. package/website/.next/server/app/blog/welcome-to-ossa.html +22 -0
  522. package/website/.next/server/app/blog/welcome-to-ossa.meta +7 -0
  523. package/website/.next/server/app/blog/welcome-to-ossa.rsc +31 -0
  524. package/website/.next/server/app/blog/why-ai-agents-need-open-standard.html +63 -0
  525. package/website/.next/server/app/blog/why-ai-agents-need-open-standard.meta +7 -0
  526. package/website/.next/server/app/blog/why-ai-agents-need-open-standard.rsc +121 -0
  527. package/website/.next/server/app/blog.html +1 -0
  528. package/website/.next/server/app/blog.meta +7 -0
  529. package/website/.next/server/app/blog.rsc +35 -0
  530. package/website/.next/server/app/design-guide/page.js +12 -0
  531. package/website/.next/server/app/design-guide/page.js.nft.json +1 -0
  532. package/website/.next/server/app/design-guide/page_client-reference-manifest.js +1 -0
  533. package/website/.next/server/app/design-guide.html +11 -0
  534. package/website/.next/server/app/design-guide.meta +7 -0
  535. package/website/.next/server/app/design-guide.rsc +41 -0
  536. package/website/.next/server/app/docs.html +1 -0
  537. package/website/.next/server/app/docs.meta +7 -0
  538. package/website/.next/server/app/docs.rsc +42 -0
  539. package/website/.next/server/app/ecosystem/page.js +2 -0
  540. package/website/.next/server/app/ecosystem/page.js.nft.json +1 -0
  541. package/website/.next/server/app/ecosystem/page_client-reference-manifest.js +1 -0
  542. package/website/.next/server/app/ecosystem.html +1 -0
  543. package/website/.next/server/app/ecosystem.meta +7 -0
  544. package/website/.next/server/app/ecosystem.rsc +40 -0
  545. package/website/.next/server/app/examples.html +1 -0
  546. package/website/.next/server/app/examples.meta +7 -0
  547. package/website/.next/server/app/examples.rsc +14559 -0
  548. package/website/.next/server/app/index.html +3 -0
  549. package/website/.next/server/app/index.meta +7 -0
  550. package/website/.next/server/app/index.rsc +40 -0
  551. package/website/.next/server/app/license/page.js +2 -0
  552. package/website/.next/server/app/license/page.js.nft.json +1 -0
  553. package/website/.next/server/app/license/page_client-reference-manifest.js +1 -0
  554. package/website/.next/server/app/license.html +191 -0
  555. package/website/.next/server/app/license.meta +7 -0
  556. package/website/.next/server/app/license.rsc +222 -0
  557. package/website/.next/server/app/page.js +4 -0
  558. package/website/.next/server/app/page.js.nft.json +1 -0
  559. package/website/.next/server/app/page_client-reference-manifest.js +1 -0
  560. package/website/.next/server/app/playground/page.js +111 -0
  561. package/website/.next/server/app/playground/page.js.nft.json +1 -0
  562. package/website/.next/server/app/playground/page_client-reference-manifest.js +1 -0
  563. package/website/.next/server/app/playground.html +1 -0
  564. package/website/.next/server/app/playground.meta +7 -0
  565. package/website/.next/server/app/playground.rsc +30 -0
  566. package/website/.next/server/app/robots.txt/route.js +1 -0
  567. package/website/.next/server/app/robots.txt/route.js.nft.json +1 -0
  568. package/website/.next/server/app/robots.txt/route_client-reference-manifest.js +1 -0
  569. package/website/.next/server/app/robots.txt.body +6 -0
  570. package/website/.next/server/app/robots.txt.meta +1 -0
  571. package/website/.next/server/app/rss.xml/route.js +18 -0
  572. package/website/.next/server/app/rss.xml/route.js.nft.json +1 -0
  573. package/website/.next/server/app/rss.xml/route_client-reference-manifest.js +1 -0
  574. package/website/.next/server/app/rss.xml.body +11 -0
  575. package/website/.next/server/app/rss.xml.meta +1 -0
  576. package/website/.next/server/app/schema/page.js +76 -0
  577. package/website/.next/server/app/schema/page.js.nft.json +1 -0
  578. package/website/.next/server/app/schema/page_client-reference-manifest.js +1 -0
  579. package/website/.next/server/app/schema.html +1 -0
  580. package/website/.next/server/app/schema.meta +7 -0
  581. package/website/.next/server/app/schema.rsc +26 -0
  582. package/website/.next/server/app/sitemap.xml/route.js +1 -0
  583. package/website/.next/server/app/sitemap.xml/route.js.nft.json +1 -0
  584. package/website/.next/server/app/sitemap.xml/route_client-reference-manifest.js +1 -0
  585. package/website/.next/server/app/sitemap.xml.body +39 -0
  586. package/website/.next/server/app/sitemap.xml.meta +1 -0
  587. package/website/.next/server/app/specification/page.js +10 -0
  588. package/website/.next/server/app/specification/page.js.nft.json +1 -0
  589. package/website/.next/server/app/specification/page_client-reference-manifest.js +1 -0
  590. package/website/.next/server/app/specification.html +9 -0
  591. package/website/.next/server/app/specification.meta +7 -0
  592. package/website/.next/server/app/specification.rsc +32 -0
  593. package/website/.next/server/app-paths-manifest.json +19 -0
  594. package/website/.next/server/chunks/18.js +1 -0
  595. package/website/.next/server/chunks/227.js +9 -0
  596. package/website/.next/server/chunks/339.js +25 -0
  597. package/website/.next/server/chunks/49.js +1 -0
  598. package/website/.next/server/chunks/51.js +1 -0
  599. package/website/.next/server/chunks/57.js +1 -0
  600. package/website/.next/server/chunks/579.js +16 -0
  601. package/website/.next/server/chunks/611.js +6 -0
  602. package/website/.next/server/chunks/873.js +22 -0
  603. package/website/.next/server/chunks/900.js +1 -0
  604. package/website/.next/server/chunks/97.js +1 -0
  605. package/website/.next/server/functions-config-manifest.json +4 -0
  606. package/website/.next/server/interception-route-rewrite-manifest.js +1 -0
  607. package/website/.next/server/middleware-build-manifest.js +1 -0
  608. package/website/.next/server/middleware-manifest.json +6 -0
  609. package/website/.next/server/middleware-react-loadable-manifest.js +1 -0
  610. package/website/.next/server/next-font-manifest.js +1 -0
  611. package/website/.next/server/next-font-manifest.json +1 -0
  612. package/website/.next/server/pages/404.html +1 -0
  613. package/website/.next/server/pages/500.html +1 -0
  614. package/website/.next/server/pages/_app.js +1 -0
  615. package/website/.next/server/pages/_app.js.nft.json +1 -0
  616. package/website/.next/server/pages/_document.js +1 -0
  617. package/website/.next/server/pages/_document.js.nft.json +1 -0
  618. package/website/.next/server/pages/_error.js +19 -0
  619. package/website/.next/server/pages/_error.js.nft.json +1 -0
  620. package/website/.next/server/pages-manifest.json +6 -0
  621. package/website/.next/server/server-reference-manifest.js +1 -0
  622. package/website/.next/server/server-reference-manifest.json +1 -0
  623. package/website/.next/server/webpack-runtime.js +1 -0
  624. package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_buildManifest.js +1 -0
  625. package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_ssgManifest.js +1 -0
  626. package/website/.next/static/chunks/119.05f66060d7798fc9.js +25 -0
  627. package/website/.next/static/chunks/255-bf407b21685f2318.js +1 -0
  628. package/website/.next/static/chunks/451-235273497e501ae9.js +1 -0
  629. package/website/.next/static/chunks/4bd1b696-409494caf8c83275.js +1 -0
  630. package/website/.next/static/chunks/619-f072ac750404f9da.js +1 -0
  631. package/website/.next/static/chunks/651-5cd3c87d43b7eb46.js +1 -0
  632. package/website/.next/static/chunks/778.278ac2aadb2a1105.js +1 -0
  633. package/website/.next/static/chunks/890-ab915e0570e1961b.js +1 -0
  634. package/website/.next/static/chunks/app/_not-found/page-ccdaf9d90b537c5d.js +1 -0
  635. package/website/.next/static/chunks/app/about/page-bd4cb2219b41f933.js +1 -0
  636. package/website/.next/static/chunks/app/blog/[slug]/page-8fd43000c4969233.js +1 -0
  637. package/website/.next/static/chunks/app/blog/page-bd4cb2219b41f933.js +1 -0
  638. package/website/.next/static/chunks/app/design-guide/page-bd4cb2219b41f933.js +1 -0
  639. package/website/.next/static/chunks/app/ecosystem/page-bd4cb2219b41f933.js +1 -0
  640. package/website/.next/static/chunks/app/layout-ccacbd90656baa78.js +1 -0
  641. package/website/.next/static/chunks/app/license/page-bd4cb2219b41f933.js +1 -0
  642. package/website/.next/static/chunks/app/page-31241dc7465f9590.js +1 -0
  643. package/website/.next/static/chunks/app/playground/page-c2af00885374900f.js +1 -0
  644. package/website/.next/static/chunks/app/robots.txt/route-032c05054032342f.js +1 -0
  645. package/website/.next/static/chunks/app/rss.xml/route-032c05054032342f.js +1 -0
  646. package/website/.next/static/chunks/app/schema/page-f7c224b281771083.js +1 -0
  647. package/website/.next/static/chunks/app/sitemap.xml/route-032c05054032342f.js +1 -0
  648. package/website/.next/static/chunks/app/specification/page-bd4cb2219b41f933.js +1 -0
  649. package/website/.next/static/chunks/framework-1ce91eb6f9ecda85.js +1 -0
  650. package/website/.next/static/chunks/main-3099e141650ec47a.js +1 -0
  651. package/website/.next/static/chunks/main-app-a2fc6ac9305e3090.js +1 -0
  652. package/website/.next/static/chunks/pages/_app-5addca2b3b969fde.js +1 -0
  653. package/website/.next/static/chunks/pages/_error-022e4ac7bbb9914f.js +1 -0
  654. package/website/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
  655. package/website/.next/static/chunks/webpack-6ecb09e5c6e34cb4.js +1 -0
  656. package/website/.next/static/css/23135390005d4468.css +3 -0
  657. package/website/.next/static/media/19cfc7226ec3afaa-s.woff2 +0 -0
  658. package/website/.next/static/media/21350d82a1f187e9-s.woff2 +0 -0
  659. package/website/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
  660. package/website/.next/static/media/ba9851c3c22cd980-s.woff2 +0 -0
  661. package/website/.next/static/media/c5fe6dc8356a8c31-s.woff2 +0 -0
  662. package/website/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
  663. package/website/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
  664. package/website/.next/trace +3 -0
  665. package/website/.next/types/app/about/page.ts +84 -0
  666. package/website/.next/types/app/blog/[slug]/page.ts +84 -0
  667. package/website/.next/types/app/blog/page.ts +84 -0
  668. package/website/.next/types/app/design-guide/page.ts +84 -0
  669. package/website/.next/types/app/ecosystem/page.ts +84 -0
  670. package/website/.next/types/app/license/page.ts +84 -0
  671. package/website/.next/types/app/page.ts +84 -0
  672. package/website/.next/types/app/playground/page.ts +84 -0
  673. package/website/.next/types/app/rss.xml/route.ts +347 -0
  674. package/website/.next/types/app/schema/page.ts +84 -0
  675. package/website/.next/types/app/specification/page.ts +84 -0
  676. package/website/.next/types/cache-life.d.ts +141 -0
  677. package/website/.next/types/package.json +1 -0
  678. package/website/.next/types/routes.d.ts +85 -0
  679. package/website/.next/types/validator.ts +187 -0
  680. package/website/.wiki-export/Agent-Folder-Structure.md +215 -0
  681. package/website/.wiki-export/CI-STATUS.md +66 -0
  682. package/website/.wiki-export/COMPLETE-IMPLEMENTATION-CHECKLIST.md +74 -0
  683. package/website/.wiki-export/DRUPAL-MODULE-INTEGRATION.md +103 -0
  684. package/website/.wiki-export/FINAL-STATUS.md +63 -0
  685. package/website/.wiki-export/Getting-Started.md +87 -0
  686. package/website/.wiki-export/INSTRUCTIONS.md +46 -0
  687. package/website/.wiki-export/INTEGRATION-ANALYSIS.md +216 -0
  688. package/website/.wiki-export/MANIFEST.json +62 -0
  689. package/website/.wiki-export/OSSA-COMPLIANT-BADGE.md +247 -0
  690. package/website/.wiki-export/Openapi-Extensions.md +930 -0
  691. package/website/.wiki-export/README.md +31 -0
  692. package/website/.wiki-export/RELEASE-READINESS.md +95 -0
  693. package/website/.wiki-export/VERSIONING.md +284 -0
  694. package/website/lib/versions.json +77 -0
  695. package/website/next-env.d.ts +6 -0
  696. package/website/out/app-build-manifest.json +3 -0
  697. package/website/out/build-manifest.json +17 -0
  698. package/website/out/cache/.rscinfo +1 -0
  699. package/website/out/cache/next-devtools-config.json +1 -0
  700. package/website/out/cache/webpack/client-development/0.pack.gz +0 -0
  701. package/website/out/cache/webpack/client-development/1.pack.gz +0 -0
  702. package/website/out/cache/webpack/client-development/2.pack.gz +0 -0
  703. package/website/out/cache/webpack/client-development/3.pack.gz +0 -0
  704. package/website/out/cache/webpack/client-development/index.pack.gz +0 -0
  705. package/website/out/cache/webpack/client-development/index.pack.gz.old +0 -0
  706. package/website/out/cache/webpack/client-development-fallback/0.pack.gz +0 -0
  707. package/website/out/cache/webpack/client-development-fallback/index.pack.gz +0 -0
  708. package/website/out/cache/webpack/server-development/0.pack.gz +0 -0
  709. package/website/out/cache/webpack/server-development/1.pack.gz +0 -0
  710. package/website/out/cache/webpack/server-development/2.pack.gz +0 -0
  711. package/website/out/cache/webpack/server-development/3.pack.gz +0 -0
  712. package/website/out/cache/webpack/server-development/index.pack.gz +0 -0
  713. package/website/out/cache/webpack/server-development/index.pack.gz.old +0 -0
  714. package/website/out/package.json +1 -0
  715. package/website/out/prerender-manifest.json +11 -0
  716. package/website/out/react-loadable-manifest.json +1 -0
  717. package/website/out/routes-manifest.json +1 -0
  718. package/website/out/server/app-paths-manifest.json +1 -0
  719. package/website/out/server/interception-route-rewrite-manifest.js +1 -0
  720. package/website/out/server/middleware-build-manifest.js +19 -0
  721. package/website/out/server/middleware-manifest.json +6 -0
  722. package/website/out/server/middleware-react-loadable-manifest.js +1 -0
  723. package/website/out/server/next-font-manifest.js +1 -0
  724. package/website/out/server/next-font-manifest.json +1 -0
  725. package/website/out/server/pages-manifest.json +1 -0
  726. package/website/out/server/server-reference-manifest.js +1 -0
  727. package/website/out/server/server-reference-manifest.json +5 -0
  728. package/website/out/static/chunks/polyfills.js +1 -0
  729. package/website/out/static/development/_buildManifest.js +1 -0
  730. package/website/out/static/development/_ssgManifest.js +1 -0
  731. package/website/out/trace +2 -0
  732. package/website/out/types/cache-life.d.ts +141 -0
  733. package/website/out/types/package.json +1 -0
  734. package/website/out/types/routes.d.ts +85 -0
  735. package/website/out/types/validator.ts +187 -0
  736. package/website/public/examples.json +476 -0
  737. package/website/public/schemas/openapi-extensions.schema.json +486 -0
  738. package/website/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,3 @@
1
+ <!DOCTYPE html><!--IDhDQiozPwOaA3PpMqvTE--><html lang="en" class="__variable_f367f3"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" as="image" href="/assets/brand/ossa-logo.svg"/><link rel="preload" as="image" href="https://simpleicons.org/icons/openai.svg"/><link rel="preload" as="image" href="https://simpleicons.org/icons/anthropic.svg"/><link rel="preload" as="image" href="https://www.google.com/s2/favicons?sz=256&amp;domain=deepmind.google"/><link rel="preload" as="image" href="https://www.google.com/s2/favicons?sz=256&amp;domain=microsoft.com"/><link rel="preload" as="image" href="https://simpleicons.org/icons/langchain.svg"/><link rel="preload" as="image" href="https://simpleicons.org/icons/huggingface.svg"/><link rel="preload" as="image" href="https://www.google.com/s2/favicons?sz=256&amp;domain=kagent.dev"/><link rel="preload" as="image" href="https://www.google.com/s2/favicons?sz=128&amp;domain=crewai.com"/><link rel="preload" as="image" href="https://simpleicons.org/icons/python.svg"/><link rel="stylesheet" href="/_next/static/css/23135390005d4468.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-6ecb09e5c6e34cb4.js"/><script src="/_next/static/chunks/4bd1b696-409494caf8c83275.js" async=""></script><script src="/_next/static/chunks/255-bf407b21685f2318.js" async=""></script><script src="/_next/static/chunks/main-app-a2fc6ac9305e3090.js" async=""></script><script src="/_next/static/chunks/619-f072ac750404f9da.js" async=""></script><script src="/_next/static/chunks/app/layout-ccacbd90656baa78.js" async=""></script><script src="/_next/static/chunks/app/page-31241dc7465f9590.js" async=""></script><link rel="preload" as="image" href="https://www.google.com/s2/favicons?sz=128&amp;domain=llamaindex.ai"/><link rel="preload" as="image" href="https://simpleicons.org/icons/drupal.svg"/><link rel="preload" as="image" href="https://simpleicons.org/icons/react.svg"/><link rel="preload" as="image" href="https://simpleicons.org/icons/docker.svg"/><link rel="preload" as="image" href="https://simpleicons.org/icons/kubernetes.svg"/><link rel="preload" as="image" href="https://www.google.com/s2/favicons?sz=128&amp;domain=aws.amazon.com"/><link rel="preload" as="image" href="https://simpleicons.org/icons/github.svg"/><link rel="icon" href="/assets/favicon.svg" type="image/svg+xml"/><link rel="apple-touch-icon" href="/assets/brand/ossa-logo.svg"/><meta name="next-size-adjust" content=""/><title>Open Standard Agents - Industry Standard for Agent Orchestration</title><meta name="description" content="The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere. Zero vendor lock-in."/><meta name="author" content="OSSA Standards Team"/><meta name="keywords" content="OSSA,AI Agents,OpenAPI,Standard,Specification,AI,Machine Learning,Agent Framework"/><meta name="creator" content="OSSA Standards Team"/><meta name="publisher" content="OSSA Standards Team"/><meta name="robots" content="index, follow"/><meta name="googlebot" content="index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"/><link rel="canonical" href="https://openstandardagents.org/"/><meta property="og:title" content="Open Standard Agents - Industry Standard for Agent Orchestration"/><meta property="og:description" content="The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere."/><meta property="og:site_name" content="Open Standard Agents"/><meta property="og:locale" content="en_US"/><meta property="og:image" content="https://openstandardagents.org/og-image.png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="OSSA - Open Standard for Scalable AI Agents"/><meta property="og:type" content="website"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:creator" content="@openstandardagents"/><meta name="twitter:title" content="Open Standard Agents - Industry Standard for Agent Orchestration"/><meta name="twitter:description" content="The vendor-neutral specification for multi-agent systems"/><meta name="twitter:image" content="https://openstandardagents.org/og-image.png"/><meta name="twitter:image:width" content="1200"/><meta name="twitter:image:height" content="630"/><meta name="twitter:image:alt" content="OSSA - Open Standard for Scalable AI Agents"/><script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"OSSA Standards Team","url":"https://openstandardagents.org","logo":"https://openstandardagents.org/assets/brand/ossa-logo.svg","sameAs":["https://github.com/blueflyio/openstandardagents","https://www.npmjs.com/package/@bluefly/openstandardagents"],"description":"Open Standard Agents Organization - Maintaining the Industry Standard for Agent Orchestration"}</script><script type="application/ld+json">{"@context":"https://schema.org","@type":"WebSite","name":"OSSA","url":"https://openstandardagents.org","description":"Open Standard for Scalable AI Agents - The OpenAPI for AI Agents","potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://openstandardagents.org/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}</script><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div class="flex flex-col min-h-screen"><a href="#main-content" class="sr-only focus:not-sr-only focus:absolute focus:top-4 focus:left-4 focus:z-50 focus:px-4 focus:py-2 focus:bg-primary focus:text-white focus:rounded">Skip to main content</a><header class="bg-white border-b border-gray-300 sticky top-0 z-50"><nav class="container mx-auto max-w-6xl px-4"><div class="flex items-center justify-between h-16"><a class="flex items-center space-x-3 group" href="/"><img src="/assets/brand/ossa-logo.svg" alt="OSSA Logo" class="h-10 w-10 transition-transform group-hover:scale-110"/><span class="text-2xl font-bold bg-gradient-to-r from-[#0066CC] to-[#00B8D4] bg-clip-text text-transparent">OSSA</span></a><div class="hidden md:flex items-center space-x-3 lg:space-x-6 text-sm lg:text-base"><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/about/">About</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/specification/">Specification</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/schema/">Schema</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/docs/">Docs</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/blog/">Blog</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/playground/">Playground</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/examples/">Examples</a><a href="https://github.com/blueflyio/openstandardagents" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-[#0066CC] transition-colors flex items-center font-medium" title="View on GitHub"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg></a></div><button class="md:hidden p-2 focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2 rounded" aria-label="Toggle menu" aria-expanded="false" aria-controls="mobile-menu"><svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path></svg></button></div></nav></header><main id="main-content" class="flex-grow" tabindex="-1"><div class="flex flex-col"><section class="bg-gradient-hero text-white py-24 px-4"><div class="container mx-auto max-w-7xl text-center"><div class="mb-8 flex flex-col items-center"><img src="/assets/brand/ossa-logo.svg" alt="OSSA Logo" class="h-24 w-24 mb-6 animate-pulse"/><div class="flex flex-wrap items-center justify-center gap-3 mb-4"><span class="inline-block px-4 py-2 bg-white/20 backdrop-blur-sm rounded-full text-sm font-medium">The OpenAPI for AI Agents</span><span class="inline-block px-4 py-2 bg-white/30 backdrop-blur-sm rounded-full text-sm font-semibold border border-white/40">Latest: <!-- -->v0.2.4</span></div></div><h1 class="text-6xl md:text-7xl font-bold mb-6 leading-tight">Open Standard for <span class="bg-gradient-to-r from-yellow-300 via-orange-300 to-pink-300 bg-clip-text text-transparent animate-pulse">Scalable Agents</span></h1><p class="text-3xl md:text-4xl mb-6 font-light">The Interoperability Layer Your Agents Are Missing</p><p class="text-xl md:text-2xl mb-4 text-gray-200 max-w-4xl mx-auto">A vendor-neutral, open specification for defining, deploying, and managing AI agents.</p><p class="text-lg mb-8 text-white max-w-4xl mx-auto">Just as OpenAPI standardizes REST APIs, Open Standard Agents standardizes agent interoperability across frameworks, runtimes, and organizations.</p><div class="flex flex-col sm:flex-row gap-4 justify-center mb-12"><a class="btn-primary text-lg px-8 py-4 border-2 border-transparent hover:border-white transition-all" href="#get-started">Get Started</a><a class="btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4" target="_blank" rel="noopener noreferrer" href="https://github.com/blueflyio/openstandardagents">View on GitHub</a><a class="btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4" href="/schema/">View Schema</a></div><div class="flex flex-wrap justify-center gap-6 text-sm text-gray-300"><div class="flex items-center gap-2"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span>Vendor-Neutral</span></div><div class="flex items-center gap-2"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span>Framework-Agnostic</span></div><div class="flex items-center gap-2"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span>Open Source</span></div><div class="flex items-center gap-2"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span>JSON Schema Validated</span></div></div></div></section><section class="py-16 px-4 bg-gradient-to-br from-amber-50 via-orange-50 to-yellow-50"><div class="container mx-auto max-w-5xl"><div class="text-center mb-8"><h2 class="text-4xl font-bold mb-6 text-gray-900">Why Does This Matter?</h2></div><div class="prose prose-lg max-w-none"><p class="text-xl text-gray-700 mb-6 leading-relaxed">In the world of AI agents, <strong class="text-gray-900">everyone calls an agent something different</strong>. LangChain has &quot;chains,&quot; CrewAI has &quot;crews,&quot; OpenAI has &quot;assistants,&quot; Anthropic has Claude with &quot;tools.&quot; Every framework invents its own terminology, its own configuration format, its own orchestration model.</p><p class="text-xl text-gray-700 mb-6 leading-relaxed">This fragmentation creates <strong class="text-red-600">vendor lock-in</strong>, makes agents impossible to share between teams, and forces developers to rewrite everything when switching frameworks. Want to move your LangChain agent to CrewAI? Complete rewrite. Need to deploy the same agent logic across multiple frameworks? Maintain separate implementations.</p><p class="text-xl text-gray-700 mb-6 leading-relaxed">Imagine if every API framework required its own documentation format—that was the world before OpenAPI. Every API provider wrote docs differently, integration was chaos, and tooling couldn&#x27;t be shared.<strong class="text-gray-900"> OpenAPI solved this by creating one standard that every API could follow</strong>.</p><div class="bg-white rounded-xl p-8 shadow-lg border-2 border-blue-200"><p class="text-2xl text-gray-900 font-bold mb-4">OSSA solves this for AI agents.</p><p class="text-xl text-gray-700"><strong>One standard. Any framework. True portability.</strong> Define your agent once in OSSA format, then deploy it with LangChain, CrewAI, Anthropic, OpenAI, or any other framework. Just like OpenAPI unified REST APIs, OSSA unifies AI agents.</p></div></div></div></section><section class="py-20 px-4 bg-white"><div class="container mx-auto max-w-7xl"><div class="text-center mb-16"><h2 class="text-5xl font-bold mb-6">What is Open Standard Agents?</h2><p class="text-xl text-gray-600 max-w-3xl mx-auto">Open Standard Agents (OSSA) is an open, vendor-neutral specification for defining AI agents, similar to how OpenAPI standardizes REST APIs. It enables interoperability across frameworks, runtimes, and organizations.</p></div><div class="grid md:grid-cols-3 gap-8 mb-12"><div class="card-hover p-8"><h3 class="text-2xl font-semibold mb-4 text-primary">Specification Standard</h3><p class="text-gray-700 mb-4">OSSA is <strong>NOT a framework</strong> - it&#x27;s a specification that defines the contract for agent definition, deployment, and management.</p><p class="text-gray-700">Just like OpenAPI doesn&#x27;t implement APIs, OSSA doesn&#x27;t implement agents. It provides the standard that implementations follow.</p></div><div class="card-hover p-8"><h3 class="text-2xl font-semibold mb-4 text-primary">Framework-Agnostic</h3><p class="text-gray-700 mb-4">Works seamlessly with any LLM framework or SDK - LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more.</p><p class="text-gray-700">Deploy to Kubernetes, Docker, serverless, or on-premise. OSSA is infrastructure-agnostic.</p></div><div class="card-hover p-8"><h3 class="text-2xl font-semibold mb-4 text-primary">Vendor-Neutral</h3><p class="text-gray-700 mb-4">No vendor lock-in. Write once, deploy anywhere. Move agents between teams, organizations, and infrastructures without rewriting code.</p><p class="text-gray-700">Maintained by the open source community, ensuring long-term viability and innovation.</p></div></div><div class="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"><div class="text-center mb-12"><h3 class="text-4xl md:text-5xl font-bold mb-4 bg-gradient-to-r from-primary via-secondary to-primary bg-clip-text text-transparent">The OpenAPI for Agents</h3><div class="w-24 h-1 bg-gradient-to-r from-primary to-secondary mx-auto rounded-full"></div></div><div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-7xl mx-auto"><div class="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300"><h4 class="text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100">OpenAPI for REST APIs</h4><ul class="space-y-3 text-gray-700"><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Standardizes REST API contracts</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Enables API interoperability</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Vendor-neutral specification</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">JSON Schema validation</span></li></ul></div><div class="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300"><h4 class="text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100">OSSA for AI Agents</h4><ul class="space-y-3 text-gray-700"><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Standardizes AI agent contracts</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Enables agent interoperability</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Vendor-neutral specification</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">JSON Schema validation</span></li></ul></div><div class="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300"><h4 class="text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100">OpenAPI Integration</h4><ul class="space-y-3 text-gray-700"><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Seamless OpenAPI compatibility</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Import existing OpenAPI specs</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Export agents as OpenAPI</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-primary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Unified API and agent standards</span></li></ul></div><div class="bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300"><h4 class="text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100">API-to-Agent Bridge</h4><ul class="space-y-3 text-gray-700"><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Connect REST APIs to agents</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Use OpenAPI as agent tools</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Automatic API discovery</span></li><li class="flex items-start gap-3"><svg class="w-5 h-5 text-secondary mt-0.5 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="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" clip-rule="evenodd"></path></svg><span class="font-medium">Bidirectional integration</span></li></ul></div></div></div></div></section><section id="get-started" class="py-20 px-4 bg-gray-50 scroll-mt-20"><div class="container mx-auto max-w-7xl"><div class="text-center mb-12"><h2 class="text-5xl font-bold mb-6">Get Started in Minutes</h2><p class="text-xl text-gray-600 max-w-3xl mx-auto">Install the CLI, create your first agent, and start building with Open Standard Agents.</p></div><div class="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12"><div class="card p-8"><h3 class="text-2xl font-semibold mb-4 text-primary">1. Install CLI</h3><div class="bg-code-bg rounded-lg p-4 mb-4"><pre class="text-code-text text-sm overflow-x-auto"><code>npm install -g @bluefly/openstandardagents</code></pre></div></div><div class="card p-8"><h3 class="text-2xl font-semibold mb-4 text-primary">2. Create Agent</h3><div class="bg-code-bg rounded-lg p-4 mb-4"><pre class="text-code-text text-sm overflow-x-auto"><code>osa init my-agent
2
+ cd my-agent</code></pre></div></div><div class="card p-8"><h3 class="text-2xl font-semibold mb-4 text-primary">3. Validate</h3><div class="bg-code-bg rounded-lg p-4 mb-4"><pre class="text-code-text text-sm overflow-x-auto"><code>osa validate my-agent.ossa.yaml</code></pre></div></div><div class="card p-8"><h3 class="text-2xl font-semibold mb-4 text-primary">4. Export</h3><div class="bg-code-bg rounded-lg p-4 mb-4"><pre class="text-code-text text-sm overflow-x-auto"><code>osa export --to cursor
3
+ osa export --to langchain</code></pre></div></div></div><div class="text-center"><a class="btn-primary text-lg px-8 py-4" href="/docs/getting-started/5-minute-overview/">Read Full Getting Started Guide</a></div></div></section><section class="py-16 px-4 bg-gray-50"><div class="container mx-auto max-w-7xl"><div class="text-center mb-12"><h2 class="text-4xl font-bold mb-4">Works With Your Favorite Tools</h2><p class="text-xl text-gray-600 max-w-3xl mx-auto">OSSA integrates seamlessly with leading AI frameworks, platforms, and tools. Build once, deploy anywhere.</p></div><div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-8"><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/openai.svg" alt="OpenAI" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">OpenAI</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/anthropic.svg" alt="Anthropic" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Anthropic</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://www.google.com/s2/favicons?sz=256&amp;domain=deepmind.google" alt="Gemini" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Gemini</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://www.google.com/s2/favicons?sz=256&amp;domain=microsoft.com" alt="Microsoft" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Microsoft</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/langchain.svg" alt="LangChain" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">LangChain</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/huggingface.svg" alt="Hugging Face" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Hugging Face</span></div></div><div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-12"><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://www.google.com/s2/favicons?sz=256&amp;domain=kagent.dev" alt="kAgent" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">kAgent</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://www.google.com/s2/favicons?sz=128&amp;domain=crewai.com" alt="CrewAI" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">CrewAI</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/python.svg" alt="Langflow" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Langflow</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://www.google.com/s2/favicons?sz=128&amp;domain=llamaindex.ai" alt="LlamaIndex" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">LlamaIndex</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/langchain.svg" alt="LangGraph" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">LangGraph</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/anthropic.svg" alt="MCP" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">MCP</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/drupal.svg" alt="Drupal" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Drupal</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/react.svg" alt="LibreChat" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">LibreChat</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/docker.svg" alt="Docker" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Docker</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/kubernetes.svg" alt="Kubernetes" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">Kubernetes</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://www.google.com/s2/favicons?sz=128&amp;domain=aws.amazon.com" alt="AWS" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">AWS</span></div><div class="flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all"><img src="https://simpleicons.org/icons/github.svg" alt="GitHub" class="h-12 w-12 object-contain" style="filter:grayscale(100%) contrast(1.2)"/><span class="text-sm font-medium text-gray-600">GitHub</span></div></div><div class="text-center"><p class="text-lg text-gray-600 mb-6">And many more frameworks, platforms, and tools...</p><a class="btn-primary" href="/docs/ecosystem/framework-support/">View All Integrations</a></div></div></section><section class="py-20 px-4 bg-white"><div class="container mx-auto max-w-7xl"><div class="text-center mb-16"><h2 class="text-5xl font-bold mb-6">Why Open Standard Agents?</h2><p class="text-xl text-gray-600 max-w-3xl mx-auto">Build agent-based systems with confidence, knowing your agents will work across frameworks, teams, and infrastructures.</p></div><div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8"><div class="card-hover p-6 text-center"><h3 class="text-xl font-semibold mb-3">Framework-Agnostic</h3><p class="text-gray-700">Works with LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more. No vendor lock-in.</p></div><div class="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow"><h3 class="text-xl font-semibold mb-3">Portable</h3><p class="text-gray-700">Move agents between teams, organizations, and infrastructures without rewriting code.</p></div><div class="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow"><h3 class="text-xl font-semibold mb-3">Validatable</h3><p class="text-gray-700">JSON Schema validation ensures correctness before deployment. Catch errors early.</p></div><div class="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow"><h3 class="text-xl font-semibold mb-3">Well-Documented</h3><p class="text-gray-700">Comprehensive documentation, examples, and tooling. Built for developers, by developers.</p></div><div class="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow"><h3 class="text-xl font-semibold mb-3">Open Source</h3><p class="text-gray-700">Apache 2.0 licensed. Community-driven. Transparent development process.</p></div><div class="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow"><h3 class="text-xl font-semibold mb-3">Fast Integration</h3><p class="text-gray-700">Export to any framework format. Import existing agents. Seamless migration paths.</p></div><div class="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow"><h3 class="text-xl font-semibold mb-3">Secure by Design</h3><p class="text-gray-700">Built-in security patterns, authentication, and compliance features.</p></div><div class="bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow"><h3 class="text-xl font-semibold mb-3">Observable</h3><p class="text-gray-700">Built-in observability, logging, and monitoring. Track agent performance and behavior.</p></div></div></div></section><section class="py-16 px-4 bg-primary text-white"><div class="container mx-auto max-w-6xl text-center"><h2 class="text-4xl font-bold mb-6">Ready to Get Started?</h2><p class="text-xl mb-8 text-gray-200">Join the community and start building with Open Standard Agents today.</p><div class="flex flex-col sm:flex-row gap-4 justify-center"><a class="btn-secondary" href="/examples/">View Examples</a><a class="btn-outline border-white text-white hover:bg-white hover:text-primary" target="_blank" rel="noopener noreferrer" href="https://github.com/blueflyio/openstandardagents/issues">Report Issues</a></div></div></section></div><!--$--><!--/$--></main><footer class="bg-gray-900 text-gray-300 py-12 px-4"><div class="container mx-auto max-w-6xl"><div class="grid md:grid-cols-4 gap-8 mb-8"><div><h3 class="text-white font-semibold mb-4">Open Standard Agents</h3><p class="text-sm">OSSA is an Open Standard for AI Agents. The vendor-neutral specification was created by Thomas Scola, founder of Bluefly.io.</p></div><div><h4 class="text-white font-semibold mb-4">Documentation</h4><ul class="space-y-2 text-sm"><li><a class="hover:text-white transition-colors" href="/docs/getting-started/">Getting Started</a></li><li><a class="hover:text-white transition-colors" href="/docs/">Full Documentation</a></li><li><a class="hover:text-white transition-colors" href="/schema/">Schema Reference</a></li></ul></div><div><h4 class="text-white font-semibold mb-4">Resources</h4><ul class="space-y-2 text-sm"><li><a class="hover:text-white transition-colors" href="/examples/">Examples</a></li><li><a class="hover:text-white transition-colors" href="/playground/">Playground</a></li><li><a class="hover:text-white transition-colors" href="/blog/">Blog</a></li><li><a class="hover:text-white transition-colors" href="/design-guide/">Design Guide</a></li></ul></div><div><h4 class="text-white font-semibold mb-4">Community</h4><ul class="space-y-2 text-sm"><li><a href="https://github.com/blueflyio/openstandardagents" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors flex items-center gap-2"><svg class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg>GitHub</a></li><li><a href="https://github.com/blueflyio/openstandardagents/issues" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors">Issues</a></li><li><a href="https://www.npmjs.com/package/@bluefly/openstandardagents" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors">npm Package</a></li></ul></div></div><div class="border-t border-gray-700 pt-8 text-sm text-center"><p>© <!-- -->2025<!-- --> Open Standard Agents Organization. Licensed under<!-- --> <a href="https://www.apache.org/licenses/LICENSE-2.0" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors">Apache 2.0</a>.</p></div></div></footer></div><script src="/_next/static/chunks/webpack-6ecb09e5c6e34cb4.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[82960,[\"619\",\"static/chunks/619-f072ac750404f9da.js\",\"177\",\"static/chunks/app/layout-ccacbd90656baa78.js\"],\"Header\"]\n3:I[9766,[],\"\"]\n4:I[98924,[],\"\"]\n5:I[52619,[\"619\",\"static/chunks/619-f072ac750404f9da.js\",\"974\",\"static/chunks/app/page-31241dc7465f9590.js\"],\"\"]\nd:I[57150,[],\"\"]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/23135390005d4468.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"IDhDQiozPwOaA3PpMqvTE\",\"p\":\"\",\"c\":[\"\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/23135390005d4468.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"link\",null,{\"rel\":\"icon\",\"href\":\"/assets/favicon.svg\",\"type\":\"image/svg+xml\"}],[\"$\",\"link\",null,{\"rel\":\"apple-touch-icon\",\"href\":\"/assets/brand/ossa-logo.svg\"}],[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"Organization\\\",\\\"name\\\":\\\"OSSA Standards Team\\\",\\\"url\\\":\\\"https://openstandardagents.org\\\",\\\"logo\\\":\\\"https://openstandardagents.org/assets/brand/ossa-logo.svg\\\",\\\"sameAs\\\":[\\\"https://github.com/blueflyio/openstandardagents\\\",\\\"https://www.npmjs.com/package/@bluefly/openstandardagents\\\"],\\\"description\\\":\\\"Open Standard Agents Organization - Maintaining the Industry Standard for Agent Orchestration\\\"}\"}}],[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"WebSite\\\",\\\"name\\\":\\\"OSSA\\\",\\\"url\\\":\\\"https://openstandardagents.org\\\",\\\"description\\\":\\\"Open Standard for Scalable AI Agents - The OpenAPI for AI Agents\\\",\\\"potentialAction\\\":{\\\"@type\\\":\\\"SearchAction\\\",\\\"target\\\":{\\\"@type\\\":\\\"EntryPoint\\\",\\\"urlTemplate\\\":\\\"https://openstandardagents.org/search?q={search_term_string}\\\"},\\\"query-input\\\":\\\"required name=search_term_string\\\"}}\"}}]]}],[\"$\",\"body\",null,{\"suppressHydrationWarning\":true,\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col min-h-screen\",\"children\":[[\"$\",\"a\",null,{\"href\":\"#main-content\",\"className\":\"sr-only focus:not-sr-only focus:absolute focus:top-4 focus:left-4 focus:z-50 focus:px-4 focus:py-2 focus:bg-primary focus:text-white focus:rounded\",\"children\":\"Skip to main content\"}],[\"$\",\"$L2\",null,{}],[\"$\",\"main\",null,{\"id\":\"main-content\",\"className\":\"flex-grow\",\"tabIndex\":-1,\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}],[\"$\",\"footer\",null,{\"className\":\"bg-gray-900 text-gray-300 py-12 px-4\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-6xl\",\"children\":[[\"$\",\"div\",null,{\"className\":\"grid md:grid-cols-4 gap-8 mb-8\",\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Open Standard Agents\"}],[\"$\",\"p\",null,{\"className\":\"text-sm\",\"children\":\"OSSA is an Open Standard for AI Agents. The vendor-neutral specification was created by Thomas Scola, founder of Bluefly.io.\"}]]}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Documentation\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-sm\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/docs/getting-started\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Getting Started\"}]}],\"$L6\",\"$L7\"]}]]}],\"$L8\",\"$L9\"]}],\"$La\"]}]}]]}]}]]}]]}],{\"children\":[\"__PAGE__\",\"$Lb\",{},null,false]},null,false],\"$Lc\",false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"16:I[24431,[],\"ViewportBoundary\"]\n18:I[24431,[],\"MetadataBoundary\"]\n19:\"$Sreact.suspense\"\n6:[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/docs\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Full Documentation\"}]}]\n7:[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/schema\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Schema Reference\"}]}]\n"])</script><script>self.__next_f.push([1,"8:[\"$\",\"div\",null,{\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Resources\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-sm\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/examples\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Examples\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/playground\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Playground\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/blog\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Blog\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/design-guide\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Design Guide\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"9:[\"$\",\"div\",null,{\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Community\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-sm\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"https://github.com/blueflyio/openstandardagents\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors flex items-center gap-2\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"h-5 w-5\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"fillRule\":\"evenodd\",\"d\":\"M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z\",\"clipRule\":\"evenodd\"}]}],\"GitHub\"]}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"https://github.com/blueflyio/openstandardagents/issues\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Issues\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"https://www.npmjs.com/package/@bluefly/openstandardagents\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors\",\"children\":\"npm Package\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"a:[\"$\",\"div\",null,{\"className\":\"border-t border-gray-700 pt-8 text-sm text-center\",\"children\":[\"$\",\"p\",null,{\"children\":[\"© \",2025,\" Open Standard Agents Organization. Licensed under\",\" \",[\"$\",\"a\",null,{\"href\":\"https://www.apache.org/licenses/LICENSE-2.0\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Apache 2.0\"}],\".\"]}]}]\n"])</script><script>self.__next_f.push([1,"b:[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col\",\"children\":[[\"$\",\"section\",null,{\"className\":\"bg-gradient-hero text-white py-24 px-4\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-7xl text-center\",\"children\":[[\"$\",\"div\",null,{\"className\":\"mb-8 flex flex-col items-center\",\"children\":[[\"$\",\"img\",null,{\"src\":\"/assets/brand/ossa-logo.svg\",\"alt\":\"OSSA Logo\",\"className\":\"h-24 w-24 mb-6 animate-pulse\"}],[\"$\",\"div\",null,{\"className\":\"flex flex-wrap items-center justify-center gap-3 mb-4\",\"children\":[[\"$\",\"span\",null,{\"className\":\"inline-block px-4 py-2 bg-white/20 backdrop-blur-sm rounded-full text-sm font-medium\",\"children\":\"The OpenAPI for AI Agents\"}],[\"$\",\"span\",null,{\"className\":\"inline-block px-4 py-2 bg-white/30 backdrop-blur-sm rounded-full text-sm font-semibold border border-white/40\",\"children\":[\"Latest: \",\"v0.2.4\"]}]]}]]}],[\"$\",\"h1\",null,{\"className\":\"text-6xl md:text-7xl font-bold mb-6 leading-tight\",\"children\":[\"Open Standard for \",[\"$\",\"span\",null,{\"className\":\"bg-gradient-to-r from-yellow-300 via-orange-300 to-pink-300 bg-clip-text text-transparent animate-pulse\",\"children\":\"Scalable Agents\"}]]}],[\"$\",\"p\",null,{\"className\":\"text-3xl md:text-4xl mb-6 font-light\",\"children\":\"The Interoperability Layer Your Agents Are Missing\"}],[\"$\",\"p\",null,{\"className\":\"text-xl md:text-2xl mb-4 text-gray-200 max-w-4xl mx-auto\",\"children\":\"A vendor-neutral, open specification for defining, deploying, and managing AI agents.\"}],[\"$\",\"p\",null,{\"className\":\"text-lg mb-8 text-white max-w-4xl mx-auto\",\"children\":\"Just as OpenAPI standardizes REST APIs, Open Standard Agents standardizes agent interoperability across frameworks, runtimes, and organizations.\"}],[\"$\",\"div\",null,{\"className\":\"flex flex-col sm:flex-row gap-4 justify-center mb-12\",\"children\":[[\"$\",\"$L5\",null,{\"href\":\"#get-started\",\"className\":\"btn-primary text-lg px-8 py-4 border-2 border-transparent hover:border-white transition-all\",\"children\":\"Get Started\"}],[\"$\",\"$L5\",null,{\"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\",\"children\":\"View on GitHub\"}],[\"$\",\"$L5\",null,{\"href\":\"/schema/\",\"className\":\"btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4\",\"children\":\"View Schema\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex flex-wrap justify-center gap-6 text-sm text-gray-300\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"children\":\"Vendor-Neutral\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"children\":\"Framework-Agnostic\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"children\":\"Open Source\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],\"$Le\"]}]]}]]}]}],\"$Lf\",\"$L10\",\"$L11\",\"$L12\",\"$L13\",\"$L14\"]}],null,\"$L15\"]}]\n"])</script><script>self.__next_f.push([1,"c:[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$L16\",null,{\"children\":\"$L17\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$L18\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$19\",null,{\"fallback\":null,\"children\":\"$L1a\"}]}]}]]}]\n"])</script><script>self.__next_f.push([1,"21:I[16315,[\"619\",\"static/chunks/619-f072ac750404f9da.js\",\"974\",\"static/chunks/app/page-31241dc7465f9590.js\"],\"Logo\"]\n22:I[24431,[],\"OutletBoundary\"]\n24:I[15278,[],\"AsyncMetadataOutlet\"]\ne:[\"$\",\"span\",null,{\"children\":\"JSON Schema Validated\"}]\n"])</script><script>self.__next_f.push([1,"f:[\"$\",\"section\",null,{\"className\":\"py-16 px-4 bg-gradient-to-br from-amber-50 via-orange-50 to-yellow-50\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-5xl\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-8\",\"children\":[\"$\",\"h2\",null,{\"className\":\"text-4xl font-bold mb-6 text-gray-900\",\"children\":\"Why Does This Matter?\"}]}],[\"$\",\"div\",null,{\"className\":\"prose prose-lg max-w-none\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-700 mb-6 leading-relaxed\",\"children\":[\"In the world of AI agents, \",[\"$\",\"strong\",null,{\"className\":\"text-gray-900\",\"children\":\"everyone calls an agent something different\"}],\". LangChain has \\\"chains,\\\" CrewAI has \\\"crews,\\\" OpenAI has \\\"assistants,\\\" Anthropic has Claude with \\\"tools.\\\" Every framework invents its own terminology, its own configuration format, its own orchestration model.\"]}],[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-700 mb-6 leading-relaxed\",\"children\":[\"This fragmentation creates \",[\"$\",\"strong\",null,{\"className\":\"text-red-600\",\"children\":\"vendor lock-in\"}],\", makes agents impossible to share between teams, and forces developers to rewrite everything when switching frameworks. Want to move your LangChain agent to CrewAI? Complete rewrite. Need to deploy the same agent logic across multiple frameworks? Maintain separate implementations.\"]}],[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-700 mb-6 leading-relaxed\",\"children\":[\"Imagine if every API framework required its own documentation format—that was the world before OpenAPI. Every API provider wrote docs differently, integration was chaos, and tooling couldn't be shared.\",[\"$\",\"strong\",null,{\"className\":\"text-gray-900\",\"children\":\" OpenAPI solved this by creating one standard that every API could follow\"}],\".\"]}],[\"$\",\"div\",null,{\"className\":\"bg-white rounded-xl p-8 shadow-lg border-2 border-blue-200\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-2xl text-gray-900 font-bold mb-4\",\"children\":\"OSSA solves this for AI agents.\"}],[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-700\",\"children\":[[\"$\",\"strong\",null,{\"children\":\"One standard. Any framework. True portability.\"}],\" Define your agent once in OSSA format, then deploy it with LangChain, CrewAI, Anthropic, OpenAI, or any other framework. Just like OpenAPI unified REST APIs, OSSA unifies AI agents.\"]}]]}]]}]]}]}]\n"])</script><script>self.__next_f.push([1,"10:[\"$\",\"section\",null,{\"className\":\"py-20 px-4 bg-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-7xl\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-16\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-5xl font-bold mb-6\",\"children\":\"What is Open Standard Agents?\"}],[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-600 max-w-3xl mx-auto\",\"children\":\"Open Standard Agents (OSSA) is an open, vendor-neutral specification for defining AI agents, similar to how OpenAPI standardizes REST APIs. It enables interoperability across frameworks, runtimes, and organizations.\"}]]}],[\"$\",\"div\",null,{\"className\":\"grid md:grid-cols-3 gap-8 mb-12\",\"children\":[[\"$\",\"div\",null,{\"className\":\"card-hover p-8\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-2xl font-semibold mb-4 text-primary\",\"children\":\"Specification Standard\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700 mb-4\",\"children\":[\"OSSA is \",[\"$\",\"strong\",null,{\"children\":\"NOT a framework\"}],\" - it's a specification that defines the contract for agent definition, deployment, and management.\"]}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Just like OpenAPI doesn't implement APIs, OSSA doesn't implement agents. It provides the standard that implementations follow.\"}]]}],[\"$\",\"div\",null,{\"className\":\"card-hover p-8\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-2xl font-semibold mb-4 text-primary\",\"children\":\"Framework-Agnostic\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700 mb-4\",\"children\":\"Works seamlessly with any LLM framework or SDK - LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more.\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Deploy to Kubernetes, Docker, serverless, or on-premise. OSSA is infrastructure-agnostic.\"}]]}],[\"$\",\"div\",null,{\"className\":\"card-hover p-8\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-2xl font-semibold mb-4 text-primary\",\"children\":\"Vendor-Neutral\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700 mb-4\",\"children\":\"No vendor lock-in. Write once, deploy anywhere. Move agents between teams, organizations, and infrastructures without rewriting code.\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Maintained by the open source community, ensuring long-term viability and innovation.\"}]]}]]}],[\"$\",\"div\",null,{\"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\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-12\",\"children\":[[\"$\",\"h3\",null,{\"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\",\"children\":\"The OpenAPI for Agents\"}],[\"$\",\"div\",null,{\"className\":\"w-24 h-1 bg-gradient-to-r from-primary to-secondary mx-auto rounded-full\"}]]}],[\"$\",\"div\",null,{\"className\":\"grid md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-7xl mx-auto\",\"children\":[[\"$\",\"div\",null,{\"className\":\"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300\",\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100\",\"children\":\"OpenAPI for REST APIs\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-3 text-gray-700\",\"children\":[[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Standardizes REST API contracts\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],\"$L1b\"]}],\"$L1c\",\"$L1d\"]}]]}],\"$L1e\",\"$L1f\",\"$L20\"]}]]}]]}]}]\n"])</script><script>self.__next_f.push([1,"11:[\"$\",\"section\",null,{\"id\":\"get-started\",\"className\":\"py-20 px-4 bg-gray-50 scroll-mt-20\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-7xl\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-12\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-5xl font-bold mb-6\",\"children\":\"Get Started in Minutes\"}],[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-600 max-w-3xl mx-auto\",\"children\":\"Install the CLI, create your first agent, and start building with Open Standard Agents.\"}]]}],[\"$\",\"div\",null,{\"className\":\"grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12\",\"children\":[[\"$\",\"div\",null,{\"className\":\"card p-8\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-2xl font-semibold mb-4 text-primary\",\"children\":\"1. Install CLI\"}],[\"$\",\"div\",null,{\"className\":\"bg-code-bg rounded-lg p-4 mb-4\",\"children\":[\"$\",\"pre\",null,{\"className\":\"text-code-text text-sm overflow-x-auto\",\"children\":[\"$\",\"code\",null,{\"children\":\"npm install -g @bluefly/openstandardagents\"}]}]}]]}],[\"$\",\"div\",null,{\"className\":\"card p-8\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-2xl font-semibold mb-4 text-primary\",\"children\":\"2. Create Agent\"}],[\"$\",\"div\",null,{\"className\":\"bg-code-bg rounded-lg p-4 mb-4\",\"children\":[\"$\",\"pre\",null,{\"className\":\"text-code-text text-sm overflow-x-auto\",\"children\":[\"$\",\"code\",null,{\"children\":\"osa init my-agent\\ncd my-agent\"}]}]}]]}],[\"$\",\"div\",null,{\"className\":\"card p-8\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-2xl font-semibold mb-4 text-primary\",\"children\":\"3. Validate\"}],[\"$\",\"div\",null,{\"className\":\"bg-code-bg rounded-lg p-4 mb-4\",\"children\":[\"$\",\"pre\",null,{\"className\":\"text-code-text text-sm overflow-x-auto\",\"children\":[\"$\",\"code\",null,{\"children\":\"osa validate my-agent.ossa.yaml\"}]}]}]]}],[\"$\",\"div\",null,{\"className\":\"card p-8\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-2xl font-semibold mb-4 text-primary\",\"children\":\"4. Export\"}],[\"$\",\"div\",null,{\"className\":\"bg-code-bg rounded-lg p-4 mb-4\",\"children\":[\"$\",\"pre\",null,{\"className\":\"text-code-text text-sm overflow-x-auto\",\"children\":[\"$\",\"code\",null,{\"children\":\"osa export --to cursor\\nosa export --to langchain\"}]}]}]]}]]}],[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[\"$\",\"$L5\",null,{\"href\":\"/docs/getting-started/5-minute-overview/\",\"className\":\"btn-primary text-lg px-8 py-4\",\"children\":\"Read Full Getting Started Guide\"}]}]]}]}]\n"])</script><script>self.__next_f.push([1,"12:[\"$\",\"section\",null,{\"className\":\"py-16 px-4 bg-gray-50\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-7xl\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-12\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-4xl font-bold mb-4\",\"children\":\"Works With Your Favorite Tools\"}],[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-600 max-w-3xl mx-auto\",\"children\":\"OSSA integrates seamlessly with leading AI frameworks, platforms, and tools. Build once, deploy anywhere.\"}]]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-8\",\"children\":[[\"$\",\"$L21\",null,{\"domain\":\"openai.com\",\"name\":\"OpenAI\"}],[\"$\",\"$L21\",null,{\"domain\":\"anthropic.com\",\"name\":\"Anthropic\"}],[\"$\",\"$L21\",null,{\"domain\":\"deepmind.google\",\"name\":\"Gemini\"}],[\"$\",\"$L21\",null,{\"domain\":\"microsoft.com\",\"name\":\"Microsoft\"}],[\"$\",\"$L21\",null,{\"domain\":\"langchain.com\",\"name\":\"LangChain\"}],[\"$\",\"$L21\",null,{\"domain\":\"huggingface.co\",\"name\":\"Hugging Face\"}]]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-12\",\"children\":[[\"$\",\"$L21\",null,{\"domain\":\"kagent.dev\",\"name\":\"kAgent\"}],[\"$\",\"$L21\",null,{\"domain\":\"crewai.com\",\"name\":\"CrewAI\"}],[\"$\",\"$L21\",null,{\"domain\":\"langflow.com\",\"name\":\"Langflow\"}],[\"$\",\"$L21\",null,{\"domain\":\"llamaindex.ai\",\"name\":\"LlamaIndex\"}],[\"$\",\"$L21\",null,{\"domain\":\"langchain.com\",\"name\":\"LangGraph\"}],[\"$\",\"$L21\",null,{\"domain\":\"modelcontextprotocol.io\",\"name\":\"MCP\"}],[\"$\",\"$L21\",null,{\"domain\":\"drupal.org\",\"name\":\"Drupal\"}],[\"$\",\"$L21\",null,{\"domain\":\"librechat.com\",\"name\":\"LibreChat\"}],[\"$\",\"$L21\",null,{\"domain\":\"docker.com\",\"name\":\"Docker\"}],[\"$\",\"$L21\",null,{\"domain\":\"kubernetes.io\",\"name\":\"Kubernetes\"}],[\"$\",\"$L21\",null,{\"domain\":\"aws.amazon.com\",\"name\":\"AWS\"}],[\"$\",\"$L21\",null,{\"domain\":\"github.com\",\"name\":\"GitHub\"}]]}],[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-lg text-gray-600 mb-6\",\"children\":\"And many more frameworks, platforms, and tools...\"}],[\"$\",\"$L5\",null,{\"href\":\"/docs/ecosystem/framework-support/\",\"className\":\"btn-primary\",\"children\":\"View All Integrations\"}]]}]]}]}]\n"])</script><script>self.__next_f.push([1,"13:[\"$\",\"section\",null,{\"className\":\"py-20 px-4 bg-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-7xl\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-16\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-5xl font-bold mb-6\",\"children\":\"Why Open Standard Agents?\"}],[\"$\",\"p\",null,{\"className\":\"text-xl text-gray-600 max-w-3xl mx-auto\",\"children\":\"Build agent-based systems with confidence, knowing your agents will work across frameworks, teams, and infrastructures.\"}]]}],[\"$\",\"div\",null,{\"className\":\"grid md:grid-cols-2 lg:grid-cols-4 gap-8\",\"children\":[[\"$\",\"div\",null,{\"className\":\"card-hover p-6 text-center\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Framework-Agnostic\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Works with LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more. No vendor lock-in.\"}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Portable\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Move agents between teams, organizations, and infrastructures without rewriting code.\"}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Validatable\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"JSON Schema validation ensures correctness before deployment. Catch errors early.\"}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Well-Documented\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Comprehensive documentation, examples, and tooling. Built for developers, by developers.\"}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Open Source\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Apache 2.0 licensed. Community-driven. Transparent development process.\"}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Fast Integration\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Export to any framework format. Import existing agents. Seamless migration paths.\"}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Secure by Design\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Built-in security patterns, authentication, and compliance features.\"}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold mb-3\",\"children\":\"Observable\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700\",\"children\":\"Built-in observability, logging, and monitoring. Track agent performance and behavior.\"}]]}]]}]]}]}]\n"])</script><script>self.__next_f.push([1,"14:[\"$\",\"section\",null,{\"className\":\"py-16 px-4 bg-primary text-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-6xl text-center\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-4xl font-bold mb-6\",\"children\":\"Ready to Get Started?\"}],[\"$\",\"p\",null,{\"className\":\"text-xl mb-8 text-gray-200\",\"children\":\"Join the community and start building with Open Standard Agents today.\"}],[\"$\",\"div\",null,{\"className\":\"flex flex-col sm:flex-row gap-4 justify-center\",\"children\":[[\"$\",\"$L5\",null,{\"href\":\"/examples/\",\"className\":\"btn-secondary\",\"children\":\"View Examples\"}],[\"$\",\"$L5\",null,{\"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\",\"children\":\"Report Issues\"}]]}]]}]}]\n"])</script><script>self.__next_f.push([1,"15:[\"$\",\"$L22\",null,{\"children\":[\"$L23\",[\"$\",\"$L24\",null,{\"promise\":\"$@25\"}]]}]\n"])</script><script>self.__next_f.push([1,"1b:[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Enables API interoperability\"}]\n1c:[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Vendor-neutral specification\"}]]}]\n1d:[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"JSON Schema validation\"}]]}]\n"])</script><script>self.__next_f.push([1,"1e:[\"$\",\"div\",null,{\"className\":\"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300\",\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100\",\"children\":\"OSSA for AI Agents\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-3 text-gray-700\",\"children\":[[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Standardizes AI agent contracts\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Enables agent interoperability\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Vendor-neutral specification\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"JSON Schema validation\"}]]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"1f:[\"$\",\"div\",null,{\"className\":\"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300\",\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100\",\"children\":\"OpenAPI Integration\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-3 text-gray-700\",\"children\":[[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Seamless OpenAPI compatibility\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Import existing OpenAPI specs\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Export agents as OpenAPI\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-primary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Unified API and agent standards\"}]]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"20:[\"$\",\"div\",null,{\"className\":\"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300\",\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100\",\"children\":\"API-to-Agent Bridge\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-3 text-gray-700\",\"children\":[[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Connect REST APIs to agents\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Use OpenAPI as agent tools\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Automatic API discovery\"}]]}],[\"$\",\"li\",null,{\"className\":\"flex items-start gap-3\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"w-5 h-5 text-secondary mt-0.5 flex-shrink-0\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 20 20\",\"children\":[\"$\",\"path\",null,{\"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\"}]}],[\"$\",\"span\",null,{\"className\":\"font-medium\",\"children\":\"Bidirectional integration\"}]]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"17:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"23:null\n"])</script><script>self.__next_f.push([1,"25:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Open Standard Agents - Industry Standard for Agent Orchestration\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere. Zero vendor lock-in.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"author\",\"content\":\"OSSA Standards Team\"}],[\"$\",\"meta\",\"3\",{\"name\":\"keywords\",\"content\":\"OSSA,AI Agents,OpenAPI,Standard,Specification,AI,Machine Learning,Agent Framework\"}],[\"$\",\"meta\",\"4\",{\"name\":\"creator\",\"content\":\"OSSA Standards Team\"}],[\"$\",\"meta\",\"5\",{\"name\":\"publisher\",\"content\":\"OSSA Standards Team\"}],[\"$\",\"meta\",\"6\",{\"name\":\"robots\",\"content\":\"index, follow\"}],[\"$\",\"meta\",\"7\",{\"name\":\"googlebot\",\"content\":\"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1\"}],[\"$\",\"link\",\"8\",{\"rel\":\"canonical\",\"href\":\"https://openstandardagents.org/\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:title\",\"content\":\"Open Standard Agents - Industry Standard for Agent Orchestration\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:description\",\"content\":\"The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere.\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:site_name\",\"content\":\"Open Standard Agents\"}],[\"$\",\"meta\",\"12\",{\"property\":\"og:locale\",\"content\":\"en_US\"}],[\"$\",\"meta\",\"13\",{\"property\":\"og:image\",\"content\":\"https://openstandardagents.org/og-image.png\"}],[\"$\",\"meta\",\"14\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"15\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"16\",{\"property\":\"og:image:alt\",\"content\":\"OSSA - Open Standard for Scalable AI Agents\"}],[\"$\",\"meta\",\"17\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"19\",{\"name\":\"twitter:creator\",\"content\":\"@openstandardagents\"}],[\"$\",\"meta\",\"20\",{\"name\":\"twitter:title\",\"content\":\"Open Standard Agents - Industry Standard for Agent Orchestration\"}],[\"$\",\"meta\",\"21\",{\"name\":\"twitter:description\",\"content\":\"The vendor-neutral specification for multi-agent systems\"}],[\"$\",\"meta\",\"22\",{\"name\":\"twitter:image\",\"content\":\"https://openstandardagents.org/og-image.png\"}],[\"$\",\"meta\",\"23\",{\"name\":\"twitter:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"24\",{\"name\":\"twitter:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"25\",{\"name\":\"twitter:image:alt\",\"content\":\"OSSA - Open Standard for Scalable AI Agents\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"1a:\"$25:metadata\"\n"])</script></body></html>
@@ -0,0 +1,7 @@
1
+ {
2
+ "headers": {
3
+ "x-nextjs-stale-time": "300",
4
+ "x-nextjs-prerender": "1",
5
+ "x-next-cache-tags": "_N_T_/layout,_N_T_/page,_N_T_/"
6
+ }
7
+ }
@@ -0,0 +1,40 @@
1
+ 1:"$Sreact.fragment"
2
+ 2:I[82960,["619","static/chunks/619-f072ac750404f9da.js","177","static/chunks/app/layout-ccacbd90656baa78.js"],"Header"]
3
+ 3:I[9766,[],""]
4
+ 4:I[98924,[],""]
5
+ 5:I[52619,["619","static/chunks/619-f072ac750404f9da.js","974","static/chunks/app/page-31241dc7465f9590.js"],""]
6
+ d:I[57150,[],""]
7
+ :HL["/_next/static/media/e4af272ccee01ff0-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
8
+ :HL["/_next/static/css/23135390005d4468.css","style"]
9
+ 0:{"P":null,"b":"IDhDQiozPwOaA3PpMqvTE","p":"","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/23135390005d4468.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"__variable_f367f3","children":[["$","head",null,{"children":[["$","link",null,{"rel":"icon","href":"/assets/favicon.svg","type":"image/svg+xml"}],["$","link",null,{"rel":"apple-touch-icon","href":"/assets/brand/ossa-logo.svg"}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"Organization\",\"name\":\"OSSA Standards Team\",\"url\":\"https://openstandardagents.org\",\"logo\":\"https://openstandardagents.org/assets/brand/ossa-logo.svg\",\"sameAs\":[\"https://github.com/blueflyio/openstandardagents\",\"https://www.npmjs.com/package/@bluefly/openstandardagents\"],\"description\":\"Open Standard Agents Organization - Maintaining the Industry Standard for Agent Orchestration\"}"}}],["$","script",null,{"type":"application/ld+json","dangerouslySetInnerHTML":{"__html":"{\"@context\":\"https://schema.org\",\"@type\":\"WebSite\",\"name\":\"OSSA\",\"url\":\"https://openstandardagents.org\",\"description\":\"Open Standard for Scalable AI Agents - The OpenAPI for AI Agents\",\"potentialAction\":{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https://openstandardagents.org/search?q={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}}"}}]]}],["$","body",null,{"suppressHydrationWarning":true,"children":["$","div",null,{"className":"flex flex-col min-h-screen","children":[["$","a",null,{"href":"#main-content","className":"sr-only focus:not-sr-only focus:absolute focus:top-4 focus:left-4 focus:z-50 focus:px-4 focus:py-2 focus:bg-primary focus:text-white focus:rounded","children":"Skip to main content"}],["$","$L2",null,{}],["$","main",null,{"id":"main-content","className":"flex-grow","tabIndex":-1,"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","footer",null,{"className":"bg-gray-900 text-gray-300 py-12 px-4","children":["$","div",null,{"className":"container mx-auto max-w-6xl","children":[["$","div",null,{"className":"grid md:grid-cols-4 gap-8 mb-8","children":[["$","div",null,{"children":[["$","h3",null,{"className":"text-white font-semibold mb-4","children":"Open Standard Agents"}],["$","p",null,{"className":"text-sm","children":"OSSA is an Open Standard for AI Agents. The vendor-neutral specification was created by Thomas Scola, founder of Bluefly.io."}]]}],["$","div",null,{"children":[["$","h4",null,{"className":"text-white font-semibold mb-4","children":"Documentation"}],["$","ul",null,{"className":"space-y-2 text-sm","children":[["$","li",null,{"children":["$","$L5",null,{"href":"/docs/getting-started","className":"hover:text-white transition-colors","children":"Getting Started"}]}],"$L6","$L7"]}]]}],"$L8","$L9"]}],"$La"]}]}]]}]}]]}]]}],{"children":["__PAGE__","$Lb",{},null,false]},null,false],"$Lc",false]],"m":"$undefined","G":["$d",[]],"s":false,"S":true}
10
+ 16:I[24431,[],"ViewportBoundary"]
11
+ 18:I[24431,[],"MetadataBoundary"]
12
+ 19:"$Sreact.suspense"
13
+ 6:["$","li",null,{"children":["$","$L5",null,{"href":"/docs","className":"hover:text-white transition-colors","children":"Full Documentation"}]}]
14
+ 7:["$","li",null,{"children":["$","$L5",null,{"href":"/schema","className":"hover:text-white transition-colors","children":"Schema Reference"}]}]
15
+ 8:["$","div",null,{"children":[["$","h4",null,{"className":"text-white font-semibold mb-4","children":"Resources"}],["$","ul",null,{"className":"space-y-2 text-sm","children":[["$","li",null,{"children":["$","$L5",null,{"href":"/examples","className":"hover:text-white transition-colors","children":"Examples"}]}],["$","li",null,{"children":["$","$L5",null,{"href":"/playground","className":"hover:text-white transition-colors","children":"Playground"}]}],["$","li",null,{"children":["$","$L5",null,{"href":"/blog","className":"hover:text-white transition-colors","children":"Blog"}]}],["$","li",null,{"children":["$","$L5",null,{"href":"/design-guide","className":"hover:text-white transition-colors","children":"Design Guide"}]}]]}]]}]
16
+ 9:["$","div",null,{"children":[["$","h4",null,{"className":"text-white font-semibold mb-4","children":"Community"}],["$","ul",null,{"className":"space-y-2 text-sm","children":[["$","li",null,{"children":["$","a",null,{"href":"https://github.com/blueflyio/openstandardagents","target":"_blank","rel":"noopener noreferrer","className":"hover:text-white transition-colors flex items-center gap-2","children":[["$","svg",null,{"className":"h-5 w-5","fill":"currentColor","viewBox":"0 0 24 24","children":["$","path",null,{"fillRule":"evenodd","d":"M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z","clipRule":"evenodd"}]}],"GitHub"]}]}],["$","li",null,{"children":["$","a",null,{"href":"https://github.com/blueflyio/openstandardagents/issues","target":"_blank","rel":"noopener noreferrer","className":"hover:text-white transition-colors","children":"Issues"}]}],["$","li",null,{"children":["$","a",null,{"href":"https://www.npmjs.com/package/@bluefly/openstandardagents","target":"_blank","rel":"noopener noreferrer","className":"hover:text-white transition-colors","children":"npm Package"}]}]]}]]}]
17
+ a:["$","div",null,{"className":"border-t border-gray-700 pt-8 text-sm text-center","children":["$","p",null,{"children":["© ",2025," Open Standard Agents Organization. Licensed under"," ",["$","a",null,{"href":"https://www.apache.org/licenses/LICENSE-2.0","target":"_blank","rel":"noopener noreferrer","className":"hover:text-white transition-colors","children":"Apache 2.0"}],"."]}]}]
18
+ b:["$","$1","c",{"children":[["$","div",null,{"className":"flex flex-col","children":[["$","section",null,{"className":"bg-gradient-hero text-white py-24 px-4","children":["$","div",null,{"className":"container mx-auto max-w-7xl text-center","children":[["$","div",null,{"className":"mb-8 flex flex-col items-center","children":[["$","img",null,{"src":"/assets/brand/ossa-logo.svg","alt":"OSSA Logo","className":"h-24 w-24 mb-6 animate-pulse"}],["$","div",null,{"className":"flex flex-wrap items-center justify-center gap-3 mb-4","children":[["$","span",null,{"className":"inline-block px-4 py-2 bg-white/20 backdrop-blur-sm rounded-full text-sm font-medium","children":"The OpenAPI for AI Agents"}],["$","span",null,{"className":"inline-block px-4 py-2 bg-white/30 backdrop-blur-sm rounded-full text-sm font-semibold border border-white/40","children":["Latest: ","v0.2.4"]}]]}]]}],["$","h1",null,{"className":"text-6xl md:text-7xl font-bold mb-6 leading-tight","children":["Open Standard for ",["$","span",null,{"className":"bg-gradient-to-r from-yellow-300 via-orange-300 to-pink-300 bg-clip-text text-transparent animate-pulse","children":"Scalable Agents"}]]}],["$","p",null,{"className":"text-3xl md:text-4xl mb-6 font-light","children":"The Interoperability Layer Your Agents Are Missing"}],["$","p",null,{"className":"text-xl md:text-2xl mb-4 text-gray-200 max-w-4xl mx-auto","children":"A vendor-neutral, open specification for defining, deploying, and managing AI agents."}],["$","p",null,{"className":"text-lg mb-8 text-white max-w-4xl mx-auto","children":"Just as OpenAPI standardizes REST APIs, Open Standard Agents standardizes agent interoperability across frameworks, runtimes, and organizations."}],["$","div",null,{"className":"flex flex-col sm:flex-row gap-4 justify-center mb-12","children":[["$","$L5",null,{"href":"#get-started","className":"btn-primary text-lg px-8 py-4 border-2 border-transparent hover:border-white transition-all","children":"Get Started"}],["$","$L5",null,{"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","children":"View on GitHub"}],["$","$L5",null,{"href":"/schema/","className":"btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4","children":"View Schema"}]]}],["$","div",null,{"className":"flex flex-wrap justify-center gap-6 text-sm text-gray-300","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"className":"w-5 h-5","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"children":"Vendor-Neutral"}]]}],["$","div",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"className":"w-5 h-5","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"children":"Framework-Agnostic"}]]}],["$","div",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"className":"w-5 h-5","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"children":"Open Source"}]]}],["$","div",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"className":"w-5 h-5","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],"$Le"]}]]}]]}]}],"$Lf","$L10","$L11","$L12","$L13","$L14"]}],null,"$L15"]}]
19
+ c:["$","$1","h",{"children":[null,[["$","$L16",null,{"children":"$L17"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$L18",null,{"children":["$","div",null,{"hidden":true,"children":["$","$19",null,{"fallback":null,"children":"$L1a"}]}]}]]}]
20
+ 21:I[16315,["619","static/chunks/619-f072ac750404f9da.js","974","static/chunks/app/page-31241dc7465f9590.js"],"Logo"]
21
+ 22:I[24431,[],"OutletBoundary"]
22
+ 24:I[15278,[],"AsyncMetadataOutlet"]
23
+ e:["$","span",null,{"children":"JSON Schema Validated"}]
24
+ f:["$","section",null,{"className":"py-16 px-4 bg-gradient-to-br from-amber-50 via-orange-50 to-yellow-50","children":["$","div",null,{"className":"container mx-auto max-w-5xl","children":[["$","div",null,{"className":"text-center mb-8","children":["$","h2",null,{"className":"text-4xl font-bold mb-6 text-gray-900","children":"Why Does This Matter?"}]}],["$","div",null,{"className":"prose prose-lg max-w-none","children":[["$","p",null,{"className":"text-xl text-gray-700 mb-6 leading-relaxed","children":["In the world of AI agents, ",["$","strong",null,{"className":"text-gray-900","children":"everyone calls an agent something different"}],". LangChain has \"chains,\" CrewAI has \"crews,\" OpenAI has \"assistants,\" Anthropic has Claude with \"tools.\" Every framework invents its own terminology, its own configuration format, its own orchestration model."]}],["$","p",null,{"className":"text-xl text-gray-700 mb-6 leading-relaxed","children":["This fragmentation creates ",["$","strong",null,{"className":"text-red-600","children":"vendor lock-in"}],", makes agents impossible to share between teams, and forces developers to rewrite everything when switching frameworks. Want to move your LangChain agent to CrewAI? Complete rewrite. Need to deploy the same agent logic across multiple frameworks? Maintain separate implementations."]}],["$","p",null,{"className":"text-xl text-gray-700 mb-6 leading-relaxed","children":["Imagine if every API framework required its own documentation format—that was the world before OpenAPI. Every API provider wrote docs differently, integration was chaos, and tooling couldn't be shared.",["$","strong",null,{"className":"text-gray-900","children":" OpenAPI solved this by creating one standard that every API could follow"}],"."]}],["$","div",null,{"className":"bg-white rounded-xl p-8 shadow-lg border-2 border-blue-200","children":[["$","p",null,{"className":"text-2xl text-gray-900 font-bold mb-4","children":"OSSA solves this for AI agents."}],["$","p",null,{"className":"text-xl text-gray-700","children":[["$","strong",null,{"children":"One standard. Any framework. True portability."}]," Define your agent once in OSSA format, then deploy it with LangChain, CrewAI, Anthropic, OpenAI, or any other framework. Just like OpenAPI unified REST APIs, OSSA unifies AI agents."]}]]}]]}]]}]}]
25
+ 10:["$","section",null,{"className":"py-20 px-4 bg-white","children":["$","div",null,{"className":"container mx-auto max-w-7xl","children":[["$","div",null,{"className":"text-center mb-16","children":[["$","h2",null,{"className":"text-5xl font-bold mb-6","children":"What is Open Standard Agents?"}],["$","p",null,{"className":"text-xl text-gray-600 max-w-3xl mx-auto","children":"Open Standard Agents (OSSA) is an open, vendor-neutral specification for defining AI agents, similar to how OpenAPI standardizes REST APIs. It enables interoperability across frameworks, runtimes, and organizations."}]]}],["$","div",null,{"className":"grid md:grid-cols-3 gap-8 mb-12","children":[["$","div",null,{"className":"card-hover p-8","children":[["$","h3",null,{"className":"text-2xl font-semibold mb-4 text-primary","children":"Specification Standard"}],["$","p",null,{"className":"text-gray-700 mb-4","children":["OSSA is ",["$","strong",null,{"children":"NOT a framework"}]," - it's a specification that defines the contract for agent definition, deployment, and management."]}],["$","p",null,{"className":"text-gray-700","children":"Just like OpenAPI doesn't implement APIs, OSSA doesn't implement agents. It provides the standard that implementations follow."}]]}],["$","div",null,{"className":"card-hover p-8","children":[["$","h3",null,{"className":"text-2xl font-semibold mb-4 text-primary","children":"Framework-Agnostic"}],["$","p",null,{"className":"text-gray-700 mb-4","children":"Works seamlessly with any LLM framework or SDK - LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more."}],["$","p",null,{"className":"text-gray-700","children":"Deploy to Kubernetes, Docker, serverless, or on-premise. OSSA is infrastructure-agnostic."}]]}],["$","div",null,{"className":"card-hover p-8","children":[["$","h3",null,{"className":"text-2xl font-semibold mb-4 text-primary","children":"Vendor-Neutral"}],["$","p",null,{"className":"text-gray-700 mb-4","children":"No vendor lock-in. Write once, deploy anywhere. Move agents between teams, organizations, and infrastructures without rewriting code."}],["$","p",null,{"className":"text-gray-700","children":"Maintained by the open source community, ensuring long-term viability and innovation."}]]}]]}],["$","div",null,{"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","children":[["$","div",null,{"className":"text-center mb-12","children":[["$","h3",null,{"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","children":"The OpenAPI for Agents"}],["$","div",null,{"className":"w-24 h-1 bg-gradient-to-r from-primary to-secondary mx-auto rounded-full"}]]}],["$","div",null,{"className":"grid md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-7xl mx-auto","children":[["$","div",null,{"className":"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300","children":[["$","h4",null,{"className":"text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100","children":"OpenAPI for REST APIs"}],["$","ul",null,{"className":"space-y-3 text-gray-700","children":[["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Standardizes REST API contracts"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],"$L1b"]}],"$L1c","$L1d"]}]]}],"$L1e","$L1f","$L20"]}]]}]]}]}]
26
+ 11:["$","section",null,{"id":"get-started","className":"py-20 px-4 bg-gray-50 scroll-mt-20","children":["$","div",null,{"className":"container mx-auto max-w-7xl","children":[["$","div",null,{"className":"text-center mb-12","children":[["$","h2",null,{"className":"text-5xl font-bold mb-6","children":"Get Started in Minutes"}],["$","p",null,{"className":"text-xl text-gray-600 max-w-3xl mx-auto","children":"Install the CLI, create your first agent, and start building with Open Standard Agents."}]]}],["$","div",null,{"className":"grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12","children":[["$","div",null,{"className":"card p-8","children":[["$","h3",null,{"className":"text-2xl font-semibold mb-4 text-primary","children":"1. Install CLI"}],["$","div",null,{"className":"bg-code-bg rounded-lg p-4 mb-4","children":["$","pre",null,{"className":"text-code-text text-sm overflow-x-auto","children":["$","code",null,{"children":"npm install -g @bluefly/openstandardagents"}]}]}]]}],["$","div",null,{"className":"card p-8","children":[["$","h3",null,{"className":"text-2xl font-semibold mb-4 text-primary","children":"2. Create Agent"}],["$","div",null,{"className":"bg-code-bg rounded-lg p-4 mb-4","children":["$","pre",null,{"className":"text-code-text text-sm overflow-x-auto","children":["$","code",null,{"children":"osa init my-agent\ncd my-agent"}]}]}]]}],["$","div",null,{"className":"card p-8","children":[["$","h3",null,{"className":"text-2xl font-semibold mb-4 text-primary","children":"3. Validate"}],["$","div",null,{"className":"bg-code-bg rounded-lg p-4 mb-4","children":["$","pre",null,{"className":"text-code-text text-sm overflow-x-auto","children":["$","code",null,{"children":"osa validate my-agent.ossa.yaml"}]}]}]]}],["$","div",null,{"className":"card p-8","children":[["$","h3",null,{"className":"text-2xl font-semibold mb-4 text-primary","children":"4. Export"}],["$","div",null,{"className":"bg-code-bg rounded-lg p-4 mb-4","children":["$","pre",null,{"className":"text-code-text text-sm overflow-x-auto","children":["$","code",null,{"children":"osa export --to cursor\nosa export --to langchain"}]}]}]]}]]}],["$","div",null,{"className":"text-center","children":["$","$L5",null,{"href":"/docs/getting-started/5-minute-overview/","className":"btn-primary text-lg px-8 py-4","children":"Read Full Getting Started Guide"}]}]]}]}]
27
+ 12:["$","section",null,{"className":"py-16 px-4 bg-gray-50","children":["$","div",null,{"className":"container mx-auto max-w-7xl","children":[["$","div",null,{"className":"text-center mb-12","children":[["$","h2",null,{"className":"text-4xl font-bold mb-4","children":"Works With Your Favorite Tools"}],["$","p",null,{"className":"text-xl text-gray-600 max-w-3xl mx-auto","children":"OSSA integrates seamlessly with leading AI frameworks, platforms, and tools. Build once, deploy anywhere."}]]}],["$","div",null,{"className":"grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-8","children":[["$","$L21",null,{"domain":"openai.com","name":"OpenAI"}],["$","$L21",null,{"domain":"anthropic.com","name":"Anthropic"}],["$","$L21",null,{"domain":"deepmind.google","name":"Gemini"}],["$","$L21",null,{"domain":"microsoft.com","name":"Microsoft"}],["$","$L21",null,{"domain":"langchain.com","name":"LangChain"}],["$","$L21",null,{"domain":"huggingface.co","name":"Hugging Face"}]]}],["$","div",null,{"className":"grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-12","children":[["$","$L21",null,{"domain":"kagent.dev","name":"kAgent"}],["$","$L21",null,{"domain":"crewai.com","name":"CrewAI"}],["$","$L21",null,{"domain":"langflow.com","name":"Langflow"}],["$","$L21",null,{"domain":"llamaindex.ai","name":"LlamaIndex"}],["$","$L21",null,{"domain":"langchain.com","name":"LangGraph"}],["$","$L21",null,{"domain":"modelcontextprotocol.io","name":"MCP"}],["$","$L21",null,{"domain":"drupal.org","name":"Drupal"}],["$","$L21",null,{"domain":"librechat.com","name":"LibreChat"}],["$","$L21",null,{"domain":"docker.com","name":"Docker"}],["$","$L21",null,{"domain":"kubernetes.io","name":"Kubernetes"}],["$","$L21",null,{"domain":"aws.amazon.com","name":"AWS"}],["$","$L21",null,{"domain":"github.com","name":"GitHub"}]]}],["$","div",null,{"className":"text-center","children":[["$","p",null,{"className":"text-lg text-gray-600 mb-6","children":"And many more frameworks, platforms, and tools..."}],["$","$L5",null,{"href":"/docs/ecosystem/framework-support/","className":"btn-primary","children":"View All Integrations"}]]}]]}]}]
28
+ 13:["$","section",null,{"className":"py-20 px-4 bg-white","children":["$","div",null,{"className":"container mx-auto max-w-7xl","children":[["$","div",null,{"className":"text-center mb-16","children":[["$","h2",null,{"className":"text-5xl font-bold mb-6","children":"Why Open Standard Agents?"}],["$","p",null,{"className":"text-xl text-gray-600 max-w-3xl mx-auto","children":"Build agent-based systems with confidence, knowing your agents will work across frameworks, teams, and infrastructures."}]]}],["$","div",null,{"className":"grid md:grid-cols-2 lg:grid-cols-4 gap-8","children":[["$","div",null,{"className":"card-hover p-6 text-center","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Framework-Agnostic"}],["$","p",null,{"className":"text-gray-700","children":"Works with LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more. No vendor lock-in."}]]}],["$","div",null,{"className":"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Portable"}],["$","p",null,{"className":"text-gray-700","children":"Move agents between teams, organizations, and infrastructures without rewriting code."}]]}],["$","div",null,{"className":"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Validatable"}],["$","p",null,{"className":"text-gray-700","children":"JSON Schema validation ensures correctness before deployment. Catch errors early."}]]}],["$","div",null,{"className":"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Well-Documented"}],["$","p",null,{"className":"text-gray-700","children":"Comprehensive documentation, examples, and tooling. Built for developers, by developers."}]]}],["$","div",null,{"className":"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Open Source"}],["$","p",null,{"className":"text-gray-700","children":"Apache 2.0 licensed. Community-driven. Transparent development process."}]]}],["$","div",null,{"className":"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Fast Integration"}],["$","p",null,{"className":"text-gray-700","children":"Export to any framework format. Import existing agents. Seamless migration paths."}]]}],["$","div",null,{"className":"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Secure by Design"}],["$","p",null,{"className":"text-gray-700","children":"Built-in security patterns, authentication, and compliance features."}]]}],["$","div",null,{"className":"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow","children":[["$","h3",null,{"className":"text-xl font-semibold mb-3","children":"Observable"}],["$","p",null,{"className":"text-gray-700","children":"Built-in observability, logging, and monitoring. Track agent performance and behavior."}]]}]]}]]}]}]
29
+ 14:["$","section",null,{"className":"py-16 px-4 bg-primary text-white","children":["$","div",null,{"className":"container mx-auto max-w-6xl text-center","children":[["$","h2",null,{"className":"text-4xl font-bold mb-6","children":"Ready to Get Started?"}],["$","p",null,{"className":"text-xl mb-8 text-gray-200","children":"Join the community and start building with Open Standard Agents today."}],["$","div",null,{"className":"flex flex-col sm:flex-row gap-4 justify-center","children":[["$","$L5",null,{"href":"/examples/","className":"btn-secondary","children":"View Examples"}],["$","$L5",null,{"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","children":"Report Issues"}]]}]]}]}]
30
+ 15:["$","$L22",null,{"children":["$L23",["$","$L24",null,{"promise":"$@25"}]]}]
31
+ 1b:["$","span",null,{"className":"font-medium","children":"Enables API interoperability"}]
32
+ 1c:["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Vendor-neutral specification"}]]}]
33
+ 1d:["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"JSON Schema validation"}]]}]
34
+ 1e:["$","div",null,{"className":"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300","children":[["$","h4",null,{"className":"text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100","children":"OSSA for AI Agents"}],["$","ul",null,{"className":"space-y-3 text-gray-700","children":[["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Standardizes AI agent contracts"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Enables agent interoperability"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Vendor-neutral specification"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"JSON Schema validation"}]]}]]}]]}]
35
+ 1f:["$","div",null,{"className":"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300","children":[["$","h4",null,{"className":"text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100","children":"OpenAPI Integration"}],["$","ul",null,{"className":"space-y-3 text-gray-700","children":[["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Seamless OpenAPI compatibility"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Import existing OpenAPI specs"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Export agents as OpenAPI"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-primary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Unified API and agent standards"}]]}]]}]]}]
36
+ 20:["$","div",null,{"className":"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300","children":[["$","h4",null,{"className":"text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100","children":"API-to-Agent Bridge"}],["$","ul",null,{"className":"space-y-3 text-gray-700","children":[["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Connect REST APIs to agents"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Use OpenAPI as agent tools"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Automatic API discovery"}]]}],["$","li",null,{"className":"flex items-start gap-3","children":[["$","svg",null,{"className":"w-5 h-5 text-secondary mt-0.5 flex-shrink-0","fill":"currentColor","viewBox":"0 0 20 20","children":["$","path",null,{"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"}]}],["$","span",null,{"className":"font-medium","children":"Bidirectional integration"}]]}]]}]]}]
37
+ 17:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
38
+ 23:null
39
+ 25:{"metadata":[["$","title","0",{"children":"Open Standard Agents - Industry Standard for Agent Orchestration"}],["$","meta","1",{"name":"description","content":"The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere. Zero vendor lock-in."}],["$","meta","2",{"name":"author","content":"OSSA Standards Team"}],["$","meta","3",{"name":"keywords","content":"OSSA,AI Agents,OpenAPI,Standard,Specification,AI,Machine Learning,Agent Framework"}],["$","meta","4",{"name":"creator","content":"OSSA Standards Team"}],["$","meta","5",{"name":"publisher","content":"OSSA Standards Team"}],["$","meta","6",{"name":"robots","content":"index, follow"}],["$","meta","7",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["$","link","8",{"rel":"canonical","href":"https://openstandardagents.org/"}],["$","meta","9",{"property":"og:title","content":"Open Standard Agents - Industry Standard for Agent Orchestration"}],["$","meta","10",{"property":"og:description","content":"The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere."}],["$","meta","11",{"property":"og:site_name","content":"Open Standard Agents"}],["$","meta","12",{"property":"og:locale","content":"en_US"}],["$","meta","13",{"property":"og:image","content":"https://openstandardagents.org/og-image.png"}],["$","meta","14",{"property":"og:image:width","content":"1200"}],["$","meta","15",{"property":"og:image:height","content":"630"}],["$","meta","16",{"property":"og:image:alt","content":"OSSA - Open Standard for Scalable AI Agents"}],["$","meta","17",{"property":"og:type","content":"website"}],["$","meta","18",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","19",{"name":"twitter:creator","content":"@openstandardagents"}],["$","meta","20",{"name":"twitter:title","content":"Open Standard Agents - Industry Standard for Agent Orchestration"}],["$","meta","21",{"name":"twitter:description","content":"The vendor-neutral specification for multi-agent systems"}],["$","meta","22",{"name":"twitter:image","content":"https://openstandardagents.org/og-image.png"}],["$","meta","23",{"name":"twitter:image:width","content":"1200"}],["$","meta","24",{"name":"twitter:image:height","content":"630"}],["$","meta","25",{"name":"twitter:image:alt","content":"OSSA - Open Standard for Scalable AI Agents"}]],"error":null,"digest":"$undefined"}
40
+ 1a:"$25:metadata"
@@ -0,0 +1,2 @@
1
+ (()=>{var a={};a.id=898,a.ids=[898],a.modules={261:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/app-paths")},1910:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,3991,23))},3295:a=>{"use strict";a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},4346:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>l,metadata:()=>k});var d=c(75338),e=c(29021),f=c.n(e),g=c(65169),h=c.n(g),i=c(33873),j=c.n(i);let k={title:"Apache License 2.0 - Open Standard Agents",description:"Review the Apache License 2.0 terms that govern the Open Standard Agents project and ecosystem."};function l(){let a=function(){let a=j().join(process.cwd(),"public/licenses/apache-2.0.txt");return f().readFileSync(a,"utf-8")}();return(0,d.jsxs)(d.Fragment,{children:[(0,d.jsx)("div",{className:"bg-gradient-to-br from-primary via-accent to-secondary text-white py-20 px-4",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-4xl text-center",children:[(0,d.jsx)("div",{className:"inline-flex items-center justify-center w-20 h-20 bg-white/20 backdrop-blur-sm rounded-full mb-6",children:(0,d.jsx)("svg",{className:"w-10 h-10",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:(0,d.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 13h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V20a2 2 0 01-2 2z"})})}),(0,d.jsx)("h1",{className:"text-5xl font-bold mb-4",children:"Apache License 2.0"}),(0,d.jsx)("p",{className:"text-xl text-white/90 mb-6",children:"The governing open source license for the Open Standard Agents project and its documentation."}),(0,d.jsxs)("div",{className:"flex flex-col sm:flex-row gap-4 justify-center",children:[(0,d.jsx)(h(),{href:"#license-text",className:"inline-flex items-center justify-center px-6 py-3 bg-white text-primary font-semibold rounded-lg shadow-lg hover:-translate-y-0.5 transition-all",children:"Read Full Text"}),(0,d.jsx)("a",{href:"https://opensource.org/licenses/Apache-2.0",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all",children:"Official License Page"}),(0,d.jsx)("a",{href:"/licenses/apache-2.0.txt",className:"inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all",children:"Download TXT"})]})]})}),(0,d.jsxs)("div",{className:"container mx-auto max-w-6xl px-4 py-12 space-y-12",children:[(0,d.jsxs)("section",{className:"grid md:grid-cols-3 gap-6",children:[(0,d.jsxs)("div",{className:"bg-white rounded-xl shadow-md p-6 border border-gray-100",children:[(0,d.jsx)("div",{className:"w-12 h-12 rounded-lg bg-primary/10 text-primary flex items-center justify-center mb-4",children:(0,d.jsx)("svg",{className:"w-7 h-7",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:(0,d.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 4v16m0 0l3-3m-3 3l-3-3m9-5h3m-3 0l-3-3m3 3l-3 3M9 12H6m3 0l3-3m-3 3l3 3"})})}),(0,d.jsx)("h2",{className:"text-2xl font-semibold mb-3 text-gray-900",children:"Permissions"}),(0,d.jsxs)("ul",{className:"space-y-2 text-gray-700 list-disc list-inside",children:[(0,d.jsx)("li",{children:"Use, modify, and distribute the specification and code"}),(0,d.jsx)("li",{children:"Commercial and private use allowed"}),(0,d.jsx)("li",{children:"Patent grants included for contributors"})]})]}),(0,d.jsxs)("div",{className:"bg-white rounded-xl shadow-md p-6 border border-gray-100",children:[(0,d.jsx)("div",{className:"w-12 h-12 rounded-lg bg-secondary/10 text-secondary flex items-center justify-center mb-4",children:(0,d.jsx)("svg",{className:"w-7 h-7",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:(0,d.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"})})}),(0,d.jsx)("h2",{className:"text-2xl font-semibold mb-3 text-gray-900",children:"Conditions"}),(0,d.jsxs)("ul",{className:"space-y-2 text-gray-700 list-disc list-inside",children:[(0,d.jsx)("li",{children:"Preserve copyright and license notices"}),(0,d.jsx)("li",{children:"Include a NOTICE file when required"}),(0,d.jsx)("li",{children:"Document significant changes to the work"})]})]}),(0,d.jsxs)("div",{className:"bg-white rounded-xl shadow-md p-6 border border-gray-100",children:[(0,d.jsx)("div",{className:"w-12 h-12 rounded-lg bg-accent/10 text-accent flex items-center justify-center mb-4",children:(0,d.jsx)("svg",{className:"w-7 h-7",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:(0,d.jsx)("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M10 9V5a2 2 0 012-2h6a2 2 0 012 2v6m-8 4h6m-6 0l3 3m-3-3l3-3M15 9h.01M5 7h.01M7 5h.01M19 15h.01M7 17h.01M5 19h.01M3 3l18 18"})})}),(0,d.jsx)("h2",{className:"text-2xl font-semibold mb-3 text-gray-900",children:"Limitations"}),(0,d.jsxs)("ul",{className:"space-y-2 text-gray-700 list-disc list-inside",children:[(0,d.jsx)("li",{children:"No trademark license is granted"}),(0,d.jsx)("li",{children:'No warranty - software is provided "as is"'}),(0,d.jsx)("li",{children:"Liability is limited under the terms"})]})]})]}),(0,d.jsxs)("section",{className:"bg-gray-50 rounded-2xl border border-gray-200 p-8 shadow-sm",children:[(0,d.jsxs)("div",{className:"flex flex-col md:flex-row md:items-center md:justify-between gap-6 mb-6",children:[(0,d.jsxs)("div",{children:[(0,d.jsx)("p",{className:"text-sm font-semibold text-primary uppercase tracking-wide",children:"Open Source Commitment"}),(0,d.jsx)("h2",{className:"text-3xl font-bold text-gray-900 mt-2",children:"Why Apache 2.0?"}),(0,d.jsx)("p",{className:"text-lg text-gray-700 mt-3 max-w-3xl",children:"Apache 2.0 offers a clear, business-friendly open source model with patent grants, making it safe for enterprises, vendors, and researchers to build on the Open Standard Agents specification and ecosystem."})]}),(0,d.jsxs)("div",{className:"flex gap-3",children:[(0,d.jsx)("a",{href:"/licenses/apache-2.0.txt",className:"inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all",children:"Download License"}),(0,d.jsx)("a",{href:"https://opensource.org/licenses/Apache-2.0",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all",children:"OpenSource.org"})]})]}),(0,d.jsxs)("div",{className:"grid md:grid-cols-2 gap-6",children:[(0,d.jsxs)("div",{className:"bg-white rounded-xl border border-gray-100 p-6 shadow-sm",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold text-gray-900 mb-3",children:"Using OSSA in your projects"}),(0,d.jsxs)("ul",{className:"space-y-2 text-gray-700 leading-relaxed list-disc list-inside",children:[(0,d.jsx)("li",{children:"Embed the specification, reference implementations, or docs in commercial and open source products."}),(0,d.jsx)("li",{children:"Attribute OSSA and retain the license headers in source distributions."}),(0,d.jsx)("li",{children:"Contribute improvements knowing patent grants apply to contributions."})]})]}),(0,d.jsxs)("div",{className:"bg-white rounded-xl border border-gray-100 p-6 shadow-sm",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold text-gray-900 mb-3",children:"Need attribution text?"}),(0,d.jsx)("p",{className:"text-gray-700 mb-3",children:"Include the following notice in your documentation or about pages:"}),(0,d.jsx)("div",{className:"bg-gray-900 text-gray-100 p-4 rounded-lg text-sm font-mono overflow-x-auto border border-gray-800",children:"Open Standard Agents Initiative - licensed under the Apache License, Version 2.0. You may not use this project except in compliance with the License. You may obtain a copy at https://opensource.org/licenses/Apache-2.0"})]})]})]}),(0,d.jsxs)("section",{id:"license-text",className:"space-y-4",children:[(0,d.jsxs)("div",{className:"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3",children:[(0,d.jsxs)("div",{children:[(0,d.jsx)("p",{className:"text-sm font-semibold text-primary uppercase tracking-wide",children:"Full Text"}),(0,d.jsx)("h2",{className:"text-3xl font-bold text-gray-900",children:"Apache License, Version 2.0"})]}),(0,d.jsxs)("div",{className:"flex gap-3",children:[(0,d.jsx)("a",{href:"/licenses/apache-2.0.txt",className:"inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all",children:"Download .txt"}),(0,d.jsx)("a",{href:"https://opensource.org/licenses/Apache-2.0",target:"_blank",rel:"noopener noreferrer",className:"inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all",children:"View on OpenSource.org"})]})]}),(0,d.jsx)("div",{className:"bg-gray-900 text-gray-100 rounded-2xl border border-gray-800 shadow-inner",children:(0,d.jsx)("div",{className:"max-h-[32rem] overflow-y-auto p-6",children:(0,d.jsx)("pre",{className:"whitespace-pre-wrap font-mono text-sm leading-relaxed",children:a})})})]})]})]})}},10846:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},19121:a=>{"use strict";a.exports=require("next/dist/server/app-render/action-async-storage.external.js")},26713:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/is-bot")},28354:a=>{"use strict";a.exports=require("util")},29021:a=>{"use strict";a.exports=require("fs")},29294:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-async-storage.external.js")},33873:a=>{"use strict";a.exports=require("path")},38862:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,65169,23))},41025:a=>{"use strict";a.exports=require("next/dist/server/app-render/dynamic-access-async-storage.external.js")},56334:(a,b,c)=>{"use strict";c.r(b),c.d(b,{GlobalError:()=>D.a,__next_app__:()=>J,handler:()=>L,pages:()=>I,routeModule:()=>K,tree:()=>H});var d=c(49754),e=c(9117),f=c(46595),g=c(32324),h=c(39326),i=c(38928),j=c(20175),k=c(12),l=c(54290),m=c(12696),n=c(82802),o=c(77533),p=c(45229),q=c(32822),r=c(261),s=c(26453),t=c(52474),u=c(26713),v=c(51356),w=c(62685),x=c(36225),y=c(63446),z=c(2762),A=c(45742),B=c(86439),C=c(81170),D=c.n(C),E=c(62506),F=c(91203),G={};for(let a in E)0>["default","tree","pages","GlobalError","__next_app__","routeModule","handler"].indexOf(a)&&(G[a]=()=>E[a]);c.d(b,G);let H={children:["",{children:["license",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(c.bind(c,4346)),"/Users/flux423/Sites/LLM/openstandardagents/website/app/license/page.tsx"]}]},{}]},{layout:[()=>Promise.resolve().then(c.bind(c,14125)),"/Users/flux423/Sites/LLM/openstandardagents/website/app/layout.tsx"],"global-error":[()=>Promise.resolve().then(c.t.bind(c,81170,23)),"next/dist/client/components/builtin/global-error.js"],"not-found":[()=>Promise.resolve().then(c.t.bind(c,87028,23)),"next/dist/client/components/builtin/not-found.js"],forbidden:[()=>Promise.resolve().then(c.t.bind(c,90461,23)),"next/dist/client/components/builtin/forbidden.js"],unauthorized:[()=>Promise.resolve().then(c.t.bind(c,32768,23)),"next/dist/client/components/builtin/unauthorized.js"]}]}.children,I=["/Users/flux423/Sites/LLM/openstandardagents/website/app/license/page.tsx"],J={require:c,loadChunk:()=>Promise.resolve()},K=new d.AppPageRouteModule({definition:{kind:e.RouteKind.APP_PAGE,page:"/license/page",pathname:"/license",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:H},distDir:".next",relativeProjectDir:""});async function L(a,b,d){var C;let G="/license/page";"/index"===G&&(G="/");let M=(0,h.getRequestMeta)(a,"postponed"),N=(0,h.getRequestMeta)(a,"minimalMode"),O=await K.prepare(a,b,{srcPage:G,multiZoneDraftMode:!1});if(!O)return b.statusCode=400,b.end("Bad Request"),null==d.waitUntil||d.waitUntil.call(d,Promise.resolve()),null;let{buildId:P,query:Q,params:R,parsedUrl:S,pageIsDynamic:T,buildManifest:U,nextFontManifest:V,reactLoadableManifest:W,serverActionsManifest:X,clientReferenceManifest:Y,subresourceIntegrityManifest:Z,prerenderManifest:$,isDraftMode:_,resolvedPathname:aa,revalidateOnlyGenerated:ab,routerServerContext:ac,nextConfig:ad,interceptionRoutePatterns:ae}=O,af=S.pathname||"/",ag=(0,r.normalizeAppPath)(G),{isOnDemandRevalidate:ah}=O,ai=K.match(af,$),aj=!!$.routes[aa],ak=!!(ai||aj||$.routes[ag]),al=a.headers["user-agent"]||"",am=(0,u.getBotType)(al),an=(0,p.isHtmlBotRequest)(a),ao=(0,h.getRequestMeta)(a,"isPrefetchRSCRequest")??"1"===a.headers[t.NEXT_ROUTER_PREFETCH_HEADER],ap=(0,h.getRequestMeta)(a,"isRSCRequest")??!!a.headers[t.RSC_HEADER],aq=(0,s.getIsPossibleServerAction)(a),ar=(0,m.checkIsAppPPREnabled)(ad.experimental.ppr)&&(null==(C=$.routes[ag]??$.dynamicRoutes[ag])?void 0:C.renderingMode)==="PARTIALLY_STATIC",as=!1,at=!1,au=ar?M:void 0,av=ar&&ap&&!ao,aw=(0,h.getRequestMeta)(a,"segmentPrefetchRSCRequest"),ax=!al||(0,p.shouldServeStreamingMetadata)(al,ad.htmlLimitedBots);an&&ar&&(ak=!1,ax=!1);let ay=!0===K.isDev||!ak||"string"==typeof M||av,az=an&&ar,aA=null;_||!ak||ay||aq||au||av||(aA=aa);let aB=aA;!aB&&K.isDev&&(aB=aa),K.isDev||_||!ak||!ap||av||(0,k.d)(a.headers);let aC={...E,tree:H,pages:I,GlobalError:D(),handler:L,routeModule:K,__next_app__:J};X&&Y&&(0,o.setReferenceManifestsSingleton)({page:G,clientReferenceManifest:Y,serverActionsManifest:X,serverModuleMap:(0,q.createServerModuleMap)({serverActionsManifest:X})});let aD=a.method||"GET",aE=(0,g.getTracer)(),aF=aE.getActiveScopeSpan();try{let f=K.getVaryHeader(aa,ae);b.setHeader("Vary",f);let k=async(c,d)=>{let e=new l.NodeNextRequest(a),f=new l.NodeNextResponse(b);return K.render(e,f,d).finally(()=>{if(!c)return;c.setAttributes({"http.status_code":b.statusCode,"next.rsc":!1});let d=aE.getRootSpanAttributes();if(!d)return;if(d.get("next.span_type")!==i.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${d.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let e=d.get("next.route");if(e){let a=`${aD} ${e}`;c.setAttributes({"next.route":e,"http.route":e,"next.span_name":a}),c.updateName(a)}else c.updateName(`${aD} ${a.url}`)})},m=async({span:e,postponed:f,fallbackRouteParams:g})=>{let i={query:Q,params:R,page:ag,sharedContext:{buildId:P},serverComponentsHmrCache:(0,h.getRequestMeta)(a,"serverComponentsHmrCache"),fallbackRouteParams:g,renderOpts:{App:()=>null,Document:()=>null,pageConfig:{},ComponentMod:aC,Component:(0,j.T)(aC),params:R,routeModule:K,page:G,postponed:f,shouldWaitOnAllReady:az,serveStreamingMetadata:ax,supportsDynamicResponse:"string"==typeof f||ay,buildManifest:U,nextFontManifest:V,reactLoadableManifest:W,subresourceIntegrityManifest:Z,serverActionsManifest:X,clientReferenceManifest:Y,setIsrStatus:null==ac?void 0:ac.setIsrStatus,dir:c(33873).join(process.cwd(),K.relativeProjectDir),isDraftMode:_,isRevalidate:ak&&!f&&!av,botType:am,isOnDemandRevalidate:ah,isPossibleServerAction:aq,assetPrefix:ad.assetPrefix,nextConfigOutput:ad.output,crossOrigin:ad.crossOrigin,trailingSlash:ad.trailingSlash,previewProps:$.preview,deploymentId:ad.deploymentId,enableTainting:ad.experimental.taint,htmlLimitedBots:ad.htmlLimitedBots,devtoolSegmentExplorer:ad.experimental.devtoolSegmentExplorer,reactMaxHeadersLength:ad.reactMaxHeadersLength,multiZoneDraftMode:!1,incrementalCache:(0,h.getRequestMeta)(a,"incrementalCache"),cacheLifeProfiles:ad.experimental.cacheLife,basePath:ad.basePath,serverActions:ad.experimental.serverActions,...as?{nextExport:!0,supportsDynamicResponse:!1,isStaticGeneration:!0,isRevalidate:!0,isDebugDynamicAccesses:as}:{},experimental:{isRoutePPREnabled:ar,expireTime:ad.expireTime,staleTimes:ad.experimental.staleTimes,cacheComponents:!!ad.experimental.cacheComponents,clientSegmentCache:!!ad.experimental.clientSegmentCache,clientParamParsing:!!ad.experimental.clientParamParsing,dynamicOnHover:!!ad.experimental.dynamicOnHover,inlineCss:!!ad.experimental.inlineCss,authInterrupts:!!ad.experimental.authInterrupts,clientTraceMetadata:ad.experimental.clientTraceMetadata||[]},waitUntil:d.waitUntil,onClose:a=>{b.on("close",a)},onAfterTaskError:()=>{},onInstrumentationRequestError:(b,c,d)=>K.onRequestError(a,b,d,ac),err:(0,h.getRequestMeta)(a,"invokeError"),dev:K.isDev}},l=await k(e,i),{metadata:m}=l,{cacheControl:n,headers:o={},fetchTags:p}=m;if(p&&(o[y.NEXT_CACHE_TAGS_HEADER]=p),a.fetchMetrics=m.fetchMetrics,ak&&(null==n?void 0:n.revalidate)===0&&!K.isDev&&!ar){let a=m.staticBailoutInfo,b=Object.defineProperty(Error(`Page changed from static to dynamic at runtime ${aa}${(null==a?void 0:a.description)?`, reason: ${a.description}`:""}
2
+ see more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`),"__NEXT_ERROR_CODE",{value:"E132",enumerable:!1,configurable:!0});if(null==a?void 0:a.stack){let c=a.stack;b.stack=b.message+c.substring(c.indexOf("\n"))}throw b}return{value:{kind:v.CachedRouteKind.APP_PAGE,html:l,headers:o,rscData:m.flightData,postponed:m.postponed,status:m.statusCode,segmentData:m.segmentData},cacheControl:n}},o=async({hasResolved:c,previousCacheEntry:f,isRevalidating:g,span:i})=>{let j,k=!1===K.isDev,l=c||b.writableEnded;if(ah&&ab&&!f&&!N)return(null==ac?void 0:ac.render404)?await ac.render404(a,b):(b.statusCode=404,b.end("This page could not be found")),null;if(ai&&(j=(0,w.parseFallbackField)(ai.fallback)),j===w.FallbackMode.PRERENDER&&(0,u.isBot)(al)&&(!ar||an)&&(j=w.FallbackMode.BLOCKING_STATIC_RENDER),(null==f?void 0:f.isStale)===-1&&(ah=!0),ah&&(j!==w.FallbackMode.NOT_FOUND||f)&&(j=w.FallbackMode.BLOCKING_STATIC_RENDER),!N&&j!==w.FallbackMode.BLOCKING_STATIC_RENDER&&aB&&!l&&!_&&T&&(k||!aj)){let b;if((k||ai)&&j===w.FallbackMode.NOT_FOUND)throw new B.NoFallbackError;if(ar&&!ap){let c="string"==typeof(null==ai?void 0:ai.fallback)?ai.fallback:k?ag:null;if(b=await K.handleResponse({cacheKey:c,req:a,nextConfig:ad,routeKind:e.RouteKind.APP_PAGE,isFallback:!0,prerenderManifest:$,isRoutePPREnabled:ar,responseGenerator:async()=>m({span:i,postponed:void 0,fallbackRouteParams:k||at?(0,n.u)(ag):null}),waitUntil:d.waitUntil}),null===b)return null;if(b)return delete b.cacheControl,b}}let o=ah||g||!au?void 0:au;if(as&&void 0!==o)return{cacheControl:{revalidate:1,expire:void 0},value:{kind:v.CachedRouteKind.PAGES,html:x.default.EMPTY,pageData:{},headers:void 0,status:void 0}};let p=T&&ar&&((0,h.getRequestMeta)(a,"renderFallbackShell")||at)?(0,n.u)(af):null;return m({span:i,postponed:o,fallbackRouteParams:p})},p=async c=>{var f,g,i,j,k;let l,n=await K.handleResponse({cacheKey:aA,responseGenerator:a=>o({span:c,...a}),routeKind:e.RouteKind.APP_PAGE,isOnDemandRevalidate:ah,isRoutePPREnabled:ar,req:a,nextConfig:ad,prerenderManifest:$,waitUntil:d.waitUntil});if(_&&b.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate"),K.isDev&&b.setHeader("Cache-Control","no-store, must-revalidate"),!n){if(aA)throw Object.defineProperty(Error("invariant: cache entry required but not generated"),"__NEXT_ERROR_CODE",{value:"E62",enumerable:!1,configurable:!0});return null}if((null==(f=n.value)?void 0:f.kind)!==v.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant app-page handler received invalid cache entry ${null==(i=n.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E707",enumerable:!1,configurable:!0});let p="string"==typeof n.value.postponed;ak&&!av&&(!p||ao)&&(N||b.setHeader("x-nextjs-cache",ah?"REVALIDATED":n.isMiss?"MISS":n.isStale?"STALE":"HIT"),b.setHeader(t.NEXT_IS_PRERENDER_HEADER,"1"));let{value:q}=n;if(au)l={revalidate:0,expire:void 0};else if(N&&ap&&!ao&&ar)l={revalidate:0,expire:void 0};else if(!K.isDev)if(_)l={revalidate:0,expire:void 0};else if(ak){if(n.cacheControl)if("number"==typeof n.cacheControl.revalidate){if(n.cacheControl.revalidate<1)throw Object.defineProperty(Error(`Invalid revalidate configuration provided: ${n.cacheControl.revalidate} < 1`),"__NEXT_ERROR_CODE",{value:"E22",enumerable:!1,configurable:!0});l={revalidate:n.cacheControl.revalidate,expire:(null==(j=n.cacheControl)?void 0:j.expire)??ad.expireTime}}else l={revalidate:y.CACHE_ONE_YEAR,expire:void 0}}else b.getHeader("Cache-Control")||(l={revalidate:0,expire:void 0});if(n.cacheControl=l,"string"==typeof aw&&(null==q?void 0:q.kind)===v.CachedRouteKind.APP_PAGE&&q.segmentData){b.setHeader(t.NEXT_DID_POSTPONE_HEADER,"2");let c=null==(k=q.headers)?void 0:k[y.NEXT_CACHE_TAGS_HEADER];N&&ak&&c&&"string"==typeof c&&b.setHeader(y.NEXT_CACHE_TAGS_HEADER,c);let d=q.segmentData.get(aw);return void 0!==d?(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:x.default.fromStatic(d,t.RSC_CONTENT_TYPE_HEADER),cacheControl:n.cacheControl}):(b.statusCode=204,(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:x.default.EMPTY,cacheControl:n.cacheControl}))}let r=(0,h.getRequestMeta)(a,"onCacheEntry");if(r&&await r({...n,value:{...n.value,kind:"PAGE"}},{url:(0,h.getRequestMeta)(a,"initURL")}))return null;if(p&&au)throw Object.defineProperty(Error("Invariant: postponed state should not be present on a resume request"),"__NEXT_ERROR_CODE",{value:"E396",enumerable:!1,configurable:!0});if(q.headers){let a={...q.headers};for(let[c,d]of(N&&ak||delete a[y.NEXT_CACHE_TAGS_HEADER],Object.entries(a)))if(void 0!==d)if(Array.isArray(d))for(let a of d)b.appendHeader(c,a);else"number"==typeof d&&(d=d.toString()),b.appendHeader(c,d)}let s=null==(g=q.headers)?void 0:g[y.NEXT_CACHE_TAGS_HEADER];if(N&&ak&&s&&"string"==typeof s&&b.setHeader(y.NEXT_CACHE_TAGS_HEADER,s),!q.status||ap&&ar||(b.statusCode=q.status),!N&&q.status&&F.RedirectStatusCode[q.status]&&ap&&(b.statusCode=200),p&&b.setHeader(t.NEXT_DID_POSTPONE_HEADER,"1"),ap&&!_){if(void 0===q.rscData){if(q.postponed)throw Object.defineProperty(Error("Invariant: Expected postponed to be undefined"),"__NEXT_ERROR_CODE",{value:"E372",enumerable:!1,configurable:!0});return(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:q.html,cacheControl:av?{revalidate:0,expire:void 0}:n.cacheControl})}return(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:x.default.fromStatic(q.rscData,t.RSC_CONTENT_TYPE_HEADER),cacheControl:n.cacheControl})}let u=q.html;if(!p||N||ap)return(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:u,cacheControl:n.cacheControl});if(as)return u.push(new ReadableStream({start(a){a.enqueue(z.ENCODED_TAGS.CLOSED.BODY_AND_HTML),a.close()}})),(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:u,cacheControl:{revalidate:0,expire:void 0}});let w=new TransformStream;return u.push(w.readable),m({span:c,postponed:q.postponed,fallbackRouteParams:null}).then(async a=>{var b,c;if(!a)throw Object.defineProperty(Error("Invariant: expected a result to be returned"),"__NEXT_ERROR_CODE",{value:"E463",enumerable:!1,configurable:!0});if((null==(b=a.value)?void 0:b.kind)!==v.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant: expected a page response, got ${null==(c=a.value)?void 0:c.kind}`),"__NEXT_ERROR_CODE",{value:"E305",enumerable:!1,configurable:!0});await a.value.html.pipeTo(w.writable)}).catch(a=>{w.writable.abort(a).catch(a=>{console.error("couldn't abort transformer",a)})}),(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:u,cacheControl:{revalidate:0,expire:void 0}})};if(!aF)return await aE.withPropagatedContext(a.headers,()=>aE.trace(i.BaseServerSpan.handleRequest,{spanName:`${aD} ${a.url}`,kind:g.SpanKind.SERVER,attributes:{"http.method":aD,"http.target":a.url}},p));await p(aF)}catch(b){throw b instanceof B.NoFallbackError||await K.onRequestError(a,b,{routerKind:"App Router",routePath:G,routeType:"render",revalidateReason:(0,f.c)({isRevalidate:ak,isOnDemandRevalidate:ah})},ac),b}}},63033:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},86439:a=>{"use strict";a.exports=require("next/dist/shared/lib/no-fallback-error.external")}};var b=require("../../webpack-runtime.js");b.C(a);var c=b.X(0,[873,51,227,97],()=>b(b.s=56334));module.exports=c})();
@@ -0,0 +1 @@
1
+ {"version":1,"files":["../../../../../../../../package.json","../../../../../package.json","../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../node_modules/next/dist/lib/constants.js","../../../../node_modules/next/dist/lib/interop-default.js","../../../../node_modules/next/dist/lib/is-error.js","../../../../node_modules/next/dist/lib/semver-noop.js","../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../node_modules/next/dist/server/lib/cache-handlers/default.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../node_modules/next/dist/server/response-cache/types.js","../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","../../../../node_modules/next/dist/shared/lib/router/utils/app-paths.js","../../../../node_modules/next/dist/shared/lib/router/utils/html-bots.js","../../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../../node_modules/next/dist/shared/lib/segment.js","../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../node_modules/next/package.json","../../../../package.json","../../../../public/licenses/apache-2.0.txt","../../../package.json","../../chunks/227.js","../../chunks/51.js","../../chunks/873.js","../../chunks/97.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -0,0 +1 @@
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/license/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"9766":{"*":{"id":"77526","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"78922","name":"*","chunks":[],"async":false}},"16315":{"*":{"id":"43635","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"68495","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"12263","name":"*","chunks":[],"async":false}},"25309":{"*":{"id":"8499","name":"*","chunks":[],"async":false}},"31890":{"*":{"id":"62544","name":"*","chunks":[],"async":false}},"52619":{"*":{"id":"3991","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"54160","name":"*","chunks":[],"async":false}},"59706":{"*":{"id":"31820","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"75170","name":"*","chunks":[],"async":false}},"64671":{"*":{"id":"28075","name":"*","chunks":[],"async":false}},"74281":{"*":{"id":"82900","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"82146","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"31603","name":"*","chunks":[],"async":false}},"82960":{"*":{"id":"26082","name":"*","chunks":[],"async":false}},"89300":{"*":{"id":"93020","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"29234","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/components/layout/Header.tsx":{"id":82960,"name":"*","chunks":["619","static/chunks/619-f072ac750404f9da.js","177","static/chunks/app/layout-ccacbd90656baa78.js"],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/client/app-dir/link.js":{"id":52619,"name":"*","chunks":["619","static/chunks/619-f072ac750404f9da.js","898","static/chunks/app/license/page-bd4cb2219b41f933.js"],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/dist/esm/client/app-dir/link.js":{"id":52619,"name":"*","chunks":["619","static/chunks/619-f072ac750404f9da.js","898","static/chunks/app/license/page-bd4cb2219b41f933.js"],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-inter\"}],\"variableName\":\"inter\"}":{"id":61404,"name":"*","chunks":["619","static/chunks/619-f072ac750404f9da.js","177","static/chunks/app/layout-ccacbd90656baa78.js"],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/app/globals.scss":{"id":66232,"name":"*","chunks":["619","static/chunks/619-f072ac750404f9da.js","177","static/chunks/app/layout-ccacbd90656baa78.js"],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/components/examples/ExamplesViewer.tsx":{"id":25309,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/app/playground/page.tsx":{"id":74281,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/components/docs/MarkdownContent.tsx":{"id":89300,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/components/docs/DocsSidebar.tsx":{"id":31890,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/components/Logo.tsx":{"id":16315,"name":"*","chunks":["619","static/chunks/619-f072ac750404f9da.js","974","static/chunks/app/page-31241dc7465f9590.js"],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/components/schema/SchemaComponentsAccordion.tsx":{"id":64671,"name":"*","chunks":[],"async":false},"/Users/flux423/Sites/LLM/openstandardagents/website/components/schema/SchemaExplorer.tsx":{"id":59706,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/Users/flux423/Sites/LLM/openstandardagents/website/":[],"/Users/flux423/Sites/LLM/openstandardagents/website/app/layout":[{"inlined":false,"path":"static/css/23135390005d4468.css"}],"/Users/flux423/Sites/LLM/openstandardagents/website/app/page":[],"/Users/flux423/Sites/LLM/openstandardagents/website/app/license/page":[]},"rscModuleMapping":{"9766":{"*":{"id":"6060","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"7184","name":"*","chunks":[],"async":false}},"16315":{"*":{"id":"83773","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"36893","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"73041","name":"*","chunks":[],"async":false}},"25309":{"*":{"id":"613","name":"*","chunks":[],"async":false}},"31890":{"*":{"id":"99591","name":"*","chunks":[],"async":false}},"52619":{"*":{"id":"65169","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"81170","name":"*","chunks":[],"async":false}},"59706":{"*":{"id":"97318","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"89748","name":"*","chunks":[],"async":false}},"64671":{"*":{"id":"32661","name":"*","chunks":[],"async":false}},"66232":{"*":{"id":"68279","name":"*","chunks":[],"async":false}},"74281":{"*":{"id":"23984","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"51384","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"23597","name":"*","chunks":[],"async":false}},"82960":{"*":{"id":"64608","name":"*","chunks":[],"async":false}},"89300":{"*":{"id":"48838","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"69576","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}