@bluefly/openstandardagents 0.2.4 → 0.2.7

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 (511) hide show
  1. package/.cursorrules +84 -0
  2. package/.devfile.yaml +87 -0
  3. package/.env.example +25 -3
  4. package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
  6. package/.github/workflows/dependabot-comment.yml +34 -0
  7. package/.github/workflows/pr-comment.yml +33 -0
  8. package/.github/workflows/release.yml +1 -1
  9. package/.husky/pre-commit +5 -0
  10. package/.kiro/config.json +21 -0
  11. package/.kiro/settings/mcp.json +61 -0
  12. package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
  13. package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
  14. package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
  15. package/.kiro/specs/website-brand-identity/design.md +1060 -0
  16. package/.kiro/specs/website-brand-identity/requirements.md +287 -0
  17. package/.kiro/specs/website-brand-identity/tasks.md +981 -0
  18. package/.releaserc.json +5 -4
  19. package/.version.json +6 -0
  20. package/CHANGELOG.md +163 -96
  21. package/CONTRIBUTING.md +23 -5
  22. package/README.md +130 -43
  23. package/bin/ossa +24 -3
  24. package/bin/ossa-dev +42 -0
  25. package/bin/ossa-export +32 -0
  26. package/bin/ossa-generate +60 -0
  27. package/bin/ossa-health +40 -0
  28. package/bin/ossa-init +26 -0
  29. package/bin/ossa-validate-all +55 -0
  30. package/bin/ossa-version +23 -0
  31. package/bin/validate-ossa-0.2.4.ts +244 -0
  32. package/bin/validate-ossa-0.2.5-RC.ts +244 -0
  33. package/bin/validate-ossa.ts +273 -0
  34. package/dist/di-container.d.ts +1 -1
  35. package/dist/di-container.d.ts.map +1 -1
  36. package/dist/di-container.js.map +1 -1
  37. package/dist/repositories/schema.repository.d.ts +17 -2
  38. package/dist/repositories/schema.repository.d.ts.map +1 -1
  39. package/dist/repositories/schema.repository.js +102 -19
  40. package/dist/repositories/schema.repository.js.map +1 -1
  41. package/dist/services/generation.service.d.ts +7 -5
  42. package/dist/services/generation.service.d.ts.map +1 -1
  43. package/dist/services/generation.service.js +92 -44
  44. package/dist/services/generation.service.js.map +1 -1
  45. package/dist/services/github-sync/github-client.d.ts +14 -0
  46. package/dist/services/github-sync/github-client.d.ts.map +1 -0
  47. package/dist/services/github-sync/github-client.js +41 -0
  48. package/dist/services/github-sync/github-client.js.map +1 -0
  49. package/dist/services/github-sync/gitlab-client.d.ts +17 -0
  50. package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
  51. package/dist/services/github-sync/gitlab-client.js +42 -0
  52. package/dist/services/github-sync/gitlab-client.js.map +1 -0
  53. package/dist/services/github-sync/schemas.d.ts +46 -0
  54. package/dist/services/github-sync/schemas.d.ts.map +1 -0
  55. package/dist/services/github-sync/schemas.js +36 -0
  56. package/dist/services/github-sync/schemas.js.map +1 -0
  57. package/dist/services/github-sync/sync.service.d.ts +27 -0
  58. package/dist/services/github-sync/sync.service.d.ts.map +1 -0
  59. package/dist/services/github-sync/sync.service.js +99 -0
  60. package/dist/services/github-sync/sync.service.js.map +1 -0
  61. package/dist/services/gitlab-agent.service.d.ts +94 -0
  62. package/dist/services/gitlab-agent.service.d.ts.map +1 -0
  63. package/dist/services/gitlab-agent.service.js +162 -0
  64. package/dist/services/gitlab-agent.service.js.map +1 -0
  65. package/dist/services/migration.service.d.ts +3 -3
  66. package/dist/services/migration.service.d.ts.map +1 -1
  67. package/dist/services/migration.service.js +108 -61
  68. package/dist/services/migration.service.js.map +1 -1
  69. package/dist/services/release-automation/base-crud.service.d.ts +93 -0
  70. package/dist/services/release-automation/base-crud.service.d.ts.map +1 -0
  71. package/dist/services/release-automation/base-crud.service.js +68 -0
  72. package/dist/services/release-automation/base-crud.service.js.map +1 -0
  73. package/dist/services/release-automation/index.d.ts +12 -0
  74. package/dist/services/release-automation/index.d.ts.map +1 -0
  75. package/dist/services/release-automation/index.js +12 -0
  76. package/dist/services/release-automation/index.js.map +1 -0
  77. package/dist/services/release-automation/merge-request.service.d.ts +119 -0
  78. package/dist/services/release-automation/merge-request.service.d.ts.map +1 -0
  79. package/dist/services/release-automation/merge-request.service.js +212 -0
  80. package/dist/services/release-automation/merge-request.service.js.map +1 -0
  81. package/dist/services/release-automation/milestone.service.d.ts +104 -0
  82. package/dist/services/release-automation/milestone.service.d.ts.map +1 -0
  83. package/dist/services/release-automation/milestone.service.js +207 -0
  84. package/dist/services/release-automation/milestone.service.js.map +1 -0
  85. package/dist/services/release-automation/release.service.d.ts +118 -0
  86. package/dist/services/release-automation/release.service.d.ts.map +1 -0
  87. package/dist/services/release-automation/release.service.js +207 -0
  88. package/dist/services/release-automation/release.service.js.map +1 -0
  89. package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
  90. package/dist/services/release-automation/schemas/release.schema.d.ts.map +1 -0
  91. package/dist/services/release-automation/schemas/release.schema.js +269 -0
  92. package/dist/services/release-automation/schemas/release.schema.js.map +1 -0
  93. package/dist/services/release-automation/tag.service.d.ts +99 -0
  94. package/dist/services/release-automation/tag.service.d.ts.map +1 -0
  95. package/dist/services/release-automation/tag.service.js +180 -0
  96. package/dist/services/release-automation/tag.service.js.map +1 -0
  97. package/dist/services/release-automation/webhook.service.d.ts +37 -0
  98. package/dist/services/release-automation/webhook.service.d.ts.map +1 -0
  99. package/dist/services/release-automation/webhook.service.js +173 -0
  100. package/dist/services/release-automation/webhook.service.js.map +1 -0
  101. package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
  102. package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
  103. package/dist/services/runtime/claude/capability-mapper.js +245 -0
  104. package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
  105. package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
  106. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
  107. package/dist/services/runtime/claude/claude-adapter.js +287 -0
  108. package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
  109. package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
  110. package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
  111. package/dist/services/runtime/claude/manifest-parser.js +169 -0
  112. package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
  113. package/dist/services/runtime/claude/types.d.ts +115 -0
  114. package/dist/services/runtime/claude/types.d.ts.map +1 -0
  115. package/dist/services/runtime/claude/types.js +6 -0
  116. package/dist/services/runtime/claude/types.js.map +1 -0
  117. package/dist/services/runtime/openai.adapter.d.ts.map +1 -1
  118. package/dist/services/runtime/openai.adapter.js.map +1 -1
  119. package/dist/services/validation.service.d.ts.map +1 -1
  120. package/dist/services/validation.service.js +35 -11
  121. package/dist/services/validation.service.js.map +1 -1
  122. package/dist/services/validators/anthropic.validator.d.ts +2 -2
  123. package/dist/services/validators/anthropic.validator.d.ts.map +1 -1
  124. package/dist/services/validators/anthropic.validator.js +14 -9
  125. package/dist/services/validators/anthropic.validator.js.map +1 -1
  126. package/dist/services/validators/autogen.validator.d.ts +2 -2
  127. package/dist/services/validators/autogen.validator.d.ts.map +1 -1
  128. package/dist/services/validators/autogen.validator.js +18 -15
  129. package/dist/services/validators/autogen.validator.js.map +1 -1
  130. package/dist/services/validators/crewai.validator.d.ts +2 -2
  131. package/dist/services/validators/crewai.validator.d.ts.map +1 -1
  132. package/dist/services/validators/crewai.validator.js +18 -17
  133. package/dist/services/validators/crewai.validator.js.map +1 -1
  134. package/dist/services/validators/cursor.validator.d.ts +2 -2
  135. package/dist/services/validators/cursor.validator.d.ts.map +1 -1
  136. package/dist/services/validators/cursor.validator.js +15 -11
  137. package/dist/services/validators/cursor.validator.js.map +1 -1
  138. package/dist/services/validators/langchain.validator.d.ts +2 -2
  139. package/dist/services/validators/langchain.validator.d.ts.map +1 -1
  140. package/dist/services/validators/langchain.validator.js +14 -11
  141. package/dist/services/validators/langchain.validator.js.map +1 -1
  142. package/dist/services/validators/langflow.validator.d.ts +2 -2
  143. package/dist/services/validators/langflow.validator.d.ts.map +1 -1
  144. package/dist/services/validators/langflow.validator.js +14 -9
  145. package/dist/services/validators/langflow.validator.js.map +1 -1
  146. package/dist/services/validators/langgraph.validator.d.ts +2 -2
  147. package/dist/services/validators/langgraph.validator.d.ts.map +1 -1
  148. package/dist/services/validators/langgraph.validator.js +23 -18
  149. package/dist/services/validators/langgraph.validator.js.map +1 -1
  150. package/dist/services/validators/llamaindex.validator.d.ts +2 -2
  151. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -1
  152. package/dist/services/validators/llamaindex.validator.js +19 -16
  153. package/dist/services/validators/llamaindex.validator.js.map +1 -1
  154. package/dist/services/validators/openai.validator.d.ts +2 -2
  155. package/dist/services/validators/openai.validator.d.ts.map +1 -1
  156. package/dist/services/validators/openai.validator.js +20 -16
  157. package/dist/services/validators/openai.validator.js.map +1 -1
  158. package/dist/services/validators/vercel-ai.validator.d.ts +2 -2
  159. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -1
  160. package/dist/services/validators/vercel-ai.validator.js +16 -15
  161. package/dist/services/validators/vercel-ai.validator.js.map +1 -1
  162. package/dist/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
  163. package/dist/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
  164. package/dist/spec/v0.2.3/CHANGELOG.md +7 -7
  165. package/dist/spec/v0.2.3/README.md +9 -9
  166. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
  167. package/{spec/v0.2.4-dev → dist/spec/v0.2.4}/CHANGELOG.md +8 -8
  168. package/dist/spec/{v0.2.4-dev → v0.2.4}/migrations/v0.2.3-to-v0.2.4.md +10 -10
  169. package/dist/spec/{v0.2.4-dev/ossa-0.2.4-dev.yaml → v0.2.4/ossa-0.2.4.yaml} +1 -1
  170. package/dist/spec/v0.2.5/CHANGELOG.md +401 -0
  171. package/dist/spec/v0.2.5/README.md +72 -0
  172. package/dist/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
  173. package/dist/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
  174. package/dist/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
  175. package/dist/spec/v0.2.5-RC/CHANGELOG.md +401 -0
  176. package/dist/spec/v0.2.5-RC/README.md +72 -0
  177. package/{spec/v0.2.4-dev → dist/spec/v0.2.5-RC}/migrations/v0.2.3-to-v0.2.4.md +10 -10
  178. package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
  179. package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
  180. package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
  181. package/dist/spec/v0.2.6/README.md +72 -0
  182. package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  183. package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  184. package/dist/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
  185. package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  186. package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  187. package/dist/spec/v0.2.6-dev/README.md +75 -0
  188. package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  189. package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  190. package/dist/spec/v0.2.6-dev/ossa-0.2.5.schema.json +1696 -0
  191. package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  192. package/dist/spec/{v0.2.5-dev/ossa-0.2.5-dev.schema.json → v0.2.6-dev/ossa-0.2.6-dev.schema.json} +323 -359
  193. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  194. package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
  195. package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  196. package/dist/types/index.d.ts +6 -1
  197. package/dist/types/index.d.ts.map +1 -1
  198. package/docs/brand-guide/01-brand-overview.md +37 -0
  199. package/docs/brand-guide/02-logo-usage.md +43 -0
  200. package/docs/brand-guide/03-color-palette.md +70 -0
  201. package/docs/brand-guide/04-typography.md +82 -0
  202. package/docs/brand-guide/05-voice-and-tone.md +108 -0
  203. package/docs/brand-guide/06-visual-elements.md +137 -0
  204. package/docs/brand-guide/07-application-examples.md +153 -0
  205. package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
  206. package/docs/brand-guide/OssaLogo/brand.af +0 -0
  207. package/docs/brand-guide/README.md +107 -0
  208. package/docs/comparison.md +315 -0
  209. package/docs/operations/automation-roadmap.md +245 -0
  210. package/docs/operations/github-sync-strategy.md +357 -0
  211. package/examples/anthropic/claude-assistant.ossa.json +5 -4
  212. package/examples/autogen/multi-agent.ossa.json +6 -4
  213. package/examples/bridges/Dockerfile.production +1 -1
  214. package/examples/crewai/research-team.ossa.json +14 -5
  215. package/examples/cursor/code-review-agent.ossa.json +21 -6
  216. package/examples/enterprise/agent.yml +1 -1
  217. package/examples/getting-started/hello-world-complete.ossa.yaml +2 -2
  218. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  219. package/examples/langchain/chain-agent.ossa.json +21 -5
  220. package/examples/langflow/workflow-agent.ossa.json +2 -3
  221. package/examples/langgraph/state-machine-agent.ossa.json +2 -3
  222. package/examples/llamaindex/rag-agent.ossa.json +2 -3
  223. package/examples/openai/basic-agent.ossa.yaml +61 -0
  224. package/examples/openai/multi-tool-agent.ossa.json +188 -0
  225. package/examples/openai/swarm-agent.ossa.json +18 -5
  226. package/examples/openapi-extensions/README.md +1 -1
  227. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  228. package/examples/vercel/edge-agent.ossa.json +5 -4
  229. package/infrastructure/gitlab-agent/rbac.yaml +126 -0
  230. package/infrastructure/gitlab-agent/values.yaml +150 -0
  231. package/infrastructure/k8s/monitoring/00-namespace.yaml +7 -0
  232. package/infrastructure/k8s/monitoring/01-prometheus.yaml +142 -0
  233. package/infrastructure/k8s/monitoring/02-grafana.yaml +63 -0
  234. package/infrastructure/k8s/monitoring/03-lightweight.yaml +121 -0
  235. package/infrastructure/k8s/monitoring/README.md +73 -0
  236. package/infrastructure/k8s/monitoring/deploy.sh +38 -0
  237. package/openapi/CHANGELOG.md +21 -0
  238. package/openapi/README.md +46 -0
  239. package/openapi/{ossa-core-api.openapi.yaml → core/ossa-core-api.openapi.yaml} +59 -4
  240. package/openapi/{ossa-registry.openapi.yaml → core/ossa-registry.openapi.yaml} +75 -2
  241. package/openapi/{unified-agent-gateway.openapi.yaml → core/unified-agent-gateway.openapi.yaml} +3 -3
  242. package/openapi/github-sync.yaml +115 -0
  243. package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +136 -0
  244. package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +192 -0
  245. package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +149 -0
  246. package/openapi/reference-implementations/critic-agent-api.openapi.yaml +151 -0
  247. package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +217 -0
  248. package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +149 -0
  249. package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +151 -0
  250. package/openapi/reference-implementations/governor-agent-api.openapi.yaml +193 -0
  251. package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +165 -0
  252. package/openapi/reference-implementations/judge-agent-api.openapi.yaml +148 -0
  253. package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +167 -0
  254. package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +171 -0
  255. package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +171 -0
  256. package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +242 -0
  257. package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +187 -0
  258. package/openapi/{self-evolving-ecosystem.openapi.yaml → reference-implementations/self-evolving-ecosystem.openapi.yaml} +2 -2
  259. package/openapi/reference-implementations/worker-agent-api.openapi.yaml +208 -0
  260. package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +193 -0
  261. package/package.json +53 -22
  262. package/release.config.js +20 -5
  263. package/scripts/README.md +103 -0
  264. package/scripts/auto-rebase-mrs.ts +106 -0
  265. package/scripts/batch-dependabot.sh +57 -0
  266. package/scripts/bump-version.ts +57 -0
  267. package/scripts/configure-gitlab-branch-protection.ts +95 -0
  268. package/scripts/create-issue-helper.ts +238 -0
  269. package/scripts/create-milestone-issue.ts +73 -0
  270. package/scripts/enhanced-version-manager.ts +257 -0
  271. package/scripts/fix-schema-formats.js +82 -0
  272. package/scripts/gen-types.ts +51 -0
  273. package/scripts/gen-zod.ts +51 -0
  274. package/scripts/generate-agents-catalog.ts +77 -0
  275. package/scripts/generate-api-docs.ts +218 -0
  276. package/scripts/generate-cli-docs.ts +410 -0
  277. package/scripts/generate-config-docs.ts +109 -0
  278. package/scripts/generate-errors-docs.ts +76 -0
  279. package/scripts/generate-examples-docs.ts +99 -0
  280. package/scripts/generate-schema-docs.ts +296 -0
  281. package/scripts/generate-types-docs.ts +48 -0
  282. package/scripts/lib/exec.ts +37 -0
  283. package/scripts/lib/file-ops.ts +58 -0
  284. package/scripts/lib/version.ts +83 -0
  285. package/scripts/lowercase-docs.ts +43 -0
  286. package/scripts/manage-milestone-mrs.ts +279 -0
  287. package/scripts/process-doc-templates.ts +37 -0
  288. package/scripts/rebase-all-mrs.sh +75 -0
  289. package/scripts/schemas/package.schema.ts +75 -0
  290. package/scripts/setup-branch-protection.sh +33 -0
  291. package/scripts/sync-github-pr.sh +48 -0
  292. package/scripts/sync-version.js +40 -0
  293. package/scripts/sync-version.ts +39 -0
  294. package/scripts/sync-versions.ts +488 -0
  295. package/scripts/sync-wiki.sh +50 -0
  296. package/scripts/validate-all.js +127 -0
  297. package/scripts/validate-schema.ts +49 -0
  298. package/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
  299. package/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
  300. package/spec/v0.2.3/CHANGELOG.md +7 -7
  301. package/spec/v0.2.3/README.md +9 -9
  302. package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
  303. package/{dist/spec/v0.2.4-dev → spec/v0.2.4}/CHANGELOG.md +8 -8
  304. package/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
  305. package/spec/{v0.2.4-dev/ossa-0.2.4-dev.yaml → v0.2.4/ossa-0.2.4.yaml} +1 -1
  306. package/spec/v0.2.5/CHANGELOG.md +401 -0
  307. package/spec/v0.2.5/README.md +72 -0
  308. package/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
  309. package/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
  310. package/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
  311. package/spec/v0.2.5-RC/CHANGELOG.md +401 -0
  312. package/spec/v0.2.5-RC/README.md +72 -0
  313. package/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
  314. package/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
  315. package/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
  316. package/spec/v0.2.6/CHANGELOG.md +401 -0
  317. package/spec/v0.2.6/README.md +72 -0
  318. package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  319. package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  320. package/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
  321. package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  322. package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  323. package/spec/v0.2.6-dev/README.md +75 -0
  324. package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  325. package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  326. package/spec/v0.2.6-dev/ossa-0.2.5.schema.json +1696 -0
  327. package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  328. package/spec/{v0.2.5-dev/ossa-0.2.5-dev.schema.json → v0.2.6-dev/ossa-0.2.6-dev.schema.json} +323 -359
  329. package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  330. package/spec/v0.2.7/core/agentgraph.md +324 -0
  331. package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  332. package/website/{.lighthouserc.js → .lighthouserc.ts} +5 -1
  333. package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +445 -0
  334. package/website/Dockerfile +18 -5
  335. package/website/app/about/page.tsx +60 -51
  336. package/website/app/blog/[slug]/page.tsx +61 -20
  337. package/website/app/blog/page.tsx +120 -33
  338. package/website/app/design-guide/page.tsx +511 -0
  339. package/website/app/docs/[[...slug]]/page.tsx +641 -143
  340. package/website/app/ecosystem/page.tsx +146 -111
  341. package/website/app/examples/page.tsx +51 -41
  342. package/website/app/globals.scss +370 -0
  343. package/website/app/layout.tsx +2 -2
  344. package/website/app/license/page.tsx +183 -0
  345. package/website/app/not-found.tsx +18 -0
  346. package/website/app/page.tsx +513 -236
  347. package/website/app/page.tsx.bak +679 -0
  348. package/website/app/page.tsx.bak2 +649 -0
  349. package/website/app/playground/page.tsx +25 -45
  350. package/website/app/schema/page.tsx +423 -392
  351. package/website/app/specification/page.tsx +245 -169
  352. package/website/components/Logo.tsx +75 -2
  353. package/website/components/docs/DocsSidebar.tsx +40 -3
  354. package/website/components/docs/MarkdownContent.tsx +265 -47
  355. package/website/components/docs/VersionSelector.tsx +64 -8
  356. package/website/components/examples/ExamplesViewer.tsx +2 -2
  357. package/website/components/layout/Footer.tsx +6 -1
  358. package/website/components/layout/Header.tsx +44 -42
  359. package/website/components/schema/SchemaComponentsAccordion.tsx +84 -0
  360. package/website/components/schema/SchemaExplorer.tsx +4 -4
  361. package/website/components/ui/Badge.tsx +82 -0
  362. package/website/components/ui/Button.tsx +116 -0
  363. package/website/components/ui/Card.tsx +167 -0
  364. package/website/components/ui/Checkbox.tsx +141 -0
  365. package/website/components/ui/Input.tsx +169 -0
  366. package/website/components/ui/Radio.tsx +141 -0
  367. package/website/components/ui/Select.tsx +182 -0
  368. package/website/components/ui/Tag.tsx +158 -0
  369. package/website/components/ui/Textarea.tsx +195 -0
  370. package/website/components/ui/index.ts +11 -0
  371. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +276 -276
  372. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +3 -14
  373. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +286 -0
  374. package/website/content/blog/introducing-ossa-framework.md +1 -1
  375. package/website/content/blog/ossa-production-results.md +5 -5
  376. package/website/content/blog/welcome-to-ossa.md +2 -2
  377. package/website/content/blog/why-ai-agents-need-open-standard.md +5 -5
  378. package/website/content/docs/{00-HOME.md → 00-home.md} +18 -25
  379. package/website/content/docs/adapters/openai-adapter.md +693 -0
  380. package/website/content/docs/agents/catalog.md +28 -0
  381. package/website/content/docs/aiflow-framework-integration-with-ossa.md +107 -0
  382. package/website/content/docs/api-reference/index.md +38 -0
  383. package/website/content/docs/api-reference/ossa-core-api.md +634 -0
  384. package/website/content/docs/api-reference/ossa-registry-api.md +515 -0
  385. package/website/content/docs/api-reference/unified-agent-gateway.md +599 -0
  386. package/website/content/docs/architecture/execution-flow.md +3 -3
  387. package/website/content/docs/architecture/multi-agent-systems.md +4 -4
  388. package/website/content/docs/architecture/overview.md +4 -4
  389. package/website/content/docs/architecture/stack-integration.md +4 -4
  390. package/website/content/docs/changelog.md +4 -4
  391. package/website/content/docs/cli-reference/index.md +111 -0
  392. package/website/content/docs/cli-reference/ossa-agents.md +70 -0
  393. package/website/content/docs/cli-reference/ossa-export.md +56 -0
  394. package/website/content/docs/cli-reference/ossa-generate.md +66 -0
  395. package/website/content/docs/cli-reference/ossa-gitlab-agent.md +57 -0
  396. package/website/content/docs/cli-reference/ossa-import.md +56 -0
  397. package/website/content/docs/cli-reference/ossa-init.md +57 -0
  398. package/website/content/docs/cli-reference/ossa-migrate.md +62 -0
  399. package/website/content/docs/cli-reference/ossa-run.md +66 -0
  400. package/website/content/docs/cli-reference/ossa-schema.md +57 -0
  401. package/website/content/docs/cli-reference/ossa-setup.md +57 -0
  402. package/website/content/docs/cli-reference/ossa-validate.md +66 -0
  403. package/website/content/docs/configuration/index.md +97 -0
  404. package/website/content/docs/contributing.md +2 -2
  405. package/website/content/docs/deployment/github-mirroring.md +924 -0
  406. package/website/content/docs/documentation.md +100 -0
  407. package/website/content/docs/ecosystem/framework-support.md +551 -11
  408. package/website/content/docs/errors/index.md +10 -0
  409. package/website/content/docs/{AIFlow-Framework-Integration-with-OSSA.md → examples/aiflow-framework-integration-with-ossa.md} +2 -2
  410. package/website/content/docs/examples/catalog.md +300 -0
  411. package/website/content/docs/for-audiences/{Students-Researchers.md → students-researchers.md} +1 -1
  412. package/website/content/docs/getting-started/index.md +92 -0
  413. package/website/content/docs/getting-started/installation.md +7 -7
  414. package/website/content/docs/getting-started/running-agents.md +215 -13
  415. package/{docs → website/content/docs}/getting-started.md +10 -6
  416. package/website/content/docs/integrations/aiflow.md +2 -2
  417. package/website/content/docs/integrations/drupal.md +2 -2
  418. package/website/content/docs/migration-guides/agent-schema-comparison.md +232 -0
  419. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +5 -5
  420. package/website/content/docs/migration-guides/crewai-to-ossa.md +3 -3
  421. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +11 -11
  422. package/{docs/migration → website/content/docs/migration-guides}/general-agent-schema.yml +1 -9
  423. package/website/content/docs/migration-guides/index.md +1 -1
  424. package/website/content/docs/migration-guides/langchain-to-ossa.md +17 -17
  425. package/website/content/docs/migration-guides/langflow-to-ossa.md +3 -3
  426. package/website/content/docs/migration-guides/openai-to-ossa.md +10 -10
  427. package/website/content/docs/openapi-extensions/examples.md +9 -9
  428. package/website/content/docs/openapi-extensions/index.md +59 -3
  429. package/website/content/docs/openapi-extensions/operation-extensions.md +61 -2
  430. package/website/content/docs/openapi-extensions/root-extensions.md +49 -3
  431. package/{docs/OSSA-COMPLIANT-BADGE.md → website/content/docs/ossa-compliant-badge.md} +18 -15
  432. package/website/content/docs/pre-release/index.md +10 -10
  433. package/website/content/docs/readme.md +35 -0
  434. package/website/content/docs/releases/v0.2.6.md +99 -0
  435. package/website/content/docs/schema-reference/agent-capabilities.md +50 -0
  436. package/website/content/docs/schema-reference/agent-id.md +52 -0
  437. package/website/content/docs/schema-reference/agent-name.md +50 -0
  438. package/website/content/docs/schema-reference/agent-role.md +54 -0
  439. package/website/content/docs/schema-reference/agent-spec.md +2 -2
  440. package/website/content/docs/schema-reference/agent-version.md +50 -0
  441. package/website/content/docs/schema-reference/autonomy.md +5 -5
  442. package/website/content/docs/schema-reference/constraints.md +5 -5
  443. package/website/content/docs/schema-reference/index.md +26 -157
  444. package/website/content/docs/schema-reference/llm-config.md +1 -1
  445. package/website/content/docs/schema-reference/observability.md +5 -5
  446. package/website/content/docs/schema-reference/ossa-manifest.md +6 -6
  447. package/website/content/docs/schema-reference/taxonomy.md +3 -3
  448. package/website/content/docs/types-reference/index.md +105 -0
  449. package/website/content/docs/use-cases/00-index.md +1 -1
  450. package/{docs/VERSIONING.md → website/content/docs/versioning.md} +9 -5
  451. package/website/dev.sh +53 -0
  452. package/website/docker-compose.dev.yml +36 -0
  453. package/website/lib/version.ts +18 -1
  454. package/website/lib/versions.json +103 -0
  455. package/website/next.config.ts +3 -1
  456. package/website/package-lock.json +552 -18
  457. package/website/package.json +11 -5
  458. package/website/postcss.config.mjs +1 -1
  459. package/website/scripts/fetch-versions.js +166 -0
  460. package/website/scripts/generate-examples-index.js +163 -0
  461. package/website/scripts/merge-docs-to-wiki.ts +207 -0
  462. package/website/scripts/sync-version.js +28 -0
  463. package/website/scripts/sync-wiki.ts +64 -3
  464. package/website/scripts/upload-wiki.ts +199 -0
  465. package/website/styles/_spacing.scss +453 -0
  466. package/website/styles/_tokens.scss +245 -0
  467. package/website/styles/_typography.scss +361 -0
  468. package/website/styles/_variables.scss +287 -0
  469. package/website/tailwind.config.ts +127 -22
  470. package/.releaserc.json.disabled +0 -81
  471. package/dist/spec/v0.2.5-dev/CHANGELOG.md +0 -171
  472. package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
  473. package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
  474. package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
  475. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
  476. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
  477. package/docs/README.md +0 -31
  478. package/docs/agent-openapi-spec.yml +0 -942
  479. package/docs/openapi-extensions.md +0 -930
  480. package/docs/schemas/openapi-extensions.schema.json +0 -486
  481. package/openapi/gitlab-orchestrator.openapi.yaml +0 -330
  482. package/ossa-website-swarm-tasks.json +0 -105
  483. package/spec/v0.2.5-dev/CHANGELOG.md +0 -171
  484. package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
  485. package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
  486. package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
  487. package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
  488. package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
  489. package/website/app/api/validate/route.ts +0 -88
  490. package/website/app/globals.css +0 -108
  491. package/website/content/docs/OpenAPI-Extensions.md +0 -498
  492. package/website/content/docs/core-concepts/project-structure.md +0 -348
  493. package/website/content/docs/examples/Migration-Guides.md +0 -214
  494. package/website/content/docs/examples.md +0 -71
  495. package/website/content/docs/for-audiences/Enterprises.md +0 -256
  496. package/website/content/docs/for-audiences/architects.md +0 -224
  497. package/website/content/docs/for-audiences/developers.md +0 -220
  498. package/website/content/docs/getting-started/5-minute-overview.md +0 -85
  499. package/website/content/docs/getting-started/Hello-World.md +0 -184
  500. package/website/content/docs/getting-started/first-agent.md +0 -196
  501. package/website/content/docs/migration-guides/00-index.md +0 -76
  502. package/website/content/docs/migration-guides/README.md +0 -133
  503. package/website/next.config.js +0 -17
  504. package/website/postcss.config.js +0 -7
  505. package/website/tailwind.config.js +0 -58
  506. /package/dist/spec/{v0.2.4-dev/ossa-0.2.4-dev.schema.json → v0.2.4/ossa-0.2.4.schema.json} +0 -0
  507. /package/openapi/{ossa-registry-api.openapi.yaml → core/ossa-registry-api.openapi.yaml} +0 -0
  508. /package/openapi/{drupal-agent-api.openapi.yaml → reference-implementations/drupal-agent-api.openapi.yaml} +0 -0
  509. /package/openapi/{helm-generator.openapi.yaml → reference-implementations/helm-generator.openapi.yaml} +0 -0
  510. /package/spec/{v0.2.4-dev/ossa-0.2.4-dev.schema.json → v0.2.4/ossa-0.2.4.schema.json} +0 -0
  511. /package/{docs/migration → website/content/docs/migration-guides}/migration-manifest.json +0 -0
