@bluefly/openstandardagents 0.2.5-RC → 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 (238) hide show
  1. package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
  2. package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
  3. package/.github/workflows/dependabot-comment.yml +34 -0
  4. package/.github/workflows/pr-comment.yml +33 -0
  5. package/.husky/pre-commit +5 -0
  6. package/.kiro/config.json +21 -0
  7. package/.kiro/settings/mcp.json +61 -0
  8. package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
  9. package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
  10. package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
  11. package/.kiro/specs/{website-design-audit → website-brand-identity}/design.md +381 -0
  12. package/.kiro/specs/{website-design-audit → website-brand-identity}/requirements.md +88 -0
  13. package/.kiro/specs/website-brand-identity/tasks.md +981 -0
  14. package/CHANGELOG.md +23 -0
  15. package/README.md +12 -3
  16. package/bin/ossa-dev +42 -0
  17. package/bin/ossa-export +32 -0
  18. package/bin/ossa-generate +60 -0
  19. package/bin/ossa-health +40 -0
  20. package/bin/ossa-init +26 -0
  21. package/dist/repositories/schema.repository.d.ts.map +1 -1
  22. package/dist/repositories/schema.repository.js +15 -10
  23. package/dist/repositories/schema.repository.js.map +1 -1
  24. package/dist/services/github-sync/github-client.d.ts +14 -0
  25. package/dist/services/github-sync/github-client.d.ts.map +1 -0
  26. package/dist/services/github-sync/github-client.js +41 -0
  27. package/dist/services/github-sync/github-client.js.map +1 -0
  28. package/dist/services/github-sync/gitlab-client.d.ts +17 -0
  29. package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
  30. package/dist/services/github-sync/gitlab-client.js +42 -0
  31. package/dist/services/github-sync/gitlab-client.js.map +1 -0
  32. package/dist/services/github-sync/schemas.d.ts +46 -0
  33. package/dist/services/github-sync/schemas.d.ts.map +1 -0
  34. package/dist/services/github-sync/schemas.js +36 -0
  35. package/dist/services/github-sync/schemas.js.map +1 -0
  36. package/dist/services/github-sync/sync.service.d.ts +27 -0
  37. package/dist/services/github-sync/sync.service.d.ts.map +1 -0
  38. package/dist/services/github-sync/sync.service.js +99 -0
  39. package/dist/services/github-sync/sync.service.js.map +1 -0
  40. package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
  41. package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
  42. package/dist/services/runtime/claude/capability-mapper.js +245 -0
  43. package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
  44. package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
  45. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
  46. package/dist/services/runtime/claude/claude-adapter.js +287 -0
  47. package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
  48. package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
  49. package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
  50. package/dist/services/runtime/claude/manifest-parser.js +169 -0
  51. package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
  52. package/dist/services/runtime/claude/types.d.ts +115 -0
  53. package/dist/services/runtime/claude/types.d.ts.map +1 -0
  54. package/dist/services/runtime/claude/types.js +6 -0
  55. package/dist/services/runtime/claude/types.js.map +1 -0
  56. package/dist/services/validation.service.d.ts.map +1 -1
  57. package/dist/services/validation.service.js +12 -1
  58. package/dist/services/validation.service.js.map +1 -1
  59. package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  60. package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
  61. package/dist/spec/v0.2.6/README.md +72 -0
  62. package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  63. package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  64. package/dist/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
  65. package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  66. package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  67. package/dist/spec/v0.2.6-dev/README.md +75 -0
  68. package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  69. package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  70. package/dist/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6-dev/ossa-0.2.5.schema.json} +9 -9
  71. package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  72. package/{spec/v0.2.4/ossa-0.2.4-dev.schema.json → dist/spec/v0.2.6-dev/ossa-0.2.6-dev.schema.json} +9 -9
  73. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  74. package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
  75. package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  76. package/docs/brand-guide/01-brand-overview.md +37 -0
  77. package/docs/brand-guide/02-logo-usage.md +43 -0
  78. package/docs/brand-guide/03-color-palette.md +70 -0
  79. package/docs/brand-guide/04-typography.md +82 -0
  80. package/docs/brand-guide/05-voice-and-tone.md +108 -0
  81. package/docs/brand-guide/06-visual-elements.md +137 -0
  82. package/docs/brand-guide/07-application-examples.md +153 -0
  83. package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
  84. package/docs/brand-guide/OssaLogo/brand.af +0 -0
  85. package/docs/brand-guide/README.md +107 -0
  86. package/docs/comparison.md +315 -0
  87. package/docs/operations/automation-roadmap.md +245 -0
  88. package/docs/operations/github-sync-strategy.md +357 -0
  89. package/examples/anthropic/claude-assistant.ossa.json +5 -4
  90. package/examples/autogen/multi-agent.ossa.json +6 -4
  91. package/examples/crewai/research-team.ossa.json +14 -5
  92. package/examples/cursor/code-review-agent.ossa.json +21 -6
  93. package/examples/langchain/chain-agent.ossa.json +21 -5
  94. package/examples/langflow/workflow-agent.ossa.json +2 -3
  95. package/examples/langgraph/state-machine-agent.ossa.json +2 -3
  96. package/examples/llamaindex/rag-agent.ossa.json +2 -3
  97. package/examples/openai/multi-tool-agent.ossa.json +32 -9
  98. package/examples/openai/swarm-agent.ossa.json +18 -5
  99. package/examples/vercel/edge-agent.ossa.json +5 -4
  100. package/openapi/github-sync.yaml +115 -0
  101. package/package.json +25 -4
  102. package/scripts/README.md +103 -0
  103. package/scripts/auto-rebase-mrs.ts +106 -0
  104. package/scripts/batch-dependabot.sh +57 -0
  105. package/scripts/configure-gitlab-branch-protection.ts +95 -0
  106. package/scripts/create-issue-helper.ts +238 -0
  107. package/scripts/create-milestone-issue.ts +73 -0
  108. package/scripts/fix-schema-formats.js +82 -0
  109. package/scripts/generate-agents-catalog.ts +77 -0
  110. package/scripts/generate-api-docs.ts +218 -0
  111. package/scripts/generate-cli-docs.ts +410 -0
  112. package/scripts/generate-config-docs.ts +109 -0
  113. package/scripts/generate-errors-docs.ts +76 -0
  114. package/scripts/generate-examples-docs.ts +99 -0
  115. package/scripts/generate-schema-docs.ts +296 -0
  116. package/scripts/generate-types-docs.ts +48 -0
  117. package/scripts/lowercase-docs.ts +43 -0
  118. package/scripts/manage-milestone-mrs.ts +279 -0
  119. package/scripts/rebase-all-mrs.sh +75 -0
  120. package/scripts/sync-github-pr.sh +48 -0
  121. package/scripts/sync-version.js +40 -0
  122. package/scripts/sync-wiki.sh +50 -0
  123. package/scripts/validate-all.js +127 -0
  124. package/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  125. package/spec/v0.2.6/CHANGELOG.md +401 -0
  126. package/spec/v0.2.6/README.md +72 -0
  127. package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  128. package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  129. package/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
  130. package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  131. package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  132. package/spec/v0.2.6-dev/README.md +75 -0
  133. package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  134. package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  135. package/spec/v0.2.6-dev/ossa-0.2.5.schema.json +1696 -0
  136. package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  137. package/spec/v0.2.6-dev/ossa-0.2.6-dev.schema.json +1696 -0
  138. package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  139. package/spec/v0.2.7/core/agentgraph.md +324 -0
  140. package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  141. package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +445 -0
  142. package/website/app/about/page.tsx +53 -44
  143. package/website/app/ecosystem/page.tsx +146 -111
  144. package/website/app/globals.scss +256 -21
  145. package/website/app/page.tsx +394 -182
  146. package/website/app/page.tsx.bak +679 -0
  147. package/website/app/page.tsx.bak2 +649 -0
  148. package/website/app/schema/page.tsx +3 -3
  149. package/website/app/specification/page.tsx +1 -1
  150. package/website/components/layout/Header.tsx +27 -23
  151. package/website/components/ui/Badge.tsx +82 -0
  152. package/website/components/ui/Button.tsx +116 -0
  153. package/website/components/ui/Card.tsx +167 -0
  154. package/website/components/ui/Checkbox.tsx +141 -0
  155. package/website/components/ui/Input.tsx +169 -0
  156. package/website/components/ui/Radio.tsx +141 -0
  157. package/website/components/ui/Select.tsx +182 -0
  158. package/website/components/ui/Tag.tsx +158 -0
  159. package/website/components/ui/Textarea.tsx +195 -0
  160. package/website/components/ui/index.ts +11 -0
  161. package/website/content/docs/{00-HOME.md → 00-home.md} +1 -1
  162. package/website/content/docs/agents/catalog.md +28 -0
  163. package/website/content/docs/{AIFlow-Framework-Integration-with-OSSA.md → aiflow-framework-integration-with-ossa.md} +2 -2
  164. package/website/content/docs/api-reference/index.md +38 -0
  165. package/website/content/docs/api-reference/ossa-core-api.md +634 -0
  166. package/website/content/docs/api-reference/ossa-registry-api.md +515 -0
  167. package/website/content/docs/api-reference/unified-agent-gateway.md +599 -0
  168. package/website/content/docs/cli-reference/index.md +111 -0
  169. package/website/content/docs/cli-reference/ossa-agents.md +70 -0
  170. package/website/content/docs/cli-reference/ossa-export.md +56 -0
  171. package/website/content/docs/cli-reference/ossa-generate.md +66 -0
  172. package/website/content/docs/cli-reference/ossa-gitlab-agent.md +57 -0
  173. package/website/content/docs/cli-reference/ossa-import.md +56 -0
  174. package/website/content/docs/cli-reference/ossa-init.md +57 -0
  175. package/website/content/docs/cli-reference/ossa-migrate.md +62 -0
  176. package/website/content/docs/cli-reference/ossa-run.md +66 -0
  177. package/website/content/docs/cli-reference/ossa-schema.md +57 -0
  178. package/website/content/docs/cli-reference/ossa-setup.md +57 -0
  179. package/website/content/docs/cli-reference/ossa-validate.md +66 -0
  180. package/website/content/docs/configuration/index.md +97 -0
  181. package/website/content/docs/deployment/github-mirroring.md +924 -0
  182. package/website/content/docs/documentation.md +100 -0
  183. package/website/content/docs/ecosystem/framework-support.md +551 -9
  184. package/website/content/docs/errors/index.md +10 -0
  185. package/website/content/docs/examples/{AIFlow-Framework-Integration-with-OSSA.md → aiflow-framework-integration-with-ossa.md} +2 -2
  186. package/website/content/docs/examples/catalog.md +300 -0
  187. package/website/content/docs/for-audiences/{Students-Researchers.md → students-researchers.md} +1 -1
  188. package/website/content/docs/getting-started/{Installation.md → installation.md} +1 -1
  189. package/website/content/docs/getting-started.md +1 -1
  190. package/website/content/docs/integrations/aiflow.md +2 -2
  191. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +5 -5
  192. package/website/content/docs/migration-guides/crewai-to-ossa.md +3 -3
  193. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +7 -7
  194. package/website/content/docs/migration-guides/langchain-to-ossa.md +4 -4
  195. package/website/content/docs/openapi-extensions/index.md +1 -1
  196. package/website/content/docs/ossa-compliant-badge.md +1 -1
  197. package/website/content/docs/pre-release/index.md +5 -5
  198. package/website/content/docs/releases/v0.2.6.md +99 -0
  199. package/website/content/docs/schema-reference/agent-capabilities.md +50 -0
  200. package/website/content/docs/schema-reference/agent-id.md +52 -0
  201. package/website/content/docs/schema-reference/agent-name.md +50 -0
  202. package/website/content/docs/schema-reference/agent-role.md +54 -0
  203. package/website/content/docs/schema-reference/agent-version.md +50 -0
  204. package/website/content/docs/schema-reference/index.md +26 -157
  205. package/website/content/docs/types-reference/index.md +105 -0
  206. package/website/content/docs/versioning.md +3 -3
  207. package/website/dev.sh +53 -0
  208. package/website/docker-compose.dev.yml +36 -0
  209. package/website/lib/version.ts +1 -1
  210. package/website/lib/versions.json +45 -20
  211. package/website/package.json +1 -1
  212. package/website/styles/_spacing.scss +453 -0
  213. package/website/styles/_tokens.scss +245 -0
  214. package/website/styles/_typography.scss +361 -0
  215. package/website/styles/_variables.scss +270 -19
  216. package/website/tailwind.config.ts +113 -79
  217. package/.kiro/specs/agent-buildkit-templates/design.md +0 -495
  218. package/.kiro/specs/agent-buildkit-templates/requirements.md +0 -165
  219. package/.kiro/specs/kiro-ide-supercharger/README.md +0 -202
  220. package/.kiro/specs/kiro-ide-supercharger/design.md +0 -1005
  221. package/.kiro/specs/kiro-ide-supercharger/requirements.md +0 -141
  222. package/.kiro/specs/kiro-ide-supercharger/tasks.md +0 -507
  223. package/docs/issue-19-completion-summary.md +0 -648
  224. package/docs/issue-19-validation.md +0 -351
  225. package/website/content/docs/Examples.md +0 -71
  226. package/website/content/docs/OpenAPI-Extensions.md +0 -934
  227. package/website/content/docs/core-concepts/Project-Structure.md +0 -348
  228. package/website/content/docs/examples/Migration-Guides.md +0 -214
  229. package/website/content/docs/for-audiences/Architects.md +0 -224
  230. package/website/content/docs/for-audiences/Developers.md +0 -220
  231. package/website/content/docs/for-audiences/Enterprises.md +0 -256
  232. package/website/content/docs/getting-started/5-Minute-Overview.md +0 -85
  233. package/website/content/docs/getting-started/First-Agent.md +0 -196
  234. package/website/content/docs/getting-started/Hello-World.md +0 -184
  235. package/website/content/docs/migration-guides/00-INDEX.md +0 -76
  236. package/website/content/docs/migration-guides/README.md +0 -133
  237. /package/dist/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
  238. /package/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
