@bluefly/openstandardagents 0.1.9 → 0.2.5-RC

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 (1074) hide show
  1. package/.cursorrules +84 -0
  2. package/.devfile.yaml +87 -0
  3. package/.env.example +25 -3
  4. package/.eslintrc.cjs +43 -0
  5. package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
  6. package/.github/dependabot.yml +58 -0
  7. package/.github/workflows/ci.yml +154 -0
  8. package/.github/workflows/codeql.yml +41 -0
  9. package/.github/workflows/dependabot-auto-merge.yml +28 -0
  10. package/.github/workflows/release.yml +103 -0
  11. package/.kiro/specs/agent-buildkit-templates/design.md +495 -0
  12. package/.kiro/specs/agent-buildkit-templates/requirements.md +165 -0
  13. package/.kiro/specs/kiro-ide-supercharger/README.md +202 -0
  14. package/.kiro/specs/kiro-ide-supercharger/design.md +1005 -0
  15. package/.kiro/specs/kiro-ide-supercharger/requirements.md +141 -0
  16. package/.kiro/specs/kiro-ide-supercharger/tasks.md +507 -0
  17. package/.kiro/specs/website-design-audit/design.md +679 -0
  18. package/.kiro/specs/website-design-audit/requirements.md +199 -0
  19. package/.prettierignore +7 -0
  20. package/.prettierrc.json +10 -0
  21. package/.redocly.yaml +8 -62
  22. package/.releaserc.json +85 -0
  23. package/.version.json +6 -0
  24. package/CHANGELOG.md +196 -0
  25. package/CONTRIBUTING.md +267 -0
  26. package/LICENSE +190 -0
  27. package/README.md +253 -454
  28. package/bin/ossa +29 -0
  29. package/bin/ossa-validate-all +55 -0
  30. package/bin/ossa-version +23 -0
  31. package/bin/validate-ossa-0.2.2.ts +244 -0
  32. package/bin/validate-ossa-0.2.4.ts +244 -0
  33. package/bin/validate-ossa-0.2.5-RC.ts +244 -0
  34. package/bin/validate-ossa.ts +273 -0
  35. package/dist/di-container.d.ts +1 -1
  36. package/dist/di-container.d.ts.map +1 -1
  37. package/dist/di-container.js +0 -3
  38. package/dist/di-container.js.map +1 -1
  39. package/dist/index.d.ts +9 -27
  40. package/dist/index.d.ts.map +1 -1
  41. package/dist/index.js +13 -33
  42. package/dist/index.js.map +1 -1
  43. package/dist/repositories/schema.repository.d.ts +16 -1
  44. package/dist/repositories/schema.repository.d.ts.map +1 -1
  45. package/dist/repositories/schema.repository.js +94 -17
  46. package/dist/repositories/schema.repository.js.map +1 -1
  47. package/dist/services/generation.service.d.ts +7 -5
  48. package/dist/services/generation.service.d.ts.map +1 -1
  49. package/dist/services/generation.service.js +93 -45
  50. package/dist/services/generation.service.js.map +1 -1
  51. package/dist/services/gitlab-agent.service.d.ts.map +1 -1
  52. package/dist/services/gitlab-agent.service.js +12 -8
  53. package/dist/services/gitlab-agent.service.js.map +1 -1
  54. package/dist/services/migration.service.d.ts +3 -3
  55. package/dist/services/migration.service.d.ts.map +1 -1
  56. package/dist/services/migration.service.js +108 -61
  57. package/dist/services/migration.service.js.map +1 -1
  58. package/dist/services/release-automation/base-crud.service.d.ts +93 -0
  59. package/dist/services/release-automation/base-crud.service.d.ts.map +1 -0
  60. package/dist/services/release-automation/base-crud.service.js +68 -0
  61. package/dist/services/release-automation/base-crud.service.js.map +1 -0
  62. package/dist/services/release-automation/index.d.ts +12 -0
  63. package/dist/services/release-automation/index.d.ts.map +1 -0
  64. package/dist/services/release-automation/index.js +12 -0
  65. package/dist/services/release-automation/index.js.map +1 -0
  66. package/dist/services/release-automation/merge-request.service.d.ts +119 -0
  67. package/dist/services/release-automation/merge-request.service.d.ts.map +1 -0
  68. package/dist/services/release-automation/merge-request.service.js +212 -0
  69. package/dist/services/release-automation/merge-request.service.js.map +1 -0
  70. package/dist/services/release-automation/milestone.service.d.ts +104 -0
  71. package/dist/services/release-automation/milestone.service.d.ts.map +1 -0
  72. package/dist/services/release-automation/milestone.service.js +207 -0
  73. package/dist/services/release-automation/milestone.service.js.map +1 -0
  74. package/dist/services/release-automation/release.service.d.ts +118 -0
  75. package/dist/services/release-automation/release.service.d.ts.map +1 -0
  76. package/dist/services/release-automation/release.service.js +207 -0
  77. package/dist/services/release-automation/release.service.js.map +1 -0
  78. package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
  79. package/dist/services/release-automation/schemas/release.schema.d.ts.map +1 -0
  80. package/dist/services/release-automation/schemas/release.schema.js +269 -0
  81. package/dist/services/release-automation/schemas/release.schema.js.map +1 -0
  82. package/dist/services/release-automation/tag.service.d.ts +99 -0
  83. package/dist/services/release-automation/tag.service.d.ts.map +1 -0
  84. package/dist/services/release-automation/tag.service.js +180 -0
  85. package/dist/services/release-automation/tag.service.js.map +1 -0
  86. package/dist/services/release-automation/webhook.service.d.ts +37 -0
  87. package/dist/services/release-automation/webhook.service.d.ts.map +1 -0
  88. package/dist/services/release-automation/webhook.service.js +173 -0
  89. package/dist/services/release-automation/webhook.service.js.map +1 -0
  90. package/dist/services/runtime/openai.adapter.d.ts.map +1 -1
  91. package/dist/services/runtime/openai.adapter.js.map +1 -1
  92. package/dist/services/validation.service.d.ts.map +1 -1
  93. package/dist/services/validation.service.js +24 -11
  94. package/dist/services/validation.service.js.map +1 -1
  95. package/dist/services/validators/anthropic.validator.d.ts +2 -2
  96. package/dist/services/validators/anthropic.validator.d.ts.map +1 -1
  97. package/dist/services/validators/anthropic.validator.js +14 -9
  98. package/dist/services/validators/anthropic.validator.js.map +1 -1
  99. package/dist/services/validators/autogen.validator.d.ts +2 -2
  100. package/dist/services/validators/autogen.validator.d.ts.map +1 -1
  101. package/dist/services/validators/autogen.validator.js +18 -15
  102. package/dist/services/validators/autogen.validator.js.map +1 -1
  103. package/dist/services/validators/crewai.validator.d.ts +2 -2
  104. package/dist/services/validators/crewai.validator.d.ts.map +1 -1
  105. package/dist/services/validators/crewai.validator.js +18 -17
  106. package/dist/services/validators/crewai.validator.js.map +1 -1
  107. package/dist/services/validators/cursor.validator.d.ts +2 -2
  108. package/dist/services/validators/cursor.validator.d.ts.map +1 -1
  109. package/dist/services/validators/cursor.validator.js +15 -11
  110. package/dist/services/validators/cursor.validator.js.map +1 -1
  111. package/dist/services/validators/langchain.validator.d.ts +2 -2
  112. package/dist/services/validators/langchain.validator.d.ts.map +1 -1
  113. package/dist/services/validators/langchain.validator.js +14 -11
  114. package/dist/services/validators/langchain.validator.js.map +1 -1
  115. package/dist/services/validators/langflow.validator.d.ts +2 -2
  116. package/dist/services/validators/langflow.validator.d.ts.map +1 -1
  117. package/dist/services/validators/langflow.validator.js +14 -9
  118. package/dist/services/validators/langflow.validator.js.map +1 -1
  119. package/dist/services/validators/langgraph.validator.d.ts +2 -2
  120. package/dist/services/validators/langgraph.validator.d.ts.map +1 -1
  121. package/dist/services/validators/langgraph.validator.js +23 -18
  122. package/dist/services/validators/langgraph.validator.js.map +1 -1
  123. package/dist/services/validators/llamaindex.validator.d.ts +2 -2
  124. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -1
  125. package/dist/services/validators/llamaindex.validator.js +19 -16
  126. package/dist/services/validators/llamaindex.validator.js.map +1 -1
  127. package/dist/services/validators/openai.validator.d.ts +2 -2
  128. package/dist/services/validators/openai.validator.d.ts.map +1 -1
  129. package/dist/services/validators/openai.validator.js +20 -16
  130. package/dist/services/validators/openai.validator.js.map +1 -1
  131. package/dist/services/validators/vercel-ai.validator.d.ts +2 -2
  132. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -1
  133. package/dist/services/validators/vercel-ai.validator.js +16 -15
  134. package/dist/services/validators/vercel-ai.validator.js.map +1 -1
  135. package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
  136. package/dist/spec/v0.2.3/README.md +4 -4
  137. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +7 -7
  138. package/dist/spec/v0.2.4/CHANGELOG.md +403 -0
  139. package/dist/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
  140. package/dist/spec/v0.2.4/ossa-0.2.4-dev.schema.json +1696 -0
  141. package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +1819 -0
  142. package/dist/spec/v0.2.5/CHANGELOG.md +401 -0
  143. package/dist/spec/v0.2.5/README.md +72 -0
  144. package/dist/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
  145. package/dist/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
  146. package/dist/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
  147. package/dist/spec/v0.2.5-RC/CHANGELOG.md +401 -0
  148. package/dist/spec/v0.2.5-RC/README.md +72 -0
  149. package/dist/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
  150. package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
  151. package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
  152. package/dist/types/index.d.ts +164 -260
  153. package/dist/types/index.d.ts.map +1 -1
  154. package/dist/types/index.js +3 -65
  155. package/dist/types/index.js.map +1 -1
  156. package/docs/issue-19-completion-summary.md +648 -0
  157. package/docs/issue-19-validation.md +351 -0
  158. package/examples/adk-integration/code-review-workflow.yml +136 -0
  159. package/examples/adk-integration/customer-support.yml +263 -0
  160. package/examples/adk-integration/data-pipeline.yml +173 -0
  161. package/examples/advanced/patterns/compliance-context-production.json +53 -0
  162. package/examples/advanced/patterns/model-router.ts +274 -0
  163. package/examples/advanced/patterns/smart-model-routing.ts +248 -0
  164. package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
  165. package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
  166. package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
  167. package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
  168. package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
  169. package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
  170. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
  171. package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
  172. package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
  173. package/examples/anthropic/claude-assistant.ossa.json +45 -0
  174. package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
  175. package/examples/autogen/multi-agent.ossa.json +37 -0
  176. package/examples/bridge-configurations.yaml +346 -0
  177. package/examples/bridges/Dockerfile.production +87 -0
  178. package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
  179. package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
  180. package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
  181. package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
  182. package/examples/bridges/aiflow-bridge-example.yml +310 -0
  183. package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
  184. package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
  185. package/examples/bridges/k8s/configmap.yaml +121 -0
  186. package/examples/bridges/k8s/deployment-simple.yaml +34 -0
  187. package/examples/bridges/k8s/deployment.yaml +275 -0
  188. package/examples/bridges/k8s/hpa.yaml +126 -0
  189. package/examples/bridges/k8s/ingress.yaml +155 -0
  190. package/examples/bridges/kagent-bridge-example.yml +94 -0
  191. package/examples/bridges/load-tests/Dockerfile +28 -0
  192. package/examples/bridges/load-tests/k6-load-test.js +302 -0
  193. package/examples/bridges/load-tests/requirements.txt +20 -0
  194. package/examples/bridges/loadtest/k6-scenarios.js +270 -0
  195. package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
  196. package/examples/bridges/phase4/chaos-tests.yaml +226 -0
  197. package/examples/bridges/requirements.txt +24 -0
  198. package/examples/bridges/test_aiflow_integration.py +341 -0
  199. package/examples/common_npm/agent-router.ossa.yaml +182 -0
  200. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
  201. package/examples/compliance-agent.yml +155 -0
  202. package/examples/crewai/research-team.ossa.json +36 -0
  203. package/examples/cursor/code-review-agent.ossa.json +47 -0
  204. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
  205. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
  206. package/examples/enterprise/agent.yml +452 -0
  207. package/examples/extensions/drupal-v1.yml +266 -0
  208. package/examples/extensions/kagent-v1.yml +167 -0
  209. package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
  210. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
  211. package/examples/kagent/README.md +31 -0
  212. package/examples/kagent/compliance-validator.ossa.yaml +111 -0
  213. package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
  214. package/examples/kagent/documentation-agent.ossa.yaml +91 -0
  215. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
  216. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
  217. package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
  218. package/examples/kagent/security-scanner.ossa.yaml +140 -0
  219. package/examples/langchain/chain-agent.ossa.json +42 -0
  220. package/examples/langflow/workflow-agent.ossa.json +39 -0
  221. package/examples/langgraph/state-machine-agent.ossa.json +59 -0
  222. package/examples/llamaindex/rag-agent.ossa.json +41 -0
  223. package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
  224. package/examples/minimal/agent.yml +152 -0
  225. package/examples/minimal/openapi.yaml +95 -0
  226. package/examples/openai/basic-agent.ossa.yaml +61 -0
  227. package/examples/openai/multi-tool-agent.ossa.json +165 -0
  228. package/examples/openai/swarm-agent.ossa.json +59 -0
  229. package/examples/openapi-extensions/README.md +87 -0
  230. package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
  231. package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
  232. package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
  233. package/examples/production/agent.yml +713 -0
  234. package/examples/production/document-analyzer-openai.yml +134 -0
  235. package/examples/quickstart/support-agent.ossa.yaml +59 -0
  236. package/examples/service-registry-usage.ts +423 -0
  237. package/examples/spec-examples/audit-agent.yml +147 -0
  238. package/examples/spec-examples/chat-agent.yml +189 -0
  239. package/examples/spec-examples/compliance-agent.yml +204 -0
  240. package/examples/spec-examples/data-processing-agent.yml +132 -0
  241. package/examples/spec-examples/development-agent.yml +138 -0
  242. package/examples/spec-examples/edge-agent.yml +101 -0
  243. package/examples/spec-examples/integration-agent.yml +129 -0
  244. package/examples/spec-examples/monitoring-agent.yml +130 -0
  245. package/examples/spec-examples/serverless-agent.yml +82 -0
  246. package/examples/spec-examples/workflow-agent.yml +223 -0
  247. package/examples/templates/ossa-compliance.yaml +56 -0
  248. package/examples/typescript/advanced/demo-registry.ts +168 -0
  249. package/examples/typescript/mcpb-agent-example.ts +358 -0
  250. package/examples/vercel/edge-agent.ossa.json +43 -0
  251. package/infrastructure/docker-compose.yml +33 -0
  252. package/infrastructure/gitlab-agent/rbac.yaml +126 -0
  253. package/infrastructure/gitlab-agent/values.yaml +150 -0
  254. package/infrastructure/k8s/monitoring/00-namespace.yaml +7 -0
  255. package/infrastructure/k8s/monitoring/01-prometheus.yaml +142 -0
  256. package/infrastructure/k8s/monitoring/02-grafana.yaml +63 -0
  257. package/infrastructure/k8s/monitoring/03-lightweight.yaml +121 -0
  258. package/infrastructure/k8s/monitoring/README.md +73 -0
  259. package/infrastructure/k8s/monitoring/deploy.sh +38 -0
  260. package/openapi/CHANGELOG.md +21 -0
  261. package/openapi/README.md +46 -0
  262. package/openapi/core/ossa-core-api.openapi.yaml +1503 -0
  263. package/openapi/core/ossa-registry-api.openapi.yaml +980 -0
  264. package/openapi/core/ossa-registry.openapi.yaml +855 -0
  265. package/openapi/core/unified-agent-gateway.openapi.yaml +833 -0
  266. package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +136 -0
  267. package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +192 -0
  268. package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +149 -0
  269. package/openapi/reference-implementations/critic-agent-api.openapi.yaml +151 -0
  270. package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +217 -0
  271. package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +348 -0
  272. package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +149 -0
  273. package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +151 -0
  274. package/openapi/reference-implementations/governor-agent-api.openapi.yaml +193 -0
  275. package/openapi/reference-implementations/helm-generator.openapi.yaml +389 -0
  276. package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +165 -0
  277. package/openapi/reference-implementations/judge-agent-api.openapi.yaml +148 -0
  278. package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +167 -0
  279. package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +171 -0
  280. package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +171 -0
  281. package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +242 -0
  282. package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +187 -0
  283. package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +1530 -0
  284. package/openapi/reference-implementations/worker-agent-api.openapi.yaml +208 -0
  285. package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +193 -0
  286. package/package.json +120 -83
  287. package/release.config.js +79 -0
  288. package/scripts/bump-version.ts +57 -0
  289. package/scripts/enhanced-version-manager.ts +257 -0
  290. package/scripts/gen-types.ts +51 -0
  291. package/scripts/gen-zod.ts +51 -0
  292. package/scripts/lib/exec.ts +37 -0
  293. package/scripts/lib/file-ops.ts +58 -0
  294. package/scripts/lib/version.ts +83 -0
  295. package/scripts/process-doc-templates.ts +37 -0
  296. package/scripts/schemas/package.schema.ts +75 -0
  297. package/scripts/setup-branch-protection.sh +33 -0
  298. package/scripts/sync-version.ts +39 -0
  299. package/scripts/sync-versions.ts +488 -0
  300. package/scripts/validate-schema.ts +49 -0
  301. package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  302. package/spec/v0.1.9/ecosystem-compliance.json +235 -0
  303. package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  304. package/spec/v0.1.9/reasoning-compliance.json +654 -0
  305. package/spec/v0.2.2/kagent-enhancements.json +395 -0
  306. package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  307. package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  308. package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  309. package/spec/v0.2.3/CHANGELOG.md +176 -0
  310. package/spec/v0.2.3/README.md +154 -0
  311. package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  312. package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  313. package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  314. package/spec/v0.2.4/CHANGELOG.md +403 -0
  315. package/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
  316. package/spec/v0.2.4/ossa-0.2.4-dev.schema.json +1696 -0
  317. package/spec/v0.2.4/ossa-0.2.4.schema.json +170 -68
  318. package/spec/v0.2.5/CHANGELOG.md +401 -0
  319. package/spec/v0.2.5/README.md +72 -0
  320. package/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
  321. package/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
  322. package/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
  323. package/spec/v0.2.5-RC/CHANGELOG.md +401 -0
  324. package/spec/v0.2.5-RC/README.md +72 -0
  325. package/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
  326. package/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
  327. package/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
  328. package/test-results.xml +1 -0
  329. package/website/.lighthouserc.ts +24 -0
  330. package/website/.prettierrc +10 -0
  331. package/website/Dockerfile +30 -0
  332. package/website/app/about/page.tsx +295 -0
  333. package/website/app/blog/[slug]/page.tsx +208 -0
  334. package/website/app/blog/page.tsx +249 -0
  335. package/website/app/design-guide/page.tsx +511 -0
  336. package/website/app/docs/[[...slug]]/page.tsx +847 -0
  337. package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
  338. package/website/app/ecosystem/page.tsx +375 -0
  339. package/website/app/examples/page.tsx +133 -0
  340. package/website/app/globals.scss +135 -0
  341. package/website/app/layout.tsx +106 -0
  342. package/website/app/license/page.tsx +183 -0
  343. package/website/app/not-found.tsx +18 -0
  344. package/website/app/page.tsx +474 -0
  345. package/website/app/playground/page.tsx +487 -0
  346. package/website/app/robots.ts +19 -0
  347. package/website/app/rss.xml/route.ts +74 -0
  348. package/website/app/schema/page.tsx +1001 -0
  349. package/website/app/sitemap.ts +56 -0
  350. package/website/app/specification/page.tsx +287 -0
  351. package/website/components/InstallCommand.tsx +96 -0
  352. package/website/components/Logo.tsx +97 -0
  353. package/website/components/StructuredData.tsx +65 -0
  354. package/website/components/docs/DocsSearch.tsx +104 -0
  355. package/website/components/docs/DocsSidebar.tsx +155 -0
  356. package/website/components/docs/MarkdownContent.tsx +401 -0
  357. package/website/components/docs/VersionSelector.tsx +105 -0
  358. package/website/components/examples/ExamplesViewer.tsx +293 -0
  359. package/website/components/layout/Footer.tsx +116 -0
  360. package/website/components/layout/Header.tsx +168 -0
  361. package/website/components/schema/SchemaComponentsAccordion.tsx +84 -0
  362. package/website/components/schema/SchemaExplorer.tsx +213 -0
  363. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
  364. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +198 -0
  365. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +286 -0
  366. package/website/content/blog/introducing-ossa-framework.md +328 -0
  367. package/website/content/blog/ossa-production-results.md +279 -0
  368. package/website/content/blog/welcome-to-ossa.md +43 -0
  369. package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
  370. package/website/content/docs/00-HOME.md +153 -0
  371. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
  372. package/website/content/docs/Examples.md +71 -0
  373. package/website/content/docs/OpenAPI-Extensions.md +934 -0
  374. package/website/content/docs/adapters/openai-adapter.md +693 -0
  375. package/website/content/docs/architecture/execution-flow.md +335 -0
  376. package/website/content/docs/architecture/multi-agent-systems.md +737 -0
  377. package/website/content/docs/architecture/overview.md +121 -0
  378. package/website/content/docs/architecture/stack-integration.md +461 -0
  379. package/website/content/docs/changelog.md +246 -0
  380. package/website/content/docs/contributing.md +599 -0
  381. package/website/content/docs/core-concepts/Project-Structure.md +348 -0
  382. package/website/content/docs/ecosystem/framework-support.md +819 -0
  383. package/website/content/docs/ecosystem/overview.md +366 -0
  384. package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +107 -0
  385. package/website/content/docs/examples/Migration-Guides.md +214 -0
  386. package/website/content/docs/for-audiences/Architects.md +224 -0
  387. package/website/content/docs/for-audiences/Developers.md +220 -0
  388. package/website/content/docs/for-audiences/Enterprises.md +256 -0
  389. package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
  390. package/website/content/docs/getting-started/5-Minute-Overview.md +85 -0
  391. package/website/content/docs/getting-started/First-Agent.md +196 -0
  392. package/website/content/docs/getting-started/Hello-World.md +184 -0
  393. package/website/content/docs/getting-started/Installation.md +155 -0
  394. package/website/content/docs/getting-started/index.md +92 -0
  395. package/website/content/docs/getting-started/running-agents.md +309 -0
  396. package/website/content/docs/getting-started.md +91 -0
  397. package/website/content/docs/integrations/aiflow.md +104 -0
  398. package/website/content/docs/integrations/drupal.md +105 -0
  399. package/website/content/docs/migration-guides/00-INDEX.md +76 -0
  400. package/website/content/docs/migration-guides/README.md +133 -0
  401. package/website/content/docs/migration-guides/agent-schema-comparison.md +232 -0
  402. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
  403. package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
  404. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
  405. package/website/content/docs/migration-guides/general-agent-schema.yml +247 -0
  406. package/website/content/docs/migration-guides/index.md +133 -0
  407. package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
  408. package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
  409. package/website/content/docs/migration-guides/migration-manifest.json +64 -0
  410. package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
  411. package/website/content/docs/openapi-extensions/examples.md +550 -0
  412. package/website/content/docs/openapi-extensions/index.md +551 -0
  413. package/website/content/docs/openapi-extensions/operation-extensions.md +457 -0
  414. package/website/content/docs/openapi-extensions/root-extensions.md +410 -0
  415. package/website/content/docs/ossa-compliant-badge.md +251 -0
  416. package/website/content/docs/pre-release/index.md +175 -0
  417. package/website/content/docs/quick-reference.md +17 -0
  418. package/website/content/docs/readme.md +35 -0
  419. package/website/content/docs/schema-reference/agent-spec.md +406 -0
  420. package/website/content/docs/schema-reference/autonomy.md +568 -0
  421. package/website/content/docs/schema-reference/constraints.md +543 -0
  422. package/website/content/docs/schema-reference/index.md +176 -0
  423. package/website/content/docs/schema-reference/llm-config.md +445 -0
  424. package/website/content/docs/schema-reference/observability.md +654 -0
  425. package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
  426. package/website/content/docs/schema-reference/taxonomy.md +509 -0
  427. package/website/content/docs/schema-reference/tools.md +628 -0
  428. package/website/content/docs/templates/blog-post.md +43 -0
  429. package/website/content/docs/use-cases/00-index.md +395 -0
  430. package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
  431. package/website/content/docs/use-cases/customer-support.md +1234 -0
  432. package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
  433. package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
  434. package/website/content/docs/versioning.md +288 -0
  435. package/website/lib/version.ts +35 -0
  436. package/website/lib/versions.json +18 -17
  437. package/website/next.config.ts +18 -0
  438. package/website/nginx.conf +32 -0
  439. package/website/package-lock.json +9679 -0
  440. package/website/package.json +59 -0
  441. package/website/postcss.config.mjs +9 -0
  442. package/website/scripts/fetch-versions.js +166 -0
  443. package/website/scripts/generate-examples-index.js +163 -0
  444. package/website/scripts/merge-docs-to-wiki.ts +207 -0
  445. package/website/scripts/sync-version.js +72 -0
  446. package/website/scripts/sync-wiki.ts +322 -0
  447. package/website/scripts/upload-wiki.ts +199 -0
  448. package/website/styles/_variables.scss +36 -0
  449. package/website/tailwind.config.ts +136 -0
  450. package/.buildkit/agent-first-policy.sh +0 -65
  451. package/.buildkit/branching-workflow.json +0 -41
  452. package/.buildkit/hooks.yaml +0 -23
  453. package/.buildkit/install-buildkit-setup.cjs +0 -483
  454. package/.cursor/plans/ossa-comprehensive-enhancement-issue-audit-plan.plan.md +0 -735
  455. package/.cursor/plans/ossa-enterprise-transformation-plan-0ccaf09b.plan.md +0 -373
  456. package/.cursor/plans/ossa-milestone-organization-and-v0-2-4-release-6dafa4ec.plan.md +0 -214
  457. package/.cursor/rules/problems.json +0 -483
  458. package/.cursor/settings.json +0 -29
  459. package/.cursor/worktrees.json +0 -95
  460. package/.env.local +0 -31
  461. package/.github/ISSUE_TEMPLATE/README.md +0 -33
  462. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -61
  463. package/.github/ISSUE_TEMPLATE/config.yml +0 -12
  464. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -75
  465. package/.github/wiki_templates/home.md +0 -39
  466. package/.gitignore.bak +0 -489
  467. package/.gitlab-ci-trigger +0 -1
  468. package/.husky/pre-commit +0 -31
  469. package/.lintstagedrc.json +0 -16
  470. package/.vscode/extensions.json +0 -6
  471. package/.vscode/settings.json +0 -3
  472. package/AUDIT_FIXES.md +0 -139
  473. package/AUDIT_REPORT.md +0 -308
  474. package/BUILDKIT_INTEGRATION.md +0 -146
  475. package/Dockerfile +0 -35
  476. package/dist/adk/adapters/index.d.ts +0 -64
  477. package/dist/adk/adapters/index.d.ts.map +0 -1
  478. package/dist/adk/adapters/index.js +0 -257
  479. package/dist/adk/adapters/index.js.map +0 -1
  480. package/dist/adk/agents/custom-agent.d.ts +0 -55
  481. package/dist/adk/agents/custom-agent.d.ts.map +0 -1
  482. package/dist/adk/agents/custom-agent.js +0 -167
  483. package/dist/adk/agents/custom-agent.js.map +0 -1
  484. package/dist/adk/agents/index.d.ts +0 -64
  485. package/dist/adk/agents/index.d.ts.map +0 -1
  486. package/dist/adk/agents/index.js +0 -125
  487. package/dist/adk/agents/index.js.map +0 -1
  488. package/dist/adk/agents/llm-agent.d.ts +0 -27
  489. package/dist/adk/agents/llm-agent.d.ts.map +0 -1
  490. package/dist/adk/agents/llm-agent.js +0 -63
  491. package/dist/adk/agents/llm-agent.js.map +0 -1
  492. package/dist/adk/agents/workflow-agent.d.ts +0 -42
  493. package/dist/adk/agents/workflow-agent.d.ts.map +0 -1
  494. package/dist/adk/agents/workflow-agent.js +0 -144
  495. package/dist/adk/agents/workflow-agent.js.map +0 -1
  496. package/dist/adk/index.d.ts +0 -10
  497. package/dist/adk/index.d.ts.map +0 -1
  498. package/dist/adk/index.js +0 -10
  499. package/dist/adk/index.js.map +0 -1
  500. package/dist/adk/orchestration/index.d.ts +0 -63
  501. package/dist/adk/orchestration/index.d.ts.map +0 -1
  502. package/dist/adk/orchestration/index.js +0 -264
  503. package/dist/adk/orchestration/index.js.map +0 -1
  504. package/dist/adk/state/index.d.ts +0 -73
  505. package/dist/adk/state/index.d.ts.map +0 -1
  506. package/dist/adk/state/index.js +0 -177
  507. package/dist/adk/state/index.js.map +0 -1
  508. package/dist/adk/tools/index.d.ts +0 -65
  509. package/dist/adk/tools/index.d.ts.map +0 -1
  510. package/dist/adk/tools/index.js +0 -252
  511. package/dist/adk/tools/index.js.map +0 -1
  512. package/dist/cli/agent-deployment.d.ts +0 -34
  513. package/dist/cli/agent-deployment.d.ts.map +0 -1
  514. package/dist/cli/agent-deployment.js +0 -396
  515. package/dist/cli/agent-deployment.js.map +0 -1
  516. package/dist/cli/commands/discover.command.d.ts +0 -7
  517. package/dist/cli/commands/discover.command.d.ts.map +0 -1
  518. package/dist/cli/commands/discover.command.js +0 -80
  519. package/dist/cli/commands/discover.command.js.map +0 -1
  520. package/dist/cli/commands/export.command.d.ts +0 -7
  521. package/dist/cli/commands/export.command.d.ts.map +0 -1
  522. package/dist/cli/commands/export.command.js +0 -56
  523. package/dist/cli/commands/export.command.js.map +0 -1
  524. package/dist/cli/commands/generate.command.d.ts +0 -7
  525. package/dist/cli/commands/generate.command.d.ts.map +0 -1
  526. package/dist/cli/commands/generate.command.js +0 -66
  527. package/dist/cli/commands/generate.command.js.map +0 -1
  528. package/dist/cli/commands/gitlab-agent.command.d.ts +0 -8
  529. package/dist/cli/commands/gitlab-agent.command.d.ts.map +0 -1
  530. package/dist/cli/commands/gitlab-agent.command.js +0 -201
  531. package/dist/cli/commands/gitlab-agent.command.js.map +0 -1
  532. package/dist/cli/commands/import.command.d.ts +0 -7
  533. package/dist/cli/commands/import.command.d.ts.map +0 -1
  534. package/dist/cli/commands/import.command.js +0 -36
  535. package/dist/cli/commands/import.command.js.map +0 -1
  536. package/dist/cli/commands/init.command.d.ts +0 -7
  537. package/dist/cli/commands/init.command.d.ts.map +0 -1
  538. package/dist/cli/commands/init.command.js +0 -146
  539. package/dist/cli/commands/init.command.js.map +0 -1
  540. package/dist/cli/commands/migrate.command.d.ts +0 -7
  541. package/dist/cli/commands/migrate.command.d.ts.map +0 -1
  542. package/dist/cli/commands/migrate.command.js +0 -110
  543. package/dist/cli/commands/migrate.command.js.map +0 -1
  544. package/dist/cli/commands/ossa.d.ts +0 -9
  545. package/dist/cli/commands/ossa.d.ts.map +0 -1
  546. package/dist/cli/commands/ossa.js +0 -234
  547. package/dist/cli/commands/ossa.js.map +0 -1
  548. package/dist/cli/commands/run.command.d.ts +0 -7
  549. package/dist/cli/commands/run.command.d.ts.map +0 -1
  550. package/dist/cli/commands/run.command.js +0 -114
  551. package/dist/cli/commands/run.command.js.map +0 -1
  552. package/dist/cli/commands/schema.command.d.ts +0 -7
  553. package/dist/cli/commands/schema.command.d.ts.map +0 -1
  554. package/dist/cli/commands/schema.command.js +0 -72
  555. package/dist/cli/commands/schema.command.js.map +0 -1
  556. package/dist/cli/commands/validate.command.d.ts +0 -7
  557. package/dist/cli/commands/validate.command.d.ts.map +0 -1
  558. package/dist/cli/commands/validate.command.js +0 -125
  559. package/dist/cli/commands/validate.command.js.map +0 -1
  560. package/dist/cli/commands/worktree.d.ts +0 -7
  561. package/dist/cli/commands/worktree.d.ts.map +0 -1
  562. package/dist/cli/commands/worktree.js +0 -509
  563. package/dist/cli/commands/worktree.js.map +0 -1
  564. package/dist/cli/index.d.ts +0 -7
  565. package/dist/cli/index.d.ts.map +0 -1
  566. package/dist/cli/index.js +0 -50
  567. package/dist/cli/index.js.map +0 -1
  568. package/dist/cli/ossa-cli.d.ts +0 -52
  569. package/dist/cli/ossa-cli.d.ts.map +0 -1
  570. package/dist/cli/ossa-cli.js +0 -1061
  571. package/dist/cli/ossa-cli.js.map +0 -1
  572. package/dist/core/index.d.ts +0 -31
  573. package/dist/core/index.d.ts.map +0 -1
  574. package/dist/core/index.js +0 -37
  575. package/dist/core/index.js.map +0 -1
  576. package/dist/core/mcp-server-implementation.d.ts +0 -39
  577. package/dist/core/mcp-server-implementation.d.ts.map +0 -1
  578. package/dist/core/mcp-server-implementation.js +0 -1262
  579. package/dist/core/mcp-server-implementation.js.map +0 -1
  580. package/dist/core/orchestrator/index.d.ts +0 -156
  581. package/dist/core/orchestrator/index.d.ts.map +0 -1
  582. package/dist/core/orchestrator/index.js +0 -446
  583. package/dist/core/orchestrator/index.js.map +0 -1
  584. package/dist/core/orchestrator/ossa-orchestrator.d.ts +0 -106
  585. package/dist/core/orchestrator/ossa-orchestrator.d.ts.map +0 -1
  586. package/dist/core/orchestrator/ossa-orchestrator.js +0 -396
  587. package/dist/core/orchestrator/ossa-orchestrator.js.map +0 -1
  588. package/dist/protocols/acap.d.ts +0 -61
  589. package/dist/protocols/acap.d.ts.map +0 -1
  590. package/dist/protocols/acap.js +0 -92
  591. package/dist/protocols/acap.js.map +0 -1
  592. package/dist/protocols/index.d.ts +0 -8
  593. package/dist/protocols/index.d.ts.map +0 -1
  594. package/dist/protocols/index.js +0 -8
  595. package/dist/protocols/index.js.map +0 -1
  596. package/dist/protocols/rasp.d.ts +0 -58
  597. package/dist/protocols/rasp.d.ts.map +0 -1
  598. package/dist/protocols/rasp.js +0 -212
  599. package/dist/protocols/rasp.js.map +0 -1
  600. package/dist/server/simple-app.d.ts +0 -18
  601. package/dist/server/simple-app.d.ts.map +0 -1
  602. package/dist/server/simple-app.js +0 -155
  603. package/dist/server/simple-app.js.map +0 -1
  604. package/dist/server/types/agent.d.ts +0 -498
  605. package/dist/server/types/agent.d.ts.map +0 -1
  606. package/dist/server/types/agent.js +0 -37
  607. package/dist/server/types/agent.js.map +0 -1
  608. package/dist/server/types/server.d.ts +0 -370
  609. package/dist/server/types/server.d.ts.map +0 -1
  610. package/dist/server/types/server.js +0 -68
  611. package/dist/server/types/server.js.map +0 -1
  612. package/dist/services/discovery.service.d.ts +0 -78
  613. package/dist/services/discovery.service.d.ts.map +0 -1
  614. package/dist/services/discovery.service.js +0 -212
  615. package/dist/services/discovery.service.js.map +0 -1
  616. package/dist/services/orchestration/worktree-orchestrator.d.ts +0 -146
  617. package/dist/services/orchestration/worktree-orchestrator.d.ts.map +0 -1
  618. package/dist/services/orchestration/worktree-orchestrator.js +0 -591
  619. package/dist/services/orchestration/worktree-orchestrator.js.map +0 -1
  620. package/dist/services/worktree/branching-strategy.d.ts +0 -17
  621. package/dist/services/worktree/branching-strategy.d.ts.map +0 -1
  622. package/dist/services/worktree/branching-strategy.js +0 -66
  623. package/dist/services/worktree/branching-strategy.js.map +0 -1
  624. package/dist/services/worktree/git-worktree-manager.d.ts +0 -32
  625. package/dist/services/worktree/git-worktree-manager.d.ts.map +0 -1
  626. package/dist/services/worktree/git-worktree-manager.js +0 -61
  627. package/dist/services/worktree/git-worktree-manager.js.map +0 -1
  628. package/dist/spec/v0.2.4-dev/README.md +0 -61
  629. package/dist/spec/v0.2.4-dev/RELEASE-PROCESS.md +0 -130
  630. package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +0 -599
  631. package/dist/spec/v0.2.4-dev/openapi/CHANGELOG-0.2.4.md +0 -177
  632. package/dist/spec/v0.2.4-dev/openapi/README-0.2.4.md +0 -51
  633. package/dist/spec/v0.2.4-dev/openapi/VERIFICATION-0.2.4.md +0 -147
  634. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +0 -1717
  635. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
  636. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +0 -1732
  637. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
  638. package/dist/specification/validator.d.ts +0 -82
  639. package/dist/specification/validator.d.ts.map +0 -1
  640. package/dist/specification/validator.js +0 -562
  641. package/dist/specification/validator.js.map +0 -1
  642. package/dist/types/acdl-api.d.ts +0 -335
  643. package/dist/types/acdl-api.d.ts.map +0 -1
  644. package/dist/types/acdl-api.js +0 -6
  645. package/dist/types/acdl-api.js.map +0 -1
  646. package/dist/types/agents/index.d.ts +0 -53
  647. package/dist/types/agents/index.d.ts.map +0 -1
  648. package/dist/types/agents/index.js +0 -5
  649. package/dist/types/agents/index.js.map +0 -1
  650. package/dist/types/api.d.ts +0 -225
  651. package/dist/types/api.d.ts.map +0 -1
  652. package/dist/types/api.js +0 -6
  653. package/dist/types/api.js.map +0 -1
  654. package/dist/types/architecture/index.d.ts +0 -530
  655. package/dist/types/architecture/index.d.ts.map +0 -1
  656. package/dist/types/architecture/index.js +0 -258
  657. package/dist/types/architecture/index.js.map +0 -1
  658. package/dist/types/policies/index.d.ts +0 -35
  659. package/dist/types/policies/index.d.ts.map +0 -1
  660. package/dist/types/policies/index.js +0 -5
  661. package/dist/types/policies/index.js.map +0 -1
  662. package/dist/types/workflows/index.d.ts +0 -40
  663. package/dist/types/workflows/index.d.ts.map +0 -1
  664. package/dist/types/workflows/index.js +0 -5
  665. package/dist/types/workflows/index.js.map +0 -1
  666. package/dist/utils/version-resolver.d.ts +0 -28
  667. package/dist/utils/version-resolver.d.ts.map +0 -1
  668. package/dist/utils/version-resolver.js +0 -110
  669. package/dist/utils/version-resolver.js.map +0 -1
  670. package/docker-compose.yml +0 -160
  671. package/public/api-docs.html +0 -206
  672. package/public/assets/favicon.svg +0 -8
  673. package/public/assets/script.js +0 -279
  674. package/public/assets/style.css +0 -632
  675. package/public/index.html +0 -307
  676. package/public/redocly-config.yaml +0 -80
  677. package/public/src/api/acdl-specification.yml +0 -531
  678. package/public/src/api/clean-architecture.openapi.yml +0 -1435
  679. package/public/src/api/context7-mcp.openapi.yml +0 -313
  680. package/public/src/api/magic-mcp.openapi.yml +0 -647
  681. package/public/src/api/mcp-infrastructure.openapi.yml +0 -904
  682. package/public/src/api/orchestration.openapi.yml +0 -444
  683. package/public/src/api/ossa-complete.openapi.yml +0 -2250
  684. package/public/src/api/project-discovery.openapi.yml +0 -1293
  685. package/public/src/api/rebuild-audit.openapi.yml +0 -800
  686. package/public/src/api/specification.openapi.yml +0 -498
  687. package/public/src/api/voice-agent-specification.yml +0 -640
  688. package/public/src/api/web-eval-mcp.openapi.yml +0 -426
  689. package/pyrightconfig.json +0 -13
  690. package/redocly.yaml +0 -56
  691. package/specs/README.md +0 -31
  692. package/specs/acdl-specification.yml +0 -531
  693. package/specs/clean-architecture.openapi.yml +0 -1435
  694. package/specs/context7-mcp.openapi.yml +0 -313
  695. package/specs/magic-mcp.openapi.yml +0 -647
  696. package/specs/mcp-infrastructure.openapi.yml +0 -904
  697. package/specs/orchestration.openapi.yml +0 -444
  698. package/specs/ossa-complete.openapi.yml +0 -2250
  699. package/specs/project-discovery.openapi.yml +0 -1293
  700. package/specs/rebuild-audit.openapi.yml +0 -800
  701. package/specs/specification.openapi.yml +0 -498
  702. package/specs/test-api.openapi.yml +0 -20
  703. package/specs/voice-agent-specification.yml +0 -640
  704. package/specs/web-eval-mcp.openapi.yml +0 -426
  705. package/src/adk/adapters/index.ts +0 -310
  706. package/src/adk/agents/custom-agent.ts +0 -206
  707. package/src/adk/agents/index.ts +0 -158
  708. package/src/adk/agents/llm-agent.ts +0 -76
  709. package/src/adk/agents/workflow-agent.ts +0 -191
  710. package/src/adk/index.ts +0 -10
  711. package/src/adk/orchestration/index.ts +0 -352
  712. package/src/adk/state/index.ts +0 -217
  713. package/src/adk/tools/index.ts +0 -291
  714. package/src/api/acdl-specification.yml +0 -531
  715. package/src/api/agent-manifest.schema.json +0 -859
  716. package/src/api/agent-worktree-schema.json +0 -320
  717. package/src/api/clean-architecture.openapi.yml +0 -1435
  718. package/src/api/context7-mcp.openapi.yml +0 -313
  719. package/src/api/magic-mcp.openapi.yml +0 -647
  720. package/src/api/mcp-infrastructure.openapi.yml +0 -904
  721. package/src/api/openapi.redoc.config.json +0 -6
  722. package/src/api/orchestration.openapi.yml +0 -444
  723. package/src/api/ossa-complete.openapi.yml +0 -2250
  724. package/src/api/project-discovery.openapi.yml +0 -1293
  725. package/src/api/rebuild-audit.openapi.yml +0 -800
  726. package/src/api/specification.openapi.yml +0 -498
  727. package/src/api/test-api.openapi.yml +0 -20
  728. package/src/api/voice-agent-specification.yml +0 -640
  729. package/src/api/web-eval-mcp.openapi.yml +0 -426
  730. package/src/api/workflow.schema.json +0 -524
  731. package/src/cli/agent-deployment.ts +0 -452
  732. package/src/cli/commands/ossa.ts +0 -272
  733. package/src/cli/commands/worktree.ts +0 -603
  734. package/src/cli/ossa-cli.ts +0 -1176
  735. package/src/core/index.ts +0 -42
  736. package/src/core/mcp-server-implementation.ts +0 -1409
  737. package/src/core/orchestrator/index.ts +0 -611
  738. package/src/core/orchestrator/ossa-orchestrator.ts +0 -504
  739. package/src/mcp/simple-server.ts +0 -322
  740. package/src/protocols/acap.ts +0 -146
  741. package/src/protocols/index.ts +0 -8
  742. package/src/protocols/rasp.ts +0 -263
  743. package/src/server/app.ts +0 -472
  744. package/src/server/middleware/agentAccess.ts +0 -10
  745. package/src/server/middleware/asyncHandler.ts +0 -10
  746. package/src/server/middleware/auth.ts +0 -10
  747. package/src/server/middleware/errorHandler.ts +0 -9
  748. package/src/server/middleware/logging.ts +0 -10
  749. package/src/server/middleware/metrics.ts +0 -10
  750. package/src/server/middleware/validation.ts +0 -10
  751. package/src/server/routes/agents.ts +0 -632
  752. package/src/server/routes/monitoring.ts +0 -13
  753. package/src/server/routes/orchestration.ts +0 -13
  754. package/src/server/routes/specifications.ts +0 -13
  755. package/src/server/services/AgentService.ts +0 -46
  756. package/src/server/services/ExecutionService.ts +0 -51
  757. package/src/server/services/SpecificationService.ts +0 -22
  758. package/src/server/services/WebhookService.ts +0 -24
  759. package/src/server/simple-app.ts +0 -174
  760. package/src/server/types/agent.ts +0 -612
  761. package/src/server/types/server.ts +0 -465
  762. package/src/services/orchestration/worktree-orchestrator.ts +0 -779
  763. package/src/services/worktree/branching-strategy.ts +0 -76
  764. package/src/services/worktree/git-worktree-manager.ts +0 -86
  765. package/website/.next/BUILD_ID +0 -1
  766. package/website/.next/app-build-manifest.json +0 -151
  767. package/website/.next/app-path-routes-manifest.json +0 -19
  768. package/website/.next/build-manifest.json +0 -33
  769. package/website/.next/cache/.previewinfo +0 -1
  770. package/website/.next/cache/.rscinfo +0 -1
  771. package/website/.next/cache/.tsbuildinfo +0 -1
  772. package/website/.next/cache/fetch-cache/920aec34c288eefa97c5efba3baf95a846a0beb0c48a5064980a2c24b83e941c +0 -1
  773. package/website/.next/cache/fetch-cache/c2ad7a72b43463a0daaa85ca926a8af38defd17ecb64f1fdd2dd4fe2293e8b26 +0 -1
  774. package/website/.next/cache/fetch-cache/d10eb963d5980c8a50ee9ed24472339ee6da054ead33e00676e61e8b8e62cc83 +0 -1
  775. package/website/.next/cache/fetch-cache/f243d84640477f3205b74a85013018acd63b692144675630a74d1af8a3e9eab5 +0 -1
  776. package/website/.next/cache/webpack/client-production/0.pack +0 -0
  777. package/website/.next/cache/webpack/client-production/1.pack +0 -0
  778. package/website/.next/cache/webpack/client-production/10.pack +0 -0
  779. package/website/.next/cache/webpack/client-production/11.pack +0 -0
  780. package/website/.next/cache/webpack/client-production/12.pack +0 -0
  781. package/website/.next/cache/webpack/client-production/13.pack +0 -0
  782. package/website/.next/cache/webpack/client-production/14.pack +0 -0
  783. package/website/.next/cache/webpack/client-production/15.pack +0 -0
  784. package/website/.next/cache/webpack/client-production/16.pack +0 -0
  785. package/website/.next/cache/webpack/client-production/17.pack +0 -0
  786. package/website/.next/cache/webpack/client-production/18.pack +0 -0
  787. package/website/.next/cache/webpack/client-production/2.pack +0 -0
  788. package/website/.next/cache/webpack/client-production/3.pack +0 -0
  789. package/website/.next/cache/webpack/client-production/4.pack +0 -0
  790. package/website/.next/cache/webpack/client-production/5.pack +0 -0
  791. package/website/.next/cache/webpack/client-production/6.pack +0 -0
  792. package/website/.next/cache/webpack/client-production/7.pack +0 -0
  793. package/website/.next/cache/webpack/client-production/8.pack +0 -0
  794. package/website/.next/cache/webpack/client-production/9.pack +0 -0
  795. package/website/.next/cache/webpack/client-production/index.pack +0 -0
  796. package/website/.next/cache/webpack/client-production/index.pack.old +0 -0
  797. package/website/.next/cache/webpack/edge-server-production/0.pack +0 -0
  798. package/website/.next/cache/webpack/edge-server-production/index.pack +0 -0
  799. package/website/.next/cache/webpack/server-production/0.pack +0 -0
  800. package/website/.next/cache/webpack/server-production/1.pack +0 -0
  801. package/website/.next/cache/webpack/server-production/10.pack +0 -0
  802. package/website/.next/cache/webpack/server-production/11.pack +0 -0
  803. package/website/.next/cache/webpack/server-production/12.pack +0 -0
  804. package/website/.next/cache/webpack/server-production/2.pack +0 -0
  805. package/website/.next/cache/webpack/server-production/3.pack +0 -0
  806. package/website/.next/cache/webpack/server-production/4.pack +0 -0
  807. package/website/.next/cache/webpack/server-production/5.pack +0 -0
  808. package/website/.next/cache/webpack/server-production/6.pack +0 -0
  809. package/website/.next/cache/webpack/server-production/7.pack +0 -0
  810. package/website/.next/cache/webpack/server-production/8.pack +0 -0
  811. package/website/.next/cache/webpack/server-production/9.pack +0 -0
  812. package/website/.next/cache/webpack/server-production/index.pack +0 -0
  813. package/website/.next/cache/webpack/server-production/index.pack.old +0 -0
  814. package/website/.next/diagnostics/build-diagnostics.json +0 -6
  815. package/website/.next/diagnostics/framework.json +0 -1
  816. package/website/.next/export-detail.json +0 -5
  817. package/website/.next/export-marker.json +0 -6
  818. package/website/.next/images-manifest.json +0 -57
  819. package/website/.next/next-minimal-server.js.nft.json +0 -1
  820. package/website/.next/next-server.js.nft.json +0 -1
  821. package/website/.next/package.json +0 -1
  822. package/website/.next/prerender-manifest.json +0 -2143
  823. package/website/.next/react-loadable-manifest.json +0 -1898
  824. package/website/.next/required-server-files.json +0 -320
  825. package/website/.next/routes-manifest.json +0 -161
  826. package/website/.next/server/app/_not-found/page.js +0 -2
  827. package/website/.next/server/app/_not-found/page.js.nft.json +0 -1
  828. package/website/.next/server/app/_not-found/page_client-reference-manifest.js +0 -1
  829. package/website/.next/server/app/_not-found.html +0 -1
  830. package/website/.next/server/app/_not-found.meta +0 -8
  831. package/website/.next/server/app/_not-found.rsc +0 -23
  832. package/website/.next/server/app/about/page.js +0 -2
  833. package/website/.next/server/app/about/page.js.nft.json +0 -1
  834. package/website/.next/server/app/about/page_client-reference-manifest.js +0 -1
  835. package/website/.next/server/app/about.html +0 -1
  836. package/website/.next/server/app/about.meta +0 -7
  837. package/website/.next/server/app/about.rsc +0 -40
  838. package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.html +0 -217
  839. package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.meta +0 -7
  840. package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.rsc +0 -308
  841. package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.html +0 -180
  842. package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.meta +0 -7
  843. package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.rsc +0 -232
  844. package/website/.next/server/app/blog/[slug]/page.js +0 -2
  845. package/website/.next/server/app/blog/[slug]/page.js.nft.json +0 -1
  846. package/website/.next/server/app/blog/[slug]/page_client-reference-manifest.js +0 -1
  847. package/website/.next/server/app/blog/introducing-ossa-framework.html +0 -263
  848. package/website/.next/server/app/blog/introducing-ossa-framework.meta +0 -7
  849. package/website/.next/server/app/blog/introducing-ossa-framework.rsc +0 -351
  850. package/website/.next/server/app/blog/ossa-production-results.html +0 -198
  851. package/website/.next/server/app/blog/ossa-production-results.meta +0 -7
  852. package/website/.next/server/app/blog/ossa-production-results.rsc +0 -302
  853. package/website/.next/server/app/blog/page.js +0 -2
  854. package/website/.next/server/app/blog/page.js.nft.json +0 -1
  855. package/website/.next/server/app/blog/page_client-reference-manifest.js +0 -1
  856. package/website/.next/server/app/blog/welcome-to-ossa.html +0 -22
  857. package/website/.next/server/app/blog/welcome-to-ossa.meta +0 -7
  858. package/website/.next/server/app/blog/welcome-to-ossa.rsc +0 -31
  859. package/website/.next/server/app/blog/why-ai-agents-need-open-standard.html +0 -63
  860. package/website/.next/server/app/blog/why-ai-agents-need-open-standard.meta +0 -7
  861. package/website/.next/server/app/blog/why-ai-agents-need-open-standard.rsc +0 -121
  862. package/website/.next/server/app/blog.html +0 -1
  863. package/website/.next/server/app/blog.meta +0 -7
  864. package/website/.next/server/app/blog.rsc +0 -35
  865. package/website/.next/server/app/design-guide/page.js +0 -12
  866. package/website/.next/server/app/design-guide/page.js.nft.json +0 -1
  867. package/website/.next/server/app/design-guide/page_client-reference-manifest.js +0 -1
  868. package/website/.next/server/app/design-guide.html +0 -11
  869. package/website/.next/server/app/design-guide.meta +0 -7
  870. package/website/.next/server/app/design-guide.rsc +0 -41
  871. package/website/.next/server/app/docs.html +0 -1
  872. package/website/.next/server/app/docs.meta +0 -7
  873. package/website/.next/server/app/docs.rsc +0 -42
  874. package/website/.next/server/app/ecosystem/page.js +0 -2
  875. package/website/.next/server/app/ecosystem/page.js.nft.json +0 -1
  876. package/website/.next/server/app/ecosystem/page_client-reference-manifest.js +0 -1
  877. package/website/.next/server/app/ecosystem.html +0 -1
  878. package/website/.next/server/app/ecosystem.meta +0 -7
  879. package/website/.next/server/app/ecosystem.rsc +0 -40
  880. package/website/.next/server/app/examples.html +0 -1
  881. package/website/.next/server/app/examples.meta +0 -7
  882. package/website/.next/server/app/examples.rsc +0 -14559
  883. package/website/.next/server/app/index.html +0 -3
  884. package/website/.next/server/app/index.meta +0 -7
  885. package/website/.next/server/app/index.rsc +0 -40
  886. package/website/.next/server/app/license/page.js +0 -2
  887. package/website/.next/server/app/license/page.js.nft.json +0 -1
  888. package/website/.next/server/app/license/page_client-reference-manifest.js +0 -1
  889. package/website/.next/server/app/license.html +0 -191
  890. package/website/.next/server/app/license.meta +0 -7
  891. package/website/.next/server/app/license.rsc +0 -222
  892. package/website/.next/server/app/page.js +0 -4
  893. package/website/.next/server/app/page.js.nft.json +0 -1
  894. package/website/.next/server/app/page_client-reference-manifest.js +0 -1
  895. package/website/.next/server/app/playground/page.js +0 -111
  896. package/website/.next/server/app/playground/page.js.nft.json +0 -1
  897. package/website/.next/server/app/playground/page_client-reference-manifest.js +0 -1
  898. package/website/.next/server/app/playground.html +0 -1
  899. package/website/.next/server/app/playground.meta +0 -7
  900. package/website/.next/server/app/playground.rsc +0 -30
  901. package/website/.next/server/app/robots.txt/route.js +0 -1
  902. package/website/.next/server/app/robots.txt/route.js.nft.json +0 -1
  903. package/website/.next/server/app/robots.txt/route_client-reference-manifest.js +0 -1
  904. package/website/.next/server/app/robots.txt.body +0 -6
  905. package/website/.next/server/app/robots.txt.meta +0 -1
  906. package/website/.next/server/app/rss.xml/route.js +0 -18
  907. package/website/.next/server/app/rss.xml/route.js.nft.json +0 -1
  908. package/website/.next/server/app/rss.xml/route_client-reference-manifest.js +0 -1
  909. package/website/.next/server/app/rss.xml.body +0 -11
  910. package/website/.next/server/app/rss.xml.meta +0 -1
  911. package/website/.next/server/app/schema/page.js +0 -76
  912. package/website/.next/server/app/schema/page.js.nft.json +0 -1
  913. package/website/.next/server/app/schema/page_client-reference-manifest.js +0 -1
  914. package/website/.next/server/app/schema.html +0 -1
  915. package/website/.next/server/app/schema.meta +0 -7
  916. package/website/.next/server/app/schema.rsc +0 -26
  917. package/website/.next/server/app/sitemap.xml/route.js +0 -1
  918. package/website/.next/server/app/sitemap.xml/route.js.nft.json +0 -1
  919. package/website/.next/server/app/sitemap.xml/route_client-reference-manifest.js +0 -1
  920. package/website/.next/server/app/sitemap.xml.body +0 -39
  921. package/website/.next/server/app/sitemap.xml.meta +0 -1
  922. package/website/.next/server/app/specification/page.js +0 -10
  923. package/website/.next/server/app/specification/page.js.nft.json +0 -1
  924. package/website/.next/server/app/specification/page_client-reference-manifest.js +0 -1
  925. package/website/.next/server/app/specification.html +0 -9
  926. package/website/.next/server/app/specification.meta +0 -7
  927. package/website/.next/server/app/specification.rsc +0 -32
  928. package/website/.next/server/app-paths-manifest.json +0 -19
  929. package/website/.next/server/chunks/18.js +0 -1
  930. package/website/.next/server/chunks/227.js +0 -9
  931. package/website/.next/server/chunks/339.js +0 -25
  932. package/website/.next/server/chunks/49.js +0 -1
  933. package/website/.next/server/chunks/51.js +0 -1
  934. package/website/.next/server/chunks/57.js +0 -1
  935. package/website/.next/server/chunks/579.js +0 -16
  936. package/website/.next/server/chunks/611.js +0 -6
  937. package/website/.next/server/chunks/873.js +0 -22
  938. package/website/.next/server/chunks/900.js +0 -1
  939. package/website/.next/server/chunks/97.js +0 -1
  940. package/website/.next/server/functions-config-manifest.json +0 -4
  941. package/website/.next/server/interception-route-rewrite-manifest.js +0 -1
  942. package/website/.next/server/middleware-build-manifest.js +0 -1
  943. package/website/.next/server/middleware-manifest.json +0 -6
  944. package/website/.next/server/middleware-react-loadable-manifest.js +0 -1
  945. package/website/.next/server/next-font-manifest.js +0 -1
  946. package/website/.next/server/next-font-manifest.json +0 -1
  947. package/website/.next/server/pages/404.html +0 -1
  948. package/website/.next/server/pages/500.html +0 -1
  949. package/website/.next/server/pages/_app.js +0 -1
  950. package/website/.next/server/pages/_app.js.nft.json +0 -1
  951. package/website/.next/server/pages/_document.js +0 -1
  952. package/website/.next/server/pages/_document.js.nft.json +0 -1
  953. package/website/.next/server/pages/_error.js +0 -19
  954. package/website/.next/server/pages/_error.js.nft.json +0 -1
  955. package/website/.next/server/pages-manifest.json +0 -6
  956. package/website/.next/server/server-reference-manifest.js +0 -1
  957. package/website/.next/server/server-reference-manifest.json +0 -1
  958. package/website/.next/server/webpack-runtime.js +0 -1
  959. package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_buildManifest.js +0 -1
  960. package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_ssgManifest.js +0 -1
  961. package/website/.next/static/chunks/119.05f66060d7798fc9.js +0 -25
  962. package/website/.next/static/chunks/255-bf407b21685f2318.js +0 -1
  963. package/website/.next/static/chunks/451-235273497e501ae9.js +0 -1
  964. package/website/.next/static/chunks/4bd1b696-409494caf8c83275.js +0 -1
  965. package/website/.next/static/chunks/619-f072ac750404f9da.js +0 -1
  966. package/website/.next/static/chunks/651-5cd3c87d43b7eb46.js +0 -1
  967. package/website/.next/static/chunks/778.278ac2aadb2a1105.js +0 -1
  968. package/website/.next/static/chunks/890-ab915e0570e1961b.js +0 -1
  969. package/website/.next/static/chunks/app/_not-found/page-ccdaf9d90b537c5d.js +0 -1
  970. package/website/.next/static/chunks/app/about/page-bd4cb2219b41f933.js +0 -1
  971. package/website/.next/static/chunks/app/blog/[slug]/page-8fd43000c4969233.js +0 -1
  972. package/website/.next/static/chunks/app/blog/page-bd4cb2219b41f933.js +0 -1
  973. package/website/.next/static/chunks/app/design-guide/page-bd4cb2219b41f933.js +0 -1
  974. package/website/.next/static/chunks/app/ecosystem/page-bd4cb2219b41f933.js +0 -1
  975. package/website/.next/static/chunks/app/layout-ccacbd90656baa78.js +0 -1
  976. package/website/.next/static/chunks/app/license/page-bd4cb2219b41f933.js +0 -1
  977. package/website/.next/static/chunks/app/page-31241dc7465f9590.js +0 -1
  978. package/website/.next/static/chunks/app/playground/page-c2af00885374900f.js +0 -1
  979. package/website/.next/static/chunks/app/robots.txt/route-032c05054032342f.js +0 -1
  980. package/website/.next/static/chunks/app/rss.xml/route-032c05054032342f.js +0 -1
  981. package/website/.next/static/chunks/app/schema/page-f7c224b281771083.js +0 -1
  982. package/website/.next/static/chunks/app/sitemap.xml/route-032c05054032342f.js +0 -1
  983. package/website/.next/static/chunks/app/specification/page-bd4cb2219b41f933.js +0 -1
  984. package/website/.next/static/chunks/framework-1ce91eb6f9ecda85.js +0 -1
  985. package/website/.next/static/chunks/main-3099e141650ec47a.js +0 -1
  986. package/website/.next/static/chunks/main-app-a2fc6ac9305e3090.js +0 -1
  987. package/website/.next/static/chunks/pages/_app-5addca2b3b969fde.js +0 -1
  988. package/website/.next/static/chunks/pages/_error-022e4ac7bbb9914f.js +0 -1
  989. package/website/.next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
  990. package/website/.next/static/chunks/webpack-6ecb09e5c6e34cb4.js +0 -1
  991. package/website/.next/static/css/23135390005d4468.css +0 -3
  992. package/website/.next/static/media/19cfc7226ec3afaa-s.woff2 +0 -0
  993. package/website/.next/static/media/21350d82a1f187e9-s.woff2 +0 -0
  994. package/website/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
  995. package/website/.next/static/media/ba9851c3c22cd980-s.woff2 +0 -0
  996. package/website/.next/static/media/c5fe6dc8356a8c31-s.woff2 +0 -0
  997. package/website/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
  998. package/website/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
  999. package/website/.next/trace +0 -3
  1000. package/website/.next/types/app/about/page.ts +0 -84
  1001. package/website/.next/types/app/blog/[slug]/page.ts +0 -84
  1002. package/website/.next/types/app/blog/page.ts +0 -84
  1003. package/website/.next/types/app/design-guide/page.ts +0 -84
  1004. package/website/.next/types/app/ecosystem/page.ts +0 -84
  1005. package/website/.next/types/app/license/page.ts +0 -84
  1006. package/website/.next/types/app/page.ts +0 -84
  1007. package/website/.next/types/app/playground/page.ts +0 -84
  1008. package/website/.next/types/app/rss.xml/route.ts +0 -347
  1009. package/website/.next/types/app/schema/page.ts +0 -84
  1010. package/website/.next/types/app/specification/page.ts +0 -84
  1011. package/website/.next/types/cache-life.d.ts +0 -141
  1012. package/website/.next/types/package.json +0 -1
  1013. package/website/.next/types/routes.d.ts +0 -85
  1014. package/website/.next/types/validator.ts +0 -187
  1015. package/website/.wiki-export/Agent-Folder-Structure.md +0 -215
  1016. package/website/.wiki-export/CI-STATUS.md +0 -66
  1017. package/website/.wiki-export/COMPLETE-IMPLEMENTATION-CHECKLIST.md +0 -74
  1018. package/website/.wiki-export/DRUPAL-MODULE-INTEGRATION.md +0 -103
  1019. package/website/.wiki-export/FINAL-STATUS.md +0 -63
  1020. package/website/.wiki-export/Getting-Started.md +0 -87
  1021. package/website/.wiki-export/INSTRUCTIONS.md +0 -46
  1022. package/website/.wiki-export/INTEGRATION-ANALYSIS.md +0 -216
  1023. package/website/.wiki-export/MANIFEST.json +0 -62
  1024. package/website/.wiki-export/OSSA-COMPLIANT-BADGE.md +0 -247
  1025. package/website/.wiki-export/Openapi-Extensions.md +0 -930
  1026. package/website/.wiki-export/README.md +0 -31
  1027. package/website/.wiki-export/RELEASE-READINESS.md +0 -95
  1028. package/website/.wiki-export/VERSIONING.md +0 -284
  1029. package/website/next-env.d.ts +0 -6
  1030. package/website/out/app-build-manifest.json +0 -3
  1031. package/website/out/build-manifest.json +0 -17
  1032. package/website/out/cache/.rscinfo +0 -1
  1033. package/website/out/cache/next-devtools-config.json +0 -1
  1034. package/website/out/cache/webpack/client-development/0.pack.gz +0 -0
  1035. package/website/out/cache/webpack/client-development/1.pack.gz +0 -0
  1036. package/website/out/cache/webpack/client-development/2.pack.gz +0 -0
  1037. package/website/out/cache/webpack/client-development/3.pack.gz +0 -0
  1038. package/website/out/cache/webpack/client-development/index.pack.gz +0 -0
  1039. package/website/out/cache/webpack/client-development/index.pack.gz.old +0 -0
  1040. package/website/out/cache/webpack/client-development-fallback/0.pack.gz +0 -0
  1041. package/website/out/cache/webpack/client-development-fallback/index.pack.gz +0 -0
  1042. package/website/out/cache/webpack/server-development/0.pack.gz +0 -0
  1043. package/website/out/cache/webpack/server-development/1.pack.gz +0 -0
  1044. package/website/out/cache/webpack/server-development/2.pack.gz +0 -0
  1045. package/website/out/cache/webpack/server-development/3.pack.gz +0 -0
  1046. package/website/out/cache/webpack/server-development/index.pack.gz +0 -0
  1047. package/website/out/cache/webpack/server-development/index.pack.gz.old +0 -0
  1048. package/website/out/package.json +0 -1
  1049. package/website/out/prerender-manifest.json +0 -11
  1050. package/website/out/react-loadable-manifest.json +0 -1
  1051. package/website/out/routes-manifest.json +0 -1
  1052. package/website/out/server/app-paths-manifest.json +0 -1
  1053. package/website/out/server/interception-route-rewrite-manifest.js +0 -1
  1054. package/website/out/server/middleware-build-manifest.js +0 -19
  1055. package/website/out/server/middleware-manifest.json +0 -6
  1056. package/website/out/server/middleware-react-loadable-manifest.js +0 -1
  1057. package/website/out/server/next-font-manifest.js +0 -1
  1058. package/website/out/server/next-font-manifest.json +0 -1
  1059. package/website/out/server/pages-manifest.json +0 -1
  1060. package/website/out/server/server-reference-manifest.js +0 -1
  1061. package/website/out/server/server-reference-manifest.json +0 -5
  1062. package/website/out/static/chunks/polyfills.js +0 -1
  1063. package/website/out/static/development/_buildManifest.js +0 -1
  1064. package/website/out/static/development/_ssgManifest.js +0 -1
  1065. package/website/out/trace +0 -2
  1066. package/website/out/types/cache-life.d.ts +0 -141
  1067. package/website/out/types/package.json +0 -1
  1068. package/website/out/types/routes.d.ts +0 -85
  1069. package/website/out/types/validator.ts +0 -187
  1070. package/website/public/examples.json +0 -476
  1071. package/website/public/schemas/openapi-extensions.schema.json +0 -486
  1072. package/website/tsconfig.tsbuildinfo +0 -1
  1073. /package/dist/spec/{v0.2.4-dev → v0.2.4}/ossa-0.2.4-dev.yaml +0 -0
  1074. /package/spec/v0.2.4/{ossa-0.2.4.yaml → ossa-0.2.4-dev.yaml} +0 -0