@@ -0,0 +1,981 @@
1
+ # Implementation Plan: OSSA Website Design System Enhancement
2
+
3
+ ## Overview
4
+
5
+ This implementation plan transforms the OSSA website from its current state into a premium, accessible, and maintainable design system. The plan addresses critical issues in brand consistency, typography, component architecture, accessibility, and user experience.
6
+
7
+ **Dependencies:**
8
+
9
+ - 🔗 **Issue #44: Brand Identity & Brand Guide Development** - Brand identity foundation
10
+ - 🔗 **Issue #45: Website Design System Implementation & Enhancement** - Comprehensive design system
11
+ - 🔗 **Issue #33: Update website to reflect release of 0.2.6** - Version updates
12
+ - 🔗 **Strategic Gaps Analysis** - Runtime story, enterprise positioning, governance, registry, benchmarks
13
+
14
+ **Current State Analysis:**
15
+
16
+ - ✅ Solid technical foundation: Next.js 14, Tailwind CSS, SCSS variables
17
+ - ✅ Basic components exist: Header, Footer, Logo, DocsSidebar, MarkdownContent, ExamplesViewer
18
+ - ✅ Syntax highlighting implemented (Prism with vscDarkPlus theme)
19
+ - ✅ Basic responsive design in place
20
+ - ✅ Gradient system defined in \_variables.scss (Primary #4A3ECD, Secondary #1CB9ED, Accent #9060EA)
21
+ - ⚠️ Typography system needs standardization per Issue #44 specs (Display 72px → H6 18px)
22
+ - ⚠️ Component library incomplete (no Button, Card, Badge components as reusable exports)
23
+ - ⚠️ Messaging needs update: Current is developer-first, needs enterprise value proposition
24
+ - ⚠️ Accessibility gaps (focus states, ARIA labels, contrast issues)
25
+ - ⚠️ Mobile navigation needs smooth animations
26
+ - ⚠️ Homepage hero text too large on mobile
27
+ - ⚠️ Logo grid uses external services (slow, inconsistent)
28
+ - ⚠️ Comparison matrix not present (needed from Issue #44)
29
+
30
+ **Target State:**
31
+
32
+ - Professional design system with comprehensive component library
33
+ - WCAG 2.1 AA compliance and Lighthouse scores > 90
34
+ - Enterprise-focused messaging leading with portability, compliance, vendor independence
35
+ - Comparison matrix showing OSSA vs LangChain, AutoGen, MCP, Semantic Kernel
36
+ - Clear runtime story with reference implementations and deployment blueprints
37
+ - Enterprise/compliance positioning with security model and compliance mapping
38
+ - Transparent governance with steering committee, versioning, and roadmap
39
+ - OSSA Registry/Hub for discoverable agent catalog
40
+ - Interoperability proof with benchmarks and migration case studies
41
+
42
+ ---
43
+
44
+ ## Phase 0: Brand Assets & Documentation (From Issue #44)
45
+
46
+ **Note:** These tasks create the brand foundation that all subsequent phases depend on. Some may be completed outside this spec.
47
+
48
+ - [ ] 0.1 Create logo assets and brand mark
49
+ - Create primary logo (horizontal and vertical variants)
50
+ - Create brand mark/icon for favicons and social media
51
+ - Export in all required formats (SVG, PNG at multiple sizes, ICO)
52
+ - Document usage guidelines (clear space, minimum sizes, color variants)
53
+ - _Issue #44: Logo & Brand Mark_
54
+
55
+ - [ ] 0.2 Create icon system
56
+ - Select or create standard icon library (Heroicons style recommended)
57
+ - Define size variants (sm: 16px, md: 24px, lg: 32px, xl: 48px)
58
+ - Document color application rules
59
+ - Create icon usage guidelines
60
+ - _Issue #44: Icon System_
61
+
62
+ - [ ] 0.3 Document tone of voice guidelines
63
+ - Professional but approachable: Technical accuracy with clarity
64
+ - Confident but not arrogant: Lead with benefits, not features
65
+ - Inclusive: Accessible to developers, architects, and executives
66
+ - Action-oriented: Clear CTAs and next steps
67
+ - _Issue #44: Tone of Voice Guidelines_
68
+
69
+ ---
70
+
71
+ ## Phase 1: Design Token Foundation (Based on Issue #44 Brand Identity)
72
+
73
+ - [x] 1. Extend SCSS color system with full tint/shade scales per Issue #44
74
+ - Create 50-900 color scales for Primary (#4A3ECD), Secondary (#1CB9ED), Accent (#9060EA)
75
+ - Add semantic color scales (Success, Warning, Error, Info) with 50-900 tints
76
+ - Add focus ring colors for accessibility (primary/30, secondary/30)
77
+ - Define dark mode color mappings in \_variables.scss
78
+ - Update Tailwind config to reference new color scales
79
+ - _Requirements: 1.1, 1.2, 1.5 | Issue #44: Visual Identity System - Color Palette_
80
+
81
+ - [x] 2. Implement comprehensive typography system per Issue #44 specs
82
+ - Define exact type scale from Issue #44:
83
+ - Display: 72px, weight 800, line-height 1.1, letter-spacing -0.02em
84
+ - H1: 56px, weight 700, line-height 1.2, letter-spacing -0.01em
85
+ - H2: 40px, weight 700, line-height 1.3
86
+ - H3: 32px, weight 600, line-height 1.4
87
+ - H4: 24px, weight 600, line-height 1.5
88
+ - H5: 20px, weight 600, line-height 1.5
89
+ - H6: 18px, weight 600, line-height 1.5
90
+ - Body: 16px, weight 400, line-height 1.6
91
+ - Small: 14px, weight 400, line-height 1.5
92
+ - Update globals.scss with typography utility classes
93
+ - _Requirements: 2.1, 2.2, 2.4 | Issue #44: Visual Identity System - Typography System_
94
+
95
+ - [x] 3. Create spacing and layout token system
96
+ - Document spacing scale (4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px, 96px) in \_variables.scss
97
+ - Define section padding tokens (py-12, py-16, py-20, py-24)
98
+ - Create container max-width tokens (max-w-4xl, max-w-6xl, max-w-7xl)
99
+ - Add consistent gap values for grids (gap-4, gap-6, gap-8)
100
+ - _Requirements: 4.1, 4.2, 4.3, 4.4_
101
+
102
+ ---
103
+
104
+ ## Phase 2: Core Component Library
105
+
106
+ - [ ] 4. Build comprehensive Button component system
107
+ - [x] 4.1 Create Button component with all variants
108
+ - Implement variants: primary, secondary, outline, ghost
109
+ - Add sizes: sm, md, lg with consistent padding
110
+ - Include disabled and loading states
111
+ - Add icon support with left/right positioning
112
+ - _Requirements: 6.1, 6.2_
113
+
114
+ - [x] 4.2 Enhance button interactions and accessibility
115
+ - Implement smooth transitions (scale, shadow) on hover
116
+ - Add visible focus rings (ring-4 with color/30 opacity)
117
+ - Ensure 44x44px minimum touch targets on mobile
118
+ - Add ARIA labels and keyboard navigation support
119
+ - _Requirements: 6.1, 7.1, 8.2_
120
+
121
+ - [ ] 5. Build Card component system with variants
122
+ - [x] 5.1 Create Card component with multiple variants
123
+ - Implement variants: default, featured, interactive, ghost
124
+ - Add padding options: sm, md, lg
125
+ - Create elevation system (0-3) with corresponding shadows
126
+ - Add hover states with transform and shadow transitions
127
+ - _Requirements: 3.1, 3.3, 6.1_
128
+
129
+ - [x] 5.2 Apply Card components across website pages
130
+ - Replace existing card usage on homepage with new Card component
131
+ - Update documentation pages to use Card variants
132
+ - Apply featured cards for important content sections
133
+ - Ensure consistent spacing and elevation throughout
134
+ - _Requirements: 10.4, 11.3_
135
+
136
+ - [x] 6. Create Badge and Tag component system
137
+ - Implement Badge component with status, category, and version variants
138
+ - Add semantic color variants (success, warning, error, info)
139
+ - Create size variants (sm, md, lg)
140
+ - Apply badges to appropriate content (version tags, status indicators)
141
+ - _Requirements: 3.1, 10.2_
142
+
143
+ ---
144
+
145
+ ## Phase 3: Navigation & Layout Components
146
+
147
+ - [ ] 7. Enhance Header navigation with active states
148
+ - [ ] 7.1 Implement visual active state indicators
149
+ - Add active state styling (text-primary, bg-primary/10, rounded-lg)
150
+ - Implement bottom border indicator for current page
151
+ - Add smooth hover transitions (hover:bg-primary/5)
152
+ - Ensure consistent spacing and alignment
153
+ - _Requirements: 5.1, 5.2, 6.1_
154
+
155
+ - [ ] 7.2 Improve mobile navigation UX
156
+ - Add smooth slide-down animation using Framer Motion
157
+ - Implement close button inside mobile menu
158
+ - Ensure proper focus management when menu opens/closes
159
+ - Add backdrop overlay for mobile menu
160
+ - _Requirements: 5.2, 8.1, 8.4_
161
+
162
+ - [ ] 8. Enhance Footer component organization
163
+ - Improve visual hierarchy with section headings
164
+ - Ensure proper stacking on mobile (vertical columns)
165
+ - Add hover states to all footer links
166
+ - Verify all links are keyboard accessible
167
+ - _Requirements: 5.1, 8.1, 14.1, 14.4_
168
+
169
+ - [ ] 9. Create Breadcrumb navigation component
170
+ - Build Breadcrumb component with separator icons
171
+ - Add current page highlighting
172
+ - Implement responsive behavior (collapse on mobile)
173
+ - Apply to documentation and deep pages
174
+ - _Requirements: 5.4, 12.1_
175
+
176
+ ---
177
+
178
+ ## Phase 4: Content & Code Components
179
+
180
+ - [x] 10. Build enhanced CodeBlock component
181
+ - [x] 10.1 Create CodeBlock with syntax highlighting
182
+ - ✅ Syntax highlighting implemented using Prism (vscDarkPlus theme)
183
+ - ✅ Language detection from className
184
+ - ✅ Inline and block code variants supported
185
+ - ✅ JetBrains Mono font applied via globals.scss
186
+ - _Requirements: 2.3, 10.5, 12.2_
187
+
188
+ - [ ] 10.2 Add interactive features to CodeBlock
189
+ - Extract CodeBlock into reusable component (currently inline in MarkdownContent)
190
+ - Implement copy-to-clipboard button with visual feedback
191
+ - Add optional line numbers prop
192
+ - Ensure keyboard accessibility for copy button
193
+ - _Requirements: 10.5, 12.2_
194
+
195
+ - [ ] 11. Create form component library
196
+ - Build Input component with label, error, and helper text
197
+ - Create Select component with custom styling
198
+ - Implement Checkbox and Radio components
199
+ - Add form validation states (error, success, warning)
200
+ - _Requirements: 3.5, 7.5_
201
+
202
+ - [ ] 12. Build callout and alert components
203
+ - Create Callout component for important information
204
+ - Implement Alert component with semantic variants
205
+ - Add icon support for visual distinction
206
+ - Apply to documentation and content pages
207
+ - _Requirements: 10.4_
208
+
209
+ ---
210
+
211
+ ## Phase 5: Page-Specific Enhancements
212
+
213
+ - [ ] 13. Enhance Homepage with enterprise messaging from Issue #44
214
+ - [ ] 13.1 Update hero section with new value proposition
215
+ - Update headline to "Open Standard for AI Agents"
216
+ - Update subheadline to "Vendor-neutral, compliance-ready, enterprise-grade"
217
+ - Lead with key benefits from Issue #44:
218
+ - Switch between AI providers without code changes
219
+ - Built-in compliance and security frameworks
220
+ - Standardized agent lifecycle and governance
221
+ - Multi-runtime support (Node.js, Python, more)
222
+ - Optimize hero typography for mobile (text-4xl max instead of text-6xl/7xl)
223
+ - _Requirements: 2.1, 8.1, 11.2 | Issue #44: Messaging Hierarchy_
224
+
225
+ - [ ] 13.2 Add comparison matrix section from Issue #44
226
+ - Create comparison table component
227
+ - Implement comparison grid: OSSA vs LangChain, AutoGen, MCP, Semantic Kernel
228
+ - Show features: Vendor Neutral, Formal Standard, Multi-runtime, Enterprise Governance, Compliance Ready, Open Source
229
+ - Use checkmarks (✅) and crosses (❌) for visual clarity
230
+ - Make responsive for mobile (horizontal scroll or stacked cards)
231
+ - _Requirements: 10.4, 11.1 | Issue #44: Comparison Matrix & Positioning_
232
+
233
+ - [ ] 13.3 Improve "Why Does This Matter?" section with enterprise focus
234
+ - Update messaging to lead with portability, regulatory compliance, vendor independence
235
+ - Replace amber gradient background with white or light blue
236
+ - Improve text contrast to meet WCAG AA standards (4.5:1 minimum)
237
+ - Add visual hierarchy with proper heading sizes
238
+ - Enhance readability with better spacing
239
+ - _Requirements: 1.5, 2.5, 11.1 | Issue #44: Value Proposition_
240
+
241
+ - [ ] 13.4 Optimize logo grid integration
242
+ - Replace external logo services with local SVG assets
243
+ - Ensure consistent sizing (h-12 w-12) across all logos
244
+ - Implement proper grayscale filter and hover effects
245
+ - Add loading states and error handling
246
+ - _Requirements: 15.1, 15.2, 15.4, 15.5 | Issue #44: Logo & Brand Mark_
247
+
248
+ - [ ] 14. Enhance Documentation pages
249
+ - [x] 14.1 Improve sidebar navigation hierarchy
250
+ - ✅ Collapsible sections implemented with +/- indicators
251
+ - ✅ Active state indicators for current page (bg-primary text-white)
252
+ - ✅ Indentation with ml-2 for nested items
253
+ - ⚠️ Could add icons for visual hierarchy enhancement
254
+ - ✅ Keyboard navigation works (button and link elements)
255
+ - _Requirements: 5.3, 12.1_
256
+
257
+ - [ ] 14.2 Add table of contents for long pages
258
+ - Create floating TOC component for long documentation pages
259
+ - Implement smooth scroll to section on click
260
+ - Highlight current section in TOC
261
+ - Make TOC sticky on desktop, collapsible on mobile
262
+ - _Requirements: 10.1, 12.1_
263
+
264
+ - [ ] 14.3 Enhance documentation content presentation
265
+ - ✅ Links styled with underline and text-primary color
266
+ - ✅ Anchor links with smooth scroll implemented
267
+ - ✅ Code blocks styled with Prism syntax highlighting
268
+ - Add "Edit on GitHub" link to page footer
269
+ - Add visual anchors (icons, badges) for better scannability
270
+ - _Requirements: 10.2, 10.5, 12.2_
271
+
272
+ - [ ] 15. Enhance Playground page
273
+ - [ ] 15.1 Improve validation results UI
274
+ - Redesign success state with clear visual feedback
275
+ - Enhance error state with actionable messages
276
+ - Add loading skeleton during validation
277
+ - Improve overall visual polish and consistency
278
+ - _Requirements: 6.3, 6.4, 13.2, 13.4_
279
+
280
+ - [ ] 15.2 Enhance template selector UX
281
+ - Add clear active state indicator to template buttons
282
+ - Implement smooth transitions between templates
283
+ - Display keyboard shortcuts (Cmd+S to validate)
284
+ - Add template descriptions and use case hints
285
+ - _Requirements: 6.1, 13.3_
286
+
287
+ ---
288
+
289
+ ## Phase 6: Accessibility & Performance
290
+
291
+ - [ ] 16. Implement comprehensive accessibility improvements
292
+ - [ ] 16.1 Enhance keyboard navigation and focus states
293
+ - Add visible focus indicators (ring-2 ring-primary/50) to all interactive elements
294
+ - Ensure proper tab order throughout the site
295
+ - Implement skip-to-content link for screen readers
296
+ - Test keyboard navigation on all pages
297
+ - _Requirements: 7.1, 7.2_
298
+
299
+ - [ ] 16.2 Improve semantic HTML and ARIA labels
300
+ - Add proper ARIA labels to all interactive elements
301
+ - Use semantic HTML5 elements (nav, main, article, aside)
302
+ - Implement ARIA landmarks for screen readers
303
+ - Add descriptive alt text to all meaningful images
304
+ - _Requirements: 7.2, 7.3_
305
+
306
+ - [ ] 16.3 Ensure color contrast compliance
307
+ - Audit all text/background combinations for WCAG AA compliance
308
+ - Fix gradient text contrast issues (ensure 4.5:1 for body, 3:1 for large text)
309
+ - Add non-color indicators for color-coded information
310
+ - Test with color blindness simulators
311
+ - _Requirements: 2.5, 7.4_
312
+
313
+ - [ ] 16.4 Optimize for touch devices
314
+ - Ensure all touch targets are at least 44x44px
315
+ - Add proper spacing between interactive elements
316
+ - Test touch interactions on mobile devices
317
+ - Implement proper touch feedback (active states)
318
+ - _Requirements: 8.2_
319
+
320
+ - [ ] 17. Implement performance optimizations
321
+ - [ ] 17.1 Optimize image loading and delivery
322
+ - Use next/image for all images with lazy loading
323
+ - Serve appropriately sized images for different viewports
324
+ - Implement WebP format with fallbacks
325
+ - Add loading skeletons for images
326
+ - _Requirements: 8.5, 9.2_
327
+
328
+ - [ ] 17.2 Optimize font loading and rendering
329
+ - Implement font-display: swap to prevent FOIT
330
+ - Preload critical fonts (Inter, JetBrains Mono)
331
+ - Subset fonts to include only necessary characters
332
+ - Test font loading performance
333
+ - _Requirements: 9.3_
334
+
335
+ - [ ] 17.3 Implement code splitting and lazy loading
336
+ - Code-split large components (Monaco Editor, etc.)
337
+ - Lazy load non-critical components
338
+ - Implement route-based code splitting
339
+ - Minimize JavaScript bundle size
340
+ - _Requirements: 9.5_
341
+
342
+ - [ ] 17.4 Minimize layout shifts and optimize rendering
343
+ - Add explicit width/height to images and embeds
344
+ - Reserve space for dynamic content
345
+ - Optimize CSS to prevent layout thrashing
346
+ - Achieve CLS < 0.1 on all pages
347
+ - _Requirements: 9.4_
348
+
349
+ ---
350
+
351
+ ## Phase 7: Micro-interactions & Polish
352
+
353
+ - [ ] 18. Implement micro-interactions and animations
354
+ - Add subtle fade-in animations on scroll using Intersection Observer
355
+ - Implement smooth hover states with scale transforms
356
+ - Add loading states for async operations
357
+ - Create smooth page transitions
358
+ - _Requirements: 6.1, 6.3, 11.5_
359
+
360
+ - [ ] 19. Add loading states and error boundaries
361
+ - Implement skeleton screens for loading content
362
+ - Create error boundary components for runtime errors
363
+ - Add toast notifications for user actions
364
+ - Implement proper 404 and error pages
365
+ - _Requirements: 6.3, 6.4_
366
+
367
+ - [ ] 20. Enhance responsive design across breakpoints
368
+ - Test all pages on mobile (375x667, 414x896)
369
+ - Test on tablet (768x1024)
370
+ - Test on desktop (1366x768, 1920x1080)
371
+ - Fix any layout issues or overflow problems
372
+ - _Requirements: 8.1, 8.3_
373
+
374
+ ---
375
+
376
+ ## Phase 8: Strategic Content - Runtime Story & Architecture
377
+
378
+ - [ ] 24. Create runtime story and reference implementations
379
+ - [ ] 24.1 Add "How to Run OSSA Agents" section
380
+ - Create end-to-end runtime guide
381
+ - Document recommended architectures
382
+ - Add reference implementation (minimal runtime)
383
+ - Include deployment blueprint diagrams
384
+ - _Strategic Gap: No Clear Runtime Story_
385
+
386
+ - [ ] 24.2 Create stack-specific templates and guides
387
+ - OpenAI + Docker + K8s template
388
+ - LangChain integration template
389
+ - CrewAI integration template
390
+ - AWS deployment template
391
+ - Azure deployment template
392
+ - _Strategic Gap: No Clear Runtime Story_
393
+
394
+ - [ ] 24.3 Add architecture diagrams to homepage and docs
395
+ - System architecture diagram
396
+ - Agent execution flow diagram
397
+ - Capability invocation sequence diagram
398
+ - Multi-agent orchestration patterns
399
+ - Memory model integration points
400
+ - _Issue #45: Documentation Enhancements | Strategic Gap_
401
+
402
+ ---
403
+
404
+ ## Phase 9: Enterprise & Compliance Positioning
405
+
406
+ - [ ] 25. Create enterprise security and compliance documentation
407
+ - [ ] 25.1 Develop security reference guide
408
+ - Document security model
409
+ - Create threat model
410
+ - Define data boundary model
411
+ - Add security best practices
412
+ - _Strategic Gap: No Enterprise/Compliance Positioning_
413
+
414
+ - [ ] 25.2 Create compliance alignment matrix
415
+ - SOC2 compliance mapping
416
+ - FedRAMP compliance mapping
417
+ - HIPAA compliance mapping
418
+ - GDPR considerations
419
+ - Add compliance documentation page
420
+ - _Strategic Gap: No Enterprise/Compliance Positioning_
421
+
422
+ - [ ] 25.3 Build enterprise landing page
423
+ - Target: Enterprise architects, CTOs, compliance officers
424
+ - Security & compliance features
425
+ - Deployment patterns (Kubernetes, Serverless, On-prem, Air-gapped)
426
+ - Governance model
427
+ - SLA/support model (community)
428
+ - Enterprise contact CTA
429
+ - _Issue #45: Enterprise Landing Page | Strategic Gap_
430
+
431
+ ---
432
+
433
+ ## Phase 10: Governance & Community
434
+
435
+ - [ ] 26. Establish transparent governance documentation
436
+ - [ ] 26.1 Create governance page
437
+ - Document steering committee structure
438
+ - Define versioning policy
439
+ - Create deprecation policy
440
+ - Add RFC process documentation
441
+ - _Strategic Gap: Missing Governance Story_
442
+
443
+ - [ ] 26.2 Build public roadmap page
444
+ - Current version features
445
+ - Upcoming releases
446
+ - Long-term vision
447
+ - Community priorities
448
+ - Contribution opportunities
449
+ - _Strategic Gap: Missing Governance Story | Immediate Win_
450
+
451
+ - [ ] 26.3 Add community engagement pages
452
+ - Working groups structure
453
+ - Meeting schedules (OSSA Conference / WG Calls)
454
+ - Contribution guidelines
455
+ - Code of conduct
456
+ - _Strategic Gap: Missing Governance Story_
457
+
458
+ ---
459
+
460
+ ## Phase 11: OSSA Registry & Ecosystem
461
+
462
+ - [ ] 27. Design and implement OSSA Registry/Hub MVP
463
+ - [ ] 27.1 Create registry landing page
464
+ - Public registry interface
465
+ - Discoverable agent catalog
466
+ - Search and filter functionality
467
+ - Version browsing
468
+ - _Strategic Gap: No Registry / Package Ecosystem_
469
+
470
+ - [ ] 27.2 Build agent publishing workflow
471
+ - CLI publish command documentation
472
+ - GitHub template for agents
473
+ - Versioned artifacts system
474
+ - Publishing guidelines
475
+ - _Strategic Gap: No Registry / Package Ecosystem | Killer Feature_
476
+
477
+ - [ ] 27.3 Create OSSA Certified Integration program
478
+ - "OSSA Compatible" badge
479
+ - "OSSA Verified Runtime" badge
480
+ - Certification criteria
481
+ - Badge usage guidelines
482
+ - _Strategic Gap: Growth Flywheel_
483
+
484
+ ---
485
+
486
+ ## Phase 12: Interoperability Proof & Benchmarks
487
+
488
+ - [ ] 28. Create interoperability demonstrations and benchmarks
489
+ - [ ] 28.1 Build comparison matrix with evidence
490
+ - Identical agent exported to OpenAI Assistants
491
+ - Identical agent exported to LangChain
492
+ - Identical agent exported to CrewAI
493
+ - Performance comparison
494
+ - Fidelity comparison
495
+ - _Strategic Gap: No Benchmarks or Interop Proof_
496
+
497
+ - [ ] 28.2 Add migration case studies
498
+ - Real-world migration examples
499
+ - Time-to-migrate statistics
500
+ - Cost of rewrites quantification
501
+ - Complexity comparison table
502
+ - Before/after code examples
503
+ - _Strategic Gap: No Benchmarks or Interop Proof | Product Messaging_
504
+
505
+ - [ ] 28.3 Create "Migration in 5 minutes" demo
506
+ - Video walkthrough
507
+ - Step-by-step guide
508
+ - Live playground demo
509
+ - Import/export examples
510
+ - _Strategic Gap: Immediate Win | Developer Experience_
511
+
512
+ ---
513
+
514
+ ## Phase 13: Enhanced Documentation & Developer Experience
515
+
516
+ - [ ] 29. Expand technical documentation
517
+ - [ ] 29.1 Create comprehensive spec walkthrough
518
+ - Complete field-by-field documentation
519
+ - "How to model tools" guide
520
+ - "How to model memory" guide
521
+ - "How to model policy and safety" guide
522
+ - "Multi-agent patterns under OSSA" guide
523
+ - _Strategic Gap: Technical Documentation Gaps_
524
+
525
+ - [ ] 29.2 Add best practices library
526
+ - Design patterns
527
+ - Anti-patterns to avoid
528
+ - Performance optimization
529
+ - Security best practices
530
+ - Testing strategies
531
+ - _Strategic Gap: Technical Documentation Gaps_
532
+
533
+ - [ ] 29.3 Create tooling API reference
534
+ - CLI command reference
535
+ - API documentation (Redocly)
536
+ - SDK documentation
537
+ - Integration guides
538
+ - _Issue #33: No API docs | Strategic Gap_
539
+
540
+ - [ ] 30. Enhance playground and code examples
541
+ - [ ] 30.1 Upgrade playground functionality
542
+ - Import/export examples
543
+ - Live migration demos
544
+ - "Try OSSA on your existing agent" feature
545
+ - Template library expansion
546
+ - _Strategic Gap: Developer Experience Gaps_
547
+
548
+ - [ ] 30.2 Add code snippets for every integration
549
+ - OpenAI Assistants example with code
550
+ - CrewAI example with code
551
+ - LangGraph example with code
552
+ - Drupal module example with code
553
+ - Anthropic Claude example with code
554
+ - _Strategic Gap: Developer Experience Gaps_
555
+
556
+ ---
557
+
558
+ ## Phase 14: CI/CD & DevOps Integration
559
+
560
+ - [ ] 31. Create CI/CD templates and guides
561
+ - [ ] 31.1 Build GitLab CI/CD templates
562
+ - `osa validate` pipeline stage
563
+ - `osa export --to <runtime>` stage
564
+ - `docker build` integration
565
+ - `kubernetes deploy` integration
566
+ - Complete pipeline examples
567
+ - _Strategic Gap: GitLab CI/CD Templates_
568
+
569
+ - [ ] 31.2 Add deployment guides
570
+ - Kubernetes deployment guide
571
+ - Docker deployment guide
572
+ - Serverless deployment guide
573
+ - On-premise deployment guide
574
+ - Air-gapped deployment guide
575
+ - _Strategic Gap: Enterprise Adoption Enablers_
576
+
577
+ ---
578
+
579
+ ## Phase 15: Product Messaging & Positioning
580
+
581
+ - [ ] 32. Refine product messaging and positioning
582
+ - [ ] 32.1 Define clear persona targeting
583
+ - "Who OSSA is for" section
584
+ - "Who OSSA is not for" section
585
+ - Platform architects focus
586
+ - Enterprise AI teams focus
587
+ - Framework builders focus
588
+ - _Strategic Gap: Product Messaging Improvements_
589
+
590
+ - [ ] 32.2 Sharpen value proposition
591
+ - Update to: "The first interoperability standard for AI agents"
592
+ - Add quantitative pain points (cost of rewrites, time-to-migrate)
593
+ - Create complexity comparison table
594
+ - Highlight vendor lock-in costs
595
+ - _Strategic Gap: Product Messaging Improvements_
596
+
597
+ - [ ] 32.3 Build "Why OSSA vs Frameworks" comparison
598
+ - Detailed comparison table
599
+ - When to use OSSA vs framework directly
600
+ - Integration patterns
601
+ - Migration paths
602
+ - _Strategic Gap: Immediate Win_
603
+
604
+ ---
605
+
606
+ ## Phase 16: OSSA Starter Kits & Growth Flywheel
607
+
608
+ - [ ] 33. Create OSSA Starter Kits for common stacks
609
+ - [ ] 33.1 OpenAI + Docker + K8s starter kit
610
+ - Complete project template
611
+ - Configuration examples
612
+ - Deployment scripts
613
+ - Documentation
614
+ - _Strategic Gap: Growth Flywheel_
615
+
616
+ - [ ] 33.2 CrewAI + AWS starter kit
617
+ - Complete project template
618
+ - AWS deployment configuration
619
+ - Lambda/ECS examples
620
+ - Documentation
621
+ - _Strategic Gap: Growth Flywheel_
622
+
623
+ - [ ] 33.3 LangChain + Azure starter kit
624
+ - Complete project template
625
+ - Azure deployment configuration
626
+ - Container Apps examples
627
+ - Documentation
628
+ - _Strategic Gap: Growth Flywheel_
629
+
630
+ ---
631
+
632
+ ## Phase 17: Version 0.2.6 Updates (Issue #33)
633
+
634
+ - [ ] 34. Update website for v0.2.6 release
635
+ - [ ] 34.1 Update version numbers throughout site
636
+ - Homepage version references
637
+ - Documentation version selectors
638
+ - Schema page version
639
+ - Download links
640
+ - _Issue #33: Update website to reflect release of 0.2.6_
641
+
642
+ - [ ] 34.2 Update release notes and changelog
643
+ - Add v0.2.6 changelog entry
644
+ - Update release notes page
645
+ - Highlight new features
646
+ - Document breaking changes (if any)
647
+ - _Issue #33: Update website to reflect release of 0.2.6_
648
+
649
+ - [ ] 34.3 Verify all links and documentation
650
+ - Test all internal links
651
+ - Verify external links
652
+ - Check schema references
653
+ - Validate example code
654
+ - _Issue #33: Update website to reflect release of 0.2.6_
655
+
656
+ ---
657
+
658
+ ## Phase 18: Testing & Documentation
659
+
660
+ - [ ] 35. Set up automated testing infrastructure
661
+ - [ ] 35.1 Configure Lighthouse CI for performance testing
662
+ - Set up Lighthouse CI in GitHub Actions
663
+ - Configure thresholds (Performance > 90, Accessibility > 95)
664
+ - Run on every PR and deployment
665
+ - Create performance budget
666
+ - _Requirements: 9.1_
667
+
668
+ - [ ] 35.2 Set up accessibility testing
669
+ - Integrate axe-core for automated accessibility testing
670
+ - Run accessibility tests on every PR
671
+ - Perform manual keyboard navigation testing
672
+ - Test with screen readers (NVDA, VoiceOver)
673
+ - _Requirements: 7.1, 7.2, 7.3_
674
+
675
+ - [ ] 35.3 Implement visual regression testing
676
+ - Set up Percy or Chromatic for visual regression testing
677
+ - Capture screenshots of all component variants
678
+ - Run visual tests on every PR
679
+ - Review and approve visual changes
680
+ - _Requirements: 3.1, 3.2_
681
+
682
+ - [ ] 36. Create design system documentation
683
+ - Document all design tokens (colors, typography, spacing)
684
+ - Create component usage guidelines with examples
685
+ - Write accessibility guidelines for developers
686
+ - Document responsive design patterns
687
+ - _Requirements: 3.1, 3.2, 3.3_
688
+
689
+ - [ ] 37. Final cross-browser testing and QA
690
+ - Test on Chrome, Firefox, Safari, Edge
691
+ - Test on iOS Safari and Android Chrome
692
+ - Fix any browser-specific issues
693
+ - Verify all features work across browsers
694
+ - _Requirements: 8.1, 8.4_
695
+
696
+ ---
697
+
698
+ ## Success Criteria
699
+
700
+ **Quantitative Metrics:**
701
+
702
+ - Lighthouse Performance: > 90
703
+ - Lighthouse Accessibility: > 95
704
+ - Lighthouse Best Practices: > 90
705
+ - Lighthouse SEO: > 95
706
+ - WCAG 2.1 AA Compliance: 100%
707
+ - Core Web Vitals: LCP < 2.5s, FID < 100ms, CLS < 0.1
708
+
709
+ **Qualitative Metrics:**
710
+
711
+ - Brand consistency across all pages
712
+ - 80%+ of UI built from shared components
713
+ - New pages can be built in < 1 day
714
+ - Positive user feedback on design and usability
715
+
716
+ ---
717
+
718
+ ## Implementation Priority Matrix
719
+
720
+ ### 🔴 CRITICAL - Immediate Wins (Week 1-2)
721
+
722
+ - Phase 1: Design Token Foundation
723
+ - Phase 2: Core Component Library
724
+ - Phase 5: Homepage hero and comparison matrix
725
+ - Phase 17: v0.2.6 version updates
726
+ - Add architecture diagram to homepage
727
+ - Add "Why OSSA vs Frameworks" comparison table
728
+
729
+ ### 🟠 HIGH PRIORITY - Strategic Gaps (Week 3-6)
730
+
731
+ - Phase 8: Runtime Story & Architecture
732
+ - Phase 9: Enterprise & Compliance Positioning
733
+ - Phase 10: Governance & Community
734
+ - Phase 12: Interoperability Proof & Benchmarks
735
+ - Phase 15: Product Messaging & Positioning
736
+
737
+ ### 🟡 MEDIUM PRIORITY - Ecosystem Building (Week 7-10)
738
+
739
+ - Phase 11: OSSA Registry & Hub
740
+ - Phase 13: Enhanced Documentation
741
+ - Phase 14: CI/CD & DevOps Integration
742
+ - Phase 16: OSSA Starter Kits
743
+
744
+ ### 🟢 ONGOING - Quality & Polish (Week 11-14)
745
+
746
+ - Phase 3: Navigation & Layout
747
+ - Phase 4: Content & Code Components
748
+ - Phase 6: Accessibility & Performance
749
+ - Phase 7: Micro-interactions & Polish
750
+ - Phase 18: Testing & Documentation
751
+
752
+ ## Key Deliverables Summary
753
+
754
+ ### Content & Messaging
755
+
756
+ - ✅ Enterprise value proposition (portability, compliance, vendor independence)
757
+ - ✅ Comparison matrix (OSSA vs LangChain, AutoGen, MCP, Semantic Kernel)
758
+ - ✅ Clear persona targeting (Platform architects, Enterprise AI teams, Framework builders)
759
+ - ✅ "The first interoperability standard for AI agents" positioning
760
+ - ✅ Migration case studies with quantitative data
761
+
762
+ ### Technical Documentation
763
+
764
+ - ✅ Runtime story with reference implementations
765
+ - ✅ Architecture diagrams (system, execution flow, multi-agent patterns)
766
+ - ✅ Security model and threat model
767
+ - ✅ Compliance mapping (SOC2, FedRAMP, HIPAA)
768
+ - ✅ Complete spec walkthrough
769
+ - ✅ Best practices library
770
+ - ✅ CI/CD templates
771
+
772
+ ### Ecosystem & Community
773
+
774
+ - ✅ OSSA Registry/Hub MVP
775
+ - ✅ Governance documentation (steering committee, versioning, deprecation)
776
+ - ✅ Public roadmap
777
+ - ✅ OSSA Certified Integration program
778
+ - ✅ Starter kits for common stacks
779
+
780
+ ### Design System
781
+
782
+ - ✅ Complete component library (Button, Card, Form, Badge, etc.)
783
+ - ✅ Typography system (Display → H6)
784
+ - ✅ Color system with full scales (50-900)
785
+ - ✅ Accessibility compliance (WCAG 2.1 AA)
786
+ - ✅ Performance optimization (Lighthouse > 90)
787
+
788
+ ## Notes
789
+
790
+ - Each task builds incrementally on previous tasks
791
+ - Testing tasks are integrated throughout rather than at the end
792
+ - Focus on implementation-first: build features before comprehensive testing
793
+ - All tasks reference specific requirements from requirements.md
794
+ - Tasks are scoped to be actionable by a coding agent
795
+ - No deployment, user testing, or non-coding tasks included
796
+ - Strategic gaps addressed comprehensively across all phases
797
+ - Immediate wins identified for quick ROI
798
+ # Implementation Plan: Brand Identity MVP
799
+
800
+ - [-] 1. Enhance Button Component System
801
+ - Review existing Button component implementation
802
+ - Ensure all 6 variants are properly styled (primary, secondary, outline, ghost, danger, success)
803
+ - Add loading state with spinner animation
804
+ - Improve focus ring visibility for WCAG 2.1 AA compliance
805
+ - Add icon positioning support (left/right)
806
+ - _Requirements: 1.1, 1.2, 1.3, 1.4, 1.5_
807
+
808
+ - [x] 1.1 Write property test for Button accessibility
809
+ - **Property 1: Button accessibility**
810
+ - **Validates: Requirements 1.3**
811
+
812
+ - [ ] 1.2 Write unit tests for Button variants and states
813
+ - Test all 6 variants render correctly
814
+ - Test loading state displays spinner
815
+ - Test icon positioning (left/right)
816
+ - _Requirements: 1.1, 1.4, 1.5_
817
+
818
+ - [ ] 2. Create CodeBlock Component with Copy Functionality
819
+ - Create new CodeBlock component in `website/components/ui/CodeBlock.tsx`
820
+ - Implement syntax highlighting using existing library
821
+ - Add copy button in top-right corner with Lucide React icon
822
+ - Implement Clipboard API integration
823
+ - Add tooltip on hover ("Copy code")
824
+ - Add success feedback (checkmark icon for 2 seconds)
825
+ - Ensure proper scrolling for long code blocks
826
+ - _Requirements: 3.1, 3.2, 3.3, 3.4, 3.5_
827
+
828
+ - [ ] 2.1 Write property test for copy button feedback
829
+ - **Property 2: Copy button feedback**
830
+ - **Validates: Requirements 3.2, 3.4**
831
+
832
+ - [ ] 2.2 Write unit tests for CodeBlock component
833
+ - Test copy button functionality (mocked Clipboard API)
834
+ - Test tooltip display on hover
835
+ - Test success feedback timing
836
+ - Test error handling for unsupported browsers
837
+ - _Requirements: 3.2, 3.3, 3.4_
838
+
839
+ - [ ] 3. Implement Navigation Active States
840
+ - [ ] 3.1 Enhance Header component with active states
841
+ - Update `website/components/layout/Header.tsx`
842
+ - Add active state detection using Next.js `usePathname()` hook
843
+ - Apply distinct styling to active navigation items
844
+ - Ensure hover states are distinct from active states
845
+ - Ensure keyboard focus visibility
846
+ - _Requirements: 2.1, 2.3, 2.4_
847
+
848
+ - [ ] 3.2 Enhance Sidebar component with active states
849
+ - Update `website/components/layout/Sidebar.tsx`
850
+ - Add active state detection for current doc page
851
+ - Highlight active section in sidebar
852
+ - Implement smooth scroll to active item on page load
853
+ - _Requirements: 2.2_
854
+
855
+ - [ ] 3.3 Write property test for navigation active state uniqueness
856
+ - **Property 3: Navigation active state uniqueness**
857
+ - **Validates: Requirements 2.1**
858
+
859
+ - [ ] 3.4 Write property test for active state persistence
860
+ - **Property 5: Active state persistence**
861
+ - **Validates: Requirements 2.1, 2.2**
862
+
863
+ - [ ] 3.5 Write unit tests for active state logic
864
+ - Test pathname matching logic
865
+ - Test active state styling application
866
+ - Test edge cases (root path, nested paths)
867
+ - _Requirements: 2.1, 2.2_
868
+
869
+ - [ ] 4. Enhance Mobile Navigation UX
870
+ - Update `website/components/layout/MobileNav.tsx`
871
+ - Add smooth open/close animations using Tailwind transitions
872
+ - Implement body scroll lock when menu is open
873
+ - Add close on navigation functionality
874
+ - Add overlay click to dismiss
875
+ - Add active state indicators in mobile menu
876
+ - _Requirements: 5.1, 5.2, 5.3, 5.4, 5.5_
877
+
878
+ - [ ] 4.1 Write property test for mobile menu body scroll lock
879
+ - **Property 4: Mobile menu body scroll lock**
880
+ - **Validates: Requirements 5.2**
881
+
882
+ - [ ] 4.2 Write unit tests for mobile navigation
883
+ - Test menu open/close state management
884
+ - Test body scroll lock application/removal
885
+ - Test close on navigation
886
+ - Test overlay dismiss functionality
887
+ - _Requirements: 5.1, 5.2, 5.3, 5.4_
888
+
889
+ - [ ] 5. Update Homepage with Enterprise Messaging
890
+ - [ ] 5.1 Enhance HeroSection component
891
+ - Update `website/components/home/HeroSection.tsx`
892
+ - Update messaging to emphasize vendor-neutrality, compliance-ready, enterprise-grade
893
+ - Highlight key benefits: portability, compliance, governance, multi-runtime
894
+ - Ensure mobile responsiveness
895
+ - _Requirements: 4.1, 4.5_
896
+
897
+ - [ ] 5.2 Create ComparisonMatrix component
898
+ - Create new component at `website/components/home/ComparisonMatrix.tsx`
899
+ - Implement desktop table layout with all columns
900
+ - Implement mobile-friendly accordion or card layout
901
+ - Add visual indicators (checkmarks, X marks) using Lucide React icons
902
+ - Ensure responsive design with proper breakpoints
903
+ - _Requirements: 4.2, 4.4_
904
+
905
+ - [ ] 5.3 Enhance WhyItMatters component
906
+ - Update `website/components/home/WhyItMatters.tsx`
907
+ - Use Card components for each benefit
908
+ - Improve visual hierarchy with proper heading levels
909
+ - Add icons for each benefit using Lucide React
910
+ - Ensure proper spacing and contrast
911
+ - _Requirements: 4.3_
912
+
913
+ - [ ] 5.4 Update homepage page component
914
+ - Update `website/app/page.tsx`
915
+ - Integrate enhanced HeroSection
916
+ - Add ComparisonMatrix component
917
+ - Integrate enhanced WhyItMatters component
918
+ - Ensure proper section spacing and layout
919
+ - _Requirements: 4.1, 4.2, 4.3_
920
+
921
+ - [ ] 5.5 Write unit tests for homepage components
922
+ - Test HeroSection renders with correct messaging
923
+ - Test ComparisonMatrix renders all features
924
+ - Test WhyItMatters renders all benefits
925
+ - Test mobile responsive layouts
926
+ - _Requirements: 4.1, 4.2, 4.3, 4.4_
927
+
928
+ - [ ] 6. Ensure Accessibility Compliance
929
+ - [ ] 6.1 Audit and fix keyboard navigation
930
+ - Test all interactive elements with keyboard only
931
+ - Ensure visible focus indicators on all elements
932
+ - Verify focus order is logical
933
+ - Add focus-visible styles where missing
934
+ - _Requirements: 6.1_
935
+
936
+ - [ ] 6.2 Audit and fix ARIA labels
937
+ - Add ARIA labels to all interactive components
938
+ - Ensure screen reader compatibility
939
+ - Test with VoiceOver (macOS) or NVDA (Windows)
940
+ - _Requirements: 6.2_
941
+
942
+ - [ ] 6.3 Verify contrast ratios
943
+ - Check all text on colored backgrounds
944
+ - Ensure WCAG AA compliance (4.5:1 for normal text, 3:1 for large text)
945
+ - Fix any contrast issues found
946
+ - _Requirements: 6.3_
947
+
948
+ - [ ] 6.4 Add alt text to images
949
+ - Audit all images on homepage and navigation
950
+ - Add descriptive alt text where missing
951
+ - Ensure decorative images have empty alt attributes
952
+ - _Requirements: 6.5_
953
+
954
+ - [ ] 6.5 Write property test for contrast ratio compliance
955
+ - **Property 6: Contrast ratio compliance**
956
+ - **Validates: Requirements 6.3**
957
+
958
+ - [ ] 6.6 Write property test for ARIA label presence
959
+ - **Property 7: ARIA label presence**
960
+ - **Validates: Requirements 6.2**
961
+
962
+ - [ ] 6.7 Write integration tests for accessibility
963
+ - Test keyboard navigation flow
964
+ - Test screen reader announcements (mocked)
965
+ - Test focus management
966
+ - _Requirements: 6.1, 6.2_
967
+
968
+ - [ ] 7. Checkpoint - Ensure all tests pass
969
+ - Ensure all tests pass, ask the user if questions arise.
970
+
971
+ - [ ] 8. Manual Testing and Polish
972
+ - Test on iOS Safari and Android Chrome
973
+ - Test with keyboard only (no mouse)
974
+ - Test with screen reader
975
+ - Test in different viewport sizes (mobile, tablet, desktop)
976
+ - Test with reduced motion preferences
977
+ - Fix any issues found during manual testing
978
+ - _Requirements: All_
979
+
980
+ - [ ] 9. Final Checkpoint - Ensure all tests pass
981
+ - Ensure all tests pass, ask the user if questions arise.