@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.
- package/.cursorrules +84 -0
- package/.devfile.yaml +87 -0
- package/.env.example +25 -3
- package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
- package/.github/workflows/dependabot-comment.yml +34 -0
- package/.github/workflows/pr-comment.yml +33 -0
- package/.github/workflows/release.yml +1 -1
- package/.husky/pre-commit +5 -0
- package/.kiro/config.json +21 -0
- package/.kiro/settings/mcp.json +61 -0
- package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
- package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
- package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
- package/.kiro/specs/website-brand-identity/design.md +1060 -0
- package/.kiro/specs/website-brand-identity/requirements.md +287 -0
- package/.kiro/specs/website-brand-identity/tasks.md +981 -0
- package/.releaserc.json +5 -4
- package/.version.json +6 -0
- package/CHANGELOG.md +163 -96
- package/CONTRIBUTING.md +23 -5
- package/README.md +130 -43
- package/bin/ossa +24 -3
- package/bin/ossa-dev +42 -0
- package/bin/ossa-export +32 -0
- package/bin/ossa-generate +60 -0
- package/bin/ossa-health +40 -0
- package/bin/ossa-init +26 -0
- package/bin/ossa-validate-all +55 -0
- package/bin/ossa-version +23 -0
- package/bin/validate-ossa-0.2.4.ts +244 -0
- package/bin/validate-ossa-0.2.5-RC.ts +244 -0
- package/bin/validate-ossa.ts +273 -0
- package/dist/di-container.d.ts +1 -1
- package/dist/di-container.d.ts.map +1 -1
- package/dist/di-container.js.map +1 -1
- package/dist/repositories/schema.repository.d.ts +17 -2
- package/dist/repositories/schema.repository.d.ts.map +1 -1
- package/dist/repositories/schema.repository.js +102 -19
- package/dist/repositories/schema.repository.js.map +1 -1
- package/dist/services/generation.service.d.ts +7 -5
- package/dist/services/generation.service.d.ts.map +1 -1
- package/dist/services/generation.service.js +92 -44
- package/dist/services/generation.service.js.map +1 -1
- package/dist/services/github-sync/github-client.d.ts +14 -0
- package/dist/services/github-sync/github-client.d.ts.map +1 -0
- package/dist/services/github-sync/github-client.js +41 -0
- package/dist/services/github-sync/github-client.js.map +1 -0
- package/dist/services/github-sync/gitlab-client.d.ts +17 -0
- package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
- package/dist/services/github-sync/gitlab-client.js +42 -0
- package/dist/services/github-sync/gitlab-client.js.map +1 -0
- package/dist/services/github-sync/schemas.d.ts +46 -0
- package/dist/services/github-sync/schemas.d.ts.map +1 -0
- package/dist/services/github-sync/schemas.js +36 -0
- package/dist/services/github-sync/schemas.js.map +1 -0
- package/dist/services/github-sync/sync.service.d.ts +27 -0
- package/dist/services/github-sync/sync.service.d.ts.map +1 -0
- package/dist/services/github-sync/sync.service.js +99 -0
- package/dist/services/github-sync/sync.service.js.map +1 -0
- package/dist/services/gitlab-agent.service.d.ts +94 -0
- package/dist/services/gitlab-agent.service.d.ts.map +1 -0
- package/dist/services/gitlab-agent.service.js +162 -0
- package/dist/services/gitlab-agent.service.js.map +1 -0
- package/dist/services/migration.service.d.ts +3 -3
- package/dist/services/migration.service.d.ts.map +1 -1
- package/dist/services/migration.service.js +108 -61
- package/dist/services/migration.service.js.map +1 -1
- package/dist/services/release-automation/base-crud.service.d.ts +93 -0
- package/dist/services/release-automation/base-crud.service.d.ts.map +1 -0
- package/dist/services/release-automation/base-crud.service.js +68 -0
- package/dist/services/release-automation/base-crud.service.js.map +1 -0
- package/dist/services/release-automation/index.d.ts +12 -0
- package/dist/services/release-automation/index.d.ts.map +1 -0
- package/dist/services/release-automation/index.js +12 -0
- package/dist/services/release-automation/index.js.map +1 -0
- package/dist/services/release-automation/merge-request.service.d.ts +119 -0
- package/dist/services/release-automation/merge-request.service.d.ts.map +1 -0
- package/dist/services/release-automation/merge-request.service.js +212 -0
- package/dist/services/release-automation/merge-request.service.js.map +1 -0
- package/dist/services/release-automation/milestone.service.d.ts +104 -0
- package/dist/services/release-automation/milestone.service.d.ts.map +1 -0
- package/dist/services/release-automation/milestone.service.js +207 -0
- package/dist/services/release-automation/milestone.service.js.map +1 -0
- package/dist/services/release-automation/release.service.d.ts +118 -0
- package/dist/services/release-automation/release.service.d.ts.map +1 -0
- package/dist/services/release-automation/release.service.js +207 -0
- package/dist/services/release-automation/release.service.js.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.js +269 -0
- package/dist/services/release-automation/schemas/release.schema.js.map +1 -0
- package/dist/services/release-automation/tag.service.d.ts +99 -0
- package/dist/services/release-automation/tag.service.d.ts.map +1 -0
- package/dist/services/release-automation/tag.service.js +180 -0
- package/dist/services/release-automation/tag.service.js.map +1 -0
- package/dist/services/release-automation/webhook.service.d.ts +37 -0
- package/dist/services/release-automation/webhook.service.d.ts.map +1 -0
- package/dist/services/release-automation/webhook.service.js +173 -0
- package/dist/services/release-automation/webhook.service.js.map +1 -0
- package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
- package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
- package/dist/services/runtime/claude/capability-mapper.js +245 -0
- package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
- package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
- package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
- package/dist/services/runtime/claude/claude-adapter.js +287 -0
- package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
- package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
- package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
- package/dist/services/runtime/claude/manifest-parser.js +169 -0
- package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
- package/dist/services/runtime/claude/types.d.ts +115 -0
- package/dist/services/runtime/claude/types.d.ts.map +1 -0
- package/dist/services/runtime/claude/types.js +6 -0
- package/dist/services/runtime/claude/types.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -1
- package/dist/services/runtime/openai.adapter.js.map +1 -1
- package/dist/services/validation.service.d.ts.map +1 -1
- package/dist/services/validation.service.js +35 -11
- package/dist/services/validation.service.js.map +1 -1
- package/dist/services/validators/anthropic.validator.d.ts +2 -2
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -1
- package/dist/services/validators/anthropic.validator.js +14 -9
- package/dist/services/validators/anthropic.validator.js.map +1 -1
- package/dist/services/validators/autogen.validator.d.ts +2 -2
- package/dist/services/validators/autogen.validator.d.ts.map +1 -1
- package/dist/services/validators/autogen.validator.js +18 -15
- package/dist/services/validators/autogen.validator.js.map +1 -1
- package/dist/services/validators/crewai.validator.d.ts +2 -2
- package/dist/services/validators/crewai.validator.d.ts.map +1 -1
- package/dist/services/validators/crewai.validator.js +18 -17
- package/dist/services/validators/crewai.validator.js.map +1 -1
- package/dist/services/validators/cursor.validator.d.ts +2 -2
- package/dist/services/validators/cursor.validator.d.ts.map +1 -1
- package/dist/services/validators/cursor.validator.js +15 -11
- package/dist/services/validators/cursor.validator.js.map +1 -1
- package/dist/services/validators/langchain.validator.d.ts +2 -2
- package/dist/services/validators/langchain.validator.d.ts.map +1 -1
- package/dist/services/validators/langchain.validator.js +14 -11
- package/dist/services/validators/langchain.validator.js.map +1 -1
- package/dist/services/validators/langflow.validator.d.ts +2 -2
- package/dist/services/validators/langflow.validator.d.ts.map +1 -1
- package/dist/services/validators/langflow.validator.js +14 -9
- package/dist/services/validators/langflow.validator.js.map +1 -1
- package/dist/services/validators/langgraph.validator.d.ts +2 -2
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -1
- package/dist/services/validators/langgraph.validator.js +23 -18
- package/dist/services/validators/langgraph.validator.js.map +1 -1
- package/dist/services/validators/llamaindex.validator.d.ts +2 -2
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -1
- package/dist/services/validators/llamaindex.validator.js +19 -16
- package/dist/services/validators/llamaindex.validator.js.map +1 -1
- package/dist/services/validators/openai.validator.d.ts +2 -2
- package/dist/services/validators/openai.validator.d.ts.map +1 -1
- package/dist/services/validators/openai.validator.js +20 -16
- package/dist/services/validators/openai.validator.js.map +1 -1
- package/dist/services/validators/vercel-ai.validator.d.ts +2 -2
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -1
- package/dist/services/validators/vercel-ai.validator.js +16 -15
- package/dist/services/validators/vercel-ai.validator.js.map +1 -1
- package/dist/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
- package/dist/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
- package/dist/spec/v0.2.3/CHANGELOG.md +7 -7
- package/dist/spec/v0.2.3/README.md +9 -9
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
- package/{spec/v0.2.4-dev → dist/spec/v0.2.4}/CHANGELOG.md +8 -8
- package/dist/spec/{v0.2.4-dev → v0.2.4}/migrations/v0.2.3-to-v0.2.4.md +10 -10
- package/dist/spec/{v0.2.4-dev/ossa-0.2.4-dev.yaml → v0.2.4/ossa-0.2.4.yaml} +1 -1
- package/dist/spec/v0.2.5/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5/README.md +72 -0
- package/dist/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/dist/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5-RC/README.md +72 -0
- package/{spec/v0.2.4-dev → dist/spec/v0.2.5-RC}/migrations/v0.2.3-to-v0.2.4.md +10 -10
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.6/README.md +72 -0
- package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/dist/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
- package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
- package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
- package/dist/spec/v0.2.6-dev/README.md +75 -0
- package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.6-dev/ossa-0.2.5.schema.json +1696 -0
- package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
- 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
- package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
- package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
- package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
- package/dist/types/index.d.ts +6 -1
- package/dist/types/index.d.ts.map +1 -1
- package/docs/brand-guide/01-brand-overview.md +37 -0
- package/docs/brand-guide/02-logo-usage.md +43 -0
- package/docs/brand-guide/03-color-palette.md +70 -0
- package/docs/brand-guide/04-typography.md +82 -0
- package/docs/brand-guide/05-voice-and-tone.md +108 -0
- package/docs/brand-guide/06-visual-elements.md +137 -0
- package/docs/brand-guide/07-application-examples.md +153 -0
- package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
- package/docs/brand-guide/OssaLogo/brand.af +0 -0
- package/docs/brand-guide/README.md +107 -0
- package/docs/comparison.md +315 -0
- package/docs/operations/automation-roadmap.md +245 -0
- package/docs/operations/github-sync-strategy.md +357 -0
- package/examples/anthropic/claude-assistant.ossa.json +5 -4
- package/examples/autogen/multi-agent.ossa.json +6 -4
- package/examples/bridges/Dockerfile.production +1 -1
- package/examples/crewai/research-team.ossa.json +14 -5
- package/examples/cursor/code-review-agent.ossa.json +21 -6
- package/examples/enterprise/agent.yml +1 -1
- package/examples/getting-started/hello-world-complete.ossa.yaml +2 -2
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
- package/examples/langchain/chain-agent.ossa.json +21 -5
- package/examples/langflow/workflow-agent.ossa.json +2 -3
- package/examples/langgraph/state-machine-agent.ossa.json +2 -3
- package/examples/llamaindex/rag-agent.ossa.json +2 -3
- package/examples/openai/basic-agent.ossa.yaml +61 -0
- package/examples/openai/multi-tool-agent.ossa.json +188 -0
- package/examples/openai/swarm-agent.ossa.json +18 -5
- package/examples/openapi-extensions/README.md +1 -1
- package/examples/quickstart/support-agent.ossa.yaml +1 -1
- package/examples/vercel/edge-agent.ossa.json +5 -4
- package/infrastructure/gitlab-agent/rbac.yaml +126 -0
- package/infrastructure/gitlab-agent/values.yaml +150 -0
- package/infrastructure/k8s/monitoring/00-namespace.yaml +7 -0
- package/infrastructure/k8s/monitoring/01-prometheus.yaml +142 -0
- package/infrastructure/k8s/monitoring/02-grafana.yaml +63 -0
- package/infrastructure/k8s/monitoring/03-lightweight.yaml +121 -0
- package/infrastructure/k8s/monitoring/README.md +73 -0
- package/infrastructure/k8s/monitoring/deploy.sh +38 -0
- package/openapi/CHANGELOG.md +21 -0
- package/openapi/README.md +46 -0
- package/openapi/{ossa-core-api.openapi.yaml → core/ossa-core-api.openapi.yaml} +59 -4
- package/openapi/{ossa-registry.openapi.yaml → core/ossa-registry.openapi.yaml} +75 -2
- package/openapi/{unified-agent-gateway.openapi.yaml → core/unified-agent-gateway.openapi.yaml} +3 -3
- package/openapi/github-sync.yaml +115 -0
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +136 -0
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +192 -0
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +217 -0
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +193 -0
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +165 -0
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +148 -0
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +167 -0
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +242 -0
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +187 -0
- package/openapi/{self-evolving-ecosystem.openapi.yaml → reference-implementations/self-evolving-ecosystem.openapi.yaml} +2 -2
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +208 -0
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +193 -0
- package/package.json +53 -22
- package/release.config.js +20 -5
- package/scripts/README.md +103 -0
- package/scripts/auto-rebase-mrs.ts +106 -0
- package/scripts/batch-dependabot.sh +57 -0
- package/scripts/bump-version.ts +57 -0
- package/scripts/configure-gitlab-branch-protection.ts +95 -0
- package/scripts/create-issue-helper.ts +238 -0
- package/scripts/create-milestone-issue.ts +73 -0
- package/scripts/enhanced-version-manager.ts +257 -0
- package/scripts/fix-schema-formats.js +82 -0
- package/scripts/gen-types.ts +51 -0
- package/scripts/gen-zod.ts +51 -0
- package/scripts/generate-agents-catalog.ts +77 -0
- package/scripts/generate-api-docs.ts +218 -0
- package/scripts/generate-cli-docs.ts +410 -0
- package/scripts/generate-config-docs.ts +109 -0
- package/scripts/generate-errors-docs.ts +76 -0
- package/scripts/generate-examples-docs.ts +99 -0
- package/scripts/generate-schema-docs.ts +296 -0
- package/scripts/generate-types-docs.ts +48 -0
- package/scripts/lib/exec.ts +37 -0
- package/scripts/lib/file-ops.ts +58 -0
- package/scripts/lib/version.ts +83 -0
- package/scripts/lowercase-docs.ts +43 -0
- package/scripts/manage-milestone-mrs.ts +279 -0
- package/scripts/process-doc-templates.ts +37 -0
- package/scripts/rebase-all-mrs.sh +75 -0
- package/scripts/schemas/package.schema.ts +75 -0
- package/scripts/setup-branch-protection.sh +33 -0
- package/scripts/sync-github-pr.sh +48 -0
- package/scripts/sync-version.js +40 -0
- package/scripts/sync-version.ts +39 -0
- package/scripts/sync-versions.ts +488 -0
- package/scripts/sync-wiki.sh +50 -0
- package/scripts/validate-all.js +127 -0
- package/scripts/validate-schema.ts +49 -0
- package/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
- package/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
- package/spec/v0.2.3/CHANGELOG.md +7 -7
- package/spec/v0.2.3/README.md +9 -9
- package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
- package/{dist/spec/v0.2.4-dev → spec/v0.2.4}/CHANGELOG.md +8 -8
- package/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/{v0.2.4-dev/ossa-0.2.4-dev.yaml → v0.2.4/ossa-0.2.4.yaml} +1 -1
- package/spec/v0.2.5/CHANGELOG.md +401 -0
- package/spec/v0.2.5/README.md +72 -0
- package/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/spec/v0.2.5-RC/README.md +72 -0
- package/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/spec/v0.2.6/CHANGELOG.md +401 -0
- package/spec/v0.2.6/README.md +72 -0
- package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/spec/v0.2.6/ossa-0.2.6.schema.json +1786 -0
- package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
- package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
- package/spec/v0.2.6-dev/README.md +75 -0
- package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.6-dev/ossa-0.2.5.schema.json +1696 -0
- package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
- 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
- package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
- package/spec/v0.2.7/core/agentgraph.md +324 -0
- package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
- package/website/{.lighthouserc.js → .lighthouserc.ts} +5 -1
- package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +445 -0
- package/website/Dockerfile +18 -5
- package/website/app/about/page.tsx +60 -51
- package/website/app/blog/[slug]/page.tsx +61 -20
- package/website/app/blog/page.tsx +120 -33
- package/website/app/design-guide/page.tsx +511 -0
- package/website/app/docs/[[...slug]]/page.tsx +641 -143
- package/website/app/ecosystem/page.tsx +146 -111
- package/website/app/examples/page.tsx +51 -41
- package/website/app/globals.scss +370 -0
- package/website/app/layout.tsx +2 -2
- package/website/app/license/page.tsx +183 -0
- package/website/app/not-found.tsx +18 -0
- package/website/app/page.tsx +513 -236
- package/website/app/page.tsx.bak +679 -0
- package/website/app/page.tsx.bak2 +649 -0
- package/website/app/playground/page.tsx +25 -45
- package/website/app/schema/page.tsx +423 -392
- package/website/app/specification/page.tsx +245 -169
- package/website/components/Logo.tsx +75 -2
- package/website/components/docs/DocsSidebar.tsx +40 -3
- package/website/components/docs/MarkdownContent.tsx +265 -47
- package/website/components/docs/VersionSelector.tsx +64 -8
- package/website/components/examples/ExamplesViewer.tsx +2 -2
- package/website/components/layout/Footer.tsx +6 -1
- package/website/components/layout/Header.tsx +44 -42
- package/website/components/schema/SchemaComponentsAccordion.tsx +84 -0
- package/website/components/schema/SchemaExplorer.tsx +4 -4
- package/website/components/ui/Badge.tsx +82 -0
- package/website/components/ui/Button.tsx +116 -0
- package/website/components/ui/Card.tsx +167 -0
- package/website/components/ui/Checkbox.tsx +141 -0
- package/website/components/ui/Input.tsx +169 -0
- package/website/components/ui/Radio.tsx +141 -0
- package/website/components/ui/Select.tsx +182 -0
- package/website/components/ui/Tag.tsx +158 -0
- package/website/components/ui/Textarea.tsx +195 -0
- package/website/components/ui/index.ts +11 -0
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +276 -276
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +3 -14
- package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +286 -0
- package/website/content/blog/introducing-ossa-framework.md +1 -1
- package/website/content/blog/ossa-production-results.md +5 -5
- package/website/content/blog/welcome-to-ossa.md +2 -2
- package/website/content/blog/why-ai-agents-need-open-standard.md +5 -5
- package/website/content/docs/{00-HOME.md → 00-home.md} +18 -25
- package/website/content/docs/adapters/openai-adapter.md +693 -0
- package/website/content/docs/agents/catalog.md +28 -0
- package/website/content/docs/aiflow-framework-integration-with-ossa.md +107 -0
- package/website/content/docs/api-reference/index.md +38 -0
- package/website/content/docs/api-reference/ossa-core-api.md +634 -0
- package/website/content/docs/api-reference/ossa-registry-api.md +515 -0
- package/website/content/docs/api-reference/unified-agent-gateway.md +599 -0
- package/website/content/docs/architecture/execution-flow.md +3 -3
- package/website/content/docs/architecture/multi-agent-systems.md +4 -4
- package/website/content/docs/architecture/overview.md +4 -4
- package/website/content/docs/architecture/stack-integration.md +4 -4
- package/website/content/docs/changelog.md +4 -4
- package/website/content/docs/cli-reference/index.md +111 -0
- package/website/content/docs/cli-reference/ossa-agents.md +70 -0
- package/website/content/docs/cli-reference/ossa-export.md +56 -0
- package/website/content/docs/cli-reference/ossa-generate.md +66 -0
- package/website/content/docs/cli-reference/ossa-gitlab-agent.md +57 -0
- package/website/content/docs/cli-reference/ossa-import.md +56 -0
- package/website/content/docs/cli-reference/ossa-init.md +57 -0
- package/website/content/docs/cli-reference/ossa-migrate.md +62 -0
- package/website/content/docs/cli-reference/ossa-run.md +66 -0
- package/website/content/docs/cli-reference/ossa-schema.md +57 -0
- package/website/content/docs/cli-reference/ossa-setup.md +57 -0
- package/website/content/docs/cli-reference/ossa-validate.md +66 -0
- package/website/content/docs/configuration/index.md +97 -0
- package/website/content/docs/contributing.md +2 -2
- package/website/content/docs/deployment/github-mirroring.md +924 -0
- package/website/content/docs/documentation.md +100 -0
- package/website/content/docs/ecosystem/framework-support.md +551 -11
- package/website/content/docs/errors/index.md +10 -0
- package/website/content/docs/{AIFlow-Framework-Integration-with-OSSA.md → examples/aiflow-framework-integration-with-ossa.md} +2 -2
- package/website/content/docs/examples/catalog.md +300 -0
- package/website/content/docs/for-audiences/{Students-Researchers.md → students-researchers.md} +1 -1
- package/website/content/docs/getting-started/index.md +92 -0
- package/website/content/docs/getting-started/installation.md +7 -7
- package/website/content/docs/getting-started/running-agents.md +215 -13
- package/{docs → website/content/docs}/getting-started.md +10 -6
- package/website/content/docs/integrations/aiflow.md +2 -2
- package/website/content/docs/integrations/drupal.md +2 -2
- package/website/content/docs/migration-guides/agent-schema-comparison.md +232 -0
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +5 -5
- package/website/content/docs/migration-guides/crewai-to-ossa.md +3 -3
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +11 -11
- package/{docs/migration → website/content/docs/migration-guides}/general-agent-schema.yml +1 -9
- package/website/content/docs/migration-guides/index.md +1 -1
- package/website/content/docs/migration-guides/langchain-to-ossa.md +17 -17
- package/website/content/docs/migration-guides/langflow-to-ossa.md +3 -3
- package/website/content/docs/migration-guides/openai-to-ossa.md +10 -10
- package/website/content/docs/openapi-extensions/examples.md +9 -9
- package/website/content/docs/openapi-extensions/index.md +59 -3
- package/website/content/docs/openapi-extensions/operation-extensions.md +61 -2
- package/website/content/docs/openapi-extensions/root-extensions.md +49 -3
- package/{docs/OSSA-COMPLIANT-BADGE.md → website/content/docs/ossa-compliant-badge.md} +18 -15
- package/website/content/docs/pre-release/index.md +10 -10
- package/website/content/docs/readme.md +35 -0
- package/website/content/docs/releases/v0.2.6.md +99 -0
- package/website/content/docs/schema-reference/agent-capabilities.md +50 -0
- package/website/content/docs/schema-reference/agent-id.md +52 -0
- package/website/content/docs/schema-reference/agent-name.md +50 -0
- package/website/content/docs/schema-reference/agent-role.md +54 -0
- package/website/content/docs/schema-reference/agent-spec.md +2 -2
- package/website/content/docs/schema-reference/agent-version.md +50 -0
- package/website/content/docs/schema-reference/autonomy.md +5 -5
- package/website/content/docs/schema-reference/constraints.md +5 -5
- package/website/content/docs/schema-reference/index.md +26 -157
- package/website/content/docs/schema-reference/llm-config.md +1 -1
- package/website/content/docs/schema-reference/observability.md +5 -5
- package/website/content/docs/schema-reference/ossa-manifest.md +6 -6
- package/website/content/docs/schema-reference/taxonomy.md +3 -3
- package/website/content/docs/types-reference/index.md +105 -0
- package/website/content/docs/use-cases/00-index.md +1 -1
- package/{docs/VERSIONING.md → website/content/docs/versioning.md} +9 -5
- package/website/dev.sh +53 -0
- package/website/docker-compose.dev.yml +36 -0
- package/website/lib/version.ts +18 -1
- package/website/lib/versions.json +103 -0
- package/website/next.config.ts +3 -1
- package/website/package-lock.json +552 -18
- package/website/package.json +11 -5
- package/website/postcss.config.mjs +1 -1
- package/website/scripts/fetch-versions.js +166 -0
- package/website/scripts/generate-examples-index.js +163 -0
- package/website/scripts/merge-docs-to-wiki.ts +207 -0
- package/website/scripts/sync-version.js +28 -0
- package/website/scripts/sync-wiki.ts +64 -3
- package/website/scripts/upload-wiki.ts +199 -0
- package/website/styles/_spacing.scss +453 -0
- package/website/styles/_tokens.scss +245 -0
- package/website/styles/_typography.scss +361 -0
- package/website/styles/_variables.scss +287 -0
- package/website/tailwind.config.ts +127 -22
- package/.releaserc.json.disabled +0 -81
- package/dist/spec/v0.2.5-dev/CHANGELOG.md +0 -171
- package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
- package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
- package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
- package/docs/README.md +0 -31
- package/docs/agent-openapi-spec.yml +0 -942
- package/docs/openapi-extensions.md +0 -930
- package/docs/schemas/openapi-extensions.schema.json +0 -486
- package/openapi/gitlab-orchestrator.openapi.yaml +0 -330
- package/ossa-website-swarm-tasks.json +0 -105
- package/spec/v0.2.5-dev/CHANGELOG.md +0 -171
- package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
- package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
- package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
- package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
- package/website/app/api/validate/route.ts +0 -88
- package/website/app/globals.css +0 -108
- package/website/content/docs/OpenAPI-Extensions.md +0 -498
- package/website/content/docs/core-concepts/project-structure.md +0 -348
- package/website/content/docs/examples/Migration-Guides.md +0 -214
- package/website/content/docs/examples.md +0 -71
- package/website/content/docs/for-audiences/Enterprises.md +0 -256
- package/website/content/docs/for-audiences/architects.md +0 -224
- package/website/content/docs/for-audiences/developers.md +0 -220
- package/website/content/docs/getting-started/5-minute-overview.md +0 -85
- package/website/content/docs/getting-started/Hello-World.md +0 -184
- package/website/content/docs/getting-started/first-agent.md +0 -196
- package/website/content/docs/migration-guides/00-index.md +0 -76
- package/website/content/docs/migration-guides/README.md +0 -133
- package/website/next.config.js +0 -17
- package/website/postcss.config.js +0 -7
- package/website/tailwind.config.js +0 -58
- /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
- /package/openapi/{ossa-registry-api.openapi.yaml → core/ossa-registry-api.openapi.yaml} +0 -0
- /package/openapi/{drupal-agent-api.openapi.yaml → reference-implementations/drupal-agent-api.openapi.yaml} +0 -0
- /package/openapi/{helm-generator.openapi.yaml → reference-implementations/helm-generator.openapi.yaml} +0 -0
- /package/spec/{v0.2.4-dev/ossa-0.2.4-dev.schema.json → v0.2.4/ossa-0.2.4.schema.json} +0 -0
- /package/{docs/migration → website/content/docs/migration-guides}/migration-manifest.json +0 -0
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
# Requirements Document: OSSA Website Design System Audit & Enhancement
|
|
2
|
+
|
|
3
|
+
## Introduction
|
|
4
|
+
|
|
5
|
+
This document outlines requirements for a comprehensive design system audit and enhancement of the Open Standard Agents (OSSA) website. The audit identifies critical issues in brand consistency, visual hierarchy, component architecture, accessibility, and user experience that must be addressed to achieve a premium, professional standard befitting an industry specification.
|
|
6
|
+
|
|
7
|
+
## Glossary
|
|
8
|
+
|
|
9
|
+
- **Design System**: The complete collection of reusable components, patterns, tokens, and guidelines that define the visual and interaction language
|
|
10
|
+
- **Component Library**: The set of reusable UI components (buttons, cards, navigation, etc.)
|
|
11
|
+
- **Design Tokens**: Centralized variables for colors, typography, spacing, and other design primitives
|
|
12
|
+
- **Visual Hierarchy**: The arrangement and presentation of elements to guide user attention and comprehension
|
|
13
|
+
- **Accessibility (a11y)**: Design and development practices ensuring usability for people with disabilities (WCAG 2.1 AA compliance)
|
|
14
|
+
- **Responsive Design**: Layouts that adapt gracefully across device sizes and orientations
|
|
15
|
+
- **Information Architecture**: The structural design of information spaces to support findability and understanding
|
|
16
|
+
- **Cognitive Load**: The mental effort required to use an interface
|
|
17
|
+
- **Atomic Design**: Design methodology organizing components from atoms → molecules → organisms → templates → pages
|
|
18
|
+
|
|
19
|
+
## Requirements
|
|
20
|
+
|
|
21
|
+
### Requirement 1: Brand Identity & Visual Consistency
|
|
22
|
+
|
|
23
|
+
**User Story:** As a visitor, I want a cohesive visual experience across all pages, so that I perceive OSSA as a professional, trustworthy standard.
|
|
24
|
+
|
|
25
|
+
#### Acceptance Criteria
|
|
26
|
+
|
|
27
|
+
1. WHEN viewing any page THEN the Website SHALL apply consistent brand colors from the centralized SCSS variables across all components
|
|
28
|
+
2. WHEN encountering gradients THEN the Website SHALL use the defined gradient system (gradient-brand, gradient-hero, gradient-button) without deviation
|
|
29
|
+
3. WHEN viewing logos and brand assets THEN the Website SHALL display them with consistent sizing, spacing, and treatment
|
|
30
|
+
4. WHEN navigating between pages THEN the Website SHALL maintain visual continuity through consistent header, footer, and navigation patterns
|
|
31
|
+
5. WHEN viewing semantic colors (success, warning, error, info) THEN the Website SHALL apply the muted palette defined in _variables.scss
|
|
32
|
+
|
|
33
|
+
### Requirement 2: Typography System & Readability
|
|
34
|
+
|
|
35
|
+
**User Story:** As a reader, I want clear, scannable content with proper typographic hierarchy, so that I can quickly find and understand information.
|
|
36
|
+
|
|
37
|
+
#### Acceptance Criteria
|
|
38
|
+
|
|
39
|
+
1. WHEN viewing headings THEN the Website SHALL implement a clear 6-level hierarchy (H1-H6) with distinct size, weight, and spacing
|
|
40
|
+
2. WHEN reading body text THEN the Website SHALL maintain line-height between 1.5-1.75 for optimal readability
|
|
41
|
+
3. WHEN viewing code examples THEN the Website SHALL use the JetBrains Mono font with appropriate syntax highlighting
|
|
42
|
+
4. WHEN encountering long-form content THEN the Website SHALL limit line length to 65-75 characters for comfortable reading
|
|
43
|
+
5. WHEN viewing text on colored backgrounds THEN the Website SHALL ensure WCAG AA contrast ratios (4.5:1 minimum for body text, 3:1 for large text)
|
|
44
|
+
|
|
45
|
+
### Requirement 3: Component Architecture & Reusability
|
|
46
|
+
|
|
47
|
+
**User Story:** As a developer maintaining the site, I want a well-organized component library, so that I can build new pages efficiently without duplicating code.
|
|
48
|
+
|
|
49
|
+
#### Acceptance Criteria
|
|
50
|
+
|
|
51
|
+
1. WHEN creating new UI elements THEN the System SHALL provide atomic components (Button, Card, Badge, etc.) with clear prop interfaces
|
|
52
|
+
2. WHEN styling components THEN the System SHALL use Tailwind utility classes composed into semantic component classes
|
|
53
|
+
3. WHEN building complex layouts THEN the System SHALL compose molecules from atoms following atomic design principles
|
|
54
|
+
4. WHEN adding interactive elements THEN the System SHALL provide consistent hover, focus, and active states
|
|
55
|
+
5. WHEN implementing forms THEN the System SHALL provide validated input components with error states
|
|
56
|
+
|
|
57
|
+
### Requirement 4: Spacing & Layout System
|
|
58
|
+
|
|
59
|
+
**User Story:** As a designer, I want consistent spacing and layout patterns, so that pages feel harmonious and professionally crafted.
|
|
60
|
+
|
|
61
|
+
#### Acceptance Criteria
|
|
62
|
+
|
|
63
|
+
1. WHEN applying spacing THEN the System SHALL use a consistent scale (4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px, 96px)
|
|
64
|
+
2. WHEN creating sections THEN the System SHALL apply consistent vertical rhythm with section padding (py-12, py-16, py-20, py-24)
|
|
65
|
+
3. WHEN building grids THEN the System SHALL use consistent gap values (gap-4, gap-6, gap-8) based on content density
|
|
66
|
+
4. WHEN designing containers THEN the System SHALL use max-width constraints (max-w-4xl, max-w-6xl, max-w-7xl) for readability
|
|
67
|
+
5. WHEN stacking elements THEN the System SHALL maintain consistent margin-bottom values within content blocks
|
|
68
|
+
|
|
69
|
+
### Requirement 5: Navigation & Information Architecture
|
|
70
|
+
|
|
71
|
+
**User Story:** As a user, I want intuitive navigation that helps me find information quickly, so that I don't get lost or frustrated.
|
|
72
|
+
|
|
73
|
+
#### Acceptance Criteria
|
|
74
|
+
|
|
75
|
+
1. WHEN viewing the header THEN the System SHALL display primary navigation with clear visual hierarchy and active states
|
|
76
|
+
2. WHEN on mobile devices THEN the System SHALL provide an accessible hamburger menu with smooth transitions
|
|
77
|
+
3. WHEN navigating documentation THEN the System SHALL provide a persistent sidebar with section organization
|
|
78
|
+
4. WHEN viewing breadcrumbs THEN the System SHALL show the current location within the site hierarchy
|
|
79
|
+
5. WHEN searching THEN the System SHALL provide instant feedback and relevant results
|
|
80
|
+
|
|
81
|
+
### Requirement 6: Interactive Elements & Micro-interactions
|
|
82
|
+
|
|
83
|
+
**User Story:** As a user, I want responsive, delightful interactions, so that the interface feels polished and professional.
|
|
84
|
+
|
|
85
|
+
#### Acceptance Criteria
|
|
86
|
+
|
|
87
|
+
1. WHEN hovering over buttons THEN the System SHALL provide smooth transitions (transition-all duration-300) with visual feedback
|
|
88
|
+
2. WHEN clicking interactive elements THEN the System SHALL provide immediate visual confirmation
|
|
89
|
+
3. WHEN loading content THEN the System SHALL display skeleton screens or loading states
|
|
90
|
+
4. WHEN encountering errors THEN the System SHALL display clear, actionable error messages
|
|
91
|
+
5. WHEN completing actions THEN the System SHALL provide success feedback through toast notifications or inline messages
|
|
92
|
+
|
|
93
|
+
### Requirement 7: Accessibility & Inclusive Design
|
|
94
|
+
|
|
95
|
+
**User Story:** As a user with disabilities, I want an accessible website, so that I can navigate and understand content regardless of my abilities.
|
|
96
|
+
|
|
97
|
+
#### Acceptance Criteria
|
|
98
|
+
|
|
99
|
+
1. WHEN navigating with keyboard THEN the System SHALL provide visible focus indicators on all interactive elements
|
|
100
|
+
2. WHEN using screen readers THEN the System SHALL provide semantic HTML with proper ARIA labels and landmarks
|
|
101
|
+
3. WHEN viewing images THEN the System SHALL include descriptive alt text for all meaningful images
|
|
102
|
+
4. WHEN encountering color-coded information THEN the System SHALL provide additional non-color indicators
|
|
103
|
+
5. WHEN viewing forms THEN the System SHALL associate labels with inputs and provide clear error messages
|
|
104
|
+
|
|
105
|
+
### Requirement 8: Responsive Design & Mobile Experience
|
|
106
|
+
|
|
107
|
+
**User Story:** As a mobile user, I want a seamless experience on my device, so that I can access information on-the-go.
|
|
108
|
+
|
|
109
|
+
#### Acceptance Criteria
|
|
110
|
+
|
|
111
|
+
1. WHEN viewing on mobile THEN the System SHALL adapt layouts using mobile-first responsive breakpoints
|
|
112
|
+
2. WHEN interacting on touch devices THEN the System SHALL provide touch targets of at least 44x44px
|
|
113
|
+
3. WHEN viewing tables THEN the System SHALL make them horizontally scrollable or stack on mobile
|
|
114
|
+
4. WHEN viewing navigation THEN the System SHALL collapse to a mobile-friendly menu
|
|
115
|
+
5. WHEN viewing images THEN the System SHALL serve appropriately sized images for the viewport
|
|
116
|
+
|
|
117
|
+
### Requirement 9: Performance & Optimization
|
|
118
|
+
|
|
119
|
+
**User Story:** As a user, I want fast page loads, so that I don't wait unnecessarily for content.
|
|
120
|
+
|
|
121
|
+
#### Acceptance Criteria
|
|
122
|
+
|
|
123
|
+
1. WHEN loading pages THEN the System SHALL achieve Lighthouse performance scores above 90
|
|
124
|
+
2. WHEN loading images THEN the System SHALL use next/image with lazy loading and optimization
|
|
125
|
+
3. WHEN loading fonts THEN the System SHALL use font-display: swap to prevent FOIT
|
|
126
|
+
4. WHEN rendering components THEN the System SHALL minimize layout shifts (CLS < 0.1)
|
|
127
|
+
5. WHEN loading JavaScript THEN the System SHALL code-split and lazy-load non-critical bundles
|
|
128
|
+
|
|
129
|
+
### Requirement 10: Content Presentation & Scannability
|
|
130
|
+
|
|
131
|
+
**User Story:** As a busy professional, I want scannable content with clear visual hierarchy, so that I can quickly find what I need.
|
|
132
|
+
|
|
133
|
+
#### Acceptance Criteria
|
|
134
|
+
|
|
135
|
+
1. WHEN viewing long-form content THEN the System SHALL break text into digestible chunks with subheadings
|
|
136
|
+
2. WHEN scanning pages THEN the System SHALL use visual anchors (icons, badges, colors) to guide attention
|
|
137
|
+
3. WHEN viewing lists THEN the System SHALL use appropriate list styles (bullets, numbers, checkmarks) for content type
|
|
138
|
+
4. WHEN encountering important information THEN the System SHALL use callout boxes or highlighted sections
|
|
139
|
+
5. WHEN viewing code examples THEN the System SHALL provide syntax highlighting and copy buttons
|
|
140
|
+
|
|
141
|
+
### Requirement 11: Homepage Hero & First Impression
|
|
142
|
+
|
|
143
|
+
**User Story:** As a first-time visitor, I want to immediately understand what OSSA is, so that I can decide if it's relevant to me.
|
|
144
|
+
|
|
145
|
+
#### Acceptance Criteria
|
|
146
|
+
|
|
147
|
+
1. WHEN landing on homepage THEN the System SHALL display a clear value proposition above the fold
|
|
148
|
+
2. WHEN viewing the hero THEN the System SHALL use the gradient system with legible white text
|
|
149
|
+
3. WHEN scanning the hero THEN the System SHALL provide 3-5 key benefits with visual icons
|
|
150
|
+
4. WHEN ready to act THEN the System SHALL display prominent CTAs (Get Started, View Docs, GitHub)
|
|
151
|
+
5. WHEN scrolling THEN the System SHALL reveal content with subtle animations for engagement
|
|
152
|
+
|
|
153
|
+
### Requirement 12: Documentation Pages & Code Examples
|
|
154
|
+
|
|
155
|
+
**User Story:** As a developer, I want clear documentation with working code examples, so that I can implement OSSA quickly.
|
|
156
|
+
|
|
157
|
+
#### Acceptance Criteria
|
|
158
|
+
|
|
159
|
+
1. WHEN viewing docs THEN the System SHALL provide a persistent sidebar with section navigation
|
|
160
|
+
2. WHEN reading code examples THEN the System SHALL display syntax-highlighted code with copy buttons
|
|
161
|
+
3. WHEN viewing API references THEN the System SHALL organize information in scannable tables or cards
|
|
162
|
+
4. WHEN encountering complex concepts THEN the System SHALL provide diagrams or visual aids
|
|
163
|
+
5. WHEN needing more context THEN the System SHALL link to related documentation sections
|
|
164
|
+
|
|
165
|
+
### Requirement 13: Playground & Interactive Tools
|
|
166
|
+
|
|
167
|
+
**User Story:** As a user learning OSSA, I want interactive tools to experiment, so that I can learn by doing.
|
|
168
|
+
|
|
169
|
+
#### Acceptance Criteria
|
|
170
|
+
|
|
171
|
+
1. WHEN using the playground THEN the System SHALL provide a Monaco editor with YAML syntax highlighting
|
|
172
|
+
2. WHEN validating manifests THEN the System SHALL display clear success/error states with actionable feedback
|
|
173
|
+
3. WHEN switching templates THEN the System SHALL provide visual indicators for the active template
|
|
174
|
+
4. WHEN viewing validation results THEN the System SHALL highlight specific errors with line numbers
|
|
175
|
+
5. WHEN downloading manifests THEN the System SHALL provide one-click download and copy functionality
|
|
176
|
+
|
|
177
|
+
### Requirement 14: Footer & Secondary Navigation
|
|
178
|
+
|
|
179
|
+
**User Story:** As a user, I want comprehensive footer navigation, so that I can find additional resources and information.
|
|
180
|
+
|
|
181
|
+
#### Acceptance Criteria
|
|
182
|
+
|
|
183
|
+
1. WHEN viewing the footer THEN the System SHALL organize links into logical categories (Docs, Resources, Community)
|
|
184
|
+
2. WHEN looking for social links THEN the System SHALL display GitHub, npm, and other relevant platforms
|
|
185
|
+
3. WHEN viewing legal information THEN the System SHALL display copyright and license information
|
|
186
|
+
4. WHEN on mobile THEN the System SHALL stack footer columns vertically for readability
|
|
187
|
+
5. WHEN viewing the footer THEN the System SHALL use muted colors (gray-900 background) for visual separation
|
|
188
|
+
|
|
189
|
+
### Requirement 15: Logo Integration & Brand Assets
|
|
190
|
+
|
|
191
|
+
**User Story:** As a visitor, I want to see consistent, professional logo usage, so that I recognize the OSSA brand.
|
|
192
|
+
|
|
193
|
+
#### Acceptance Criteria
|
|
194
|
+
|
|
195
|
+
1. WHEN viewing partner logos THEN the System SHALL display them in grayscale with consistent sizing
|
|
196
|
+
2. WHEN hovering over logos THEN the System SHALL provide subtle hover effects (scale, color)
|
|
197
|
+
3. WHEN viewing the OSSA logo THEN the System SHALL display it with the gradient text treatment
|
|
198
|
+
4. WHEN on mobile THEN the System SHALL scale logos appropriately for smaller screens
|
|
199
|
+
5. WHEN loading logos THEN the System SHALL use optimized SVG or WebP formats
|
|
200
|
+
# Requirements Document: Brand Identity MVP for v0.2.6 Release
|
|
201
|
+
|
|
202
|
+
## Introduction
|
|
203
|
+
|
|
204
|
+
This document defines the minimum viable product (MVP) scope for completing Issue #44 (Brand Identity & Brand Guide Development) for the v0.2.6 release. This focuses on the highest-priority items needed to establish a professional, consistent brand presence on the OSSA website.
|
|
205
|
+
|
|
206
|
+
## Glossary
|
|
207
|
+
|
|
208
|
+
- **Website**: The OSSA marketing and documentation website at openstandardagents.org
|
|
209
|
+
- **Component**: A reusable UI element (Button, Card, Badge, etc.)
|
|
210
|
+
- **Design Token**: A centralized variable for colors, typography, spacing, etc.
|
|
211
|
+
- **WCAG 2.1 AA**: Web Content Accessibility Guidelines level AA compliance
|
|
212
|
+
- **Active State**: Visual indicator showing the current page in navigation
|
|
213
|
+
- **Interactive Feature**: User-triggered functionality like copy buttons or tooltips
|
|
214
|
+
|
|
215
|
+
## Requirements
|
|
216
|
+
|
|
217
|
+
### Requirement 1: Complete Button Component System
|
|
218
|
+
|
|
219
|
+
**User Story:** As a website visitor, I want consistent, accessible buttons across all pages, so that I can easily identify and interact with calls-to-action.
|
|
220
|
+
|
|
221
|
+
#### Acceptance Criteria
|
|
222
|
+
|
|
223
|
+
1. WHEN viewing any button THEN the Website SHALL display it using the Button component with proper variant (primary, secondary, outline, ghost, danger, success)
|
|
224
|
+
2. WHEN hovering over a button THEN the Website SHALL provide smooth visual feedback with appropriate color transitions
|
|
225
|
+
3. WHEN using keyboard navigation THEN the Website SHALL display visible focus rings on all buttons meeting WCAG 2.1 AA standards
|
|
226
|
+
4. WHEN a button is in loading state THEN the Website SHALL display a spinner and disable interaction
|
|
227
|
+
5. WHEN buttons contain icons THEN the Website SHALL position them consistently (left or right) with proper spacing
|
|
228
|
+
|
|
229
|
+
### Requirement 2: Navigation Active States
|
|
230
|
+
|
|
231
|
+
**User Story:** As a user navigating the website, I want to see which page I'm currently on, so that I can maintain context and orientation.
|
|
232
|
+
|
|
233
|
+
#### Acceptance Criteria
|
|
234
|
+
|
|
235
|
+
1. WHEN viewing the header navigation THEN the Website SHALL highlight the active page link with distinct visual styling
|
|
236
|
+
2. WHEN on a documentation page THEN the Website SHALL highlight the active section in the sidebar navigation
|
|
237
|
+
3. WHEN hovering over navigation links THEN the Website SHALL provide visual feedback distinct from the active state
|
|
238
|
+
4. WHEN using keyboard navigation THEN the Website SHALL maintain visible focus states on navigation items
|
|
239
|
+
5. WHEN on mobile devices THEN the Website SHALL show active states in the mobile menu
|
|
240
|
+
|
|
241
|
+
### Requirement 3: Enhanced CodeBlock Interactivity
|
|
242
|
+
|
|
243
|
+
**User Story:** As a developer reading documentation, I want to easily copy code examples, so that I can quickly implement OSSA in my projects.
|
|
244
|
+
|
|
245
|
+
#### Acceptance Criteria
|
|
246
|
+
|
|
247
|
+
1. WHEN viewing a code block THEN the Website SHALL display a copy button in the top-right corner
|
|
248
|
+
2. WHEN clicking the copy button THEN the Website SHALL copy the code to clipboard and show success feedback
|
|
249
|
+
3. WHEN hovering over the copy button THEN the Website SHALL display a tooltip indicating "Copy code"
|
|
250
|
+
4. WHEN code is successfully copied THEN the Website SHALL change the button icon to a checkmark for 2 seconds
|
|
251
|
+
5. WHEN viewing long code blocks THEN the Website SHALL provide proper scrolling with visible scrollbars
|
|
252
|
+
|
|
253
|
+
### Requirement 4: Homepage Enterprise Messaging
|
|
254
|
+
|
|
255
|
+
**User Story:** As an enterprise decision-maker, I want to quickly understand OSSA's value proposition, so that I can evaluate it for my organization.
|
|
256
|
+
|
|
257
|
+
#### Acceptance Criteria
|
|
258
|
+
|
|
259
|
+
1. WHEN viewing the homepage hero THEN the Website SHALL display enterprise-focused messaging emphasizing vendor-neutrality, compliance, and governance
|
|
260
|
+
2. WHEN scrolling to the comparison section THEN the Website SHALL display a clear matrix comparing OSSA to alternatives (LangChain, AutoGen, MCP, Semantic Kernel)
|
|
261
|
+
3. WHEN viewing the "Why Does This Matter?" section THEN the Website SHALL use Card components with clear visual hierarchy
|
|
262
|
+
4. WHEN on mobile devices THEN the Website SHALL adapt the comparison matrix to a mobile-friendly format
|
|
263
|
+
5. WHEN viewing key benefits THEN the Website SHALL highlight portability, compliance, governance, and multi-runtime support
|
|
264
|
+
|
|
265
|
+
### Requirement 5: Mobile Navigation UX
|
|
266
|
+
|
|
267
|
+
**User Story:** As a mobile user, I want smooth, intuitive navigation, so that I can easily explore the website on my phone.
|
|
268
|
+
|
|
269
|
+
#### Acceptance Criteria
|
|
270
|
+
|
|
271
|
+
1. WHEN opening the mobile menu THEN the Website SHALL animate the menu with smooth transitions
|
|
272
|
+
2. WHEN the mobile menu is open THEN the Website SHALL prevent body scrolling
|
|
273
|
+
3. WHEN clicking a mobile menu item THEN the Website SHALL close the menu and navigate to the page
|
|
274
|
+
4. WHEN the mobile menu is open THEN the Website SHALL display a close button or overlay to dismiss it
|
|
275
|
+
5. WHEN rotating the device THEN the Website SHALL adapt the navigation layout appropriately
|
|
276
|
+
|
|
277
|
+
### Requirement 6: Accessibility Compliance
|
|
278
|
+
|
|
279
|
+
**User Story:** As a user with disabilities, I want an accessible website, so that I can navigate and understand content regardless of my abilities.
|
|
280
|
+
|
|
281
|
+
#### Acceptance Criteria
|
|
282
|
+
|
|
283
|
+
1. WHEN using keyboard navigation THEN the Website SHALL provide visible focus indicators on all interactive elements
|
|
284
|
+
2. WHEN using a screen reader THEN the Website SHALL provide proper ARIA labels on all components
|
|
285
|
+
3. WHEN viewing text on colored backgrounds THEN the Website SHALL maintain WCAG AA contrast ratios (4.5:1 minimum)
|
|
286
|
+
4. WHEN interactive elements are disabled THEN the Website SHALL communicate the disabled state to assistive technologies
|
|
287
|
+
5. WHEN images are displayed THEN the Website SHALL provide descriptive alt text for all meaningful images
|