@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,370 @@
|
|
|
1
|
+
@use '../styles/variables.scss' as *;
|
|
2
|
+
|
|
3
|
+
@tailwind base;
|
|
4
|
+
@tailwind components;
|
|
5
|
+
@tailwind utilities;
|
|
6
|
+
|
|
7
|
+
@layer base {
|
|
8
|
+
:root {
|
|
9
|
+
/* ========================================================================
|
|
10
|
+
PRIMARY BRAND COLOR - Deep Purple
|
|
11
|
+
======================================================================== */
|
|
12
|
+
--ossa-primary-50: #{$ossa-primary-50};
|
|
13
|
+
--ossa-primary-100: #{$ossa-primary-100};
|
|
14
|
+
--ossa-primary-200: #{$ossa-primary-200};
|
|
15
|
+
--ossa-primary-300: #{$ossa-primary-300};
|
|
16
|
+
--ossa-primary-400: #{$ossa-primary-400};
|
|
17
|
+
--ossa-primary: #{$ossa-primary-500};
|
|
18
|
+
--ossa-primary-500: #{$ossa-primary-500};
|
|
19
|
+
--ossa-primary-600: #{$ossa-primary-600};
|
|
20
|
+
--ossa-primary-700: #{$ossa-primary-700};
|
|
21
|
+
--ossa-primary-800: #{$ossa-primary-800};
|
|
22
|
+
--ossa-primary-900: #{$ossa-primary-900};
|
|
23
|
+
--ossa-primary-950: #{$ossa-primary-950};
|
|
24
|
+
|
|
25
|
+
/* ========================================================================
|
|
26
|
+
SECONDARY BRAND COLOR - Cyan Blue
|
|
27
|
+
======================================================================== */
|
|
28
|
+
--ossa-secondary-50: #{$ossa-secondary-50};
|
|
29
|
+
--ossa-secondary-100: #{$ossa-secondary-100};
|
|
30
|
+
--ossa-secondary-200: #{$ossa-secondary-200};
|
|
31
|
+
--ossa-secondary-300: #{$ossa-secondary-300};
|
|
32
|
+
--ossa-secondary-400: #{$ossa-secondary-400};
|
|
33
|
+
--ossa-secondary: #{$ossa-secondary-500};
|
|
34
|
+
--ossa-secondary-500: #{$ossa-secondary-500};
|
|
35
|
+
--ossa-secondary-600: #{$ossa-secondary-600};
|
|
36
|
+
--ossa-secondary-700: #{$ossa-secondary-700};
|
|
37
|
+
--ossa-secondary-800: #{$ossa-secondary-800};
|
|
38
|
+
--ossa-secondary-900: #{$ossa-secondary-900};
|
|
39
|
+
--ossa-secondary-950: #{$ossa-secondary-950};
|
|
40
|
+
|
|
41
|
+
/* ========================================================================
|
|
42
|
+
ACCENT COLOR - Light Purple
|
|
43
|
+
======================================================================== */
|
|
44
|
+
--ossa-accent-50: #{$ossa-accent-50};
|
|
45
|
+
--ossa-accent-100: #{$ossa-accent-100};
|
|
46
|
+
--ossa-accent-200: #{$ossa-accent-200};
|
|
47
|
+
--ossa-accent-300: #{$ossa-accent-300};
|
|
48
|
+
--ossa-accent-400: #{$ossa-accent-400};
|
|
49
|
+
--ossa-accent: #{$ossa-accent-500};
|
|
50
|
+
--ossa-accent-500: #{$ossa-accent-500};
|
|
51
|
+
--ossa-accent-600: #{$ossa-accent-600};
|
|
52
|
+
--ossa-accent-700: #{$ossa-accent-700};
|
|
53
|
+
--ossa-accent-800: #{$ossa-accent-800};
|
|
54
|
+
--ossa-accent-900: #{$ossa-accent-900};
|
|
55
|
+
--ossa-accent-950: #{$ossa-accent-950};
|
|
56
|
+
|
|
57
|
+
/* ========================================================================
|
|
58
|
+
DARK PURPLE - For contrast and depth
|
|
59
|
+
======================================================================== */
|
|
60
|
+
--ossa-dark-purple-50: #{$ossa-dark-purple-50};
|
|
61
|
+
--ossa-dark-purple-100: #{$ossa-dark-purple-100};
|
|
62
|
+
--ossa-dark-purple-200: #{$ossa-dark-purple-200};
|
|
63
|
+
--ossa-dark-purple-300: #{$ossa-dark-purple-300};
|
|
64
|
+
--ossa-dark-purple-400: #{$ossa-dark-purple-400};
|
|
65
|
+
--ossa-dark-purple-500: #{$ossa-dark-purple-500};
|
|
66
|
+
--ossa-dark-purple-600: #{$ossa-dark-purple-600};
|
|
67
|
+
--ossa-dark-purple-700: #{$ossa-dark-purple-700};
|
|
68
|
+
--ossa-dark-purple-800: #{$ossa-dark-purple-800};
|
|
69
|
+
--ossa-dark-purple: #{$ossa-dark-purple-900};
|
|
70
|
+
--ossa-dark-purple-900: #{$ossa-dark-purple-900};
|
|
71
|
+
--ossa-dark-purple-950: #{$ossa-dark-purple-950};
|
|
72
|
+
|
|
73
|
+
/* ========================================================================
|
|
74
|
+
SEMANTIC COLORS
|
|
75
|
+
======================================================================== */
|
|
76
|
+
/* Success - Green */
|
|
77
|
+
--ossa-success-50: #{$ossa-success-50};
|
|
78
|
+
--ossa-success-100: #{$ossa-success-100};
|
|
79
|
+
--ossa-success-200: #{$ossa-success-200};
|
|
80
|
+
--ossa-success-300: #{$ossa-success-300};
|
|
81
|
+
--ossa-success-400: #{$ossa-success-400};
|
|
82
|
+
--ossa-success: #{$ossa-success-500};
|
|
83
|
+
--ossa-success-500: #{$ossa-success-500};
|
|
84
|
+
--ossa-success-600: #{$ossa-success-600};
|
|
85
|
+
--ossa-success-700: #{$ossa-success-700};
|
|
86
|
+
--ossa-success-800: #{$ossa-success-800};
|
|
87
|
+
--ossa-success-900: #{$ossa-success-900};
|
|
88
|
+
--ossa-success-950: #{$ossa-success-950};
|
|
89
|
+
|
|
90
|
+
/* Warning - Amber */
|
|
91
|
+
--ossa-warning-50: #{$ossa-warning-50};
|
|
92
|
+
--ossa-warning-100: #{$ossa-warning-100};
|
|
93
|
+
--ossa-warning-200: #{$ossa-warning-200};
|
|
94
|
+
--ossa-warning-300: #{$ossa-warning-300};
|
|
95
|
+
--ossa-warning-400: #{$ossa-warning-400};
|
|
96
|
+
--ossa-warning: #{$ossa-warning-500};
|
|
97
|
+
--ossa-warning-500: #{$ossa-warning-500};
|
|
98
|
+
--ossa-warning-600: #{$ossa-warning-600};
|
|
99
|
+
--ossa-warning-700: #{$ossa-warning-700};
|
|
100
|
+
--ossa-warning-800: #{$ossa-warning-800};
|
|
101
|
+
--ossa-warning-900: #{$ossa-warning-900};
|
|
102
|
+
--ossa-warning-950: #{$ossa-warning-950};
|
|
103
|
+
|
|
104
|
+
/* Error - Red */
|
|
105
|
+
--ossa-error-50: #{$ossa-error-50};
|
|
106
|
+
--ossa-error-100: #{$ossa-error-100};
|
|
107
|
+
--ossa-error-200: #{$ossa-error-200};
|
|
108
|
+
--ossa-error-300: #{$ossa-error-300};
|
|
109
|
+
--ossa-error-400: #{$ossa-error-400};
|
|
110
|
+
--ossa-error: #{$ossa-error-500};
|
|
111
|
+
--ossa-error-500: #{$ossa-error-500};
|
|
112
|
+
--ossa-error-600: #{$ossa-error-600};
|
|
113
|
+
--ossa-error-700: #{$ossa-error-700};
|
|
114
|
+
--ossa-error-800: #{$ossa-error-800};
|
|
115
|
+
--ossa-error-900: #{$ossa-error-900};
|
|
116
|
+
--ossa-error-950: #{$ossa-error-950};
|
|
117
|
+
|
|
118
|
+
/* Info - Cyan */
|
|
119
|
+
--ossa-info-50: #{$ossa-info-50};
|
|
120
|
+
--ossa-info-100: #{$ossa-info-100};
|
|
121
|
+
--ossa-info-200: #{$ossa-info-200};
|
|
122
|
+
--ossa-info-300: #{$ossa-info-300};
|
|
123
|
+
--ossa-info-400: #{$ossa-info-400};
|
|
124
|
+
--ossa-info: #{$ossa-info-500};
|
|
125
|
+
--ossa-info-500: #{$ossa-info-500};
|
|
126
|
+
--ossa-info-600: #{$ossa-info-600};
|
|
127
|
+
--ossa-info-700: #{$ossa-info-700};
|
|
128
|
+
--ossa-info-800: #{$ossa-info-800};
|
|
129
|
+
--ossa-info-900: #{$ossa-info-900};
|
|
130
|
+
--ossa-info-950: #{$ossa-info-950};
|
|
131
|
+
|
|
132
|
+
/* ========================================================================
|
|
133
|
+
NEUTRAL COLORS
|
|
134
|
+
======================================================================== */
|
|
135
|
+
--ossa-gray-50: #{$ossa-gray-50};
|
|
136
|
+
--ossa-gray-100: #{$ossa-gray-100};
|
|
137
|
+
--ossa-gray-200: #{$ossa-gray-200};
|
|
138
|
+
--ossa-gray-300: #{$ossa-gray-300};
|
|
139
|
+
--ossa-gray-400: #{$ossa-gray-400};
|
|
140
|
+
--ossa-gray-500: #{$ossa-gray-500};
|
|
141
|
+
--ossa-gray-600: #{$ossa-gray-600};
|
|
142
|
+
--ossa-gray-700: #{$ossa-gray-700};
|
|
143
|
+
--ossa-gray-800: #{$ossa-gray-800};
|
|
144
|
+
--ossa-gray-900: #{$ossa-gray-900};
|
|
145
|
+
--ossa-gray-950: #{$ossa-gray-950};
|
|
146
|
+
|
|
147
|
+
--ossa-white: #{$ossa-white};
|
|
148
|
+
--ossa-black: #{$ossa-black};
|
|
149
|
+
--ossa-dark: #{$ossa-dark};
|
|
150
|
+
|
|
151
|
+
/* ========================================================================
|
|
152
|
+
FOCUS RING COLORS - For Accessibility
|
|
153
|
+
======================================================================== */
|
|
154
|
+
--ossa-focus-primary: #{$ossa-focus-primary};
|
|
155
|
+
--ossa-focus-secondary: #{$ossa-focus-secondary};
|
|
156
|
+
--ossa-focus-accent: #{$ossa-focus-accent};
|
|
157
|
+
|
|
158
|
+
/* ========================================================================
|
|
159
|
+
BRAND GRADIENTS
|
|
160
|
+
======================================================================== */
|
|
161
|
+
--gradient-brand: #{$gradient-brand};
|
|
162
|
+
--gradient-hero: #{$gradient-hero};
|
|
163
|
+
--gradient-button: #{$gradient-button};
|
|
164
|
+
|
|
165
|
+
/* ========================================================================
|
|
166
|
+
TYPOGRAPHY SYSTEM
|
|
167
|
+
======================================================================== */
|
|
168
|
+
/* Font Families */
|
|
169
|
+
--font-sans: #{$font-sans};
|
|
170
|
+
--font-mono: #{$font-mono};
|
|
171
|
+
|
|
172
|
+
/* Type Scale */
|
|
173
|
+
--text-display: #{$text-display};
|
|
174
|
+
--text-h1: #{$text-h1};
|
|
175
|
+
--text-h2: #{$text-h2};
|
|
176
|
+
--text-h3: #{$text-h3};
|
|
177
|
+
--text-h4: #{$text-h4};
|
|
178
|
+
--text-h5: #{$text-h5};
|
|
179
|
+
--text-h6: #{$text-h6};
|
|
180
|
+
--text-body: #{$text-body};
|
|
181
|
+
--text-small: #{$text-small};
|
|
182
|
+
|
|
183
|
+
/* Line Heights */
|
|
184
|
+
--leading-display: #{$leading-display};
|
|
185
|
+
--leading-h1: #{$leading-h1};
|
|
186
|
+
--leading-h2: #{$leading-h2};
|
|
187
|
+
--leading-h3: #{$leading-h3};
|
|
188
|
+
--leading-h4: #{$leading-h4};
|
|
189
|
+
--leading-h5: #{$leading-h5};
|
|
190
|
+
--leading-h6: #{$leading-h6};
|
|
191
|
+
--leading-body: #{$leading-body};
|
|
192
|
+
--leading-small: #{$leading-small};
|
|
193
|
+
|
|
194
|
+
/* Letter Spacing */
|
|
195
|
+
--tracking-display: #{$tracking-display};
|
|
196
|
+
--tracking-h1: #{$tracking-h1};
|
|
197
|
+
--tracking-normal: #{$tracking-normal};
|
|
198
|
+
|
|
199
|
+
/* Font Weights */
|
|
200
|
+
--font-normal: #{$font-normal};
|
|
201
|
+
--font-medium: #{$font-medium};
|
|
202
|
+
--font-semibold: #{$font-semibold};
|
|
203
|
+
--font-bold: #{$font-bold};
|
|
204
|
+
--font-extrabold: #{$font-extrabold};
|
|
205
|
+
|
|
206
|
+
/* ========================================================================
|
|
207
|
+
CODE SYNTAX HIGHLIGHTING
|
|
208
|
+
======================================================================== */
|
|
209
|
+
--code-bg: #{$code-bg};
|
|
210
|
+
--code-text: #{$code-text};
|
|
211
|
+
--code-keyword: #{$code-keyword};
|
|
212
|
+
--code-string: #{$code-string};
|
|
213
|
+
--code-comment: #{$code-comment};
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
html {
|
|
217
|
+
scroll-behavior: smooth;
|
|
218
|
+
font-family: $font-sans;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
body {
|
|
222
|
+
@apply font-sans text-gray-900 bg-white antialiased;
|
|
223
|
+
font-size: $text-body;
|
|
224
|
+
line-height: $leading-body;
|
|
225
|
+
font-weight: $font-normal;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* ========================================================================
|
|
229
|
+
TYPOGRAPHY HIERARCHY - Based on Issue #44 Brand Guide
|
|
230
|
+
======================================================================== */
|
|
231
|
+
|
|
232
|
+
/* Display - For hero sections */
|
|
233
|
+
.text-display {
|
|
234
|
+
font-size: $text-display;
|
|
235
|
+
line-height: $leading-display;
|
|
236
|
+
font-weight: $font-extrabold;
|
|
237
|
+
letter-spacing: $tracking-display;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
h1, .h1 {
|
|
241
|
+
font-size: $text-h1;
|
|
242
|
+
line-height: $leading-h1;
|
|
243
|
+
font-weight: $font-bold;
|
|
244
|
+
letter-spacing: $tracking-h1;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
h2, .h2 {
|
|
248
|
+
font-size: $text-h2;
|
|
249
|
+
line-height: $leading-h2;
|
|
250
|
+
font-weight: $font-bold;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
h3, .h3 {
|
|
254
|
+
font-size: $text-h3;
|
|
255
|
+
line-height: $leading-h3;
|
|
256
|
+
font-weight: $font-semibold;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
h4, .h4 {
|
|
260
|
+
font-size: $text-h4;
|
|
261
|
+
line-height: $leading-h4;
|
|
262
|
+
font-weight: $font-semibold;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
h5, .h5 {
|
|
266
|
+
font-size: $text-h5;
|
|
267
|
+
line-height: $leading-h5;
|
|
268
|
+
font-weight: $font-semibold;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
h6, .h6 {
|
|
272
|
+
font-size: $text-h6;
|
|
273
|
+
line-height: $leading-h6;
|
|
274
|
+
font-weight: $font-semibold;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/* Body text */
|
|
278
|
+
p, .text-body {
|
|
279
|
+
font-size: $text-body;
|
|
280
|
+
line-height: $leading-body;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/* Small text */
|
|
284
|
+
small, .text-small {
|
|
285
|
+
font-size: $text-small;
|
|
286
|
+
line-height: $leading-small;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
code {
|
|
290
|
+
@apply font-mono;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
pre {
|
|
294
|
+
@apply bg-code-bg text-code-text rounded-lg p-4 overflow-x-auto;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
pre code {
|
|
298
|
+
@apply text-code-text;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
a {
|
|
302
|
+
cursor: pointer;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.sr-only {
|
|
306
|
+
position: absolute;
|
|
307
|
+
width: 1px;
|
|
308
|
+
height: 1px;
|
|
309
|
+
padding: 0;
|
|
310
|
+
margin: -1px;
|
|
311
|
+
overflow: hidden;
|
|
312
|
+
clip: rect(0, 0, 0, 0);
|
|
313
|
+
white-space: nowrap;
|
|
314
|
+
border-width: 0;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.focus\:not-sr-only:focus {
|
|
318
|
+
position: static;
|
|
319
|
+
width: auto;
|
|
320
|
+
height: auto;
|
|
321
|
+
padding: inherit;
|
|
322
|
+
margin: inherit;
|
|
323
|
+
overflow: visible;
|
|
324
|
+
clip: auto;
|
|
325
|
+
white-space: normal;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
@layer components {
|
|
330
|
+
.btn-primary {
|
|
331
|
+
@apply bg-primary text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition-opacity focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.bg-gradient-hero {
|
|
335
|
+
background: var(--gradient-hero);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.bg-gradient-button {
|
|
339
|
+
background: var(--gradient-button);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.bg-code-bg {
|
|
343
|
+
background-color: var(--code-bg);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.text-code-text {
|
|
347
|
+
color: var(--code-text);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.text-success {
|
|
351
|
+
color: var(--ossa-success);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.btn-secondary {
|
|
355
|
+
@apply bg-secondary text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition-opacity focus:outline-none focus:ring-2 focus:ring-secondary focus:ring-offset-2;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.btn-outline {
|
|
359
|
+
@apply border-2 border-primary text-primary px-6 py-3 rounded-lg font-medium hover:bg-primary hover:text-white transition-colors focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.card {
|
|
363
|
+
@apply bg-white rounded-lg shadow-md p-6 border border-gray-300;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.card-hover {
|
|
367
|
+
@apply card hover:shadow-lg transition-shadow;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
package/website/app/layout.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Metadata } from 'next';
|
|
2
2
|
import { Inter } from 'next/font/google';
|
|
3
|
-
import './globals.
|
|
3
|
+
import './globals.scss';
|
|
4
4
|
import { Header } from '@/components/layout/Header';
|
|
5
5
|
import { Footer } from '@/components/layout/Footer';
|
|
6
6
|
import { StructuredData } from '@/components/StructuredData';
|
|
@@ -85,7 +85,7 @@ export default function RootLayout({
|
|
|
85
85
|
}}
|
|
86
86
|
/>
|
|
87
87
|
</head>
|
|
88
|
-
<body>
|
|
88
|
+
<body suppressHydrationWarning>
|
|
89
89
|
<div className="flex flex-col min-h-screen">
|
|
90
90
|
<a
|
|
91
91
|
href="#main-content"
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import type { Metadata } from 'next';
|
|
2
|
+
import fs from 'fs';
|
|
3
|
+
import Link from 'next/link';
|
|
4
|
+
import path from 'path';
|
|
5
|
+
|
|
6
|
+
export const metadata: Metadata = {
|
|
7
|
+
title: 'Apache License 2.0 - Open Standard Agents',
|
|
8
|
+
description: 'Review the Apache License 2.0 terms that govern the Open Standard Agents project and ecosystem.',
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
function getLicenseText(): string {
|
|
12
|
+
const licensePath = path.join(process.cwd(), 'public/licenses/apache-2.0.txt');
|
|
13
|
+
return fs.readFileSync(licensePath, 'utf-8');
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default function LicensePage() {
|
|
17
|
+
const licenseText = getLicenseText();
|
|
18
|
+
|
|
19
|
+
return (
|
|
20
|
+
<>
|
|
21
|
+
<div className="bg-gradient-to-br from-secondary via-primary to-accent text-white py-20 px-4">
|
|
22
|
+
<div className="container mx-auto max-w-4xl text-center">
|
|
23
|
+
<div className="inline-flex items-center justify-center w-20 h-20 bg-white/20 backdrop-blur-sm rounded-full mb-6">
|
|
24
|
+
<svg className="w-10 h-10" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
25
|
+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 13h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V20a2 2 0 01-2 2z" />
|
|
26
|
+
</svg>
|
|
27
|
+
</div>
|
|
28
|
+
<h1 className="text-5xl font-bold mb-4">Apache License 2.0</h1>
|
|
29
|
+
<p className="text-xl text-white/90 mb-6">
|
|
30
|
+
The governing open source license for the Open Standard Agents project and its documentation.
|
|
31
|
+
</p>
|
|
32
|
+
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
|
33
|
+
<Link
|
|
34
|
+
href="#license-text"
|
|
35
|
+
className="inline-flex items-center justify-center px-6 py-3 bg-white text-primary font-semibold rounded-lg shadow-lg hover:-translate-y-0.5 transition-all"
|
|
36
|
+
>
|
|
37
|
+
Read Full Text
|
|
38
|
+
</Link>
|
|
39
|
+
<a
|
|
40
|
+
href="https://opensource.org/licenses/Apache-2.0"
|
|
41
|
+
target="_blank"
|
|
42
|
+
rel="noopener noreferrer"
|
|
43
|
+
className="inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all"
|
|
44
|
+
>
|
|
45
|
+
Official License Page
|
|
46
|
+
</a>
|
|
47
|
+
<a
|
|
48
|
+
href="/licenses/apache-2.0.txt"
|
|
49
|
+
className="inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all"
|
|
50
|
+
>
|
|
51
|
+
Download TXT
|
|
52
|
+
</a>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<div className="container mx-auto max-w-6xl px-4 py-12 space-y-12">
|
|
58
|
+
<section className="grid md:grid-cols-3 gap-6">
|
|
59
|
+
<div className="bg-white rounded-xl shadow-md p-6 border border-gray-100">
|
|
60
|
+
<div className="w-12 h-12 rounded-lg bg-primary/10 text-primary flex items-center justify-center mb-4">
|
|
61
|
+
<svg className="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
62
|
+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 4v16m0 0l3-3m-3 3l-3-3m9-5h3m-3 0l-3-3m3 3l-3 3M9 12H6m3 0l3-3m-3 3l3 3" />
|
|
63
|
+
</svg>
|
|
64
|
+
</div>
|
|
65
|
+
<h2 className="text-2xl font-semibold mb-3 text-gray-900">Permissions</h2>
|
|
66
|
+
<ul className="space-y-2 text-gray-700 list-disc list-inside">
|
|
67
|
+
<li>Use, modify, and distribute the specification and code</li>
|
|
68
|
+
<li>Commercial and private use allowed</li>
|
|
69
|
+
<li>Patent grants included for contributors</li>
|
|
70
|
+
</ul>
|
|
71
|
+
</div>
|
|
72
|
+
|
|
73
|
+
<div className="bg-white rounded-xl shadow-md p-6 border border-gray-100">
|
|
74
|
+
<div className="w-12 h-12 rounded-lg bg-secondary/10 text-secondary flex items-center justify-center mb-4">
|
|
75
|
+
<svg className="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
76
|
+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
|
77
|
+
</svg>
|
|
78
|
+
</div>
|
|
79
|
+
<h2 className="text-2xl font-semibold mb-3 text-gray-900">Conditions</h2>
|
|
80
|
+
<ul className="space-y-2 text-gray-700 list-disc list-inside">
|
|
81
|
+
<li>Preserve copyright and license notices</li>
|
|
82
|
+
<li>Include a NOTICE file when required</li>
|
|
83
|
+
<li>Document significant changes to the work</li>
|
|
84
|
+
</ul>
|
|
85
|
+
</div>
|
|
86
|
+
|
|
87
|
+
<div className="bg-white rounded-xl shadow-md p-6 border border-gray-100">
|
|
88
|
+
<div className="w-12 h-12 rounded-lg bg-accent/10 text-accent flex items-center justify-center mb-4">
|
|
89
|
+
<svg className="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
90
|
+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10 9V5a2 2 0 012-2h6a2 2 0 012 2v6m-8 4h6m-6 0l3 3m-3-3l3-3M15 9h.01M5 7h.01M7 5h.01M19 15h.01M7 17h.01M5 19h.01M3 3l18 18" />
|
|
91
|
+
</svg>
|
|
92
|
+
</div>
|
|
93
|
+
<h2 className="text-2xl font-semibold mb-3 text-gray-900">Limitations</h2>
|
|
94
|
+
<ul className="space-y-2 text-gray-700 list-disc list-inside">
|
|
95
|
+
<li>No trademark license is granted</li>
|
|
96
|
+
<li>No warranty - software is provided "as is"</li>
|
|
97
|
+
<li>Liability is limited under the terms</li>
|
|
98
|
+
</ul>
|
|
99
|
+
</div>
|
|
100
|
+
</section>
|
|
101
|
+
|
|
102
|
+
<section className="bg-gray-50 rounded-2xl border border-gray-200 p-8 shadow-sm">
|
|
103
|
+
<div className="flex flex-col md:flex-row md:items-center md:justify-between gap-6 mb-6">
|
|
104
|
+
<div>
|
|
105
|
+
<p className="text-sm font-semibold text-primary uppercase tracking-wide">Open Source Commitment</p>
|
|
106
|
+
<h2 className="text-3xl font-bold text-gray-900 mt-2">Why Apache 2.0?</h2>
|
|
107
|
+
<p className="text-lg text-gray-700 mt-3 max-w-3xl">
|
|
108
|
+
Apache 2.0 offers a clear, business-friendly open source model with patent grants, making it safe for
|
|
109
|
+
enterprises, vendors, and researchers to build on the Open Standard Agents specification and ecosystem.
|
|
110
|
+
</p>
|
|
111
|
+
</div>
|
|
112
|
+
<div className="flex gap-3">
|
|
113
|
+
<a
|
|
114
|
+
href="/licenses/apache-2.0.txt"
|
|
115
|
+
className="inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all"
|
|
116
|
+
>
|
|
117
|
+
Download License
|
|
118
|
+
</a>
|
|
119
|
+
<a
|
|
120
|
+
href="https://opensource.org/licenses/Apache-2.0"
|
|
121
|
+
target="_blank"
|
|
122
|
+
rel="noopener noreferrer"
|
|
123
|
+
className="inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all"
|
|
124
|
+
>
|
|
125
|
+
OpenSource.org
|
|
126
|
+
</a>
|
|
127
|
+
</div>
|
|
128
|
+
</div>
|
|
129
|
+
<div className="grid md:grid-cols-2 gap-6">
|
|
130
|
+
<div className="bg-white rounded-xl border border-gray-100 p-6 shadow-sm">
|
|
131
|
+
<h3 className="text-xl font-semibold text-gray-900 mb-3">Using OSSA in your projects</h3>
|
|
132
|
+
<ul className="space-y-2 text-gray-700 leading-relaxed list-disc list-inside">
|
|
133
|
+
<li>Embed the specification, reference implementations, or docs in commercial and open source products.</li>
|
|
134
|
+
<li>Attribute OSSA and retain the license headers in source distributions.</li>
|
|
135
|
+
<li>Contribute improvements knowing patent grants apply to contributions.</li>
|
|
136
|
+
</ul>
|
|
137
|
+
</div>
|
|
138
|
+
<div className="bg-white rounded-xl border border-gray-100 p-6 shadow-sm">
|
|
139
|
+
<h3 className="text-xl font-semibold text-gray-900 mb-3">Need attribution text?</h3>
|
|
140
|
+
<p className="text-gray-700 mb-3">
|
|
141
|
+
Include the following notice in your documentation or about pages:
|
|
142
|
+
</p>
|
|
143
|
+
<div className="bg-gray-900 text-gray-100 p-4 rounded-lg text-sm font-mono overflow-x-auto border border-gray-800">
|
|
144
|
+
Open Standard Agents Initiative - licensed under the Apache License, Version 2.0. You may not use this
|
|
145
|
+
project except in compliance with the License. You may obtain a copy at https://opensource.org/licenses/Apache-2.0
|
|
146
|
+
</div>
|
|
147
|
+
</div>
|
|
148
|
+
</div>
|
|
149
|
+
</section>
|
|
150
|
+
|
|
151
|
+
<section id="license-text" className="space-y-4">
|
|
152
|
+
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3">
|
|
153
|
+
<div>
|
|
154
|
+
<p className="text-sm font-semibold text-primary uppercase tracking-wide">Full Text</p>
|
|
155
|
+
<h2 className="text-3xl font-bold text-gray-900">Apache License, Version 2.0</h2>
|
|
156
|
+
</div>
|
|
157
|
+
<div className="flex gap-3">
|
|
158
|
+
<a
|
|
159
|
+
href="/licenses/apache-2.0.txt"
|
|
160
|
+
className="inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all"
|
|
161
|
+
>
|
|
162
|
+
Download .txt
|
|
163
|
+
</a>
|
|
164
|
+
<a
|
|
165
|
+
href="https://opensource.org/licenses/Apache-2.0"
|
|
166
|
+
target="_blank"
|
|
167
|
+
rel="noopener noreferrer"
|
|
168
|
+
className="inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all"
|
|
169
|
+
>
|
|
170
|
+
View on OpenSource.org
|
|
171
|
+
</a>
|
|
172
|
+
</div>
|
|
173
|
+
</div>
|
|
174
|
+
<div className="bg-gray-900 text-gray-100 rounded-2xl border border-gray-800 shadow-inner">
|
|
175
|
+
<div className="max-h-[32rem] overflow-y-auto p-6">
|
|
176
|
+
<pre className="whitespace-pre-wrap font-mono text-sm leading-relaxed">{licenseText}</pre>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</section>
|
|
180
|
+
</div>
|
|
181
|
+
</>
|
|
182
|
+
);
|
|
183
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import Link from 'next/link';
|
|
2
|
+
|
|
3
|
+
export default function NotFound() {
|
|
4
|
+
return (
|
|
5
|
+
<div className="container mx-auto px-4 py-16 text-center">
|
|
6
|
+
<h1 className="text-4xl font-bold mb-4">404 - Page Not Found</h1>
|
|
7
|
+
<p className="text-lg text-gray-600 mb-8">
|
|
8
|
+
The page you're looking for doesn't exist.
|
|
9
|
+
</p>
|
|
10
|
+
<Link
|
|
11
|
+
href="/"
|
|
12
|
+
className="inline-block px-6 py-3 bg-primary text-white rounded-lg hover:bg-primary/90 transition-colors"
|
|
13
|
+
>
|
|
14
|
+
Go Home
|
|
15
|
+
</Link>
|
|
16
|
+
</div>
|
|
17
|
+
);
|
|
18
|
+
}
|