@@ -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
@@ -0,0 +1,153 @@
1
+ # OSSA Brand Application Examples
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Website Hero
6
+
7
+ ```html
8
+ <section class="hero bg-gradient-hero py-24 text-center">
9
+ <img src="/brand/ossa-logo.svg" alt="OSSA Logo" class="h-32 mx-auto mb-8">
10
+ <h1 class="text-display font-extrabold text-gray-900 mb-6">
11
+ The <span class="gradient-text">OpenAPI</span> for AI Agents
12
+ </h1>
13
+ <p class="text-body-large text-gray-700 max-w-3xl mx-auto mb-12">
14
+ Universal specification standard for interoperable AI agents
15
+ </p>
16
+ <div class="flex gap-4 justify-center">
17
+ <a href="#start" class="btn-primary">Get Started</a>
18
+ <a href="/docs" class="btn-outline">Documentation</a>
19
+ </div>
20
+ </section>
21
+ ```
22
+
23
+ ## Feature Cards
24
+
25
+ ```html
26
+ <div class="card card-interactive">
27
+ <div class="icon-container bg-primary-100 rounded-lg p-3 mb-4">
28
+ <svg class="icon-24 text-primary-600"><!-- Icon --></svg>
29
+ </div>
30
+ <h3 class="text-h4 font-semibold mb-3">Vendor-Neutral</h3>
31
+ <p class="text-body text-gray-700">
32
+ No vendor lock-in. Deploy anywhere, switch frameworks anytime.
33
+ </p>
34
+ </div>
35
+ ```
36
+
37
+ ## Navigation Header
38
+
39
+ ```html
40
+ <header class="sticky top-0 bg-white/95 backdrop-blur border-b border-gray-200">
41
+ <div class="container flex items-center justify-between h-16">
42
+ <a href="/" class="flex items-center gap-3">
43
+ <img src="/brand/ossa-logo.svg" alt="OSSA" class="h-8">
44
+ <div>
45
+ <div class="font-bold text-lg text-primary-600">OSSA</div>
46
+ <div class="text-xs text-gray-500">AI Agent Standard</div>
47
+ </div>
48
+ </a>
49
+ <nav class="flex gap-8">
50
+ <a href="/docs" class="nav-link active">Docs</a>
51
+ <a href="/examples" class="nav-link">Examples</a>
52
+ </nav>
53
+ <a href="#start" class="btn-primary">Get Started</a>
54
+ </div>
55
+ </header>
56
+ ```
57
+
58
+ ## Documentation Page
59
+
60
+ ```html
61
+ <div class="docs-layout flex">
62
+ <aside class="sidebar w-64 border-r p-6">
63
+ <a href="#" class="sidebar-link active">Installation</a>
64
+ <a href="#" class="sidebar-link">Quick Start</a>
65
+ </aside>
66
+ <main class="flex-1 max-w-4xl p-12">
67
+ <h1 class="text-h1 mb-6">Installation</h1>
68
+ <p class="text-body mb-4">Install OSSA using npm:</p>
69
+ <pre class="code-block"><code>npm install -g @bluefly/openstandardagents</code></pre>
70
+ </main>
71
+ </div>
72
+ ```
73
+
74
+ ## Social Media
75
+
76
+ **Twitter Card (1200×675px):**
77
+ - Background: Gradient or white
78
+ - Logo: 200px centered
79
+ - Title: H2, bold
80
+ - Description: Body text
81
+ - CTA button
82
+ - URL at bottom
83
+
84
+ **GitHub Preview (1280×640px):**
85
+ - Logo + "OSSA" + tagline
86
+ - Large headline
87
+ - Key features (checkmarks)
88
+ - Repository URL
89
+
90
+ ## Email Template
91
+
92
+ ```html
93
+ <table width="600" cellpadding="0" cellspacing="0">
94
+ <!-- Header with gradient background -->
95
+ <tr><td style="padding: 32px; background: linear-gradient(135deg, #1CB9ED, #4A3ECD, #9060EA);">
96
+ <img src="logo-white.svg" alt="OSSA" width="120">
97
+ </td></tr>
98
+
99
+ <!-- Content -->
100
+ <tr><td style="padding: 32px; background: white;">
101
+ <h2 style="color: #4A3ECD;">What's New</h2>
102
+ <p style="color: #374151;">OSSA v0.2.5 released...</p>
103
+ <a href="..." style="display: inline-block; padding: 12px 32px;
104
+ background: #4A3ECD; color: white; border-radius: 8px;">
105
+ Get Started
106
+ </a>
107
+ </td></tr>
108
+
109
+ <!-- Footer -->
110
+ <tr><td style="padding: 24px; background: #F3F4F6; text-align: center;">
111
+ <p style="color: #6B7280;">openstandardagents.org</p>
112
+ </td></tr>
113
+ </table>
114
+ ```
115
+
116
+ ## Presentation Slides
117
+
118
+ **Title Slide:**
119
+ - Centered logo (180px)
120
+ - Title: Display size, gradient text option
121
+ - Subtitle: H3 size, gray
122
+ - Metadata: Small text at bottom
123
+
124
+ **Content Slide:**
125
+ - Small logo + title in header
126
+ - Bulleted list with icons
127
+ - Code/diagram boxes
128
+ - Footer: URL + social
129
+
130
+ ## README Badges
131
+
132
+ ```markdown
133
+ ![OSSA Compliant](https://img.shields.io/badge/OSSA-Compliant-4A3ECD)
134
+ ![Version](https://img.shields.io/badge/OSSA-v0.2.5--RC-1CB9ED)
135
+ ![Vendor Neutral](https://img.shields.io/badge/Vendor-Neutral-10B981)
136
+ ```
137
+
138
+ ## Brand Assets
139
+
140
+ **Request full package:**
141
+ - Email: design@openstandardagents.org
142
+ - Includes: Logos (all variants), color swatches, templates
143
+ - Formats: SVG, PNG, AI, Figma
144
+
145
+ ## Checklist
146
+
147
+ ✅ Logo: Correct variant, minimum size
148
+ ✅ Colors: Approved palette, contrast requirements
149
+ ✅ Typography: Inter/JetBrains Mono, correct weights
150
+ ✅ Spacing: 4px grid system
151
+ ✅ Accessibility: WCAG AA minimum (AAA preferred)
152
+ ✅ Responsive: Mobile, tablet, desktop
153
+ ✅ Tone: Professional, clear, confident
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg width="100%" height="100%" viewBox="0 0 284 180" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
4
+ <g id="Layer3">
5
+ </g>
6
+ <g id="Artboard1" transform="matrix(0.959459,0,0,0.967742,-85.391892,-77.419355)">
7
+ <rect x="89" y="80" width="296" height="186" style="fill:none;"/>
8
+ <g id="Layer2" transform="matrix(1.042254,0,0,1.033333,-98.605634,44.866667)">
9
+ <g transform="matrix(1,0,0,1,-4,3)">
10
+ <path d="M360.304,111.534C363.113,108.192 389.309,70.107 418.113,69.792C455.004,69.388 453.98,85.001 454,85C411.09,80.447 406.306,113.749 391,127C376.213,128.875 359.884,111.957 360.304,111.534Z" style="fill:url(#_Linear1);"/>
11
+ </g>
12
+ <path d="M387,130C363.955,129.387 356.634,111.656 343.218,92.638C330.132,74.086 315.144,42 265,42C248.667,42 218,47 196,79C177.551,105.835 180.795,160.269 198,181C212.195,198.104 235.087,219.856 272.671,207.843C285.88,203.621 300.902,195.229 318,181C308.173,174.775 295,164 295,164C295,164 280.632,185.275 257,185C187.717,184.194 202.028,62.709 261,62C318.068,61.314 316.755,172.294 387,130Z" style="fill:url(#_Linear2);"/>
13
+ <path d="M237,121C298.486,85.797 306.507,159.426 345.704,159.426C369.233,159.426 379.051,151.385 430,113C433.734,111.659 461,183 461,183C455.02,189.367 449.324,189.969 444,183C440.77,151.879 425.801,136.49 421,139C421,139 382.667,187.667 338,186C287.813,183.443 267.695,115.583 237,121Z" style="fill:url(#_Linear3);"/>
14
+ </g>
15
+ </g>
16
+ <defs>
17
+ <linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-38,11,-11,-38,440,80)"><stop offset="0" style="stop-color:rgb(74,62,205);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(116,82,222);stop-opacity:1"/></linearGradient>
18
+ <linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-104,82,-82,-104,296,85)"><stop offset="0" style="stop-color:rgb(144,96,234);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(74,62,205);stop-opacity:1"/></linearGradient>
19
+ <linearGradient id="_Linear3" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-222,-64,64,-222,461,183)"><stop offset="0" style="stop-color:rgb(26,188,237);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(101,78,217);stop-opacity:1"/></linearGradient>
20
+ </defs>
21
+ </svg>
@@ -0,0 +1,107 @@
1
+ # OSSA Brand Guide
2
+
3
+ > **Version 1.0.0** | Last Updated: November 2025
4
+
5
+ Official brand guidelines for the Open Standard for Scalable AI Agents (OSSA).
6
+
7
+ ## Table of Contents
8
+
9
+ | Section | Description |
10
+ |---------|-------------|
11
+ | [01. Brand Overview](./01-brand-overview.md) | Mission, vision, values, positioning |
12
+ | [02. Logo Usage](./02-logo-usage.md) | Logo variants, sizing, usage rules |
13
+ | [03. Color Palette](./03-color-palette.md) | Brand colors, semantic colors, gradients |
14
+ | [04. Typography](./04-typography.md) | Font families, type scale, usage guidelines |
15
+ | [05. Voice & Tone](./05-voice-and-tone.md) | Writing style, tone variations, messaging |
16
+ | [06. Visual Elements](./06-visual-elements.md) | Icons, buttons, spacing, animations |
17
+ | [07. Application Examples](./07-application-examples.md) | Real-world implementation examples |
18
+
19
+ ## Brand at a Glance
20
+
21
+ **Name:** OSSA (Open Standard for Scalable AI Agents)
22
+ **Tagline:** "The OpenAPI for AI Agents"
23
+ **Domain:** https://openstandardagents.org
24
+
25
+ ### Colors
26
+
27
+ - **Primary:** Deep Purple (#4A3ECD)
28
+ - **Secondary:** Cyan Blue (#1CB9ED)
29
+ - **Accent:** Light Purple (#9060EA)
30
+ - **Neutrals:** Gray scale (#F9FAFB - #111827)
31
+
32
+ ### Typography
33
+
34
+ - **Primary:** Inter (Sans-serif)
35
+ - **Monospace:** JetBrains Mono
36
+
37
+ ### Logo
38
+
39
+ **Location:** `/website/public/brand/ossa-logo.svg`
40
+ **Minimum Size:** 120px width (digital), 1 inch (print)
41
+
42
+ ## Core Principles
43
+
44
+ 1. **Open & Vendor-Neutral** - Community-driven, no vendor lock-in
45
+ 2. **Interoperable** - Common language across all frameworks
46
+ 3. **Trustworthy** - Compliance-ready, enterprise-grade
47
+ 4. **Simple & Practical** - Clear specification, production-ready
48
+
49
+ ## Voice
50
+
51
+ **Professional, Clear, Confident, Inclusive, Practical**
52
+
53
+ ## Key Message
54
+
55
+ **"The OpenAPI for AI Agents"**
56
+
57
+ OSSA provides a universal specification standard that makes AI agents interoperable across all platforms, frameworks, and runtimes.
58
+
59
+ ## Quick Reference
60
+
61
+ ### Dos
62
+
63
+ ✅ Use approved color palette and gradients
64
+ ✅ Follow typography hierarchy and sizing
65
+ ✅ Respect logo clear space and minimum sizes
66
+ ✅ Write in active voice with clear language
67
+ ✅ Maintain WCAG AA accessibility (AAA preferred)
68
+ ✅ Provide working code examples
69
+
70
+ ### Don'ts
71
+
72
+ ❌ Modify logo colors or proportions
73
+ ❌ Use colors outside approved palette
74
+ ❌ Mix font families
75
+ ❌ Use exclusive language ("obviously," "simply")
76
+ ❌ Make unsubstantiated claims
77
+ ❌ Violate accessibility guidelines
78
+
79
+ ## Resources
80
+
81
+ ### Design Assets
82
+
83
+ **Logo:** `/website/public/brand/ossa-logo.svg`
84
+ **Colors:** `website/styles/_variables.scss`
85
+ **Website:** https://openstandardagents.org
86
+
87
+ ### Request Full Package
88
+
89
+ **Contact:** design@openstandardagents.org
90
+ **Includes:** All logo variants, color swatches, templates
91
+ **Formats:** SVG, PNG, AI, Figma
92
+
93
+ ## Support
94
+
95
+ **Questions:** design@openstandardagents.org
96
+ **Documentation:** https://openstandardagents.org/brand
97
+ **Issues:** https://github.com/blueflyio/openstandardagents/issues
98
+
99
+ ## License
100
+
101
+ Creative Commons Attribution 4.0 International (CC BY 4.0)
102
+
103
+ **Trademark:** "OSSA" and the OSSA logo are trademarks of the OSSA project.
104
+
105
+ ---
106
+
107
+ **Ready to get started?** Pick a section above and dive in!