@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,99 @@
1
+ # OSSA v0.2.6 Release Notes
2
+
3
+ **Release Date:** November 26, 2025
4
+ **Type:** Bug Fixes & Documentation
5
+
6
+ ## Overview
7
+
8
+ Version 0.2.6 focuses on critical bug fixes, documentation improvements, and website enhancements to improve the developer experience and project stability.
9
+
10
+ ## What's New
11
+
12
+ ### Website Enhancements
13
+
14
+ #### Brand Identity & Design System
15
+ - **New Design Token System**: Comprehensive color, typography, and spacing tokens
16
+ - **Component Library**: Button, Card, and Badge components with full accessibility support
17
+ - **Enterprise Messaging**: Updated homepage with vendor-neutral, compliance-ready positioning
18
+ - **Comparison Matrix**: Visual comparison of OSSA vs LangChain, AutoGen, MCP, and Semantic Kernel
19
+
20
+ #### Improved User Experience
21
+ - Mobile-optimized typography and responsive design
22
+ - Enhanced call-to-action buttons with better visual hierarchy
23
+ - Improved contrast and WCAG 2.1 AA compliance
24
+ - Card-based layouts across all pages
25
+
26
+ ### Bug Fixes
27
+
28
+ - Fixed website deployment and version display issues
29
+ - Resolved spec directory structure inconsistencies
30
+ - Corrected version references across documentation
31
+
32
+ ### Documentation
33
+
34
+ - Updated all version references to 0.2.6
35
+ - Improved specification documentation
36
+ - Enhanced integration guides
37
+
38
+ ## Breaking Changes
39
+
40
+ None. This is a backward-compatible release.
41
+
42
+ ## Migration Guide
43
+
44
+ No migration required. Update your package:
45
+
46
+ ```bash
47
+ npm install @bluefly/openstandardagents@0.2.6
48
+ ```
49
+
50
+ ## Upgrade Instructions
51
+
52
+ ### For Existing Projects
53
+
54
+ ```bash
55
+ # Update package
56
+ npm install @bluefly/openstandardagents@latest
57
+
58
+ # Verify installation
59
+ ossa --version
60
+ ```
61
+
62
+ ### For New Projects
63
+
64
+ ```bash
65
+ # Install globally
66
+ npm install -g @bluefly/openstandardagents
67
+
68
+ # Create new agent
69
+ ossa init my-agent
70
+ ```
71
+
72
+ ## What's Next
73
+
74
+ ### v0.2.7 - Multi-Agent & Adapters
75
+ - Enhanced multi-agent orchestration
76
+ - Additional LLM provider integrations (Mistral Devstral)
77
+ - Improved adapter system
78
+
79
+ ### v0.2.8 - Developer Experience
80
+ - CLI enhancements
81
+ - Better error messages
82
+ - Improved validation feedback
83
+
84
+ ## Contributors
85
+
86
+ Thank you to all contributors who made this release possible!
87
+
88
+ ## Resources
89
+
90
+ - [Full Changelog](https://gitlab.com/blueflyio/openstandardagents/-/blob/main/CHANGELOG.md)
91
+ - [Documentation](https://openstandardagents.org/docs)
92
+ - [Examples](https://openstandardagents.org/examples)
93
+ - [Issue Tracker](https://gitlab.com/blueflyio/openstandardagents/-/issues)
94
+
95
+ ## Support
96
+
97
+ - [GitLab Issues](https://gitlab.com/blueflyio/openstandardagents/-/issues)
98
+ - [Documentation](https://openstandardagents.org/docs)
99
+ - [Community](https://gitlab.com/blueflyio/openstandardagents)
@@ -0,0 +1,50 @@
1
+ # agent.capabilities
2
+
3
+ **Type**: `string`
4
+ **Required**: Yes
5
+
6
+ ## Description
7
+
8
+ The agent.capabilities field
9
+
10
+ ## Why This Field Exists
11
+
12
+ Define what the agent can do, enabling capability-based routing and discovery
13
+
14
+ ## How to Use
15
+
16
+ List all capabilities with input/output schemas and descriptions
17
+
18
+ ## Where It's Used
19
+
20
+ Used by orchestrators to route tasks and by registry for discovery
21
+
22
+ ## Examples
23
+
24
+ ```yaml
25
+ agent.capabilities: process_data
26
+ ```
27
+
28
+ ```yaml
29
+ agent.capabilities: validate_compliance
30
+ ```
31
+
32
+ ```yaml
33
+ agent.capabilities: generate_report
34
+ ```
35
+
36
+ ## Validation
37
+
38
+ ```bash
39
+ ossa validate agent.ossa.yaml
40
+ ```
41
+
42
+ ## Related Fields
43
+
44
+ - [agent.tools](./agent-tools.md)
45
+ - [agent.role](./agent-role.md)
46
+
47
+ ## Related Documentation
48
+
49
+ - [defining-capabilities](../guides/defining-capabilities.md)
50
+
@@ -0,0 +1,52 @@
1
+ # agent.id
2
+
3
+ **Type**: `string`
4
+ **Required**: Yes
5
+
6
+ ## Description
7
+
8
+ The agent.id field
9
+
10
+ ## Why This Field Exists
11
+
12
+ Unique identifier for agent registration, API routing, and inter-agent communication
13
+
14
+ ## How to Use
15
+
16
+ Use DNS-1123 subdomain format: lowercase alphanumeric with hyphens, max 63 chars
17
+
18
+ ## Where It's Used
19
+
20
+ Used in API endpoints (/agents/{id}), Kubernetes resources, and registry URLs
21
+
22
+ ## Examples
23
+
24
+ ```yaml
25
+ agent.id: my-agent
26
+ ```
27
+
28
+ ```yaml
29
+ agent.id: data-processor-v2
30
+ ```
31
+
32
+ ```yaml
33
+ agent.id: compliance-checker-prod
34
+ ```
35
+
36
+ ## Validation
37
+
38
+ ```bash
39
+ ossa validate agent.ossa.yaml
40
+ ```
41
+
42
+ ## Related Fields
43
+
44
+ - [agent.name](./agent-name.md)
45
+ - [agent.version](./agent-version.md)
46
+ - [agent.role](./agent-role.md)
47
+
48
+ ## Related Documentation
49
+
50
+ - [ossa-validate](../cli-reference/ossa-validate.md)
51
+ - [core-api](../api-reference/core-api.md)
52
+
@@ -0,0 +1,50 @@
1
+ # agent.name
2
+
3
+ **Type**: `string`
4
+ **Required**: Yes
5
+
6
+ ## Description
7
+
8
+ The agent.name field
9
+
10
+ ## Why This Field Exists
11
+
12
+ Human-readable name for display in UIs and documentation
13
+
14
+ ## How to Use
15
+
16
+ Use descriptive names that clearly indicate the agent's purpose
17
+
18
+ ## Where It's Used
19
+
20
+ Displayed in agent lists, dashboards, and documentation
21
+
22
+ ## Examples
23
+
24
+ ```yaml
25
+ agent.name: Data Processing Agent
26
+ ```
27
+
28
+ ```yaml
29
+ agent.name: Compliance Checker
30
+ ```
31
+
32
+ ```yaml
33
+ agent.name: Customer Support Bot
34
+ ```
35
+
36
+ ## Validation
37
+
38
+ ```bash
39
+ ossa validate agent.ossa.yaml
40
+ ```
41
+
42
+ ## Related Fields
43
+
44
+ - [agent.id](./agent-id.md)
45
+ - [agent.description](./agent-description.md)
46
+
47
+ ## Related Documentation
48
+
49
+ - [creating-agents](../guides/creating-agents.md)
50
+
@@ -0,0 +1,54 @@
1
+ # agent.role
2
+
3
+ **Type**: `string`
4
+ **Required**: Yes
5
+
6
+ ## Description
7
+
8
+ The agent.role field
9
+
10
+ ## Why This Field Exists
11
+
12
+ Classify agents by their function in the system for routing and orchestration
13
+
14
+ ## How to Use
15
+
16
+ Choose from predefined roles or use custom roles
17
+
18
+ ## Where It's Used
19
+
20
+ Used for agent discovery, filtering, and orchestration patterns
21
+
22
+ ## Examples
23
+
24
+ ```yaml
25
+ agent.role: worker
26
+ ```
27
+
28
+ ```yaml
29
+ agent.role: orchestrator
30
+ ```
31
+
32
+ ```yaml
33
+ agent.role: compliance
34
+ ```
35
+
36
+ ```yaml
37
+ agent.role: monitor
38
+ ```
39
+
40
+ ## Validation
41
+
42
+ ```bash
43
+ ossa validate agent.ossa.yaml
44
+ ```
45
+
46
+ ## Related Fields
47
+
48
+ - [agent.capabilities](./agent-capabilities.md)
49
+ - [agent.taxonomy](./agent-taxonomy.md)
50
+
51
+ ## Related Documentation
52
+
53
+ - [multi-agent-systems](../architecture/multi-agent-systems.md)
54
+
@@ -0,0 +1,50 @@
1
+ # agent.version
2
+
3
+ **Type**: `string`
4
+ **Required**: Yes
5
+
6
+ ## Description
7
+
8
+ The agent.version field
9
+
10
+ ## Why This Field Exists
11
+
12
+ Track agent versions for compatibility, rollback, and change management
13
+
14
+ ## How to Use
15
+
16
+ Use semantic versioning (MAJOR.MINOR.PATCH)
17
+
18
+ ## Where It's Used
19
+
20
+ Used in registry, deployment manifests, and API responses
21
+
22
+ ## Examples
23
+
24
+ ```yaml
25
+ agent.version: 1.0.0
26
+ ```
27
+
28
+ ```yaml
29
+ agent.version: 2.1.3
30
+ ```
31
+
32
+ ```yaml
33
+ agent.version: 0.1.0-beta
34
+ ```
35
+
36
+ ## Validation
37
+
38
+ ```bash
39
+ ossa validate agent.ossa.yaml
40
+ ```
41
+
42
+ ## Related Fields
43
+
44
+ - [agent.id](./agent-id.md)
45
+ - [ossaVersion](./ossaVersion.md)
46
+
47
+ ## Related Documentation
48
+
49
+ - [versioning](../guides/versioning.md)
50
+
@@ -1,176 +1,45 @@
1
- ---
2
- title: "Schema Reference"
3
- description: "Complete reference documentation for the OSSA v0.2.x Agent Manifest Schema"
4
- weight: 50
5
- ---
1
+ # Schema Reference
6
2
 
7
- # OSSA Schema Reference
3
+ Complete reference for the OSSA agent manifest schema.
8
4
 
9
- Complete reference documentation for the Open Standard for Scalable Agents (OSSA) v0.2.x schema.
5
+ ## Overview
10
6
 
11
- The OSSA schema provides a declarative, framework-agnostic way to define AI agents with full portability across platforms and orchestration frameworks.
7
+ The OSSA schema defines the structure of agent manifests. Every field serves a specific purpose in the agent lifecycle.
12
8
 
13
- ## Schema Overview
9
+ ## Core Fields
14
10
 
15
- The OSSA manifest is a JSON/YAML document that defines:
11
+ ### Agent Identification
12
+ - [agent.id](./agent-id.md) - Unique agent identifier
13
+ - [agent.name](./agent-name.md) - Human-readable name
14
+ - [agent.version](./agent-version.md) - Semantic version
15
+ - [agent.role](./agent-role.md) - Agent role classification
16
16
 
17
- - **Agent metadata** - Name, version, labels, and annotations
18
- - **Agent specification** - Role, LLM configuration, tools, and capabilities
19
- - **Autonomy settings** - Decision-making level and approval requirements
20
- - **Constraints** - Cost, performance, and resource limits
21
- - **Observability** - Tracing, metrics, and logging configuration
22
- - **Framework extensions** - Integration with kagent, BuildKit, Drupal, LibreChat, and 14+ other frameworks
17
+ ### Agent Capabilities
18
+ - [agent.capabilities](./agent-capabilities.md) - What the agent can do
23
19
 
24
- ## Schema Version
20
+ ## Schema Versions
25
21
 
26
- ```yaml
27
- apiVersion: ossa/v0.2.x
28
- ```
22
+ - **Current**: v0.2.5-RC
23
+ - **Stable**: v0.2.4
24
+ - **Previous**: v0.2.3, v0.2.2
29
25
 
30
- The current stable version is `ossa/v0.2.x` (v0.2.2, v0.2.3, v0.2.4+). The schema also supports `ossa/v1` for forward compatibility.
31
-
32
- ## Schema Components
33
-
34
- ### Core Objects
35
-
36
- - [**OSSA Manifest**](./ossa-manifest.md) - Root manifest object with metadata and spec
37
- - [**Agent Spec**](./agent-spec.md) - Agent specification including role, LLM, and tools
38
- - [**LLM Configuration**](./llm-config.md) - Language model provider and parameters
39
- - [**Tools**](./tools.md) - Tool definitions for MCP, Kubernetes, HTTP, and custom integrations
40
-
41
- ### Configuration Objects
42
-
43
- - [**Taxonomy**](./taxonomy.md) - Agent domain, subdomain, and capability classification
44
- - [**Autonomy**](./autonomy.md) - Decision-making level and action controls
45
- - [**Constraints**](./constraints.md) - Cost, performance, and resource constraints
46
- - [**Observability**](./observability.md) - Tracing, metrics, and logging
47
-
48
- ### Framework Extensions
49
-
50
- - [**kagent Extension**](./extensions/kagent.md) - Kubernetes-native agent deployment
51
- - [**BuildKit Extension**](./extensions/buildkit.md) - Agent BuildKit orchestration
52
- - [**Drupal Extension**](./extensions/drupal.md) - Drupal LLM Platform integration
53
- - [**LibreChat Extension**](./extensions/librechat.md) - LibreChat integration
54
- - [**MCP Extension**](./extensions/mcp.md) - Model Context Protocol servers
55
- - [**LangChain Extension**](./extensions/langchain.md) - LangChain framework
56
- - [**CrewAI Extension**](./extensions/crewai.md) - CrewAI multi-agent framework
57
- - [**OpenAI Agents Extension**](./extensions/openai-agents.md) - OpenAI Agents SDK
58
- - [**Cursor Extension**](./extensions/cursor.md) - Cursor IDE integration
59
- - [**Langflow Extension**](./extensions/langflow.md) - Langflow workflow orchestration
60
- - [**AutoGen Extension**](./extensions/autogen.md) - Microsoft AutoGen
61
- - [**Vercel AI Extension**](./extensions/vercel-ai.md) - Vercel AI SDK
62
- - [**LlamaIndex Extension**](./extensions/llamaindex.md) - LlamaIndex RAG framework
63
- - [**LangGraph Extension**](./extensions/langgraph.md) - LangGraph state machines
64
- - [**Anthropic Extension**](./extensions/anthropic.md) - Anthropic Claude API
65
-
66
- ## Quick Example
67
-
68
- ```yaml
69
- apiVersion: ossa/v0.2.x
70
- kind: Agent
71
- metadata:
72
- name: code-reviewer
73
- version: 1.0.0
74
- description: Automated code review agent
75
- labels:
76
- domain: development
77
- capability: code-review
78
- spec:
79
- taxonomy:
80
- domain: development
81
- subdomain: quality-assurance
82
- capability: code-review
83
- role: |
84
- You are a code review specialist. Analyze code for:
85
- - Security vulnerabilities
86
- - Performance issues
87
- - Best practices adherence
88
- - Code quality and maintainability
89
- llm:
90
- provider: anthropic
91
- model: claude-3-5-sonnet-20241022
92
- temperature: 0.3
93
- maxTokens: 4096
94
- tools:
95
- - type: mcp
96
- server: filesystem
97
- capabilities:
98
- - read_file
99
- - list_directory
100
- - type: mcp
101
- server: git
102
- capabilities:
103
- - git_diff
104
- - git_log
105
- autonomy:
106
- level: supervised
107
- approval_required: false
108
- allowed_actions:
109
- - read_code
110
- - analyze_security
111
- - generate_report
112
- constraints:
113
- cost:
114
- maxTokensPerDay: 1000000
115
- maxCostPerDay: 50.0
116
- currency: USD
117
- performance:
118
- maxLatencySeconds: 30
119
- timeoutSeconds: 120
120
- observability:
121
- tracing:
122
- enabled: true
123
- exporter: otlp
124
- metrics:
125
- enabled: true
126
- exporter: prometheus
127
- logging:
128
- level: info
129
- format: json
130
- ```
26
+ See [Versioning Guide](../guides/versioning.md) for migration information.
131
27
 
132
28
  ## Validation
133
29
 
134
- All OSSA manifests must conform to the JSON Schema:
135
-
136
- ```
137
- https://openstandardagents.org/schemas/v0.2.x/agent.json
138
- ```
139
-
140
- Use the schema for validation in your tools and editors:
141
-
142
- **VSCode/Cursor:**
143
- ```json
144
- {
145
- "$schema": "https://openstandardagents.org/schemas/v0.2.x/agent.json"
146
- }
147
- ```
30
+ Validate your agent manifests:
148
31
 
149
- **Command-line validation:**
150
32
  ```bash
151
- ossa validate manifest.json
33
+ ossa validate agent.ossa.yaml
152
34
  ```
153
35
 
154
- ## Framework Compatibility
155
-
156
- The OSSA schema is designed for framework-agnostic portability. The same manifest can be deployed to:
157
-
158
- - **kagent.dev** - Kubernetes-native agent platform
159
- - **Agent BuildKit** - Multi-runtime orchestration
160
- - **Drupal LLM Platform** - Drupal-based agent management
161
- - **LibreChat** - Open-source chat interface
162
- - **LangChain, CrewAI, AutoGen** - Python agent frameworks
163
- - **OpenAI Agents SDK** - Official OpenAI agent runtime
164
- - **Cursor, Continue** - IDE-integrated coding agents
165
- - **Vercel AI SDK** - Edge/Node.js deployment
166
- - **LlamaIndex, LangGraph** - RAG and state machine frameworks
36
+ ## Complete Schema
167
37
 
168
- See the [Extensions](./extensions/) section for framework-specific configuration.
38
+ View the complete JSON Schema:
39
+ - [v0.2.5-RC Schema](https://github.com/blueflyio/openstandardagents/blob/main/spec/v0.2.6/ossa-0.2.6.schema.json)
169
40
 
170
- ## Additional Resources
41
+ ## Related Documentation
171
42
 
172
- - [OSSA Specification](/docs/)
173
- - [Getting Started Guide](/docs/getting-started/)
174
- - [Examples](/docs/examples/)
175
- - [GitHub Repository](https://github.com/blueflyio/openstandardagents)
176
- - [Schema Download](https://openstandardagents.org/schemas/v0.2.x/agent.json)
43
+ - [CLI Reference](../cli-reference/index.md)
44
+ - [API Reference](../api-reference/index.md)
45
+ - [Creating Agents Guide](../guides/creating-agents.md)
@@ -0,0 +1,105 @@
1
+ # TypeScript Types Reference
2
+
3
+ Auto-generated from `src/types/index.ts`
4
+
5
+ ## Interfaces
6
+
7
+ ### Capability
8
+
9
+ ```typescript
10
+ export interface Capability {
11
+ name: string;
12
+ description: string;
13
+ input_schema: Record<string, unknown> | string;
14
+ output_schema: Record<string, unknown> | string;
15
+ examples?: Array<{
16
+ name?: string;
17
+ input?: Record<string, unknown>;
18
+ output?: Record<string, unknown>;
19
+ }
20
+ ```
21
+
22
+ ### OssaAgent
23
+
24
+ ```typescript
25
+ export interface OssaAgent {
26
+ // v0.2.3 format
27
+ apiVersion?: string;
28
+ kind?: string;
29
+ metadata?: {
30
+ name: string;
31
+ version?: string;
32
+ description?: string;
33
+ labels?: Record<string, string>;
34
+ annotations?: Record<string, string>;
35
+ }
36
+ ```
37
+
38
+ ### ValidationResult
39
+
40
+ ```typescript
41
+ export interface ValidationResult {
42
+ valid: boolean;
43
+ errors: ErrorObject[];
44
+ warnings: string[];
45
+ manifest?: OssaAgent;
46
+ }
47
+ ```
48
+
49
+ ### AgentTemplate
50
+
51
+ ```typescript
52
+ export interface AgentTemplate {
53
+ id: string;
54
+ name: string;
55
+ role: string;
56
+ description?: string;
57
+ runtimeType?: string;
58
+ capabilities?: Capability[];
59
+ }
60
+ ```
61
+
62
+ ### IValidationService
63
+
64
+ ```typescript
65
+ export interface IValidationService {
66
+ validate(
67
+ manifest: unknown,
68
+ version: SchemaVersion
69
+ ): Promise<ValidationResult>;
70
+ }
71
+ ```
72
+
73
+ ### ISchemaRepository
74
+
75
+ ```typescript
76
+ export interface ISchemaRepository {
77
+ getSchema(version: SchemaVersion): Promise<Record<string, unknown>>;
78
+ clearCache(): void;
79
+ getAvailableVersions(): string[];
80
+ getCurrentVersion(): string;
81
+ }
82
+ ```
83
+
84
+ ### IManifestRepository
85
+
86
+ ```typescript
87
+ export interface IManifestRepository {
88
+ load(path: string): Promise<unknown>;
89
+ save(path: string, manifest: OssaAgent): Promise<void>;
90
+ }
91
+ ```
92
+
93
+ ## Type Aliases
94
+
95
+ ### SchemaVersion
96
+
97
+ ```typescript
98
+ export type SchemaVersion = string;
99
+ ```
100
+
101
+ ## Usage
102
+
103
+ ```typescript
104
+ import { OSSAManifest, AgentSpec } from '@bluefly/openstandardagents';
105
+ ```
@@ -148,9 +148,9 @@ OSSA schema versions follow specification versions:
148
148
  ```
149
149
  Package Version → Schema Directory
150
150
  -----------------------------------------
151
- v0.2.2 → spec/v0.2.5-RC/
152
- v0.3.0 → spec/v0.2.5-RC/
153
- v1.0.0 → spec/v0.2.5-RC/
151
+ v0.2.2 → spec/v0.2.6/
152
+ v0.3.0 → spec/v0.2.6/
153
+ v1.0.0 → spec/v0.2.6/
154
154
  ```
155
155
 
156
156
  ### Schema Compatibility