@bluefly/openstandardagents 0.2.5-RC → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (365) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
  5. package/.github/workflows/dependabot-comment.yml +34 -0
  6. package/.github/workflows/pr-comment.yml +33 -0
  7. package/.husky/pre-commit +5 -0
  8. package/.kiro/config.json +21 -0
  9. package/.kiro/settings/mcp.json +61 -0
  10. package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
  11. package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
  12. package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
  13. package/.kiro/specs/{website-design-audit → website-brand-identity}/design.md +381 -0
  14. package/.kiro/specs/{website-design-audit → website-brand-identity}/requirements.md +88 -0
  15. package/.kiro/specs/website-brand-identity/tasks.md +981 -0
  16. package/.version.json +2 -2
  17. package/.wiki-config.json +24 -0
  18. package/CHANGELOG.md +34 -18
  19. package/CODEOWNERS +75 -0
  20. package/CONTRIBUTING.md +1 -1
  21. package/README.md +176 -239
  22. package/bin/ossa-dev +42 -0
  23. package/bin/ossa-export +32 -0
  24. package/bin/ossa-generate +60 -0
  25. package/bin/ossa-health +40 -0
  26. package/bin/ossa-init +26 -0
  27. package/dist/index.d.ts +1 -0
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +2 -0
  30. package/dist/index.js.map +1 -1
  31. package/dist/repositories/schema.repository.d.ts +6 -1
  32. package/dist/repositories/schema.repository.d.ts.map +1 -1
  33. package/dist/repositories/schema.repository.js +63 -36
  34. package/dist/repositories/schema.repository.js.map +1 -1
  35. package/dist/services/github-sync/github-client.d.ts +14 -0
  36. package/dist/services/github-sync/github-client.d.ts.map +1 -0
  37. package/dist/services/github-sync/github-client.js +41 -0
  38. package/dist/services/github-sync/github-client.js.map +1 -0
  39. package/dist/services/github-sync/gitlab-client.d.ts +17 -0
  40. package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
  41. package/dist/services/github-sync/gitlab-client.js +42 -0
  42. package/dist/services/github-sync/gitlab-client.js.map +1 -0
  43. package/dist/services/github-sync/schemas.d.ts +46 -0
  44. package/dist/services/github-sync/schemas.d.ts.map +1 -0
  45. package/dist/services/github-sync/schemas.js +36 -0
  46. package/dist/services/github-sync/schemas.js.map +1 -0
  47. package/dist/services/github-sync/sync.service.d.ts +27 -0
  48. package/dist/services/github-sync/sync.service.d.ts.map +1 -0
  49. package/dist/services/github-sync/sync.service.js +99 -0
  50. package/dist/services/github-sync/sync.service.js.map +1 -0
  51. package/dist/services/migration.service.d.ts +4 -3
  52. package/dist/services/migration.service.d.ts.map +1 -1
  53. package/dist/services/migration.service.js +11 -10
  54. package/dist/services/migration.service.js.map +1 -1
  55. package/dist/services/release-automation/release.service.js +1 -1
  56. package/dist/services/release-automation/release.service.js.map +1 -1
  57. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  58. package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
  59. package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
  60. package/dist/services/runtime/claude/capability-mapper.js +245 -0
  61. package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
  62. package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
  63. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
  64. package/dist/services/runtime/claude/claude-adapter.js +287 -0
  65. package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
  66. package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
  67. package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
  68. package/dist/services/runtime/claude/manifest-parser.js +169 -0
  69. package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
  70. package/dist/services/runtime/claude/types.d.ts +115 -0
  71. package/dist/services/runtime/claude/types.d.ts.map +1 -0
  72. package/dist/services/runtime/claude/types.js +6 -0
  73. package/dist/services/runtime/claude/types.js.map +1 -0
  74. package/dist/services/validation.service.d.ts.map +1 -1
  75. package/dist/services/validation.service.js +12 -1
  76. package/dist/services/validation.service.js.map +1 -1
  77. package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  78. package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
  79. package/dist/spec/v0.2.6/README.md +72 -0
  80. package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  81. package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  82. package/dist/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  83. package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  84. package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  85. package/dist/spec/v0.2.6-dev/README.md +75 -0
  86. package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  87. package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  88. package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  89. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  90. package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
  91. package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  92. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  93. package/dist/spec/v0.2.8/README.md +72 -0
  94. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  95. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  96. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  97. package/dist/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  98. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  99. package/dist/types/index.d.ts +3 -2
  100. package/dist/types/index.d.ts.map +1 -1
  101. package/dist/utils/index.d.ts +6 -0
  102. package/dist/utils/index.d.ts.map +1 -0
  103. package/dist/utils/index.js +6 -0
  104. package/dist/utils/index.js.map +1 -0
  105. package/dist/utils/version.d.ts +68 -0
  106. package/dist/utils/version.d.ts.map +1 -0
  107. package/dist/utils/version.js +156 -0
  108. package/dist/utils/version.js.map +1 -0
  109. package/docs/brand-guide/01-brand-overview.md +37 -0
  110. package/docs/brand-guide/02-logo-usage.md +43 -0
  111. package/docs/brand-guide/03-color-palette.md +70 -0
  112. package/docs/brand-guide/04-typography.md +82 -0
  113. package/docs/brand-guide/05-voice-and-tone.md +108 -0
  114. package/docs/brand-guide/06-visual-elements.md +137 -0
  115. package/docs/brand-guide/07-application-examples.md +153 -0
  116. package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
  117. package/docs/brand-guide/OssaLogo/brand.af +0 -0
  118. package/docs/brand-guide/README.md +107 -0
  119. package/docs/comparison.md +315 -0
  120. package/docs/operations/automation-roadmap.md +245 -0
  121. package/docs/operations/github-sync-strategy.md +357 -0
  122. package/eslint-report.json +1 -0
  123. package/examples/adk-integration/code-review-workflow.yml +1 -1
  124. package/examples/adk-integration/customer-support.yml +1 -1
  125. package/examples/adk-integration/data-pipeline.yml +1 -1
  126. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  127. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  128. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  129. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  130. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  131. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  132. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  133. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  134. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  135. package/examples/anthropic/claude-assistant.ossa.json +5 -4
  136. package/examples/autogen/multi-agent.ossa.json +6 -4
  137. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  138. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  139. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  140. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  141. package/examples/crewai/research-team.ossa.json +14 -5
  142. package/examples/cursor/code-review-agent.ossa.json +21 -6
  143. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  144. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  145. package/examples/extensions/drupal-v1.yml +1 -1
  146. package/examples/extensions/kagent-v1.yml +1 -1
  147. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  148. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  149. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  150. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  151. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  152. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  153. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  154. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  155. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  156. package/examples/langchain/chain-agent.ossa.json +21 -5
  157. package/examples/langflow/workflow-agent.ossa.json +2 -3
  158. package/examples/langgraph/state-machine-agent.ossa.json +2 -3
  159. package/examples/llamaindex/rag-agent.ossa.json +2 -3
  160. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  161. package/examples/multi-agent/README.md +74 -0
  162. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  163. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  164. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  165. package/examples/openai/basic-agent.ossa.yaml +1 -1
  166. package/examples/openai/multi-tool-agent.ossa.json +33 -10
  167. package/examples/openai/swarm-agent.ossa.json +18 -5
  168. package/examples/production/document-analyzer-openai.yml +1 -1
  169. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  170. package/examples/spec-examples/audit-agent.yml +1 -1
  171. package/examples/spec-examples/chat-agent.yml +1 -1
  172. package/examples/spec-examples/compliance-agent.yml +1 -1
  173. package/examples/spec-examples/monitoring-agent.yml +1 -1
  174. package/examples/spec-examples/workflow-agent.yml +1 -1
  175. package/examples/templates/ossa-compliance.yaml +1 -1
  176. package/examples/vercel/edge-agent.ossa.json +5 -4
  177. package/gl-code-quality-report.json +62 -0
  178. package/llms-ctx-full.txt +39 -0
  179. package/llms-ctx.txt +39 -0
  180. package/llms.txt +47 -0
  181. package/openapi/github-sync.yaml +115 -0
  182. package/package.json +26 -4
  183. package/scripts/README.md +103 -0
  184. package/scripts/auto-rebase-mrs.ts +106 -0
  185. package/scripts/batch-dependabot.sh +57 -0
  186. package/scripts/configure-gitlab-branch-protection.ts +95 -0
  187. package/scripts/create-issue-helper.ts +238 -0
  188. package/scripts/create-milestone-issue.ts +73 -0
  189. package/scripts/eslint-to-codequality.cjs +34 -0
  190. package/scripts/fix-schema-formats.js +82 -0
  191. package/scripts/generate-agents-catalog.ts +77 -0
  192. package/scripts/generate-api-docs.ts +218 -0
  193. package/scripts/generate-cli-docs.ts +410 -0
  194. package/scripts/generate-config-docs.ts +109 -0
  195. package/scripts/generate-errors-docs.ts +76 -0
  196. package/scripts/generate-examples-docs.ts +99 -0
  197. package/scripts/generate-llms-ctx.sh +17 -0
  198. package/scripts/generate-schema-docs.ts +317 -0
  199. package/scripts/generate-types-docs.ts +48 -0
  200. package/scripts/lowercase-docs.ts +43 -0
  201. package/scripts/manage-milestone-mrs.ts +279 -0
  202. package/scripts/rebase-all-mrs.sh +75 -0
  203. package/scripts/sync-github-pr.sh +48 -0
  204. package/scripts/sync-version.js +32 -0
  205. package/scripts/sync-wiki.sh +50 -0
  206. package/scripts/validate-all.js +127 -0
  207. package/scripts/validate-schema.ts +2 -1
  208. package/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  209. package/spec/v0.2.6/CHANGELOG.md +401 -0
  210. package/spec/v0.2.6/README.md +72 -0
  211. package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  212. package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  213. package/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  214. package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  215. package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  216. package/spec/v0.2.6-dev/README.md +75 -0
  217. package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  218. package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  219. package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  220. package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  221. package/spec/v0.2.7/core/agentgraph.md +324 -0
  222. package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  223. package/spec/v0.2.8/CHANGELOG.md +401 -0
  224. package/spec/v0.2.8/README.md +72 -0
  225. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  226. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  227. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  228. package/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  229. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  230. package/test-results/junit.xml +299 -0
  231. package/.kiro/specs/agent-buildkit-templates/design.md +0 -495
  232. package/.kiro/specs/agent-buildkit-templates/requirements.md +0 -165
  233. package/.kiro/specs/kiro-ide-supercharger/README.md +0 -202
  234. package/.kiro/specs/kiro-ide-supercharger/design.md +0 -1005
  235. package/.kiro/specs/kiro-ide-supercharger/requirements.md +0 -141
  236. package/.kiro/specs/kiro-ide-supercharger/tasks.md +0 -507
  237. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  238. package/docs/issue-19-completion-summary.md +0 -648
  239. package/docs/issue-19-validation.md +0 -351
  240. package/scripts/lib/exec.ts +0 -37
  241. package/scripts/lib/file-ops.ts +0 -58
  242. package/scripts/lib/version.ts +0 -83
  243. package/website/.lighthouserc.ts +0 -24
  244. package/website/.prettierrc +0 -10
  245. package/website/Dockerfile +0 -30
  246. package/website/app/about/page.tsx +0 -295
  247. package/website/app/blog/[slug]/page.tsx +0 -208
  248. package/website/app/blog/page.tsx +0 -249
  249. package/website/app/design-guide/page.tsx +0 -511
  250. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  251. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  252. package/website/app/ecosystem/page.tsx +0 -375
  253. package/website/app/examples/page.tsx +0 -133
  254. package/website/app/globals.scss +0 -135
  255. package/website/app/layout.tsx +0 -106
  256. package/website/app/license/page.tsx +0 -183
  257. package/website/app/not-found.tsx +0 -18
  258. package/website/app/page.tsx +0 -474
  259. package/website/app/playground/page.tsx +0 -487
  260. package/website/app/robots.ts +0 -19
  261. package/website/app/rss.xml/route.ts +0 -74
  262. package/website/app/schema/page.tsx +0 -1001
  263. package/website/app/sitemap.ts +0 -56
  264. package/website/app/specification/page.tsx +0 -287
  265. package/website/components/InstallCommand.tsx +0 -96
  266. package/website/components/Logo.tsx +0 -97
  267. package/website/components/StructuredData.tsx +0 -65
  268. package/website/components/docs/DocsSearch.tsx +0 -104
  269. package/website/components/docs/DocsSidebar.tsx +0 -155
  270. package/website/components/docs/MarkdownContent.tsx +0 -401
  271. package/website/components/docs/VersionSelector.tsx +0 -105
  272. package/website/components/examples/ExamplesViewer.tsx +0 -293
  273. package/website/components/layout/Footer.tsx +0 -116
  274. package/website/components/layout/Header.tsx +0 -168
  275. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  276. package/website/components/schema/SchemaExplorer.tsx +0 -213
  277. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  278. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  279. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  280. package/website/content/blog/introducing-ossa-framework.md +0 -328
  281. package/website/content/blog/ossa-production-results.md +0 -279
  282. package/website/content/blog/welcome-to-ossa.md +0 -43
  283. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  284. package/website/content/docs/00-HOME.md +0 -153
  285. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  286. package/website/content/docs/Examples.md +0 -71
  287. package/website/content/docs/OpenAPI-Extensions.md +0 -934
  288. package/website/content/docs/adapters/openai-adapter.md +0 -693
  289. package/website/content/docs/architecture/execution-flow.md +0 -335
  290. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  291. package/website/content/docs/architecture/overview.md +0 -121
  292. package/website/content/docs/architecture/stack-integration.md +0 -461
  293. package/website/content/docs/changelog.md +0 -246
  294. package/website/content/docs/contributing.md +0 -599
  295. package/website/content/docs/core-concepts/Project-Structure.md +0 -348
  296. package/website/content/docs/ecosystem/framework-support.md +0 -819
  297. package/website/content/docs/ecosystem/overview.md +0 -366
  298. package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  299. package/website/content/docs/examples/Migration-Guides.md +0 -214
  300. package/website/content/docs/for-audiences/Architects.md +0 -224
  301. package/website/content/docs/for-audiences/Developers.md +0 -220
  302. package/website/content/docs/for-audiences/Enterprises.md +0 -256
  303. package/website/content/docs/for-audiences/Students-Researchers.md +0 -122
  304. package/website/content/docs/getting-started/5-Minute-Overview.md +0 -85
  305. package/website/content/docs/getting-started/First-Agent.md +0 -196
  306. package/website/content/docs/getting-started/Hello-World.md +0 -184
  307. package/website/content/docs/getting-started/Installation.md +0 -155
  308. package/website/content/docs/getting-started/index.md +0 -92
  309. package/website/content/docs/getting-started/running-agents.md +0 -309
  310. package/website/content/docs/getting-started.md +0 -91
  311. package/website/content/docs/integrations/aiflow.md +0 -104
  312. package/website/content/docs/integrations/drupal.md +0 -105
  313. package/website/content/docs/migration-guides/00-INDEX.md +0 -76
  314. package/website/content/docs/migration-guides/README.md +0 -133
  315. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  316. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  317. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  318. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  319. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  320. package/website/content/docs/migration-guides/index.md +0 -133
  321. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  322. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  323. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  324. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  325. package/website/content/docs/openapi-extensions/examples.md +0 -550
  326. package/website/content/docs/openapi-extensions/index.md +0 -551
  327. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  328. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  329. package/website/content/docs/ossa-compliant-badge.md +0 -251
  330. package/website/content/docs/pre-release/index.md +0 -175
  331. package/website/content/docs/quick-reference.md +0 -17
  332. package/website/content/docs/readme.md +0 -35
  333. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  334. package/website/content/docs/schema-reference/autonomy.md +0 -568
  335. package/website/content/docs/schema-reference/constraints.md +0 -543
  336. package/website/content/docs/schema-reference/index.md +0 -176
  337. package/website/content/docs/schema-reference/llm-config.md +0 -445
  338. package/website/content/docs/schema-reference/observability.md +0 -654
  339. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  340. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  341. package/website/content/docs/schema-reference/tools.md +0 -628
  342. package/website/content/docs/templates/blog-post.md +0 -43
  343. package/website/content/docs/use-cases/00-index.md +0 -395
  344. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  345. package/website/content/docs/use-cases/customer-support.md +0 -1234
  346. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  347. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  348. package/website/content/docs/versioning.md +0 -288
  349. package/website/lib/version.ts +0 -35
  350. package/website/lib/versions.json +0 -78
  351. package/website/next.config.ts +0 -18
  352. package/website/nginx.conf +0 -32
  353. package/website/package-lock.json +0 -9679
  354. package/website/package.json +0 -59
  355. package/website/postcss.config.mjs +0 -9
  356. package/website/scripts/fetch-versions.js +0 -166
  357. package/website/scripts/generate-examples-index.js +0 -163
  358. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  359. package/website/scripts/sync-version.js +0 -72
  360. package/website/scripts/sync-wiki.ts +0 -322
  361. package/website/scripts/upload-wiki.ts +0 -199
  362. package/website/styles/_variables.scss +0 -36
  363. package/website/tailwind.config.ts +0 -136
  364. /package/dist/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
  365. /package/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/utils/version.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AASH,MAAM,WAAW,WAAW;IAC1B,0CAA0C;IAC1C,OAAO,EAAE,MAAM,CAAC;IAChB,8BAA8B;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,8BAA8B;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,8BAA8B;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,6CAA6C;IAC7C,SAAS,EAAE,MAAM,CAAC;IAClB,uDAAuD;IACvD,UAAU,EAAE,MAAM,CAAC;IACnB,gDAAgD;IAChD,UAAU,EAAE,MAAM,CAAC;IACnB,uCAAuC;IACvC,UAAU,EAAE,MAAM,CAAC;CACpB;AAoCD;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAAC,YAAY,UAAQ,GAAG,WAAW,CAiDhE;AAED;;GAEG;AACH,wBAAgB,UAAU,IAAI,MAAM,CAEnC;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,MAAM,CAEtC;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,MAAM,CAEtC;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,MAAM,CAErC;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,OAAO,CAEtC;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,IAAI,MAAM,EAAE,CAc/C;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAG9D"}