@@ -1,222 +0,0 @@
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","898","static/chunks/app/license/page-bd4cb2219b41f933.js"],""]
6
- e: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":["","license",""],"i":false,"f":[[["",{"children":["license",{"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":["license","$Lb",{"children":["__PAGE__","$Lc",{},null,false]},null,false]},null,false],"$Ld",false]],"m":"$undefined","G":["$e",[]],"s":false,"S":true}
10
- 15:I[24431,[],"ViewportBoundary"]
11
- 17:I[24431,[],"MetadataBoundary"]
12
- 18:"$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":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}]
19
- c:["$","$1","c",{"children":[[["$","div",null,{"className":"bg-gradient-to-br from-primary via-accent to-secondary text-white py-20 px-4","children":["$","div",null,{"className":"container mx-auto max-w-4xl text-center","children":[["$","div",null,{"className":"inline-flex items-center justify-center w-20 h-20 bg-white/20 backdrop-blur-sm rounded-full mb-6","children":["$","svg",null,{"className":"w-10 h-10","fill":"none","stroke":"currentColor","viewBox":"0 0 24 24","children":["$","path",null,{"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"}]}]}],["$","h1",null,{"className":"text-5xl font-bold mb-4","children":"Apache License 2.0"}],["$","p",null,{"className":"text-xl text-white/90 mb-6","children":"The governing open source license for the Open Standard Agents project and its documentation."}],["$","div",null,{"className":"flex flex-col sm:flex-row gap-4 justify-center","children":[["$","$L5",null,{"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"}],["$","a",null,{"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"}],["$","a",null,{"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"}]]}]]}]}],["$","div",null,{"className":"container mx-auto max-w-6xl px-4 py-12 space-y-12","children":[["$","section",null,{"className":"grid md:grid-cols-3 gap-6","children":[["$","div",null,{"className":"bg-white rounded-xl shadow-md p-6 border border-gray-100","children":[["$","div",null,{"className":"w-12 h-12 rounded-lg bg-primary/10 text-primary flex items-center justify-center mb-4","children":["$","svg",null,{"className":"w-7 h-7","fill":"none","stroke":"currentColor","viewBox":"0 0 24 24","children":["$","path",null,{"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"}]}]}],["$","h2",null,{"className":"text-2xl font-semibold mb-3 text-gray-900","children":"Permissions"}],["$","ul",null,{"className":"space-y-2 text-gray-700 list-disc list-inside","children":[["$","li",null,{"children":"Use, modify, and distribute the specification and code"}],["$","li",null,{"children":"Commercial and private use allowed"}],["$","li",null,{"children":"Patent grants included for contributors"}]]}]]}],["$","div",null,{"className":"bg-white rounded-xl shadow-md p-6 border border-gray-100","children":[["$","div",null,{"className":"w-12 h-12 rounded-lg bg-secondary/10 text-secondary flex items-center justify-center mb-4","children":["$","svg",null,{"className":"w-7 h-7","fill":"none","stroke":"currentColor","viewBox":"0 0 24 24","children":["$","path",null,{"strokeLinecap":"round","strokeLinejoin":"round","strokeWidth":2,"d":"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"}]}]}],["$","h2",null,{"className":"text-2xl font-semibold mb-3 text-gray-900","children":"Conditions"}],["$","ul",null,{"className":"space-y-2 text-gray-700 list-disc list-inside","children":[["$","li",null,{"children":"Preserve copyright and license notices"}],["$","li",null,{"children":"Include a NOTICE file when required"}],["$","li",null,{"children":"Document significant changes to the work"}]]}]]}],["$","div",null,{"className":"bg-white rounded-xl shadow-md p-6 border border-gray-100","children":[["$","div",null,{"className":"w-12 h-12 rounded-lg bg-accent/10 text-accent flex items-center justify-center mb-4","children":"$Lf"}],"$L10","$L11"]}]]}],"$L12","$L13"]}]],null,"$L14"]}]
20
- d:["$","$1","h",{"children":[null,[["$","$L15",null,{"children":"$L16"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$L17",null,{"children":["$","div",null,{"hidden":true,"children":["$","$18",null,{"fallback":null,"children":"$L19"}]}]}]]}]
21
- 1b:I[24431,[],"OutletBoundary"]
22
- 1d:I[15278,[],"AsyncMetadataOutlet"]
23
- f:["$","svg",null,{"className":"w-7 h-7","fill":"none","stroke":"currentColor","viewBox":"0 0 24 24","children":["$","path",null,{"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"}]}]
24
- 10:["$","h2",null,{"className":"text-2xl font-semibold mb-3 text-gray-900","children":"Limitations"}]
25
- 11:["$","ul",null,{"className":"space-y-2 text-gray-700 list-disc list-inside","children":[["$","li",null,{"children":"No trademark license is granted"}],["$","li",null,{"children":"No warranty - software is provided \"as is\""}],["$","li",null,{"children":"Liability is limited under the terms"}]]}]
26
- 12:["$","section",null,{"className":"bg-gray-50 rounded-2xl border border-gray-200 p-8 shadow-sm","children":[["$","div",null,{"className":"flex flex-col md:flex-row md:items-center md:justify-between gap-6 mb-6","children":[["$","div",null,{"children":[["$","p",null,{"className":"text-sm font-semibold text-primary uppercase tracking-wide","children":"Open Source Commitment"}],["$","h2",null,{"className":"text-3xl font-bold text-gray-900 mt-2","children":"Why Apache 2.0?"}],["$","p",null,{"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."}]]}],["$","div",null,{"className":"flex gap-3","children":[["$","a",null,{"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"}],["$","a",null,{"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"}]]}]]}],["$","div",null,{"className":"grid md:grid-cols-2 gap-6","children":[["$","div",null,{"className":"bg-white rounded-xl border border-gray-100 p-6 shadow-sm","children":[["$","h3",null,{"className":"text-xl font-semibold text-gray-900 mb-3","children":"Using OSSA in your projects"}],["$","ul",null,{"className":"space-y-2 text-gray-700 leading-relaxed list-disc list-inside","children":[["$","li",null,{"children":"Embed the specification, reference implementations, or docs in commercial and open source products."}],["$","li",null,{"children":"Attribute OSSA and retain the license headers in source distributions."}],["$","li",null,{"children":"Contribute improvements knowing patent grants apply to contributions."}]]}]]}],["$","div",null,{"className":"bg-white rounded-xl border border-gray-100 p-6 shadow-sm","children":[["$","h3",null,{"className":"text-xl font-semibold text-gray-900 mb-3","children":"Need attribution text?"}],["$","p",null,{"className":"text-gray-700 mb-3","children":"Include the following notice in your documentation or about pages:"}],["$","div",null,{"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"}]]}]]}]]}]
27
- 1a:T2790,Apache License
28
- Version 2.0, January 2004
29
- http://www.apache.org/licenses/
30
-
31
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
32
-
33
- 1. Definitions.
34
-
35
- "License" shall mean the terms and conditions for use, reproduction,
36
- and distribution as defined by Sections 1 through 9 of this document.
37
-
38
- "Licensor" shall mean the copyright owner or entity authorized by
39
- the copyright owner that is granting the License.
40
-
41
- "Legal Entity" shall mean the union of the acting entity and all
42
- other entities that control, are controlled by, or are under common
43
- control with that entity. For the purposes of this definition,
44
- "control" means (i) the power, direct or indirect, to cause the
45
- direction or management of such entity, whether by contract or
46
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
47
- outstanding shares, or (iii) beneficial ownership of such entity.
48
-
49
- "You" (or "Your") shall mean an individual or Legal Entity
50
- exercising permissions granted by this License.
51
-
52
- "Source" form shall mean the preferred form for making modifications,
53
- including but not limited to software source code, documentation
54
- source, and configuration files.
55
-
56
- "Object" form shall mean any form resulting from mechanical
57
- transformation or translation of a Source form, including but
58
- not limited to compiled object code, generated documentation,
59
- and conversions to other media types.
60
-
61
- "Work" shall mean the work of authorship, whether in Source or
62
- Object form, made available under the License, as indicated by a
63
- copyright notice that is included in or attached to the work
64
- (an example is provided in the Appendix below).
65
-
66
- "Derivative Works" shall mean any work, whether in Source or Object
67
- form, that is based on (or derived from) the Work and for which the
68
- editorial revisions, annotations, elaborations, or other modifications
69
- represent, as a whole, an original work of authorship. For the purposes
70
- of this License, Derivative Works shall not include works that remain
71
- separable from, or merely link (or bind by name) to the interfaces of,
72
- the Work and Derivative Works thereof.
73
-
74
- "Contribution" shall mean any work of authorship, including
75
- the original version of the Work and any modifications or additions
76
- to that Work or Derivative Works thereof, that is intentionally
77
- submitted to Licensor for inclusion in the Work by the copyright owner
78
- or by an individual or Legal Entity authorized to submit on behalf of
79
- the copyright owner. For the purposes of this definition, "submitted"
80
- means any form of electronic, verbal, or written communication sent
81
- to the Licensor or its representatives, including but not limited to
82
- communication on electronic mailing lists, source code control systems,
83
- and issue tracking systems that are managed by, or on behalf of, the
84
- Licensor for the purpose of discussing and improving the Work, but
85
- excluding communication that is conspicuously marked or otherwise
86
- designated in writing by the copyright owner as "Not a Contribution."
87
-
88
- "Contributor" shall mean Licensor and any individual or Legal Entity
89
- on behalf of whom a Contribution has been received by Licensor and
90
- subsequently incorporated within the Work.
91
-
92
- 2. Grant of Copyright License. Subject to the terms and conditions of
93
- this License, each Contributor hereby grants to You a perpetual,
94
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
95
- copyright license to reproduce, prepare Derivative Works of,
96
- publicly display, publicly perform, sublicense, and distribute the
97
- Work and such Derivative Works in Source or Object form.
98
-
99
- 3. Grant of Patent License. Subject to the terms and conditions of
100
- this License, each Contributor hereby grants to You a perpetual,
101
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
102
- (except as stated in this section) patent license to make, have made,
103
- use, offer to sell, sell, import, and otherwise transfer the Work,
104
- where such license applies only to those patent claims licensable
105
- by such Contributor that are necessarily infringed by their
106
- Contribution(s) alone or by combination of their Contribution(s)
107
- with the Work to which such Contribution(s) was submitted. If You
108
- institute patent litigation against any entity (including a
109
- cross-claim or counterclaim in a lawsuit) alleging that the Work
110
- or a Contribution incorporated within the Work constitutes direct
111
- or contributory patent infringement, then any patent licenses
112
- granted to You under this License for that Work shall terminate
113
- as of the date such litigation is filed.
114
-
115
- 4. Redistribution. You may reproduce and distribute copies of the
116
- Work or Derivative Works thereof in any medium, with or without
117
- modifications, and in Source or Object form, provided that You
118
- meet the following conditions:
119
-
120
- (a) You must give any other recipients of the Work or
121
- Derivative Works a copy of this License; and
122
-
123
- (b) You must cause any modified files to carry prominent notices
124
- stating that You changed the files; and
125
-
126
- (c) You must retain, in the Source form of any Derivative Works
127
- that You distribute, all copyright, patent, trademark, and
128
- attribution notices from the Source form of the Work,
129
- excluding those notices that do not pertain to any part of
130
- the Derivative Works; and
131
-
132
- (d) If the Work includes a "NOTICE" text file as part of its
133
- distribution, then any Derivative Works that You distribute must
134
- include a readable copy of the attribution notices contained
135
- within such NOTICE file, excluding those notices that do not
136
- pertain to any part of the Derivative Works, in at least one
137
- of the following places: within a NOTICE text file distributed
138
- as part of the Derivative Works; within the Source form or
139
- documentation, if provided along with the Derivative Works; or,
140
- within a display generated by the Derivative Works, if and
141
- wherever such third-party notices normally appear. The contents
142
- of the NOTICE file are for informational purposes only and
143
- do not modify the License. You may add Your own attribution
144
- notices within Derivative Works that You distribute, alongside
145
- or as an addendum to the NOTICE text from the Work, provided
146
- that such additional attribution notices cannot be construed
147
- as modifying the License.
148
-
149
- You may add Your own copyright statement to Your modifications and
150
- may provide additional or different license terms and conditions
151
- for use, reproduction, or distribution of Your modifications, or
152
- for any such Derivative Works as a whole, provided Your use,
153
- reproduction, and distribution of the Work otherwise complies with
154
- the conditions stated in this License.
155
-
156
- 5. Submission of Contributions. Unless You explicitly state otherwise,
157
- any Contribution intentionally submitted for inclusion in the Work
158
- by You to the Licensor shall be under the terms and conditions of
159
- this License, without any additional terms or conditions.
160
- Notwithstanding the above, nothing herein shall supersede or modify
161
- the terms of any separate license agreement you may have executed
162
- with Licensor regarding such Contributions.
163
-
164
- 6. Trademarks. This License does not grant permission to use the trade
165
- names, trademarks, service marks, or product names of the Licensor,
166
- except as required for reasonable and customary use in describing the
167
- origin of the Work and reproducing the content of the NOTICE file.
168
-
169
- 7. Disclaimer of Warranty. Unless required by applicable law or
170
- agreed to in writing, Licensor provides the Work (and each
171
- Contributor provides its Contributions) on an "AS IS" BASIS,
172
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
173
- implied, including, without limitation, any warranties or conditions
174
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
175
- PARTICULAR PURPOSE. You are solely responsible for determining the
176
- appropriateness of using or redistributing the Work and assume any
177
- risks associated with Your exercise of permissions under this License.
178
-
179
- 8. Limitation of Liability. In no event and under no legal theory,
180
- whether in tort (including negligence), contract, or otherwise,
181
- unless required by applicable law (such as deliberate and grossly
182
- negligent acts) or agreed to in writing, shall any Contributor be
183
- liable to You for damages, including any direct, indirect, special,
184
- incidental, or consequential damages of any character arising as a
185
- result of this License or out of the use or inability to use the
186
- Work (including but not limited to damages for loss of goodwill,
187
- work stoppage, computer failure or malfunction, or any and all
188
- other commercial damages or losses), even if such Contributor
189
- has been advised of the possibility of such damages.
190
-
191
- 9. Accepting Warranty or Additional Support. While redistributing
192
- the Work or Derivative Works thereof, You may choose to offer,
193
- and charge a fee for, acceptance of support, warranty, indemnity,
194
- or other liability obligations and/or rights consistent with this
195
- License. However, in accepting such obligations, You may act only
196
- on Your own behalf and on Your sole responsibility, not on behalf
197
- of any other Contributor, and only if You agree to indemnify,
198
- defend, and hold each Contributor harmless for any liability
199
- incurred by, or claims asserted against, such Contributor by reason
200
- of your accepting any such warranty or additional liability.
201
-
202
- END OF TERMS AND CONDITIONS
203
-
204
- Copyright 2024-2025 OSSA Standards Team
205
-
206
- Licensed under the Apache License, Version 2.0 (the "License");
207
- you may not use this file except in compliance with the License.
208
- You may obtain a copy of the License at
209
-
210
- http://www.apache.org/licenses/LICENSE-2.0
211
-
212
- Unless required by applicable law or agreed to in writing, software
213
- distributed under the License is distributed on an "AS IS" BASIS,
214
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
215
- See the License for the specific language governing permissions and
216
- limitations under the License.
217
- 13:["$","section",null,{"id":"license-text","className":"space-y-4","children":[["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3","children":[["$","div",null,{"children":[["$","p",null,{"className":"text-sm font-semibold text-primary uppercase tracking-wide","children":"Full Text"}],["$","h2",null,{"className":"text-3xl font-bold text-gray-900","children":"Apache License, Version 2.0"}]]}],["$","div",null,{"className":"flex gap-3","children":[["$","a",null,{"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"}],["$","a",null,{"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"}]]}]]}],["$","div",null,{"className":"bg-gray-900 text-gray-100 rounded-2xl border border-gray-800 shadow-inner","children":["$","div",null,{"className":"max-h-[32rem] overflow-y-auto p-6","children":["$","pre",null,{"className":"whitespace-pre-wrap font-mono text-sm leading-relaxed","children":"$1a"}]}]}]]}]
218
- 14:["$","$L1b",null,{"children":["$L1c",["$","$L1d",null,{"promise":"$@1e"}]]}]
219
- 16:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
220
- 1c:null
221
- 1e:{"metadata":[["$","title","0",{"children":"Apache License 2.0 - Open Standard Agents | Open Standard Agents"}],["$","meta","1",{"name":"description","content":"Review the Apache License 2.0 terms that govern the Open Standard Agents project and ecosystem."}],["$","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"}
222
- 19:"$1e:metadata"
@@ -1,4 +0,0 @@
1
- (()=>{var a={};a.id=974,a.ids=[974],a.modules={261:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/app-paths")},3295:a=>{"use strict";a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},10846:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},17742:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>j,metadata:()=>i});var d=c(75338),e=c(65169),f=c.n(e),g=c(83773),h=c(99781);let i={title:"Open Standard Agents - Industry Standard for Agent Orchestration",description:"The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere. Zero vendor lock-in."};function j(){return(0,d.jsxs)("div",{className:"flex flex-col",children:[(0,d.jsx)("section",{className:"bg-gradient-hero text-white py-24 px-4",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-7xl text-center",children:[(0,d.jsxs)("div",{className:"mb-8 flex flex-col items-center",children:[(0,d.jsx)("img",{src:"/assets/brand/ossa-logo.svg",alt:"OSSA Logo",className:"h-24 w-24 mb-6 animate-pulse"}),(0,d.jsxs)("div",{className:"flex flex-wrap items-center justify-center gap-3 mb-4",children:[(0,d.jsx)("span",{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"}),(0,d.jsxs)("span",{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: ",h.Kr]})]})]}),(0,d.jsxs)("h1",{className:"text-6xl md:text-7xl font-bold mb-6 leading-tight",children:["Open Standard for ",(0,d.jsx)("span",{className:"bg-gradient-to-r from-yellow-300 via-orange-300 to-pink-300 bg-clip-text text-transparent animate-pulse",children:"Scalable Agents"})]}),(0,d.jsx)("p",{className:"text-3xl md:text-4xl mb-6 font-light",children:"The Interoperability Layer Your Agents Are Missing"}),(0,d.jsx)("p",{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."}),(0,d.jsx)("p",{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."}),(0,d.jsxs)("div",{className:"flex flex-col sm:flex-row gap-4 justify-center mb-12",children:[(0,d.jsx)(f(),{href:"#get-started",className:"btn-primary text-lg px-8 py-4 border-2 border-transparent hover:border-white transition-all",children:"Get Started"}),(0,d.jsx)(f(),{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"}),(0,d.jsx)(f(),{href:"/schema/",className:"btn-outline border-white text-white hover:bg-white hover:text-primary text-lg px-8 py-4",children:"View Schema"})]}),(0,d.jsxs)("div",{className:"flex flex-wrap justify-center gap-6 text-sm text-gray-300",children:[(0,d.jsxs)("div",{className:"flex items-center gap-2",children:[(0,d.jsx)("svg",{className:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{children:"Vendor-Neutral"})]}),(0,d.jsxs)("div",{className:"flex items-center gap-2",children:[(0,d.jsx)("svg",{className:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{children:"Framework-Agnostic"})]}),(0,d.jsxs)("div",{className:"flex items-center gap-2",children:[(0,d.jsx)("svg",{className:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{children:"Open Source"})]}),(0,d.jsxs)("div",{className:"flex items-center gap-2",children:[(0,d.jsx)("svg",{className:"w-5 h-5",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{children:"JSON Schema Validated"})]})]})]})}),(0,d.jsx)("section",{className:"py-16 px-4 bg-gradient-to-br from-amber-50 via-orange-50 to-yellow-50",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-5xl",children:[(0,d.jsx)("div",{className:"text-center mb-8",children:(0,d.jsx)("h2",{className:"text-4xl font-bold mb-6 text-gray-900",children:"Why Does This Matter?"})}),(0,d.jsxs)("div",{className:"prose prose-lg max-w-none",children:[(0,d.jsxs)("p",{className:"text-xl text-gray-700 mb-6 leading-relaxed",children:["In the world of AI agents, ",(0,d.jsx)("strong",{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.']}),(0,d.jsxs)("p",{className:"text-xl text-gray-700 mb-6 leading-relaxed",children:["This fragmentation creates ",(0,d.jsx)("strong",{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."]}),(0,d.jsxs)("p",{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.",(0,d.jsx)("strong",{className:"text-gray-900",children:" OpenAPI solved this by creating one standard that every API could follow"}),"."]}),(0,d.jsxs)("div",{className:"bg-white rounded-xl p-8 shadow-lg border-2 border-blue-200",children:[(0,d.jsx)("p",{className:"text-2xl text-gray-900 font-bold mb-4",children:"OSSA solves this for AI agents."}),(0,d.jsxs)("p",{className:"text-xl text-gray-700",children:[(0,d.jsx)("strong",{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."]})]})]})]})}),(0,d.jsx)("section",{className:"py-20 px-4 bg-white",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-7xl",children:[(0,d.jsxs)("div",{className:"text-center mb-16",children:[(0,d.jsx)("h2",{className:"text-5xl font-bold mb-6",children:"What is Open Standard Agents?"}),(0,d.jsx)("p",{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."})]}),(0,d.jsxs)("div",{className:"grid md:grid-cols-3 gap-8 mb-12",children:[(0,d.jsxs)("div",{className:"card-hover p-8",children:[(0,d.jsx)("h3",{className:"text-2xl font-semibold mb-4 text-primary",children:"Specification Standard"}),(0,d.jsxs)("p",{className:"text-gray-700 mb-4",children:["OSSA is ",(0,d.jsx)("strong",{children:"NOT a framework"})," - it's a specification that defines the contract for agent definition, deployment, and management."]}),(0,d.jsx)("p",{className:"text-gray-700",children:"Just like OpenAPI doesn't implement APIs, OSSA doesn't implement agents. It provides the standard that implementations follow."})]}),(0,d.jsxs)("div",{className:"card-hover p-8",children:[(0,d.jsx)("h3",{className:"text-2xl font-semibold mb-4 text-primary",children:"Framework-Agnostic"}),(0,d.jsx)("p",{className:"text-gray-700 mb-4",children:"Works seamlessly with any LLM framework or SDK - LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more."}),(0,d.jsx)("p",{className:"text-gray-700",children:"Deploy to Kubernetes, Docker, serverless, or on-premise. OSSA is infrastructure-agnostic."})]}),(0,d.jsxs)("div",{className:"card-hover p-8",children:[(0,d.jsx)("h3",{className:"text-2xl font-semibold mb-4 text-primary",children:"Vendor-Neutral"}),(0,d.jsx)("p",{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."}),(0,d.jsx)("p",{className:"text-gray-700",children:"Maintained by the open source community, ensuring long-term viability and innovation."})]})]}),(0,d.jsxs)("div",{className:"bg-gradient-to-br from-blue-50 via-indigo-50 to-purple-50 rounded-2xl p-8 md:p-12 mt-16 border-2 border-blue-100 shadow-xl",children:[(0,d.jsxs)("div",{className:"text-center mb-12",children:[(0,d.jsx)("h3",{className:"text-4xl md:text-5xl font-bold mb-4 bg-gradient-to-r from-primary via-secondary to-primary bg-clip-text text-transparent",children:"The OpenAPI for Agents"}),(0,d.jsx)("div",{className:"w-24 h-1 bg-gradient-to-r from-primary to-secondary mx-auto rounded-full"})]}),(0,d.jsxs)("div",{className:"grid md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-7xl mx-auto",children:[(0,d.jsxs)("div",{className:"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300",children:[(0,d.jsx)("h4",{className:"text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100",children:"OpenAPI for REST APIs"}),(0,d.jsxs)("ul",{className:"space-y-3 text-gray-700",children:[(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Standardizes REST API contracts"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Enables API interoperability"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Vendor-neutral specification"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"JSON Schema validation"})]})]})]}),(0,d.jsxs)("div",{className:"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300",children:[(0,d.jsx)("h4",{className:"text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100",children:"OSSA for AI Agents"}),(0,d.jsxs)("ul",{className:"space-y-3 text-gray-700",children:[(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Standardizes AI agent contracts"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Enables agent interoperability"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Vendor-neutral specification"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"JSON Schema validation"})]})]})]}),(0,d.jsxs)("div",{className:"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-primary transition-all duration-300",children:[(0,d.jsx)("h4",{className:"text-xl font-bold mb-5 text-primary pb-3 border-b-2 border-blue-100",children:"OpenAPI Integration"}),(0,d.jsxs)("ul",{className:"space-y-3 text-gray-700",children:[(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Seamless OpenAPI compatibility"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Import existing OpenAPI specs"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Export agents as OpenAPI"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-primary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Unified API and agent standards"})]})]})]}),(0,d.jsxs)("div",{className:"bg-white rounded-lg p-6 border-2 border-blue-100 shadow-md hover:shadow-xl hover:border-secondary transition-all duration-300",children:[(0,d.jsx)("h4",{className:"text-xl font-bold mb-5 text-secondary pb-3 border-b-2 border-cyan-100",children:"API-to-Agent Bridge"}),(0,d.jsxs)("ul",{className:"space-y-3 text-gray-700",children:[(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Connect REST APIs to agents"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Use OpenAPI as agent tools"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Automatic API discovery"})]}),(0,d.jsxs)("li",{className:"flex items-start gap-3",children:[(0,d.jsx)("svg",{className:"w-5 h-5 text-secondary mt-0.5 flex-shrink-0",fill:"currentColor",viewBox:"0 0 20 20",children:(0,d.jsx)("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})}),(0,d.jsx)("span",{className:"font-medium",children:"Bidirectional integration"})]})]})]})]})]})]})}),(0,d.jsx)("section",{id:"get-started",className:"py-20 px-4 bg-gray-50 scroll-mt-20",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-7xl",children:[(0,d.jsxs)("div",{className:"text-center mb-12",children:[(0,d.jsx)("h2",{className:"text-5xl font-bold mb-6",children:"Get Started in Minutes"}),(0,d.jsx)("p",{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."})]}),(0,d.jsxs)("div",{className:"grid md:grid-cols-2 gap-8 max-w-5xl mx-auto mb-12",children:[(0,d.jsxs)("div",{className:"card p-8",children:[(0,d.jsx)("h3",{className:"text-2xl font-semibold mb-4 text-primary",children:"1. Install CLI"}),(0,d.jsx)("div",{className:"bg-code-bg rounded-lg p-4 mb-4",children:(0,d.jsx)("pre",{className:"text-code-text text-sm overflow-x-auto",children:(0,d.jsx)("code",{children:"npm install -g @bluefly/openstandardagents"})})})]}),(0,d.jsxs)("div",{className:"card p-8",children:[(0,d.jsx)("h3",{className:"text-2xl font-semibold mb-4 text-primary",children:"2. Create Agent"}),(0,d.jsx)("div",{className:"bg-code-bg rounded-lg p-4 mb-4",children:(0,d.jsx)("pre",{className:"text-code-text text-sm overflow-x-auto",children:(0,d.jsx)("code",{children:`osa init my-agent
2
- cd my-agent`})})})]}),(0,d.jsxs)("div",{className:"card p-8",children:[(0,d.jsx)("h3",{className:"text-2xl font-semibold mb-4 text-primary",children:"3. Validate"}),(0,d.jsx)("div",{className:"bg-code-bg rounded-lg p-4 mb-4",children:(0,d.jsx)("pre",{className:"text-code-text text-sm overflow-x-auto",children:(0,d.jsx)("code",{children:"osa validate my-agent.ossa.yaml"})})})]}),(0,d.jsxs)("div",{className:"card p-8",children:[(0,d.jsx)("h3",{className:"text-2xl font-semibold mb-4 text-primary",children:"4. Export"}),(0,d.jsx)("div",{className:"bg-code-bg rounded-lg p-4 mb-4",children:(0,d.jsx)("pre",{className:"text-code-text text-sm overflow-x-auto",children:(0,d.jsx)("code",{children:`osa export --to cursor
3
- osa export --to langchain`})})})]})]}),(0,d.jsx)("div",{className:"text-center",children:(0,d.jsx)(f(),{href:"/docs/getting-started/5-minute-overview/",className:"btn-primary text-lg px-8 py-4",children:"Read Full Getting Started Guide"})})]})}),(0,d.jsx)("section",{className:"py-16 px-4 bg-gray-50",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-7xl",children:[(0,d.jsxs)("div",{className:"text-center mb-12",children:[(0,d.jsx)("h2",{className:"text-4xl font-bold mb-4",children:"Works With Your Favorite Tools"}),(0,d.jsx)("p",{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."})]}),(0,d.jsxs)("div",{className:"grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-8",children:[(0,d.jsx)(g.Logo,{domain:"openai.com",name:"OpenAI"}),(0,d.jsx)(g.Logo,{domain:"anthropic.com",name:"Anthropic"}),(0,d.jsx)(g.Logo,{domain:"deepmind.google",name:"Gemini"}),(0,d.jsx)(g.Logo,{domain:"microsoft.com",name:"Microsoft"}),(0,d.jsx)(g.Logo,{domain:"langchain.com",name:"LangChain"}),(0,d.jsx)(g.Logo,{domain:"huggingface.co",name:"Hugging Face"})]}),(0,d.jsxs)("div",{className:"grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-items-center mb-12",children:[(0,d.jsx)(g.Logo,{domain:"kagent.dev",name:"kAgent"}),(0,d.jsx)(g.Logo,{domain:"crewai.com",name:"CrewAI"}),(0,d.jsx)(g.Logo,{domain:"langflow.com",name:"Langflow"}),(0,d.jsx)(g.Logo,{domain:"llamaindex.ai",name:"LlamaIndex"}),(0,d.jsx)(g.Logo,{domain:"langchain.com",name:"LangGraph"}),(0,d.jsx)(g.Logo,{domain:"modelcontextprotocol.io",name:"MCP"}),(0,d.jsx)(g.Logo,{domain:"drupal.org",name:"Drupal"}),(0,d.jsx)(g.Logo,{domain:"librechat.com",name:"LibreChat"}),(0,d.jsx)(g.Logo,{domain:"docker.com",name:"Docker"}),(0,d.jsx)(g.Logo,{domain:"kubernetes.io",name:"Kubernetes"}),(0,d.jsx)(g.Logo,{domain:"aws.amazon.com",name:"AWS"}),(0,d.jsx)(g.Logo,{domain:"github.com",name:"GitHub"})]}),(0,d.jsxs)("div",{className:"text-center",children:[(0,d.jsx)("p",{className:"text-lg text-gray-600 mb-6",children:"And many more frameworks, platforms, and tools..."}),(0,d.jsx)(f(),{href:"/docs/ecosystem/framework-support/",className:"btn-primary",children:"View All Integrations"})]})]})}),(0,d.jsx)("section",{className:"py-20 px-4 bg-white",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-7xl",children:[(0,d.jsxs)("div",{className:"text-center mb-16",children:[(0,d.jsx)("h2",{className:"text-5xl font-bold mb-6",children:"Why Open Standard Agents?"}),(0,d.jsx)("p",{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."})]}),(0,d.jsxs)("div",{className:"grid md:grid-cols-2 lg:grid-cols-4 gap-8",children:[(0,d.jsxs)("div",{className:"card-hover p-6 text-center",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Framework-Agnostic"}),(0,d.jsx)("p",{className:"text-gray-700",children:"Works with LangChain, Anthropic, OpenAI, CrewAI, Langflow, AutoGen, and more. No vendor lock-in."})]}),(0,d.jsxs)("div",{className:"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Portable"}),(0,d.jsx)("p",{className:"text-gray-700",children:"Move agents between teams, organizations, and infrastructures without rewriting code."})]}),(0,d.jsxs)("div",{className:"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Validatable"}),(0,d.jsx)("p",{className:"text-gray-700",children:"JSON Schema validation ensures correctness before deployment. Catch errors early."})]}),(0,d.jsxs)("div",{className:"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Well-Documented"}),(0,d.jsx)("p",{className:"text-gray-700",children:"Comprehensive documentation, examples, and tooling. Built for developers, by developers."})]}),(0,d.jsxs)("div",{className:"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Open Source"}),(0,d.jsx)("p",{className:"text-gray-700",children:"Apache 2.0 licensed. Community-driven. Transparent development process."})]}),(0,d.jsxs)("div",{className:"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Fast Integration"}),(0,d.jsx)("p",{className:"text-gray-700",children:"Export to any framework format. Import existing agents. Seamless migration paths."})]}),(0,d.jsxs)("div",{className:"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Secure by Design"}),(0,d.jsx)("p",{className:"text-gray-700",children:"Built-in security patterns, authentication, and compliance features."})]}),(0,d.jsxs)("div",{className:"bg-white border border-gray-200 rounded-lg p-6 text-center shadow-sm hover:shadow-lg transition-shadow",children:[(0,d.jsx)("h3",{className:"text-xl font-semibold mb-3",children:"Observable"}),(0,d.jsx)("p",{className:"text-gray-700",children:"Built-in observability, logging, and monitoring. Track agent performance and behavior."})]})]})]})}),(0,d.jsx)("section",{className:"py-16 px-4 bg-primary text-white",children:(0,d.jsxs)("div",{className:"container mx-auto max-w-6xl text-center",children:[(0,d.jsx)("h2",{className:"text-4xl font-bold mb-6",children:"Ready to Get Started?"}),(0,d.jsx)("p",{className:"text-xl mb-8 text-gray-200",children:"Join the community and start building with Open Standard Agents today."}),(0,d.jsxs)("div",{className:"flex flex-col sm:flex-row gap-4 justify-center",children:[(0,d.jsx)(f(),{href:"/examples/",className:"btn-secondary",children:"View Examples"}),(0,d.jsx)(f(),{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"})]})]})})]})}},18590:(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:["__PAGE__",{},{page:[()=>Promise.resolve().then(c.bind(c,17742)),"/Users/flux423/Sites/LLM/openstandardagents/website/app/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"]}],I=["/Users/flux423/Sites/LLM/openstandardagents/website/app/page.tsx"],J={require:c,loadChunk:()=>Promise.resolve()},K=new d.AppPageRouteModule({definition:{kind:e.RouteKind.APP_PAGE,page:"/page",pathname:"/",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:H},distDir:".next",relativeProjectDir:""});async function L(a,b,d){var C;let G="/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}`:""}
4
- 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}}},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")},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")},41025:a=>{"use strict";a.exports=require("next/dist/server/app-render/dynamic-access-async-storage.external.js")},43635:(a,b,c)=>{"use strict";c.d(b,{Logo:()=>f});var d=c(21124);let e={"kagent.dev":"https://www.google.com/s2/favicons?sz=256&domain=kagent.dev","langchain.com":"https://simpleicons.org/icons/langchain.svg","crewai.com":"https://www.google.com/s2/favicons?sz=128&domain=crewai.com","llamaindex.ai":"https://www.google.com/s2/favicons?sz=128&domain=llamaindex.ai","modelcontextprotocol.io":"https://simpleicons.org/icons/anthropic.svg","librechat.com":"https://simpleicons.org/icons/react.svg","langflow.com":"https://simpleicons.org/icons/python.svg","openai.com":"https://simpleicons.org/icons/openai.svg","anthropic.com":"https://simpleicons.org/icons/anthropic.svg","cursor.sh":"https://simpleicons.org/icons/cursor.svg","microsoft.com":"https://www.google.com/s2/favicons?sz=256&domain=microsoft.com","vercel.com":"https://simpleicons.org/icons/vercel.svg","drupal.org":"https://simpleicons.org/icons/drupal.svg","huggingface.co":"https://simpleicons.org/icons/huggingface.svg","google.com":"https://simpleicons.org/icons/google.svg","deepmind.google":"https://www.google.com/s2/favicons?sz=256&domain=deepmind.google","aws.amazon.com":"https://www.google.com/s2/favicons?sz=128&domain=aws.amazon.com","azure.com":"https://simpleicons.org/icons/microsoftazure.svg","github.com":"https://simpleicons.org/icons/github.svg","docker.com":"https://simpleicons.org/icons/docker.svg","kubernetes.io":"https://simpleicons.org/icons/kubernetes.svg"};function f({domain:a,name:b}){return(0,d.jsxs)("div",{className:"flex flex-col items-center gap-3 p-4 hover:bg-white rounded-lg transition-all",children:[(0,d.jsx)("img",{src:"LangGraph"===b&&"langchain.com"===a?"https://simpleicons.org/icons/langchain.svg":"LlamaIndex"===b?"https://www.google.com/s2/favicons?sz=128&domain=llamaindex.ai":"CrewAI"===b?"https://www.google.com/s2/favicons?sz=128&domain=crewai.com":"AutoGen"===b?"https://www.google.com/s2/favicons?sz=256&domain=microsoft.com":"Vercel AI"===b?"https://simpleicons.org/icons/vercel.svg":"MCP"===b?"https://simpleicons.org/icons/anthropic.svg":"Kagent"===b||"kAgent"===b?"https://www.google.com/s2/favicons?sz=256&domain=kagent.dev":"AWS"===b?"https://www.google.com/s2/favicons?sz=128&domain=aws.amazon.com":"Microsoft"===b?"https://www.google.com/s2/favicons?sz=256&domain=microsoft.com":"Gemini"===b?"https://www.google.com/s2/favicons?sz=256&domain=deepmind.google":e[a]?e[a]:`https://logo.clearbit.com/${a}`,alt:b,className:"h-12 w-12 object-contain",style:{filter:"grayscale(100%) contrast(1.2)"},onError:b=>{let c=`https://www.google.com/s2/favicons?sz=256&domain=${a}`;b.currentTarget.src!==c?b.currentTarget.src=c:b.currentTarget.src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iNCIgZmlsbD0iI0U1RTdFQiIvPgo8cGF0aCBkPSJNMTIgOEMxMy4xIDggMTQgOC45IDE0IDEwQzE0IDExLjEgMTMuMSAxMiAxMiAxMkMxMC45IDEyIDEwIDExLjEgMTAgMTBDMTAgOC45IDEwLjkgOCAxMiA4Wk0xMiAxNEMxMy4xIDE0IDE0IDE0LjkgMTQgMTZDMTQgMTcuMSAxMy4xIDE4IDEyIDE4QzEwLjkgMTggMTAgMTcuMSAxMCAxNkMxMCAxNC45IDEwLjkgMTQgMTIgMTRaIiBmaWxsPSIjOUI5Q0E0Ii8+Cjwvc3ZnPgo="}}),(0,d.jsx)("span",{className:"text-sm font-medium text-gray-600",children:b})]})}},63033:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},66489:(a,b,c)=>{Promise.resolve().then(c.bind(c,83773)),Promise.resolve().then(c.t.bind(c,65169,23))},79641:(a,b,c)=>{Promise.resolve().then(c.bind(c,43635)),Promise.resolve().then(c.t.bind(c,3991,23))},83773:(a,b,c)=>{"use strict";c.d(b,{Logo:()=>d});let d=(0,c(97954).registerClientReference)(function(){throw Error("Attempted to call Logo() from the server but Logo is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/Users/flux423/Sites/LLM/openstandardagents/website/components/Logo.tsx","Logo")},86439:a=>{"use strict";a.exports=require("next/dist/shared/lib/no-fallback-error.external")},99781:(a,b,c)=>{"use strict";c.d(b,{Kr:()=>h,rD:()=>g});let d={dev:"0.2.5-dev",all:[{version:"0.2.4",tag:"v0.2.4",apiVersion:"ossa/v0.2.4",type:"stable",published:!0,available:!0},{version:"0.2.3",tag:"v0.2.3",apiVersion:"ossa/v0.2.3",type:"stable",published:!1,available:!0,schemaPath:"/Users/flux423/Sites/LLM/openstandardagents/spec/v0.2.3/ossa-0.2.3.schema.json"},{version:"0.2.2",tag:"v0.2.2",apiVersion:"ossa/v0.2.2",type:"stable",published:!1,available:!0,schemaPath:"/Users/flux423/Sites/LLM/openstandardagents/spec/v0.2.2/ossa-0.2.2.schema.json"},{version:"0.2.1",tag:"v0.2.1",apiVersion:"ossa/v0.2.1",type:"stable",published:!1,available:!0,schemaPath:"/Users/flux423/Sites/LLM/openstandardagents/spec/v0.2.1/ossa-0.2.1.schema.json"},{version:"0.2.0",tag:"v0.2.0",apiVersion:"ossa/v0.2.0",type:"stable",published:!1,available:!0,schemaPath:"/Users/flux423/Sites/LLM/openstandardagents/spec/v0.2.0/ossa-0.2.0.schema.json"},{version:"0.1.9",tag:"v0.1.9",apiVersion:"ossa/v0.1.9",type:"stable",published:!1,available:!1},{version:"0.2.5-dev",tag:"v0.2.5-dev",apiVersion:"ossa/v0.2.5-dev",type:"dev",published:!0,available:!0},{version:"0.2.4-dev",tag:"v0.2.4-dev",apiVersion:"ossa/v0.2.4-dev",type:"prerelease",published:!1,available:!0,schemaPath:"/Users/flux423/Sites/LLM/openstandardagents/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json"}]},e="0.2.4",f=`v${e}`,g=e,h=f;d.all.filter(a=>"stable"===a.type),d.all.filter(a=>"dev"===a.type||"prerelease"===a.type),d.all,d.dev&&d.dev}};var b=require("../webpack-runtime.js");b.C(a);var c=b.X(0,[873,51,227,97],()=>b(b.s=18590));module.exports=c})();
@@ -1 +0,0 @@
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","../../package.json","../chunks/227.js","../chunks/51.js","../chunks/873.js","../chunks/97.js","../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -1 +0,0 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/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","974","static/chunks/app/page-31241dc7465f9590.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","974","static/chunks/app/page-31241dc7465f9590.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":[]},"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":{}}