@bluefly/openstandardagents 0.2.4
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/.env.example +41 -0
- package/.eslintrc.cjs +43 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
- package/.github/dependabot.yml +58 -0
- package/.github/workflows/ci.yml +154 -0
- package/.github/workflows/codeql.yml +41 -0
- package/.github/workflows/dependabot-auto-merge.yml +28 -0
- package/.github/workflows/release.yml +103 -0
- package/.prettierignore +7 -0
- package/.prettierrc.json +10 -0
- package/.redocly.yaml +9 -0
- package/.releaserc.json +84 -0
- package/.releaserc.json.disabled +81 -0
- package/CHANGELOG.md +152 -0
- package/CONTRIBUTING.md +249 -0
- package/LICENSE +190 -0
- package/README.md +280 -0
- package/bin/ossa +8 -0
- package/bin/validate-ossa-0.2.2.ts +244 -0
- package/dist/di-container.d.ts +18 -0
- package/dist/di-container.d.ts.map +1 -0
- package/dist/di-container.js +43 -0
- package/dist/di-container.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/repositories/manifest.repository.d.ts +26 -0
- package/dist/repositories/manifest.repository.d.ts.map +1 -0
- package/dist/repositories/manifest.repository.js +90 -0
- package/dist/repositories/manifest.repository.js.map +1 -0
- package/dist/repositories/schema.repository.d.ts +30 -0
- package/dist/repositories/schema.repository.d.ts.map +1 -0
- package/dist/repositories/schema.repository.js +143 -0
- package/dist/repositories/schema.repository.js.map +1 -0
- package/dist/services/generation.service.d.ts +54 -0
- package/dist/services/generation.service.d.ts.map +1 -0
- package/dist/services/generation.service.js +298 -0
- package/dist/services/generation.service.js.map +1 -0
- package/dist/services/migration.service.d.ts +30 -0
- package/dist/services/migration.service.d.ts.map +1 -0
- package/dist/services/migration.service.js +231 -0
- package/dist/services/migration.service.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts +94 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
- package/dist/services/runtime/openai.adapter.js +209 -0
- package/dist/services/runtime/openai.adapter.js.map +1 -0
- package/dist/services/validation.service.d.ts +45 -0
- package/dist/services/validation.service.d.ts.map +1 -0
- package/dist/services/validation.service.js +362 -0
- package/dist/services/validation.service.js.map +1 -0
- package/dist/services/validators/anthropic.validator.d.ts +9 -0
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
- package/dist/services/validators/anthropic.validator.js +105 -0
- package/dist/services/validators/anthropic.validator.js.map +1 -0
- package/dist/services/validators/autogen.validator.d.ts +9 -0
- package/dist/services/validators/autogen.validator.d.ts.map +1 -0
- package/dist/services/validators/autogen.validator.js +111 -0
- package/dist/services/validators/autogen.validator.js.map +1 -0
- package/dist/services/validators/crewai.validator.d.ts +9 -0
- package/dist/services/validators/crewai.validator.d.ts.map +1 -0
- package/dist/services/validators/crewai.validator.js +117 -0
- package/dist/services/validators/crewai.validator.js.map +1 -0
- package/dist/services/validators/cursor.validator.d.ts +9 -0
- package/dist/services/validators/cursor.validator.d.ts.map +1 -0
- package/dist/services/validators/cursor.validator.js +88 -0
- package/dist/services/validators/cursor.validator.js.map +1 -0
- package/dist/services/validators/index.d.ts +15 -0
- package/dist/services/validators/index.d.ts.map +1 -0
- package/dist/services/validators/index.js +15 -0
- package/dist/services/validators/index.js.map +1 -0
- package/dist/services/validators/langchain.validator.d.ts +9 -0
- package/dist/services/validators/langchain.validator.d.ts.map +1 -0
- package/dist/services/validators/langchain.validator.js +103 -0
- package/dist/services/validators/langchain.validator.js.map +1 -0
- package/dist/services/validators/langflow.validator.d.ts +9 -0
- package/dist/services/validators/langflow.validator.d.ts.map +1 -0
- package/dist/services/validators/langflow.validator.js +92 -0
- package/dist/services/validators/langflow.validator.js.map +1 -0
- package/dist/services/validators/langgraph.validator.d.ts +9 -0
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
- package/dist/services/validators/langgraph.validator.js +123 -0
- package/dist/services/validators/langgraph.validator.js.map +1 -0
- package/dist/services/validators/llamaindex.validator.d.ts +9 -0
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
- package/dist/services/validators/llamaindex.validator.js +121 -0
- package/dist/services/validators/llamaindex.validator.js.map +1 -0
- package/dist/services/validators/openai.validator.d.ts +9 -0
- package/dist/services/validators/openai.validator.d.ts.map +1 -0
- package/dist/services/validators/openai.validator.js +126 -0
- package/dist/services/validators/openai.validator.js.map +1 -0
- package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
- package/dist/services/validators/vercel-ai.validator.js +99 -0
- package/dist/services/validators/vercel-ai.validator.js.map +1 -0
- package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
- package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
- package/dist/spec/v0.2.3/README.md +154 -0
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/dist/spec/v0.2.4-dev/CHANGELOG.md +403 -0
- package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
- package/dist/spec/v0.2.5-dev/CHANGELOG.md +171 -0
- package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
- package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
- package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
- package/dist/types/index.d.ts +178 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +6 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/openapi-extensions.d.ts +164 -0
- package/dist/types/openapi-extensions.d.ts.map +1 -0
- package/dist/types/openapi-extensions.js +6 -0
- package/dist/types/openapi-extensions.js.map +1 -0
- package/docs/OSSA-COMPLIANT-BADGE.md +248 -0
- package/docs/README.md +31 -0
- package/docs/VERSIONING.md +284 -0
- package/docs/agent-openapi-spec.yml +942 -0
- package/docs/getting-started.md +87 -0
- package/docs/migration/general-agent-schema.yml +255 -0
- package/docs/migration/migration-manifest.json +64 -0
- package/docs/openapi-extensions.md +930 -0
- package/docs/schemas/openapi-extensions.schema.json +486 -0
- package/examples/adk-integration/code-review-workflow.yml +136 -0
- package/examples/adk-integration/customer-support.yml +263 -0
- package/examples/adk-integration/data-pipeline.yml +173 -0
- package/examples/advanced/patterns/compliance-context-production.json +53 -0
- package/examples/advanced/patterns/model-router.ts +274 -0
- package/examples/advanced/patterns/smart-model-routing.ts +248 -0
- package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
- package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
- package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
- package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
- package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
- package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
- package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
- package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
- package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
- package/examples/anthropic/claude-assistant.ossa.json +45 -0
- package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
- package/examples/autogen/multi-agent.ossa.json +37 -0
- package/examples/bridge-configurations.yaml +346 -0
- package/examples/bridges/Dockerfile.production +87 -0
- package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
- package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
- package/examples/bridges/aiflow-bridge-example.yml +310 -0
- package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
- package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
- package/examples/bridges/k8s/configmap.yaml +121 -0
- package/examples/bridges/k8s/deployment-simple.yaml +34 -0
- package/examples/bridges/k8s/deployment.yaml +275 -0
- package/examples/bridges/k8s/hpa.yaml +126 -0
- package/examples/bridges/k8s/ingress.yaml +155 -0
- package/examples/bridges/kagent-bridge-example.yml +94 -0
- package/examples/bridges/load-tests/Dockerfile +28 -0
- package/examples/bridges/load-tests/k6-load-test.js +302 -0
- package/examples/bridges/load-tests/requirements.txt +20 -0
- package/examples/bridges/loadtest/k6-scenarios.js +270 -0
- package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
- package/examples/bridges/phase4/chaos-tests.yaml +226 -0
- package/examples/bridges/requirements.txt +24 -0
- package/examples/bridges/test_aiflow_integration.py +341 -0
- package/examples/common_npm/agent-router.ossa.yaml +182 -0
- package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
- package/examples/compliance-agent.yml +155 -0
- package/examples/crewai/research-team.ossa.json +36 -0
- package/examples/cursor/code-review-agent.ossa.json +47 -0
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
- package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
- package/examples/enterprise/agent.yml +452 -0
- package/examples/extensions/drupal-v1.yml +266 -0
- package/examples/extensions/kagent-v1.yml +167 -0
- package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
- package/examples/kagent/README.md +31 -0
- package/examples/kagent/compliance-validator.ossa.yaml +111 -0
- package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
- package/examples/kagent/documentation-agent.ossa.yaml +91 -0
- package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
- package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
- package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
- package/examples/kagent/security-scanner.ossa.yaml +140 -0
- package/examples/langchain/chain-agent.ossa.json +42 -0
- package/examples/langflow/workflow-agent.ossa.json +39 -0
- package/examples/langgraph/state-machine-agent.ossa.json +59 -0
- package/examples/llamaindex/rag-agent.ossa.json +41 -0
- package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
- package/examples/minimal/agent.yml +152 -0
- package/examples/minimal/openapi.yaml +95 -0
- package/examples/openai/swarm-agent.ossa.json +59 -0
- package/examples/openapi-extensions/README.md +87 -0
- package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
- package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
- package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
- package/examples/production/agent.yml +713 -0
- package/examples/production/document-analyzer-openai.yml +134 -0
- package/examples/quickstart/support-agent.ossa.yaml +59 -0
- package/examples/service-registry-usage.ts +423 -0
- package/examples/spec-examples/audit-agent.yml +147 -0
- package/examples/spec-examples/chat-agent.yml +189 -0
- package/examples/spec-examples/compliance-agent.yml +204 -0
- package/examples/spec-examples/data-processing-agent.yml +132 -0
- package/examples/spec-examples/development-agent.yml +138 -0
- package/examples/spec-examples/edge-agent.yml +101 -0
- package/examples/spec-examples/integration-agent.yml +129 -0
- package/examples/spec-examples/monitoring-agent.yml +130 -0
- package/examples/spec-examples/serverless-agent.yml +82 -0
- package/examples/spec-examples/workflow-agent.yml +223 -0
- package/examples/templates/ossa-compliance.yaml +56 -0
- package/examples/typescript/advanced/demo-registry.ts +168 -0
- package/examples/typescript/mcpb-agent-example.ts +358 -0
- package/examples/vercel/edge-agent.ossa.json +43 -0
- package/infrastructure/docker-compose.yml +33 -0
- package/junit.xml +1 -0
- package/openapi/drupal-agent-api.openapi.yaml +348 -0
- package/openapi/gitlab-orchestrator.openapi.yaml +330 -0
- package/openapi/helm-generator.openapi.yaml +389 -0
- package/openapi/ossa-core-api.openapi.yaml +1448 -0
- package/openapi/ossa-registry-api.openapi.yaml +980 -0
- package/openapi/ossa-registry.openapi.yaml +782 -0
- package/openapi/self-evolving-ecosystem.openapi.yaml +1530 -0
- package/openapi/unified-agent-gateway.openapi.yaml +833 -0
- package/ossa-website-swarm-tasks.json +105 -0
- package/package.json +132 -0
- package/release.config.js +64 -0
- package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
- package/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/spec/v0.2.3/CHANGELOG.md +176 -0
- package/spec/v0.2.3/README.md +154 -0
- package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/spec/v0.2.4-dev/CHANGELOG.md +403 -0
- package/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
- package/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
- package/spec/v0.2.5-dev/CHANGELOG.md +171 -0
- package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
- package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
- package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
- package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
- package/test-results.xml +1 -0
- package/website/.lighthouserc.js +20 -0
- package/website/.prettierrc +10 -0
- package/website/Dockerfile +17 -0
- package/website/app/about/page.tsx +295 -0
- package/website/app/api/validate/route.ts +88 -0
- package/website/app/blog/[slug]/page.tsx +167 -0
- package/website/app/blog/page.tsx +162 -0
- package/website/app/docs/[[...slug]]/page.tsx +349 -0
- package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
- package/website/app/ecosystem/page.tsx +375 -0
- package/website/app/examples/page.tsx +123 -0
- package/website/app/globals.css +108 -0
- package/website/app/layout.tsx +106 -0
- package/website/app/page.tsx +409 -0
- package/website/app/playground/page.tsx +507 -0
- package/website/app/robots.ts +19 -0
- package/website/app/rss.xml/route.ts +74 -0
- package/website/app/schema/page.tsx +970 -0
- package/website/app/sitemap.ts +56 -0
- package/website/app/specification/page.tsx +211 -0
- package/website/components/InstallCommand.tsx +96 -0
- package/website/components/Logo.tsx +24 -0
- package/website/components/StructuredData.tsx +65 -0
- package/website/components/docs/DocsSearch.tsx +104 -0
- package/website/components/docs/DocsSidebar.tsx +118 -0
- package/website/components/docs/MarkdownContent.tsx +183 -0
- package/website/components/docs/VersionSelector.tsx +49 -0
- package/website/components/examples/ExamplesViewer.tsx +293 -0
- package/website/components/layout/Footer.tsx +111 -0
- package/website/components/layout/Header.tsx +170 -0
- package/website/components/schema/SchemaExplorer.tsx +213 -0
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +209 -0
- package/website/content/blog/introducing-ossa-framework.md +328 -0
- package/website/content/blog/ossa-production-results.md +279 -0
- package/website/content/blog/welcome-to-ossa.md +43 -0
- package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
- package/website/content/docs/00-HOME.md +160 -0
- package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
- package/website/content/docs/OpenAPI-Extensions.md +498 -0
- package/website/content/docs/architecture/execution-flow.md +335 -0
- package/website/content/docs/architecture/multi-agent-systems.md +737 -0
- package/website/content/docs/architecture/overview.md +121 -0
- package/website/content/docs/architecture/stack-integration.md +461 -0
- package/website/content/docs/changelog.md +246 -0
- package/website/content/docs/contributing.md +599 -0
- package/website/content/docs/core-concepts/project-structure.md +348 -0
- package/website/content/docs/ecosystem/framework-support.md +821 -0
- package/website/content/docs/ecosystem/overview.md +366 -0
- package/website/content/docs/examples/Migration-Guides.md +214 -0
- package/website/content/docs/examples.md +71 -0
- package/website/content/docs/for-audiences/Enterprises.md +256 -0
- package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
- package/website/content/docs/for-audiences/architects.md +224 -0
- package/website/content/docs/for-audiences/developers.md +220 -0
- package/website/content/docs/getting-started/5-minute-overview.md +85 -0
- package/website/content/docs/getting-started/Hello-World.md +184 -0
- package/website/content/docs/getting-started/first-agent.md +196 -0
- package/website/content/docs/getting-started/installation.md +155 -0
- package/website/content/docs/getting-started/running-agents.md +107 -0
- package/website/content/docs/integrations/aiflow.md +104 -0
- package/website/content/docs/integrations/drupal.md +105 -0
- package/website/content/docs/migration-guides/00-index.md +76 -0
- package/website/content/docs/migration-guides/README.md +133 -0
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
- package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
- package/website/content/docs/migration-guides/index.md +133 -0
- package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
- package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
- package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
- package/website/content/docs/openapi-extensions/examples.md +550 -0
- package/website/content/docs/openapi-extensions/index.md +495 -0
- package/website/content/docs/openapi-extensions/operation-extensions.md +398 -0
- package/website/content/docs/openapi-extensions/root-extensions.md +364 -0
- package/website/content/docs/pre-release/index.md +175 -0
- package/website/content/docs/quick-reference.md +17 -0
- package/website/content/docs/schema-reference/agent-spec.md +406 -0
- package/website/content/docs/schema-reference/autonomy.md +568 -0
- package/website/content/docs/schema-reference/constraints.md +543 -0
- package/website/content/docs/schema-reference/index.md +176 -0
- package/website/content/docs/schema-reference/llm-config.md +445 -0
- package/website/content/docs/schema-reference/observability.md +654 -0
- package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
- package/website/content/docs/schema-reference/taxonomy.md +509 -0
- package/website/content/docs/schema-reference/tools.md +628 -0
- package/website/content/docs/templates/blog-post.md +43 -0
- package/website/content/docs/use-cases/00-index.md +395 -0
- package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
- package/website/content/docs/use-cases/customer-support.md +1234 -0
- package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
- package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
- package/website/lib/version.ts +18 -0
- package/website/next.config.js +17 -0
- package/website/next.config.ts +16 -0
- package/website/nginx.conf +32 -0
- package/website/package-lock.json +9145 -0
- package/website/package.json +53 -0
- package/website/postcss.config.js +7 -0
- package/website/postcss.config.mjs +9 -0
- package/website/scripts/sync-version.js +44 -0
- package/website/scripts/sync-wiki.ts +261 -0
- package/website/tailwind.config.js +58 -0
- package/website/tailwind.config.ts +65 -0
|
@@ -0,0 +1,833 @@
|
|
|
1
|
+
openapi: 3.1.0
|
|
2
|
+
info:
|
|
3
|
+
title: Unified Agent Gateway
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
description: |
|
|
6
|
+
**Single Entry Point for All LLM Platform Agents**
|
|
7
|
+
|
|
8
|
+
This gateway provides a unified OpenAPI interface for:
|
|
9
|
+
- OSSA-compliant agents (validation, deployment, orchestration)
|
|
10
|
+
- Drupal llm-platform (content, users, sites, data management)
|
|
11
|
+
- Agent Studio (Mac/iOS/CarPlay/VSCode/IDE)
|
|
12
|
+
- Agent Chat (Claude Code replacement)
|
|
13
|
+
- Langflow/LangChain/K-Agent workflows
|
|
14
|
+
- BuildKit (agent lifecycle management)
|
|
15
|
+
- GitLab CI/CD orchestration
|
|
16
|
+
|
|
17
|
+
**Architecture**:
|
|
18
|
+
- Protocol: HTTP/REST + gRPC (agent-mesh)
|
|
19
|
+
- Auth: API Key + JWT (GitLab SSO)
|
|
20
|
+
- Registry: agent-router (service discovery)
|
|
21
|
+
- Tracing: Phoenix (all requests)
|
|
22
|
+
- Metrics: Prometheus
|
|
23
|
+
- Storage: Drupal llm-platform (single source of truth)
|
|
24
|
+
|
|
25
|
+
contact:
|
|
26
|
+
name: LLM Platform Team
|
|
27
|
+
url: https://gitlab.bluefly.io/llm
|
|
28
|
+
|
|
29
|
+
license:
|
|
30
|
+
name: MIT
|
|
31
|
+
url: https://opensource.org/licenses/MIT
|
|
32
|
+
|
|
33
|
+
servers:
|
|
34
|
+
- url: https://gateway.agent-buildkit.orb.local/api/v1
|
|
35
|
+
description: Production
|
|
36
|
+
- url: http://localhost:8080/api/v1
|
|
37
|
+
description: Local development (Orbstack)
|
|
38
|
+
|
|
39
|
+
security:
|
|
40
|
+
- ApiKeyAuth: []
|
|
41
|
+
- GitLabJWT: []
|
|
42
|
+
|
|
43
|
+
tags:
|
|
44
|
+
- name: agents
|
|
45
|
+
description: Agent lifecycle management (create, deploy, scale, delete)
|
|
46
|
+
- name: drupal
|
|
47
|
+
description: Drupal llm-platform integration (content, users, sites)
|
|
48
|
+
- name: workflows
|
|
49
|
+
description: Langflow/LangChain workflow orchestration
|
|
50
|
+
- name: studio
|
|
51
|
+
description: Agent Studio mobile API (iOS/CarPlay remote coding)
|
|
52
|
+
- name: gitlab
|
|
53
|
+
description: GitLab CI/CD orchestration
|
|
54
|
+
- name: registry
|
|
55
|
+
description: Service discovery and health monitoring
|
|
56
|
+
|
|
57
|
+
paths:
|
|
58
|
+
# =================================================================
|
|
59
|
+
# AGENTS - Unified Agent Management
|
|
60
|
+
# =================================================================
|
|
61
|
+
|
|
62
|
+
/agents:
|
|
63
|
+
post:
|
|
64
|
+
tags: [agents]
|
|
65
|
+
summary: Create and deploy new agent
|
|
66
|
+
description: |
|
|
67
|
+
Creates an OSSA-compliant agent and deploys to K8s via Helm.
|
|
68
|
+
Registers with agent-router, starts Phoenix tracing.
|
|
69
|
+
operationId: createAgent
|
|
70
|
+
requestBody:
|
|
71
|
+
required: true
|
|
72
|
+
content:
|
|
73
|
+
application/json:
|
|
74
|
+
schema:
|
|
75
|
+
$ref: '#/components/schemas/CreateAgentRequest'
|
|
76
|
+
responses:
|
|
77
|
+
'201':
|
|
78
|
+
description: Agent created and deployed
|
|
79
|
+
content:
|
|
80
|
+
application/json:
|
|
81
|
+
schema:
|
|
82
|
+
$ref: '#/components/schemas/AgentResponse'
|
|
83
|
+
|
|
84
|
+
get:
|
|
85
|
+
tags: [agents]
|
|
86
|
+
summary: List all agents
|
|
87
|
+
operationId: listAgents
|
|
88
|
+
parameters:
|
|
89
|
+
- $ref: '#/components/parameters/Namespace'
|
|
90
|
+
- $ref: '#/components/parameters/Status'
|
|
91
|
+
- $ref: '#/components/parameters/Framework'
|
|
92
|
+
responses:
|
|
93
|
+
'200':
|
|
94
|
+
description: List of agents
|
|
95
|
+
content:
|
|
96
|
+
application/json:
|
|
97
|
+
schema:
|
|
98
|
+
$ref: '#/components/schemas/AgentList'
|
|
99
|
+
|
|
100
|
+
/agents/{agentId}:
|
|
101
|
+
get:
|
|
102
|
+
tags: [agents]
|
|
103
|
+
summary: Get agent details
|
|
104
|
+
operationId: getAgent
|
|
105
|
+
parameters:
|
|
106
|
+
- $ref: '#/components/parameters/AgentId'
|
|
107
|
+
responses:
|
|
108
|
+
'200':
|
|
109
|
+
description: Agent details
|
|
110
|
+
content:
|
|
111
|
+
application/json:
|
|
112
|
+
schema:
|
|
113
|
+
$ref: '#/components/schemas/AgentDetails'
|
|
114
|
+
|
|
115
|
+
put:
|
|
116
|
+
tags: [agents]
|
|
117
|
+
summary: Update agent
|
|
118
|
+
operationId: updateAgent
|
|
119
|
+
parameters:
|
|
120
|
+
- $ref: '#/components/parameters/AgentId'
|
|
121
|
+
requestBody:
|
|
122
|
+
required: true
|
|
123
|
+
content:
|
|
124
|
+
application/json:
|
|
125
|
+
schema:
|
|
126
|
+
$ref: '#/components/schemas/UpdateAgentRequest'
|
|
127
|
+
responses:
|
|
128
|
+
'200':
|
|
129
|
+
description: Agent updated
|
|
130
|
+
content:
|
|
131
|
+
application/json:
|
|
132
|
+
schema:
|
|
133
|
+
$ref: '#/components/schemas/AgentResponse'
|
|
134
|
+
|
|
135
|
+
delete:
|
|
136
|
+
tags: [agents]
|
|
137
|
+
summary: Delete agent
|
|
138
|
+
operationId: deleteAgent
|
|
139
|
+
parameters:
|
|
140
|
+
- $ref: '#/components/parameters/AgentId'
|
|
141
|
+
responses:
|
|
142
|
+
'204':
|
|
143
|
+
description: Agent deleted
|
|
144
|
+
|
|
145
|
+
/agents/{agentId}/execute:
|
|
146
|
+
post:
|
|
147
|
+
tags: [agents]
|
|
148
|
+
summary: Execute agent task
|
|
149
|
+
description: Send task to agent and get response
|
|
150
|
+
operationId: executeAgentTask
|
|
151
|
+
parameters:
|
|
152
|
+
- $ref: '#/components/parameters/AgentId'
|
|
153
|
+
requestBody:
|
|
154
|
+
required: true
|
|
155
|
+
content:
|
|
156
|
+
application/json:
|
|
157
|
+
schema:
|
|
158
|
+
$ref: '#/components/schemas/AgentTaskRequest'
|
|
159
|
+
responses:
|
|
160
|
+
'200':
|
|
161
|
+
description: Task executed
|
|
162
|
+
content:
|
|
163
|
+
application/json:
|
|
164
|
+
schema:
|
|
165
|
+
$ref: '#/components/schemas/AgentTaskResponse'
|
|
166
|
+
|
|
167
|
+
# =================================================================
|
|
168
|
+
# DRUPAL - Single Source of Truth
|
|
169
|
+
# =================================================================
|
|
170
|
+
|
|
171
|
+
/drupal/content:
|
|
172
|
+
post:
|
|
173
|
+
tags: [drupal]
|
|
174
|
+
summary: Create Drupal content
|
|
175
|
+
description: Create content node via llm-platform API
|
|
176
|
+
operationId: createDrupalContent
|
|
177
|
+
requestBody:
|
|
178
|
+
required: true
|
|
179
|
+
content:
|
|
180
|
+
application/json:
|
|
181
|
+
schema:
|
|
182
|
+
$ref: '#/components/schemas/DrupalContentRequest'
|
|
183
|
+
responses:
|
|
184
|
+
'201':
|
|
185
|
+
description: Content created
|
|
186
|
+
content:
|
|
187
|
+
application/json:
|
|
188
|
+
schema:
|
|
189
|
+
$ref: '#/components/schemas/DrupalContentResponse'
|
|
190
|
+
|
|
191
|
+
get:
|
|
192
|
+
tags: [drupal]
|
|
193
|
+
summary: Query Drupal content
|
|
194
|
+
operationId: queryDrupalContent
|
|
195
|
+
parameters:
|
|
196
|
+
- name: type
|
|
197
|
+
in: query
|
|
198
|
+
schema:
|
|
199
|
+
type: string
|
|
200
|
+
- name: status
|
|
201
|
+
in: query
|
|
202
|
+
schema:
|
|
203
|
+
type: string
|
|
204
|
+
enum: [published, draft, archived]
|
|
205
|
+
responses:
|
|
206
|
+
'200':
|
|
207
|
+
description: Content list
|
|
208
|
+
content:
|
|
209
|
+
application/json:
|
|
210
|
+
schema:
|
|
211
|
+
type: array
|
|
212
|
+
items:
|
|
213
|
+
$ref: '#/components/schemas/DrupalContentResponse'
|
|
214
|
+
|
|
215
|
+
/drupal/users:
|
|
216
|
+
post:
|
|
217
|
+
tags: [drupal]
|
|
218
|
+
summary: Create Drupal user
|
|
219
|
+
operationId: createDrupalUser
|
|
220
|
+
requestBody:
|
|
221
|
+
required: true
|
|
222
|
+
content:
|
|
223
|
+
application/json:
|
|
224
|
+
schema:
|
|
225
|
+
$ref: '#/components/schemas/DrupalUserRequest'
|
|
226
|
+
responses:
|
|
227
|
+
'201':
|
|
228
|
+
description: User created
|
|
229
|
+
|
|
230
|
+
get:
|
|
231
|
+
tags: [drupal]
|
|
232
|
+
summary: List users
|
|
233
|
+
operationId: listDrupalUsers
|
|
234
|
+
responses:
|
|
235
|
+
'200':
|
|
236
|
+
description: User list
|
|
237
|
+
|
|
238
|
+
/drupal/sites:
|
|
239
|
+
post:
|
|
240
|
+
tags: [drupal]
|
|
241
|
+
summary: Build new Drupal site
|
|
242
|
+
description: Agent creates complete Drupal site with modules/config
|
|
243
|
+
operationId: buildDrupalSite
|
|
244
|
+
requestBody:
|
|
245
|
+
required: true
|
|
246
|
+
content:
|
|
247
|
+
application/json:
|
|
248
|
+
schema:
|
|
249
|
+
$ref: '#/components/schemas/DrupalSiteRequest'
|
|
250
|
+
responses:
|
|
251
|
+
'202':
|
|
252
|
+
description: Site creation started
|
|
253
|
+
content:
|
|
254
|
+
application/json:
|
|
255
|
+
schema:
|
|
256
|
+
$ref: '#/components/schemas/DrupalJobResponse'
|
|
257
|
+
|
|
258
|
+
# =================================================================
|
|
259
|
+
# WORKFLOWS - Langflow/LangChain/K-Agent
|
|
260
|
+
# =================================================================
|
|
261
|
+
|
|
262
|
+
/workflows:
|
|
263
|
+
post:
|
|
264
|
+
tags: [workflows]
|
|
265
|
+
summary: Create workflow
|
|
266
|
+
description: Create Langflow or LangChain workflow
|
|
267
|
+
operationId: createWorkflow
|
|
268
|
+
requestBody:
|
|
269
|
+
required: true
|
|
270
|
+
content:
|
|
271
|
+
application/json:
|
|
272
|
+
schema:
|
|
273
|
+
$ref: '#/components/schemas/WorkflowRequest'
|
|
274
|
+
responses:
|
|
275
|
+
'201':
|
|
276
|
+
description: Workflow created
|
|
277
|
+
|
|
278
|
+
get:
|
|
279
|
+
tags: [workflows]
|
|
280
|
+
summary: List workflows
|
|
281
|
+
operationId: listWorkflows
|
|
282
|
+
parameters:
|
|
283
|
+
- name: framework
|
|
284
|
+
in: query
|
|
285
|
+
schema:
|
|
286
|
+
type: string
|
|
287
|
+
enum: [langflow, langchain, kagent]
|
|
288
|
+
responses:
|
|
289
|
+
'200':
|
|
290
|
+
description: Workflow list
|
|
291
|
+
|
|
292
|
+
/workflows/{workflowId}/execute:
|
|
293
|
+
post:
|
|
294
|
+
tags: [workflows]
|
|
295
|
+
summary: Execute workflow
|
|
296
|
+
operationId: executeWorkflow
|
|
297
|
+
parameters:
|
|
298
|
+
- name: workflowId
|
|
299
|
+
in: path
|
|
300
|
+
required: true
|
|
301
|
+
schema:
|
|
302
|
+
type: string
|
|
303
|
+
requestBody:
|
|
304
|
+
required: true
|
|
305
|
+
content:
|
|
306
|
+
application/json:
|
|
307
|
+
schema:
|
|
308
|
+
type: object
|
|
309
|
+
properties:
|
|
310
|
+
inputs:
|
|
311
|
+
type: object
|
|
312
|
+
additionalProperties: true
|
|
313
|
+
responses:
|
|
314
|
+
'200':
|
|
315
|
+
description: Workflow executed
|
|
316
|
+
|
|
317
|
+
# =================================================================
|
|
318
|
+
# STUDIO - Mobile API for Remote Coding
|
|
319
|
+
# =================================================================
|
|
320
|
+
|
|
321
|
+
/studio/sessions:
|
|
322
|
+
post:
|
|
323
|
+
tags: [studio]
|
|
324
|
+
summary: Create remote coding session
|
|
325
|
+
description: |
|
|
326
|
+
Creates coding session accessible from iOS/CarPlay.
|
|
327
|
+
Agent continues work when you're away from computer.
|
|
328
|
+
operationId: createStudioSession
|
|
329
|
+
requestBody:
|
|
330
|
+
required: true
|
|
331
|
+
content:
|
|
332
|
+
application/json:
|
|
333
|
+
schema:
|
|
334
|
+
$ref: '#/components/schemas/StudioSessionRequest'
|
|
335
|
+
responses:
|
|
336
|
+
'201':
|
|
337
|
+
description: Session created
|
|
338
|
+
content:
|
|
339
|
+
application/json:
|
|
340
|
+
schema:
|
|
341
|
+
$ref: '#/components/schemas/StudioSessionResponse'
|
|
342
|
+
|
|
343
|
+
get:
|
|
344
|
+
tags: [studio]
|
|
345
|
+
summary: List active sessions
|
|
346
|
+
operationId: listStudioSessions
|
|
347
|
+
responses:
|
|
348
|
+
'200':
|
|
349
|
+
description: Active sessions
|
|
350
|
+
|
|
351
|
+
/studio/sessions/{sessionId}/tasks:
|
|
352
|
+
post:
|
|
353
|
+
tags: [studio]
|
|
354
|
+
summary: Queue task for agent
|
|
355
|
+
description: Queue coding task to run while you're mobile
|
|
356
|
+
operationId: queueStudioTask
|
|
357
|
+
parameters:
|
|
358
|
+
- name: sessionId
|
|
359
|
+
in: path
|
|
360
|
+
required: true
|
|
361
|
+
schema:
|
|
362
|
+
type: string
|
|
363
|
+
requestBody:
|
|
364
|
+
required: true
|
|
365
|
+
content:
|
|
366
|
+
application/json:
|
|
367
|
+
schema:
|
|
368
|
+
$ref: '#/components/schemas/StudioTaskRequest'
|
|
369
|
+
responses:
|
|
370
|
+
'202':
|
|
371
|
+
description: Task queued
|
|
372
|
+
|
|
373
|
+
# =================================================================
|
|
374
|
+
# GITLAB - CI/CD Orchestration
|
|
375
|
+
# =================================================================
|
|
376
|
+
|
|
377
|
+
/gitlab/pipelines:
|
|
378
|
+
post:
|
|
379
|
+
tags: [gitlab]
|
|
380
|
+
summary: Trigger pipeline for project
|
|
381
|
+
operationId: triggerPipeline
|
|
382
|
+
requestBody:
|
|
383
|
+
required: true
|
|
384
|
+
content:
|
|
385
|
+
application/json:
|
|
386
|
+
schema:
|
|
387
|
+
$ref: '#/components/schemas/GitLabPipelineRequest'
|
|
388
|
+
responses:
|
|
389
|
+
'202':
|
|
390
|
+
description: Pipeline triggered
|
|
391
|
+
|
|
392
|
+
get:
|
|
393
|
+
tags: [gitlab]
|
|
394
|
+
summary: List pipelines
|
|
395
|
+
operationId: listPipelines
|
|
396
|
+
responses:
|
|
397
|
+
'200':
|
|
398
|
+
description: Pipeline list
|
|
399
|
+
|
|
400
|
+
/gitlab/packages:
|
|
401
|
+
get:
|
|
402
|
+
tags: [gitlab]
|
|
403
|
+
summary: List available packages
|
|
404
|
+
description: Query gitlab.bluefly.io package registry
|
|
405
|
+
operationId: listGitLabPackages
|
|
406
|
+
parameters:
|
|
407
|
+
- name: scope
|
|
408
|
+
in: query
|
|
409
|
+
schema:
|
|
410
|
+
type: string
|
|
411
|
+
example: "@llm"
|
|
412
|
+
responses:
|
|
413
|
+
'200':
|
|
414
|
+
description: Package list
|
|
415
|
+
content:
|
|
416
|
+
application/json:
|
|
417
|
+
schema:
|
|
418
|
+
type: array
|
|
419
|
+
items:
|
|
420
|
+
$ref: '#/components/schemas/GitLabPackage'
|
|
421
|
+
|
|
422
|
+
# =================================================================
|
|
423
|
+
# REGISTRY - Service Discovery
|
|
424
|
+
# =================================================================
|
|
425
|
+
|
|
426
|
+
/registry/discover:
|
|
427
|
+
get:
|
|
428
|
+
tags: [registry]
|
|
429
|
+
summary: Discover services
|
|
430
|
+
description: Query agent-router for available services/agents
|
|
431
|
+
operationId: discoverServices
|
|
432
|
+
parameters:
|
|
433
|
+
- name: capability
|
|
434
|
+
in: query
|
|
435
|
+
schema:
|
|
436
|
+
type: string
|
|
437
|
+
- name: framework
|
|
438
|
+
in: query
|
|
439
|
+
schema:
|
|
440
|
+
type: string
|
|
441
|
+
responses:
|
|
442
|
+
'200':
|
|
443
|
+
description: Discovered services
|
|
444
|
+
content:
|
|
445
|
+
application/json:
|
|
446
|
+
schema:
|
|
447
|
+
type: array
|
|
448
|
+
items:
|
|
449
|
+
$ref: '#/components/schemas/ServiceEndpoint'
|
|
450
|
+
|
|
451
|
+
components:
|
|
452
|
+
securitySchemes:
|
|
453
|
+
ApiKeyAuth:
|
|
454
|
+
type: apiKey
|
|
455
|
+
in: header
|
|
456
|
+
name: X-API-Key
|
|
457
|
+
|
|
458
|
+
GitLabJWT:
|
|
459
|
+
type: http
|
|
460
|
+
scheme: bearer
|
|
461
|
+
bearerFormat: JWT
|
|
462
|
+
|
|
463
|
+
parameters:
|
|
464
|
+
AgentId:
|
|
465
|
+
name: agentId
|
|
466
|
+
in: path
|
|
467
|
+
required: true
|
|
468
|
+
schema:
|
|
469
|
+
type: string
|
|
470
|
+
|
|
471
|
+
Namespace:
|
|
472
|
+
name: namespace
|
|
473
|
+
in: query
|
|
474
|
+
schema:
|
|
475
|
+
type: string
|
|
476
|
+
default: agents
|
|
477
|
+
|
|
478
|
+
Status:
|
|
479
|
+
name: status
|
|
480
|
+
in: query
|
|
481
|
+
schema:
|
|
482
|
+
type: string
|
|
483
|
+
enum: [running, stopped, error]
|
|
484
|
+
|
|
485
|
+
Framework:
|
|
486
|
+
name: framework
|
|
487
|
+
in: query
|
|
488
|
+
schema:
|
|
489
|
+
type: string
|
|
490
|
+
enum: [ossa, langflow, langchain, kagent, drupal]
|
|
491
|
+
|
|
492
|
+
schemas:
|
|
493
|
+
CreateAgentRequest:
|
|
494
|
+
type: object
|
|
495
|
+
required:
|
|
496
|
+
- ossa_manifest
|
|
497
|
+
- deployment_target
|
|
498
|
+
properties:
|
|
499
|
+
ossa_manifest:
|
|
500
|
+
type: string
|
|
501
|
+
format: uri
|
|
502
|
+
description: URL to OSSA manifest in GitLab
|
|
503
|
+
example: "https://gitlab.bluefly.io/llm/agents/my-agent/-/raw/main/agent.ossa.yaml"
|
|
504
|
+
deployment_target:
|
|
505
|
+
type: string
|
|
506
|
+
enum: [kubernetes, docker, serverless]
|
|
507
|
+
namespace:
|
|
508
|
+
type: string
|
|
509
|
+
default: agents
|
|
510
|
+
helm_values:
|
|
511
|
+
type: object
|
|
512
|
+
description: Override Helm chart values
|
|
513
|
+
gitlab_package:
|
|
514
|
+
type: string
|
|
515
|
+
description: GitLab package to use (if available)
|
|
516
|
+
example: "@llm/my-agent@1.0.0"
|
|
517
|
+
|
|
518
|
+
AgentResponse:
|
|
519
|
+
type: object
|
|
520
|
+
properties:
|
|
521
|
+
agent_id:
|
|
522
|
+
type: string
|
|
523
|
+
name:
|
|
524
|
+
type: string
|
|
525
|
+
status:
|
|
526
|
+
type: string
|
|
527
|
+
enum: [deploying, running, error]
|
|
528
|
+
endpoints:
|
|
529
|
+
type: object
|
|
530
|
+
properties:
|
|
531
|
+
api:
|
|
532
|
+
type: string
|
|
533
|
+
format: uri
|
|
534
|
+
health:
|
|
535
|
+
type: string
|
|
536
|
+
format: uri
|
|
537
|
+
metrics:
|
|
538
|
+
type: string
|
|
539
|
+
format: uri
|
|
540
|
+
phoenix_traces:
|
|
541
|
+
type: string
|
|
542
|
+
format: uri
|
|
543
|
+
helm_release:
|
|
544
|
+
type: string
|
|
545
|
+
|
|
546
|
+
AgentList:
|
|
547
|
+
type: object
|
|
548
|
+
properties:
|
|
549
|
+
agents:
|
|
550
|
+
type: array
|
|
551
|
+
items:
|
|
552
|
+
$ref: '#/components/schemas/AgentSummary'
|
|
553
|
+
total:
|
|
554
|
+
type: integer
|
|
555
|
+
|
|
556
|
+
AgentSummary:
|
|
557
|
+
type: object
|
|
558
|
+
properties:
|
|
559
|
+
agent_id:
|
|
560
|
+
type: string
|
|
561
|
+
name:
|
|
562
|
+
type: string
|
|
563
|
+
framework:
|
|
564
|
+
type: string
|
|
565
|
+
status:
|
|
566
|
+
type: string
|
|
567
|
+
namespace:
|
|
568
|
+
type: string
|
|
569
|
+
|
|
570
|
+
AgentDetails:
|
|
571
|
+
allOf:
|
|
572
|
+
- $ref: '#/components/schemas/AgentResponse'
|
|
573
|
+
- type: object
|
|
574
|
+
properties:
|
|
575
|
+
ossa_manifest:
|
|
576
|
+
type: object
|
|
577
|
+
metrics:
|
|
578
|
+
type: object
|
|
579
|
+
recent_tasks:
|
|
580
|
+
type: array
|
|
581
|
+
items:
|
|
582
|
+
type: object
|
|
583
|
+
|
|
584
|
+
UpdateAgentRequest:
|
|
585
|
+
type: object
|
|
586
|
+
properties:
|
|
587
|
+
replicas:
|
|
588
|
+
type: integer
|
|
589
|
+
image_tag:
|
|
590
|
+
type: string
|
|
591
|
+
helm_values:
|
|
592
|
+
type: object
|
|
593
|
+
|
|
594
|
+
AgentTaskRequest:
|
|
595
|
+
type: object
|
|
596
|
+
required:
|
|
597
|
+
- capability
|
|
598
|
+
- input
|
|
599
|
+
properties:
|
|
600
|
+
capability:
|
|
601
|
+
type: string
|
|
602
|
+
description: Agent capability to invoke
|
|
603
|
+
input:
|
|
604
|
+
type: object
|
|
605
|
+
additionalProperties: true
|
|
606
|
+
async:
|
|
607
|
+
type: boolean
|
|
608
|
+
default: false
|
|
609
|
+
|
|
610
|
+
AgentTaskResponse:
|
|
611
|
+
type: object
|
|
612
|
+
properties:
|
|
613
|
+
task_id:
|
|
614
|
+
type: string
|
|
615
|
+
status:
|
|
616
|
+
type: string
|
|
617
|
+
enum: [queued, running, completed, failed]
|
|
618
|
+
output:
|
|
619
|
+
type: object
|
|
620
|
+
additionalProperties: true
|
|
621
|
+
traces:
|
|
622
|
+
type: array
|
|
623
|
+
items:
|
|
624
|
+
type: object
|
|
625
|
+
|
|
626
|
+
# Drupal Schemas
|
|
627
|
+
DrupalContentRequest:
|
|
628
|
+
type: object
|
|
629
|
+
required:
|
|
630
|
+
- type
|
|
631
|
+
- title
|
|
632
|
+
properties:
|
|
633
|
+
type:
|
|
634
|
+
type: string
|
|
635
|
+
description: Content type machine name
|
|
636
|
+
title:
|
|
637
|
+
type: string
|
|
638
|
+
body:
|
|
639
|
+
type: string
|
|
640
|
+
fields:
|
|
641
|
+
type: object
|
|
642
|
+
additionalProperties: true
|
|
643
|
+
status:
|
|
644
|
+
type: string
|
|
645
|
+
enum: [published, draft]
|
|
646
|
+
default: draft
|
|
647
|
+
|
|
648
|
+
DrupalContentResponse:
|
|
649
|
+
type: object
|
|
650
|
+
properties:
|
|
651
|
+
nid:
|
|
652
|
+
type: integer
|
|
653
|
+
uuid:
|
|
654
|
+
type: string
|
|
655
|
+
type:
|
|
656
|
+
type: string
|
|
657
|
+
title:
|
|
658
|
+
type: string
|
|
659
|
+
url:
|
|
660
|
+
type: string
|
|
661
|
+
format: uri
|
|
662
|
+
created:
|
|
663
|
+
type: string
|
|
664
|
+
format: date-time
|
|
665
|
+
|
|
666
|
+
DrupalUserRequest:
|
|
667
|
+
type: object
|
|
668
|
+
required:
|
|
669
|
+
- username
|
|
670
|
+
- email
|
|
671
|
+
properties:
|
|
672
|
+
username:
|
|
673
|
+
type: string
|
|
674
|
+
email:
|
|
675
|
+
type: string
|
|
676
|
+
format: email
|
|
677
|
+
roles:
|
|
678
|
+
type: array
|
|
679
|
+
items:
|
|
680
|
+
type: string
|
|
681
|
+
|
|
682
|
+
DrupalSiteRequest:
|
|
683
|
+
type: object
|
|
684
|
+
required:
|
|
685
|
+
- site_name
|
|
686
|
+
- modules
|
|
687
|
+
properties:
|
|
688
|
+
site_name:
|
|
689
|
+
type: string
|
|
690
|
+
modules:
|
|
691
|
+
type: array
|
|
692
|
+
items:
|
|
693
|
+
type: string
|
|
694
|
+
theme:
|
|
695
|
+
type: string
|
|
696
|
+
config:
|
|
697
|
+
type: object
|
|
698
|
+
|
|
699
|
+
DrupalJobResponse:
|
|
700
|
+
type: object
|
|
701
|
+
properties:
|
|
702
|
+
job_id:
|
|
703
|
+
type: string
|
|
704
|
+
status:
|
|
705
|
+
type: string
|
|
706
|
+
gitlab_pipeline:
|
|
707
|
+
type: string
|
|
708
|
+
format: uri
|
|
709
|
+
|
|
710
|
+
# Workflow Schemas
|
|
711
|
+
WorkflowRequest:
|
|
712
|
+
type: object
|
|
713
|
+
required:
|
|
714
|
+
- framework
|
|
715
|
+
- definition
|
|
716
|
+
properties:
|
|
717
|
+
framework:
|
|
718
|
+
type: string
|
|
719
|
+
enum: [langflow, langchain, kagent]
|
|
720
|
+
definition:
|
|
721
|
+
type: object
|
|
722
|
+
additionalProperties: true
|
|
723
|
+
agents:
|
|
724
|
+
type: array
|
|
725
|
+
items:
|
|
726
|
+
type: string
|
|
727
|
+
description: Agent IDs to include in workflow
|
|
728
|
+
|
|
729
|
+
# Studio Mobile API Schemas
|
|
730
|
+
StudioSessionRequest:
|
|
731
|
+
type: object
|
|
732
|
+
required:
|
|
733
|
+
- device_type
|
|
734
|
+
- repository
|
|
735
|
+
properties:
|
|
736
|
+
device_type:
|
|
737
|
+
type: string
|
|
738
|
+
enum: [ios, ipad, carplay, watch]
|
|
739
|
+
repository:
|
|
740
|
+
type: string
|
|
741
|
+
description: GitLab repository URL
|
|
742
|
+
branch:
|
|
743
|
+
type: string
|
|
744
|
+
default: development
|
|
745
|
+
|
|
746
|
+
StudioSessionResponse:
|
|
747
|
+
type: object
|
|
748
|
+
properties:
|
|
749
|
+
session_id:
|
|
750
|
+
type: string
|
|
751
|
+
websocket_url:
|
|
752
|
+
type: string
|
|
753
|
+
format: uri
|
|
754
|
+
description: WebSocket for real-time updates
|
|
755
|
+
api_endpoint:
|
|
756
|
+
type: string
|
|
757
|
+
format: uri
|
|
758
|
+
expires_at:
|
|
759
|
+
type: string
|
|
760
|
+
format: date-time
|
|
761
|
+
|
|
762
|
+
StudioTaskRequest:
|
|
763
|
+
type: object
|
|
764
|
+
required:
|
|
765
|
+
- task_type
|
|
766
|
+
- description
|
|
767
|
+
properties:
|
|
768
|
+
task_type:
|
|
769
|
+
type: string
|
|
770
|
+
enum: [code, test, deploy, review]
|
|
771
|
+
description:
|
|
772
|
+
type: string
|
|
773
|
+
files:
|
|
774
|
+
type: array
|
|
775
|
+
items:
|
|
776
|
+
type: string
|
|
777
|
+
agent_id:
|
|
778
|
+
type: string
|
|
779
|
+
description: Specific agent to use (optional)
|
|
780
|
+
|
|
781
|
+
# GitLab Schemas
|
|
782
|
+
GitLabPipelineRequest:
|
|
783
|
+
type: object
|
|
784
|
+
required:
|
|
785
|
+
- project
|
|
786
|
+
- ref
|
|
787
|
+
properties:
|
|
788
|
+
project:
|
|
789
|
+
type: string
|
|
790
|
+
description: GitLab project path
|
|
791
|
+
ref:
|
|
792
|
+
type: string
|
|
793
|
+
description: Git ref (branch/tag)
|
|
794
|
+
variables:
|
|
795
|
+
type: object
|
|
796
|
+
additionalProperties:
|
|
797
|
+
type: string
|
|
798
|
+
|
|
799
|
+
GitLabPackage:
|
|
800
|
+
type: object
|
|
801
|
+
properties:
|
|
802
|
+
name:
|
|
803
|
+
type: string
|
|
804
|
+
version:
|
|
805
|
+
type: string
|
|
806
|
+
package_type:
|
|
807
|
+
type: string
|
|
808
|
+
enum: [npm, python, generic]
|
|
809
|
+
url:
|
|
810
|
+
type: string
|
|
811
|
+
format: uri
|
|
812
|
+
|
|
813
|
+
# Registry Schemas
|
|
814
|
+
ServiceEndpoint:
|
|
815
|
+
type: object
|
|
816
|
+
properties:
|
|
817
|
+
service_id:
|
|
818
|
+
type: string
|
|
819
|
+
name:
|
|
820
|
+
type: string
|
|
821
|
+
url:
|
|
822
|
+
type: string
|
|
823
|
+
format: uri
|
|
824
|
+
capabilities:
|
|
825
|
+
type: array
|
|
826
|
+
items:
|
|
827
|
+
type: string
|
|
828
|
+
health:
|
|
829
|
+
type: string
|
|
830
|
+
enum: [healthy, degraded, unhealthy]
|
|
831
|
+
framework:
|
|
832
|
+
type: string
|
|
833
|
+
|