@@ -0,0 +1,156 @@
1
+ /**
2
+ * OSSA Version Utilities
3
+ *
4
+ * Provides dynamic version detection from package.json
5
+ * NEVER hardcode version strings - use these utilities
6
+ */
7
+ import * as fs from 'fs';
8
+ import * as path from 'path';
9
+ import { fileURLToPath } from 'url';
10
+ // Cache the version info once resolved
11
+ let cachedVersionInfo = null;
12
+ /**
13
+ * Find package.json by searching upward from a starting directory
14
+ */
15
+ function findPackageJson(startDir) {
16
+ let current = startDir;
17
+ for (let i = 0; i < 10; i++) {
18
+ const candidate = path.resolve(current, 'package.json');
19
+ if (fs.existsSync(candidate)) {
20
+ return candidate;
21
+ }
22
+ const parent = path.dirname(current);
23
+ if (parent === current)
24
+ break;
25
+ current = parent;
26
+ }
27
+ return null;
28
+ }
29
+ /**
30
+ * Parse version string into components
31
+ */
32
+ function parseVersion(version) {
33
+ // Handle versions like "0.2.8", "0.2.8-RC", "0.2.8-beta.1"
34
+ const match = version.match(/^(\d+)\.(\d+)\.(\d+)(?:-(.+))?$/);
35
+ if (!match) {
36
+ throw new Error(`Invalid version format: ${version}`);
37
+ }
38
+ return {
39
+ major: parseInt(match[1], 10),
40
+ minor: parseInt(match[2], 10),
41
+ patch: parseInt(match[3], 10),
42
+ prerelease: match[4]
43
+ };
44
+ }
45
+ /**
46
+ * Get OSSA version information dynamically from package.json
47
+ *
48
+ * @param forceRefresh - If true, bypasses cache and re-reads package.json
49
+ * @returns VersionInfo object with all version details
50
+ *
51
+ * @example
52
+ * const { version, schemaPath, apiVersion } = getVersionInfo();
53
+ * console.log(`Using OSSA ${version}`);
54
+ * console.log(`Schema at: ${schemaPath}`);
55
+ */
56
+ export function getVersionInfo(forceRefresh = false) {
57
+ if (cachedVersionInfo && !forceRefresh) {
58
+ return cachedVersionInfo;
59
+ }
60
+ let version = '0.2.8'; // Ultimate fallback
61
+ // Try to find package.json
62
+ // Strategy 1: From this file's location (works in dist)
63
+ try {
64
+ const __filename = fileURLToPath(import.meta.url);
65
+ const __dirname = path.dirname(__filename);
66
+ const pkgPath = findPackageJson(__dirname);
67
+ if (pkgPath) {
68
+ const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8'));
69
+ version = pkg.version;
70
+ }
71
+ }
72
+ catch {
73
+ // Strategy 2: From process.cwd()
74
+ try {
75
+ const pkgPath = findPackageJson(process.cwd());
76
+ if (pkgPath) {
77
+ const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8'));
78
+ version = pkg.version;
79
+ }
80
+ }
81
+ catch {
82
+ // Use fallback
83
+ }
84
+ }
85
+ // Strategy 3: Check environment variable override
86
+ if (process.env.OSSA_VERSION) {
87
+ version = process.env.OSSA_VERSION;
88
+ }
89
+ const parsed = parseVersion(version);
90
+ const schemaDir = `v${version}`;
91
+ const schemaFile = `ossa-${version}.schema.json`;
92
+ cachedVersionInfo = {
93
+ version,
94
+ ...parsed,
95
+ schemaDir,
96
+ schemaFile,
97
+ schemaPath: `spec/${schemaDir}/${schemaFile}`,
98
+ apiVersion: `ossa.io/${schemaDir}`
99
+ };
100
+ return cachedVersionInfo;
101
+ }
102
+ /**
103
+ * Get just the version string (convenience function)
104
+ */
105
+ export function getVersion() {
106
+ return getVersionInfo().version;
107
+ }
108
+ /**
109
+ * Get the schema path (convenience function)
110
+ */
111
+ export function getSchemaPath() {
112
+ return getVersionInfo().schemaPath;
113
+ }
114
+ /**
115
+ * Get the API version for manifests (convenience function)
116
+ */
117
+ export function getApiVersion() {
118
+ return getVersionInfo().apiVersion;
119
+ }
120
+ /**
121
+ * Get the schema directory (e.g., "v0.2.8")
122
+ */
123
+ export function getSchemaDir() {
124
+ return getVersionInfo().schemaDir;
125
+ }
126
+ /**
127
+ * Check if version is a prerelease
128
+ */
129
+ export function isPrerelease() {
130
+ return getVersionInfo().prerelease !== undefined;
131
+ }
132
+ /**
133
+ * Get supported schema versions (for migration, validation)
134
+ * Returns versions in descending order (newest first)
135
+ */
136
+ export function getSupportedVersions() {
137
+ const current = getVersionInfo();
138
+ // Generate supported versions dynamically
139
+ // Current version + 2 previous minor versions
140
+ const versions = [current.version];
141
+ // Add previous minor versions if they exist
142
+ for (let i = 1; i <= 2; i++) {
143
+ if (current.minor - i >= 0) {
144
+ versions.push(`${current.major}.${current.minor - i}.0`);
145
+ }
146
+ }
147
+ return versions;
148
+ }
149
+ /**
150
+ * Resolve absolute path to schema file
151
+ */
152
+ export function resolveSchemaPath(projectRoot) {
153
+ const root = projectRoot || process.cwd();
154
+ return path.resolve(root, getVersionInfo().schemaPath);
155
+ }
156
+ //# sourceMappingURL=version.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/utils/version.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,37 @@
1
+ # OSSA Brand Overview
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Mission
6
+
7
+ **Make AI agents interoperable across all platforms and frameworks.**
8
+
9
+ OSSA (Open Standard for Scalable AI Agents) provides a vendor-neutral specification standard that enables AI agents to communicate and collaborate seamlessly.
10
+
11
+ ## Vision
12
+
13
+ **Become the OpenAPI for AI agents** - the universally adopted standard for defining, deploying, and connecting autonomous AI systems.
14
+
15
+ ## Core Values
16
+
17
+ ### 1. Open & Vendor-Neutral
18
+ Community-driven, no vendor lock-in, Apache 2.0 license
19
+
20
+ ### 2. Interoperable
21
+ Common language across frameworks, runtime-independent
22
+
23
+ ### 3. Trustworthy
24
+ Compliance-ready, security built-in, enterprise-grade
25
+
26
+ ### 4. Simple & Practical
27
+ Clear specification, production-ready implementations
28
+
29
+ ## Key Messages
30
+
31
+ **Primary:** "The OpenAPI for AI Agents"
32
+
33
+ **For Enterprises:** Deploy anywhere, switch frameworks anytime, maintain compliance always
34
+
35
+ **For Developers:** Write once, deploy anywhere - portable and future-proof
36
+
37
+ **For Framework Builders:** Build on an open standard
@@ -0,0 +1,43 @@
1
+ # OSSA Logo Usage Guidelines
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Primary Logo
6
+
7
+ Dynamic gradient-based mark representing interconnected AI agents.
8
+
9
+ **Location:** `/website/public/brand/ossa-logo.svg`
10
+
11
+ **Colors:** Gradient from Cyan Blue (#1CB9ED) → Deep Purple (#4A3ECD) → Light Purple (#9060EA)
12
+
13
+ ## Logo Variations
14
+
15
+ - **Full Color:** White/light backgrounds
16
+ - **Monochrome White:** Dark backgrounds (#FFFFFF)
17
+ - **Monochrome Dark:** Light backgrounds, print (#2D1B69)
18
+ - **Grayscale:** Print only (#374151)
19
+
20
+ ## Minimum Sizes
21
+
22
+ - **Digital:** 120px width min (180px recommended)
23
+ - **Print:** 1 inch min (1.5 inches recommended)
24
+ - **Icon:** 16px, 32px, 64px, 128px
25
+
26
+ ## Clear Space
27
+
28
+ Maintain clear space = **0.5× logo height** on all sides
29
+
30
+ ## Incorrect Usage
31
+
32
+ ❌ Don't change colors
33
+ ❌ Don't distort/stretch
34
+ ❌ Don't add effects
35
+ ❌ Don't modify
36
+ ❌ Don't use low-quality
37
+
38
+ ## Background Guidelines
39
+
40
+ ✅ White, light gray, light blue, dark purple, black
41
+ ❌ Bright colors, busy patterns, low-contrast
42
+
43
+ **Rule:** 4.5:1 minimum contrast ratio
@@ -0,0 +1,70 @@
1
+ # OSSA Color Palette
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Primary Brand Colors
6
+
7
+ ### Deep Purple (Primary)
8
+ **Base:** `#4A3ECD`
9
+ **Usage:** Primary actions, branding, emphasis
10
+ **Scale:** 50-950 (see full guide)
11
+
12
+ ### Cyan Blue (Secondary)
13
+ **Base:** `#1CB9ED`
14
+ **Usage:** Secondary actions, accents, gradients
15
+ **Scale:** 50-950
16
+
17
+ ### Light Purple (Accent)
18
+ **Base:** `#9060EA`
19
+ **Usage:** Decorative accents, gradient endpoints
20
+ **Scale:** 50-950
21
+
22
+ ### Dark Purple (Depth)
23
+ **Base:** `#2D1B69`
24
+ **Usage:** Dark backgrounds, dark mode, contrast
25
+ **Scale:** 50-950
26
+
27
+ ## Semantic Colors
28
+
29
+ - **Success:** `#10B981` (Green)
30
+ - **Warning:** `#F59E0B` (Amber)
31
+ - **Error:** `#EF4444` (Red)
32
+ - **Info:** `#06B6D4` (Cyan)
33
+
34
+ ## Neutrals (Grays)
35
+
36
+ **Scale:** `#F9FAFB` (50) to `#111827` (900)
37
+
38
+ **Common Uses:**
39
+ - Primary text: Gray-700 (#374151) or Gray-900
40
+ - Secondary text: Gray-600 (#4B5563)
41
+ - Borders: Gray-200 (#E5E7EB) or Gray-300
42
+ - Backgrounds: White, Gray-50, Gray-100
43
+
44
+ ## Gradients
45
+
46
+ ### Brand Gradient
47
+ ```css
48
+ background: linear-gradient(135deg, #1CB9ED 0%, #1CB9ED 40%, #4A3ECD 70%, #9060EA 100%);
49
+ ```
50
+
51
+ ### Hero Gradient
52
+ ```css
53
+ background: linear-gradient(135deg, #1CB9ED 0%, #1CB9ED 35%, #4A3ECD 65%, #9060EA 100%);
54
+ ```
55
+
56
+ ## Accessibility
57
+
58
+ All combinations meet WCAG AA minimum (AAA preferred):
59
+ - Normal text: 4.5:1 minimum (7:1 target)
60
+ - Large text: 3:1 minimum (4.5:1 target)
61
+ - UI components: 3:1 minimum
62
+
63
+ **White text on:**
64
+ - Primary-500+: ✅ AAA (7.5:1)
65
+ - Secondary-600+: ✅ AA (4.7:1)
66
+ - Dark Purple-700+: ✅ AAA (10:1+)
67
+
68
+ **Black text on:**
69
+ - Gray-50 to Gray-300: ✅ AAA (8:1+)
70
+ - Primary-50 to Primary-400: ✅ AAA (7:1+)
@@ -0,0 +1,82 @@
1
+ # OSSA Typography Guidelines
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Font Families
6
+
7
+ ### Primary: Inter (Sans-serif)
8
+ **Usage:** UI, headings, body text, marketing
9
+ **Weights:** 400 (Regular), 500 (Medium), 600 (Semi-Bold), 700 (Bold), 800 (Extra-Bold)
10
+ **Why:** Exceptional legibility, optimized for screens, 200+ languages
11
+
12
+ ### Monospace: JetBrains Mono
13
+ **Usage:** Code blocks, inline code, technical content
14
+ **Weights:** 400 (Regular), 500 (Medium), 600 (Semi-Bold)
15
+ **Why:** Developer-focused, excellent ligatures, clear character distinction
16
+
17
+ ## Type Scale
18
+
19
+ | Element | Size | Line Height | Weight | Color |
20
+ |---------|------|-------------|--------|-------|
21
+ | **Display** | 72px (4.5rem) | 1.1 | 800 | Gray-900 or Gradient |
22
+ | **H1** | 56px (3.5rem) | 1.2 | 700 | Gray-900 or Primary-500 |
23
+ | **H2** | 40px (2.5rem) | 1.3 | 700 | Gray-900 |
24
+ | **H3** | 32px (2rem) | 1.4 | 600 | Gray-900 |
25
+ | **H4** | 24px (1.5rem) | 1.5 | 600 | Gray-800 |
26
+ | **H5** | 20px (1.25rem) | 1.5 | 600 | Gray-800 |
27
+ | **H6** | 18px (1.125rem) | 1.5 | 600 | Gray-700 |
28
+ | **Body** | 16px (1rem) | 1.6 | 400 | Gray-700 |
29
+ | **Body Large** | 18px (1.125rem) | 1.6 | 400 | Gray-700 |
30
+ | **Small** | 14px (0.875rem) | 1.5 | 400 | Gray-600 |
31
+ | **Extra Small** | 12px (0.75rem) | 1.5 | 400 | Gray-500 |
32
+
33
+ ## Letter Spacing
34
+
35
+ - **Display:** -0.02em (tighter for large sizes)
36
+ - **H1:** -0.01em (slightly tighter)
37
+ - **H2-H6, Body:** 0 (normal)
38
+ - **All Caps:** 0.05em (improve readability)
39
+
40
+ ## Code Typography
41
+
42
+ ### Inline Code
43
+ - Font: JetBrains Mono, 0.875em
44
+ - Color: Primary-700 (#322598)
45
+ - Background: Primary-50 (#F5F4FD)
46
+ - Padding: 0.2em 0.4em
47
+ - Border Radius: 4px
48
+
49
+ ### Code Blocks
50
+ - Font: JetBrains Mono, 14px (0.875rem)
51
+ - Color: #D4D4D4 (light gray on dark)
52
+ - Background: #1E1E1E (dark gray)
53
+ - Line Height: 1.6
54
+ - Padding: 16px
55
+ - Border Radius: 8px
56
+
57
+ ## Responsive Typography
58
+
59
+ **Mobile (< 768px):**
60
+ - Display: 40px
61
+ - H1: 36px
62
+ - H2: 28px
63
+
64
+ **Tablet (768-1279px):**
65
+ - Display: 56px
66
+ - H1: 48px
67
+ - H2: 32px
68
+
69
+ **Desktop (1280px+):**
70
+ - Use full scale (above)
71
+
72
+ ## Accessibility
73
+
74
+ ✅ Line height: 1.5 minimum for body (we use 1.6)
75
+ ✅ Contrast: All text meets WCAG AA minimum (AAA preferred)
76
+ ✅ Font size: Never below 12px (prefer 14px minimum)
77
+ ✅ Zoom: Support up to 200% without loss of functionality
78
+
79
+ **Text Contrast:**
80
+ - Primary text: Gray-700 on white (10.5:1 AAA)
81
+ - Secondary text: Gray-600 on white (7.4:1 AAA)
82
+ - Links: Primary-500 on white (6.1:1 AA)
@@ -0,0 +1,108 @@
1
+ # OSSA Voice & Tone Guidelines
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Brand Voice
6
+
7
+ OSSA's voice is consistent across all communications:
8
+
9
+ ### 1. Professional
10
+ Enterprise-grade standard with technical authority
11
+ - Use precise technical language
12
+ - Cite specifications and standards
13
+ - Maintain formal structure in documentation
14
+
15
+ ### 2. Clear
16
+ Technical but accessible
17
+ - Define acronyms on first use
18
+ - Use analogies ("The OpenAPI for AI agents")
19
+ - Break complex topics into chunks
20
+
21
+ ### 3. Confident
22
+ Proven and production-ready
23
+ - Use active voice
24
+ - Make definitive statements when true
25
+ - Reference real-world deployments
26
+
27
+ ### 4. Inclusive
28
+ Community-driven and open to everyone
29
+ - Use "we" for community
30
+ - Welcome all skill levels
31
+ - Use gender-neutral language
32
+
33
+ ### 5. Practical
34
+ Real-world solutions, not theory
35
+ - Provide working code examples
36
+ - Link to reference implementations
37
+ - Give step-by-step instructions
38
+
39
+ ## Tone Variations
40
+
41
+ ### Technical Documentation
42
+ **Audience:** Developers, architects, engineers
43
+ **Tone:** Precise, formal, comprehensive
44
+ - Formal structure
45
+ - Technical precision
46
+ - Complete information
47
+ - Reference links
48
+
49
+ ### Marketing & Website
50
+ **Audience:** Decision-makers, evaluators
51
+ **Tone:** Confident, clear, persuasive
52
+ - Benefit-focused
53
+ - Clear value propositions
54
+ - Social proof
55
+ - Strong CTAs
56
+
57
+ ### Community & Support
58
+ **Audience:** Contributors, users
59
+ **Tone:** Helpful, encouraging, collaborative
60
+ - Welcoming and supportive
61
+ - Providing guidance
62
+ - Encouraging participation
63
+
64
+ ### Error Messages
65
+ **Audience:** Users encountering issues
66
+ **Tone:** Clear, helpful, solution-oriented
67
+ - State problem clearly
68
+ - Explain why it happened
69
+ - Provide actionable solutions
70
+ - Link to documentation
71
+
72
+ ## Writing Guidelines
73
+
74
+ **Active vs. Passive:**
75
+ ✅ Prefer active voice for clarity
76
+ ❌ Avoid passive unless actor unknown
77
+
78
+ **Pronouns:**
79
+ - We = OSSA project, community
80
+ - You = Reader, user, developer
81
+ - They/Them = Generic third-party
82
+
83
+ **Contractions:**
84
+ - Technical Docs: Avoid contractions
85
+ - Marketing: Acceptable for approachability
86
+
87
+ **Numbers:**
88
+ - Spell out 1-9
89
+ - Use numerals for 10+
90
+ - Always numerals for technical specs
91
+
92
+ ## Prohibited Language
93
+
94
+ ❌ Ableist language (crazy, insane, lame)
95
+ ❌ Violent metaphors (killer, crushed, decimated)
96
+ ❌ Gendered language (guys, manpower, he/she)
97
+ ❌ Exclusive language (obviously, clearly, simply, just)
98
+ ❌ Vague intensifiers (very, really, extremely)
99
+
100
+ ## Key Messages
101
+
102
+ **Primary:** "The OpenAPI for AI Agents"
103
+
104
+ **For Enterprises:** "Deploy anywhere, switch frameworks anytime, maintain compliance always."
105
+
106
+ **For Developers:** "Write once, deploy anywhere. Portable and future-proof."
107
+
108
+ **For Framework Builders:** "Build on an open standard. We provide the contract, you provide the innovation."
@@ -0,0 +1,137 @@
1
+ # OSSA Visual Elements
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Gradients
6
+
7
+ ### Brand Gradient (Primary)
8
+ ```css
9
+ background: linear-gradient(135deg, #1CB9ED 0%, #1CB9ED 40%, #4A3ECD 70%, #9060EA 100%);
10
+ ```
11
+ **Usage:** Headers, hero sections, primary emphasis
12
+
13
+ ### Hero Gradient
14
+ ```css
15
+ background: linear-gradient(135deg, #1CB9ED 0%, #1CB9ED 35%, #4A3ECD 65%, #9060EA 100%);
16
+ ```
17
+
18
+ ### Button Gradient
19
+ ```css
20
+ background: linear-gradient(135deg, #1CB9ED 0%, #1CB9ED 45%, #4A3ECD 75%, #9060EA 100%);
21
+ ```
22
+
23
+ ## Icons
24
+
25
+ **Style:** Outline/Stroke icons (Heroicons style)
26
+ **Stroke Width:** 1.5px (default), 2px (emphasis)
27
+ **Sizes:** 16px, 20px, 24px, 32px, 48px, 64px
28
+ **Library:** Heroicons or Lucide React
29
+
30
+ **Usage:**
31
+ - Navigation: 24px
32
+ - Actions: 20px
33
+ - Status: 24px
34
+ - External links: 16px
35
+
36
+ ## Shadows
37
+
38
+ ```css
39
+ --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
40
+ --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.04);
41
+ --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
42
+ --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
43
+ --shadow-brand: 0 8px 16px rgba(74, 62, 205, 0.3);
44
+ ```
45
+
46
+ ## Border Radius
47
+
48
+ ```css
49
+ --radius-sm: 4px; /* Badges */
50
+ --radius-md: 8px; /* Buttons, inputs */
51
+ --radius-lg: 12px; /* Cards */
52
+ --radius-xl: 16px; /* Modals */
53
+ --radius-2xl: 24px; /* Hero elements */
54
+ --radius-full: 9999px; /* Avatars, pills */
55
+ ```
56
+
57
+ ## Spacing
58
+
59
+ **Base Grid:** 4px
60
+
61
+ ```css
62
+ --space-1: 4px --space-6: 24px
63
+ --space-2: 8px --space-8: 32px
64
+ --space-3: 12px --space-10: 40px
65
+ --space-4: 16px --space-12: 48px
66
+ --space-5: 20px --space-16: 64px
67
+ ```
68
+
69
+ ## Buttons
70
+
71
+ ### Primary Button
72
+ - Background: Primary-500 or Gradient
73
+ - Text: White
74
+ - Padding: 12px 24px
75
+ - Border Radius: 8px
76
+ - Hover: Primary-600 + shadow-lg + translateY(-1px)
77
+ - Focus: Ring (3px, Primary-300)
78
+
79
+ ### Secondary Button
80
+ - Background: Secondary-500
81
+ - Text: White
82
+ - Hover: Secondary-600
83
+
84
+ ### Outline Button
85
+ - Border: 2px Primary-500
86
+ - Text: Primary-500
87
+ - Hover: Background Primary-500, text white
88
+
89
+ ### Ghost Button
90
+ - Text: Primary-500
91
+ - Hover: Background Primary-50
92
+
93
+ ## Cards
94
+
95
+ **Default Card:**
96
+ - Background: White
97
+ - Border: 1px Gray-200
98
+ - Border Radius: 12px
99
+ - Padding: 24px
100
+ - Shadow: shadow-sm
101
+
102
+ **Interactive Card (Hover):**
103
+ - Border: Primary
104
+ - Shadow: shadow-xl
105
+ - Transform: translateY(-4px)
106
+
107
+ **Featured Card:**
108
+ - Background: Gradient (subtle, low opacity)
109
+ - Border: 2px Primary-200
110
+
111
+ ## Badges
112
+
113
+ **Style:**
114
+ - Padding: 4px 12px
115
+ - Border Radius: 9999px
116
+ - Font Size: 12px
117
+ - Font Weight: 600
118
+ - Text Transform: Uppercase
119
+ - Letter Spacing: 0.05em
120
+
121
+ **Variants:** Primary, Success, Warning, Error, Neutral
122
+
123
+ ## Animations
124
+
125
+ **Timing:**
126
+ - Fast: 150ms ease (hover, color changes)
127
+ - Base: 200ms ease (default)
128
+ - Slow: 300ms ease (page transitions, modals)
129
+
130
+ **Respect:** `prefers-reduced-motion`
131
+
132
+ ## Accessibility
133
+
134
+ ✅ Contrast: WCAG AA minimum (4.5:1 text, 3:1 UI)
135
+ ✅ Focus: Visible 3px rings, 3:1 contrast
136
+ ✅ Touch Targets: 44×44px minimum (48×48px preferred)
137
+ ✅ Alt Text: All logos and images