@bluefly/openstandardagents 0.4.0 → 0.4.1
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/CHANGELOG.md +117 -0
- package/DEMO.md +212 -0
- package/README.md +75 -15
- package/dist/adapters/drupal/generator.d.ts +149 -0
- package/dist/adapters/drupal/generator.d.ts.map +1 -0
- package/dist/adapters/drupal/generator.js +1760 -0
- package/dist/adapters/drupal/generator.js.map +1 -0
- package/dist/adapters/drupal/index.d.ts +2 -0
- package/dist/adapters/drupal/index.d.ts.map +1 -1
- package/dist/adapters/drupal/index.js +3 -0
- package/dist/adapters/drupal/index.js.map +1 -1
- package/dist/adapters/npm/adapter.js +2 -2
- package/dist/adapters/npm/converter.js +3 -3
- package/dist/cli/banner.d.ts +21 -0
- package/dist/cli/banner.d.ts.map +1 -0
- package/dist/cli/banner.js +128 -0
- package/dist/cli/banner.js.map +1 -0
- package/dist/cli/commands/dev.command.d.ts +20 -0
- package/dist/cli/commands/dev.command.d.ts.map +1 -0
- package/dist/cli/commands/dev.command.js +78 -0
- package/dist/cli/commands/dev.command.js.map +1 -0
- package/dist/cli/commands/estimate.command.d.ts +12 -0
- package/dist/cli/commands/estimate.command.d.ts.map +1 -0
- package/dist/cli/commands/estimate.command.js +226 -0
- package/dist/cli/commands/estimate.command.js.map +1 -0
- package/dist/cli/commands/export-enhanced.command.d.ts +7 -0
- package/dist/cli/commands/export-enhanced.command.d.ts.map +1 -0
- package/dist/cli/commands/{export-v2.command.js → export-enhanced.command.js} +3 -3
- package/dist/cli/commands/export-enhanced.command.js.map +1 -0
- package/dist/cli/commands/export.command.d.ts.map +1 -1
- package/dist/cli/commands/export.command.js +82 -4
- package/dist/cli/commands/export.command.js.map +1 -1
- package/dist/cli/commands/init.command.d.ts.map +1 -1
- package/dist/cli/commands/init.command.js +2 -0
- package/dist/cli/commands/init.command.js.map +1 -1
- package/dist/cli/commands/test.command.d.ts +1 -0
- package/dist/cli/commands/test.command.d.ts.map +1 -1
- package/dist/cli/commands/test.command.js +172 -105
- package/dist/cli/commands/test.command.js.map +1 -1
- package/dist/cli/commands/types/wizard-config.types.d.ts +59 -0
- package/dist/cli/commands/types/wizard-config.types.d.ts.map +1 -0
- package/dist/cli/commands/types/wizard-config.types.js +34 -0
- package/dist/cli/commands/types/wizard-config.types.js.map +1 -0
- package/dist/cli/commands/upgrade.command.d.ts +9 -0
- package/dist/cli/commands/upgrade.command.d.ts.map +1 -0
- package/dist/cli/commands/upgrade.command.js +167 -0
- package/dist/cli/commands/upgrade.command.js.map +1 -0
- package/dist/cli/commands/wizard-api-first.command.d.ts +18 -0
- package/dist/cli/commands/wizard-api-first.command.d.ts.map +1 -0
- package/dist/cli/commands/wizard-api-first.command.js +854 -0
- package/dist/cli/commands/wizard-api-first.command.js.map +1 -0
- package/dist/cli/commands/wizard-interactive.command.d.ts +25 -0
- package/dist/cli/commands/wizard-interactive.command.d.ts.map +1 -0
- package/dist/cli/commands/wizard-interactive.command.js +1875 -0
- package/dist/cli/commands/wizard-interactive.command.js.map +1 -0
- package/dist/cli/commands/workspace.command.js +1 -1
- package/dist/cli/commands/workspace.command.js.map +1 -1
- package/dist/cli/index.js +9 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/schema-driven/index.d.ts +27 -0
- package/dist/cli/schema-driven/index.d.ts.map +1 -0
- package/dist/cli/schema-driven/index.js +34 -0
- package/dist/cli/schema-driven/index.js.map +1 -0
- package/dist/cli/schema-driven/schema-loader.d.ts +115 -0
- package/dist/cli/schema-driven/schema-loader.d.ts.map +1 -0
- package/dist/cli/schema-driven/schema-loader.js +270 -0
- package/dist/cli/schema-driven/schema-loader.js.map +1 -0
- package/dist/cli/schema-driven/ui-generator.d.ts +88 -0
- package/dist/cli/schema-driven/ui-generator.d.ts.map +1 -0
- package/dist/cli/schema-driven/ui-generator.js +326 -0
- package/dist/cli/schema-driven/ui-generator.js.map +1 -0
- package/dist/cli/wizard/interactive-wizard.d.ts +26 -0
- package/dist/cli/wizard/interactive-wizard.d.ts.map +1 -0
- package/dist/cli/wizard/interactive-wizard.js +296 -0
- package/dist/cli/wizard/interactive-wizard.js.map +1 -0
- package/dist/cli/wizard/template-catalog.d.ts +32 -0
- package/dist/cli/wizard/template-catalog.d.ts.map +1 -0
- package/dist/cli/wizard/template-catalog.js +99 -0
- package/dist/cli/wizard/template-catalog.js.map +1 -0
- package/dist/cli/wizard/use-cases.d.ts +37 -0
- package/dist/cli/wizard/use-cases.d.ts.map +1 -0
- package/dist/cli/wizard/use-cases.js +157 -0
- package/dist/cli/wizard/use-cases.js.map +1 -0
- package/dist/di-container.d.ts.map +1 -1
- package/dist/di-container.js +2 -0
- package/dist/di-container.js.map +1 -1
- package/dist/package.json +19 -9
- package/dist/runtime/agent-runner.d.ts +46 -0
- package/dist/runtime/agent-runner.d.ts.map +1 -0
- package/dist/runtime/agent-runner.js +346 -0
- package/dist/runtime/agent-runner.js.map +1 -0
- package/dist/sdks/kagent/crd-generator.d.ts +4 -0
- package/dist/sdks/kagent/crd-generator.d.ts.map +1 -1
- package/dist/sdks/kagent/crd-generator.js +83 -2
- package/dist/sdks/kagent/crd-generator.js.map +1 -1
- package/dist/sdks/kagent/k8s-resources-generator.d.ts +73 -0
- package/dist/sdks/kagent/k8s-resources-generator.d.ts.map +1 -0
- package/dist/sdks/kagent/k8s-resources-generator.js +286 -0
- package/dist/sdks/kagent/k8s-resources-generator.js.map +1 -0
- package/dist/sdks/kagent/types.d.ts +79 -0
- package/dist/sdks/kagent/types.d.ts.map +1 -1
- package/dist/sdks/shared/validation.d.ts +2 -2
- package/dist/services/cost-estimation/optimization-patterns.d.ts +23 -0
- package/dist/services/cost-estimation/optimization-patterns.d.ts.map +1 -0
- package/dist/services/cost-estimation/optimization-patterns.js +147 -0
- package/dist/services/cost-estimation/optimization-patterns.js.map +1 -0
- package/dist/services/cost-estimation/pricing.d.ts +29 -0
- package/dist/services/cost-estimation/pricing.d.ts.map +1 -0
- package/dist/services/cost-estimation/pricing.js +225 -0
- package/dist/services/cost-estimation/pricing.js.map +1 -0
- package/dist/services/cost-estimation/scenario-estimator.d.ts +59 -0
- package/dist/services/cost-estimation/scenario-estimator.d.ts.map +1 -0
- package/dist/services/cost-estimation/scenario-estimator.js +145 -0
- package/dist/services/cost-estimation/scenario-estimator.js.map +1 -0
- package/dist/services/cost-estimation/token-counter.service.d.ts +51 -0
- package/dist/services/cost-estimation/token-counter.service.d.ts.map +1 -0
- package/dist/services/cost-estimation/token-counter.service.js +125 -0
- package/dist/services/cost-estimation/token-counter.service.js.map +1 -0
- package/dist/services/dev-server/dev-server.service.d.ts +121 -0
- package/dist/services/dev-server/dev-server.service.d.ts.map +1 -0
- package/dist/services/dev-server/dev-server.service.js +290 -0
- package/dist/services/dev-server/dev-server.service.js.map +1 -0
- package/dist/services/dev-server/file-watcher.d.ts +101 -0
- package/dist/services/dev-server/file-watcher.d.ts.map +1 -0
- package/dist/services/dev-server/file-watcher.js +190 -0
- package/dist/services/dev-server/file-watcher.js.map +1 -0
- package/dist/services/dev-server/live-validator.d.ts +157 -0
- package/dist/services/dev-server/live-validator.d.ts.map +1 -0
- package/dist/services/dev-server/live-validator.js +301 -0
- package/dist/services/dev-server/live-validator.js.map +1 -0
- package/dist/services/dev-server/websocket-server.d.ts +137 -0
- package/dist/services/dev-server/websocket-server.d.ts.map +1 -0
- package/dist/services/dev-server/websocket-server.js +229 -0
- package/dist/services/dev-server/websocket-server.js.map +1 -0
- package/dist/services/export/anthropic/anthropic-exporter.d.ts +70 -0
- package/dist/services/export/anthropic/anthropic-exporter.d.ts.map +1 -0
- package/dist/services/export/anthropic/anthropic-exporter.js +576 -0
- package/dist/services/export/anthropic/anthropic-exporter.js.map +1 -0
- package/dist/services/export/anthropic/api-generator.d.ts +39 -0
- package/dist/services/export/anthropic/api-generator.d.ts.map +1 -0
- package/dist/services/export/anthropic/api-generator.js +395 -0
- package/dist/services/export/anthropic/api-generator.js.map +1 -0
- package/dist/services/export/anthropic/index.d.ts +18 -0
- package/dist/services/export/anthropic/index.d.ts.map +1 -0
- package/dist/services/export/anthropic/index.js +16 -0
- package/dist/services/export/anthropic/index.js.map +1 -0
- package/dist/services/export/anthropic/tools-generator.d.ts +35 -0
- package/dist/services/export/anthropic/tools-generator.d.ts.map +1 -0
- package/dist/services/export/anthropic/tools-generator.js +260 -0
- package/dist/services/export/anthropic/tools-generator.js.map +1 -0
- package/dist/services/export/langchain/api-generator.d.ts +17 -0
- package/dist/services/export/langchain/api-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/api-generator.js +375 -0
- package/dist/services/export/langchain/api-generator.js.map +1 -0
- package/dist/services/export/langchain/callbacks-generator.d.ts +63 -0
- package/dist/services/export/langchain/callbacks-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/callbacks-generator.js +408 -0
- package/dist/services/export/langchain/callbacks-generator.js.map +1 -0
- package/dist/services/export/langchain/error-handling-generator.d.ts +76 -0
- package/dist/services/export/langchain/error-handling-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/error-handling-generator.js +522 -0
- package/dist/services/export/langchain/error-handling-generator.js.map +1 -0
- package/dist/services/export/langchain/index.d.ts +17 -0
- package/dist/services/export/langchain/index.d.ts.map +1 -0
- package/dist/services/export/langchain/index.js +13 -0
- package/dist/services/export/langchain/index.js.map +1 -0
- package/dist/services/export/langchain/langchain-exporter.d.ts +174 -0
- package/dist/services/export/langchain/langchain-exporter.d.ts.map +1 -0
- package/dist/services/export/langchain/langchain-exporter.js +953 -0
- package/dist/services/export/langchain/langchain-exporter.js.map +1 -0
- package/dist/services/export/langchain/langgraph-generator.d.ts +86 -0
- package/dist/services/export/langchain/langgraph-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/langgraph-generator.js +473 -0
- package/dist/services/export/langchain/langgraph-generator.js.map +1 -0
- package/dist/services/export/langchain/langserve-generator.d.ts +95 -0
- package/dist/services/export/langchain/langserve-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/langserve-generator.js +807 -0
- package/dist/services/export/langchain/langserve-generator.js.map +1 -0
- package/dist/services/export/langchain/memory-generator.d.ts +71 -0
- package/dist/services/export/langchain/memory-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/memory-generator.js +1182 -0
- package/dist/services/export/langchain/memory-generator.js.map +1 -0
- package/dist/services/export/langchain/openapi-generator.d.ts +20 -0
- package/dist/services/export/langchain/openapi-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/openapi-generator.js +364 -0
- package/dist/services/export/langchain/openapi-generator.js.map +1 -0
- package/dist/services/export/langchain/plan-execute-generator.d.ts +60 -0
- package/dist/services/export/langchain/plan-execute-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/plan-execute-generator.js +679 -0
- package/dist/services/export/langchain/plan-execute-generator.js.map +1 -0
- package/dist/services/export/langchain/streaming-generator.d.ts +66 -0
- package/dist/services/export/langchain/streaming-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/streaming-generator.js +749 -0
- package/dist/services/export/langchain/streaming-generator.js.map +1 -0
- package/dist/services/export/langchain/tools-generator.d.ts +67 -0
- package/dist/services/export/langchain/tools-generator.d.ts.map +1 -0
- package/dist/services/export/langchain/tools-generator.js +543 -0
- package/dist/services/export/langchain/tools-generator.js.map +1 -0
- package/dist/services/export/npm/express-generator.d.ts +23 -0
- package/dist/services/export/npm/express-generator.d.ts.map +1 -0
- package/dist/services/export/npm/express-generator.js +296 -0
- package/dist/services/export/npm/express-generator.js.map +1 -0
- package/dist/services/export/npm/index.d.ts +13 -0
- package/dist/services/export/npm/index.d.ts.map +1 -0
- package/dist/services/export/npm/index.js +11 -0
- package/dist/services/export/npm/index.js.map +1 -0
- package/dist/services/export/npm/npm-exporter.d.ts +142 -0
- package/dist/services/export/npm/npm-exporter.d.ts.map +1 -0
- package/dist/services/export/npm/npm-exporter.js +480 -0
- package/dist/services/export/npm/npm-exporter.js.map +1 -0
- package/dist/services/export/npm/openapi-generator.d.ts +19 -0
- package/dist/services/export/npm/openapi-generator.d.ts.map +1 -0
- package/dist/services/export/npm/openapi-generator.js +428 -0
- package/dist/services/export/npm/openapi-generator.js.map +1 -0
- package/dist/services/export/npm/package-json-generator.d.ts +31 -0
- package/dist/services/export/npm/package-json-generator.d.ts.map +1 -0
- package/dist/services/export/npm/package-json-generator.js +153 -0
- package/dist/services/export/npm/package-json-generator.js.map +1 -0
- package/dist/services/export/npm/typescript-generator.d.ts +69 -0
- package/dist/services/export/npm/typescript-generator.d.ts.map +1 -0
- package/dist/services/export/npm/typescript-generator.js +437 -0
- package/dist/services/export/npm/typescript-generator.js.map +1 -0
- package/dist/services/export/testing/index.d.ts +8 -0
- package/dist/services/export/testing/index.d.ts.map +1 -0
- package/dist/services/export/testing/index.js +7 -0
- package/dist/services/export/testing/index.js.map +1 -0
- package/dist/services/export/testing/test-generator.d.ts +178 -0
- package/dist/services/export/testing/test-generator.d.ts.map +1 -0
- package/dist/services/export/testing/test-generator.js +2542 -0
- package/dist/services/export/testing/test-generator.js.map +1 -0
- package/dist/services/test-runner/mock-llm.service.d.ts +77 -0
- package/dist/services/test-runner/mock-llm.service.d.ts.map +1 -0
- package/dist/services/test-runner/mock-llm.service.js +173 -0
- package/dist/services/test-runner/mock-llm.service.js.map +1 -0
- package/dist/services/test-runner/scenarios.d.ts +36 -0
- package/dist/services/test-runner/scenarios.d.ts.map +1 -0
- package/dist/services/test-runner/scenarios.js +196 -0
- package/dist/services/test-runner/scenarios.js.map +1 -0
- package/dist/services/test-runner/test-runner.service.d.ts +19 -1
- package/dist/services/test-runner/test-runner.service.d.ts.map +1 -1
- package/dist/services/test-runner/test-runner.service.js +72 -6
- package/dist/services/test-runner/test-runner.service.js.map +1 -1
- package/dist/services/validation/best-practices-validator.d.ts +84 -0
- package/dist/services/validation/best-practices-validator.d.ts.map +1 -0
- package/dist/services/validation/best-practices-validator.js +499 -0
- package/dist/services/validation/best-practices-validator.js.map +1 -0
- package/dist/services/validation/cost-estimator.d.ts +69 -0
- package/dist/services/validation/cost-estimator.d.ts.map +1 -0
- package/dist/services/validation/cost-estimator.js +221 -0
- package/dist/services/validation/cost-estimator.js.map +1 -0
- package/dist/services/validation/enhanced-validator.d.ts +78 -0
- package/dist/services/validation/enhanced-validator.d.ts.map +1 -0
- package/dist/services/validation/enhanced-validator.js +212 -0
- package/dist/services/validation/enhanced-validator.js.map +1 -0
- package/dist/services/validation/index.d.ts +13 -0
- package/dist/services/validation/index.d.ts.map +1 -0
- package/dist/services/validation/index.js +9 -0
- package/dist/services/validation/index.js.map +1 -0
- package/dist/services/validation/security-validator.d.ts +81 -0
- package/dist/services/validation/security-validator.d.ts.map +1 -0
- package/dist/services/validation/security-validator.js +328 -0
- package/dist/services/validation/security-validator.js.map +1 -0
- package/dist/services/wizard/prompts.d.ts +71 -0
- package/dist/services/wizard/prompts.d.ts.map +1 -0
- package/dist/services/wizard/prompts.js +322 -0
- package/dist/services/wizard/prompts.js.map +1 -0
- package/dist/services/wizard/wizard.service.d.ts +60 -0
- package/dist/services/wizard/wizard.service.d.ts.map +1 -0
- package/dist/services/wizard/wizard.service.js +261 -0
- package/dist/services/wizard/wizard.service.js.map +1 -0
- package/dist/types/personality.zod.d.ts +23 -23
- package/dist/utils/version.d.ts +1 -1
- package/dist/utils/version.js +1 -1
- package/dist/version-management/core/version-manager.test.js.map +1 -1
- package/dist/version.d.ts +62 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +73 -0
- package/dist/version.js.map +1 -0
- package/examples/a2a/agent-handoff.ossa.yaml +1 -1
- package/examples/a2a/service-discovery.ossa.yaml +1 -1
- package/examples/adapters/drupal-eca-mapping.yaml +1 -1
- package/examples/adapters/drupal-eca-task.yaml +1 -1
- package/examples/adapters/drupal-flowdrop-mapping.yaml +1 -1
- package/examples/adapters/drupal-maestro-mapping.yaml +1 -1
- package/examples/adapters/mistral-agent.yaml +1 -1
- package/examples/adapters/symfony-messenger-task.yaml +1 -1
- package/examples/adapters/symfony-messenger-workflow.yaml +1 -1
- package/examples/adk-integration/code-review-workflow.yml +1 -1
- package/examples/adk-integration/customer-support.yml +1 -1
- package/examples/adk-integration/data-pipeline.yml +1 -1
- package/examples/advanced/reasoning-agent.yaml +1 -1
- package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
- package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
- package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
- package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
- package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
- package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
- package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
- package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
- package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
- package/examples/agents/01-customer-support-bot/.env.example +32 -0
- package/examples/agents/01-customer-support-bot/Dockerfile +30 -0
- package/examples/agents/01-customer-support-bot/README.md +295 -0
- package/examples/agents/01-customer-support-bot/agent.ossa.yaml +172 -0
- package/examples/agents/01-customer-support-bot/docker-compose.yml +55 -0
- package/examples/agents/01-customer-support-bot/openapi.yaml +238 -0
- package/examples/agents/01-customer-support-bot/package.json +48 -0
- package/examples/agents/02-code-review-agent/README.md +72 -0
- package/examples/agents/02-code-review-agent/agent.ossa.yaml +239 -0
- package/examples/agents/02-code-review-agent/docker-compose.yml +22 -0
- package/examples/agents/02-code-review-agent/openapi.yaml +150 -0
- package/examples/agents/03-data-analysis-agent/README.md +51 -0
- package/examples/agents/03-data-analysis-agent/agent.ossa.yaml +97 -0
- package/examples/agents/03-data-analysis-agent/openapi.yaml +74 -0
- package/examples/agents/04-content-moderator/README.md +55 -0
- package/examples/agents/04-content-moderator/agent.ossa.yaml +131 -0
- package/examples/agents/04-content-moderator/openapi.yaml +50 -0
- package/examples/agents/05-sales-assistant/README.md +37 -0
- package/examples/agents/05-sales-assistant/agent.ossa.yaml +146 -0
- package/examples/agents/05-sales-assistant/openapi.yaml +59 -0
- package/examples/agents/06-devops-agent/README.md +39 -0
- package/examples/agents/06-devops-agent/agent.ossa.yaml +141 -0
- package/examples/agents/06-devops-agent/openapi.yaml +51 -0
- package/examples/agents/07-research-assistant/README.md +31 -0
- package/examples/agents/07-research-assistant/agent.ossa.yaml +119 -0
- package/examples/agents/07-research-assistant/openapi.yaml +56 -0
- package/examples/agents/08-email-triage-agent/README.md +33 -0
- package/examples/agents/08-email-triage-agent/agent.ossa.yaml +133 -0
- package/examples/agents/08-email-triage-agent/openapi.yaml +41 -0
- package/examples/agents/09-security-scanner/README.md +49 -0
- package/examples/agents/09-security-scanner/agent.ossa.yaml +174 -0
- package/examples/agents/09-security-scanner/openapi.yaml +46 -0
- package/examples/agents/10-meeting-assistant/README.md +53 -0
- package/examples/agents/10-meeting-assistant/agent.ossa.yaml +211 -0
- package/examples/agents/10-meeting-assistant/docker-compose.yml +27 -0
- package/examples/agents/10-meeting-assistant/openapi.yaml +131 -0
- package/examples/agents/COMPLETION_REPORT.txt +272 -0
- package/examples/agents/INDEX.md +296 -0
- package/examples/agents/README.md +452 -0
- package/examples/agents/SUMMARY.md +362 -0
- package/examples/agents/TEST_RESULTS.md +458 -0
- package/examples/agents/architecture-healer-enterprise.yaml +1 -1
- package/examples/agents/dependency-healer-npm.yaml +1 -1
- package/examples/agents/spec-healer-openapi.yaml +1 -1
- package/examples/agents/wiki-healer-production.yaml +1 -1
- package/examples/agents-md/code-agent.ossa.json +1 -1
- package/examples/agents-md/monorepo-agent.ossa.yaml +1 -1
- package/examples/anthropic/claude-assistant.ossa.json +1 -1
- package/examples/autogen/multi-agent.ossa.json +1 -1
- package/examples/autonomous-evolution/self-evolving-agent.ossa.yaml +1 -1
- package/examples/build-once-use-everywhere/agent.ossa.yaml +1 -1
- package/examples/claude-code/code-reviewer.ossa.yaml +1 -1
- package/examples/claude-code/ossa-validator.ossa.yaml +1 -1
- package/examples/common_npm/agent-router.ossa.yaml +2 -2
- package/examples/contracts/data-consumer.ossa.yaml +1 -1
- package/examples/contracts/data-producer-v2.ossa.yaml +1 -1
- package/examples/contracts/data-producer.ossa.yaml +1 -1
- package/examples/crewai/research-team.ossa.json +1 -1
- package/examples/cursor/code-review-agent.ossa.json +1 -1
- package/examples/drupal/QUICKSTART.md +439 -0
- package/examples/drupal/ai_agents_ossa-module/.agents/example-agent/agent.ossa.yaml +1 -1
- package/examples/drupal/content-moderator.ossa.yaml +107 -0
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +2 -2
- package/examples/economics/marketplace-agent.ossa.json +1 -1
- package/examples/export/langchain/production-agent-with-memory/README.md +373 -0
- package/examples/export/langchain/production-agent-with-memory/agent.ossa.yaml +97 -0
- package/examples/export/langchain/production-agent-with-streaming/README.md +617 -0
- package/examples/export/langchain/production-agent-with-streaming/agent.ossa.yaml +100 -0
- package/examples/export/langchain/production-agent-with-streaming/client-example.py +263 -0
- package/examples/export/langchain/production-agent-with-tools/README.md +296 -0
- package/examples/export/langchain/production-agent-with-tools/agent.ossa.yaml +216 -0
- package/examples/export/langchain-export-example.ts +246 -0
- package/examples/export/langserve-export-example.ts +246 -0
- package/examples/export/test-generation-example.ts +457 -0
- package/examples/extensions/agents-md-advanced.yml +1 -1
- package/examples/extensions/agents-md-basic.yml +1 -1
- package/examples/extensions/agents-md-sync.yml +1 -1
- package/examples/extensions/agents-md-v1.yml +1 -1
- package/examples/extensions/drupal-v1.yml +1 -1
- package/examples/extensions/encryption-multi-provider.yaml +4 -4
- package/examples/extensions/kagent-v1.yml +1 -1
- package/examples/extensions/knowledge-sources.yaml +1 -1
- package/examples/extensions/mcp-full-featured.yaml +1 -1
- package/examples/genetics/breeding-agent.ossa.json +1 -1
- package/examples/getting-started/01-minimal-agent.ossa.yaml +1 -1
- package/examples/getting-started/02-agent-with-tools.ossa.yaml +1 -1
- package/examples/getting-started/03-agent-with-safety.ossa.yaml +1 -1
- package/examples/getting-started/04-agent-with-messaging.ossa.yaml +1 -1
- package/examples/getting-started/05-workflow-composition.ossa.yaml +1 -1
- package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +1 -1
- package/examples/kagent/compliance-validator.ossa.yaml +1 -1
- package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
- package/examples/kagent/documentation-agent.ossa.yaml +1 -1
- package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +2 -2
- package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
- package/examples/kagent/security-scanner.ossa.yaml +1 -1
- package/examples/langchain/chain-agent.ossa.json +1 -1
- package/examples/langflow/workflow-agent.ossa.json +1 -1
- package/examples/langgraph/state-machine-agent.ossa.json +1 -1
- package/examples/lifecycle/mentoring-agent.ossa.json +1 -1
- package/examples/llamaindex/rag-agent.ossa.json +1 -1
- package/examples/mcp/database-mcp.ossa.yaml +1 -1
- package/examples/mcp/filesystem-mcp.ossa.yaml +1 -1
- package/examples/messaging/dependency-healer.ossa.yaml +1 -1
- package/examples/messaging/incident-responder.ossa.yaml +1 -1
- package/examples/messaging/routing-rules.ossa.yaml +1 -1
- package/examples/messaging/security-scanner.ossa.yaml +1 -1
- package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
- package/examples/migrations/langchain/01-python-react-agent-after.ossa.yaml +1 -1
- package/examples/migrations/langchain/02-typescript-conversational-after.ossa.yaml +1 -1
- package/examples/migrations/langchain/03-sequential-chain-after.ossa.yaml +1 -1
- package/examples/migrations/langchain/04-config-based-after.ossa.yaml +1 -1
- package/examples/migrations/swarm-to-ossa/after-handoffs.ossa.yaml +6 -6
- package/examples/migrations/swarm-to-ossa/after-triage-agent.ossa.yaml +3 -3
- package/examples/multi-agent/conditional-router.ossa.yaml +1 -1
- package/examples/multi-agent/parallel-execution.ossa.yaml +1 -1
- package/examples/multi-agent/sequential-pipeline.ossa.yaml +1 -1
- package/examples/multi-agent-research-workflow.ossa.yaml +133 -0
- package/examples/multi-platform/single-manifest/agent.ossa.yaml +1 -1
- package/examples/npm-export-example.ts +150 -0
- package/examples/observability/activity-stream-full.yaml +1 -1
- package/examples/openai/basic-agent.ossa.yaml +1 -1
- package/examples/openai/multi-tool-agent.ossa.json +1 -1
- package/examples/openai/swarm-agent.ossa.json +1 -1
- package/examples/ossa-templates/01-code-assistant.ossa.yaml +1 -1
- package/examples/ossa-templates/02-security-scanner.ossa.yaml +1 -1
- package/examples/ossa-templates/03-ci-pipeline.ossa.yaml +1 -1
- package/examples/ossa-templates/04-code-reviewer.ossa.yaml +1 -1
- package/examples/ossa-templates/05-doc-generator.ossa.yaml +1 -1
- package/examples/ossa-templates/06-compliance-validator.ossa.yaml +1 -1
- package/examples/ossa-templates/07-workflow-orchestrator.ossa.yaml +1 -1
- package/examples/ossa-templates/08-content-writer.ossa.yaml +1 -1
- package/examples/ossa-templates/09-test-generator.ossa.yaml +1 -1
- package/examples/ossa-templates/10-data-transformer.ossa.yaml +1 -1
- package/examples/ossa-templates/11-react-performance-expert.ossa.yaml +1 -1
- package/examples/ossa-templates/12-typescript-type-safety-expert.ossa.yaml +1 -1
- package/examples/ossa-templates/13-accessibility-champion.ossa.yaml +1 -1
- package/examples/ossa-templates/14-security-hardening-agent.ossa.yaml +1 -1
- package/examples/production/document-analyzer-openai.yml +1 -1
- package/examples/production-ready/01-customer-support-bot/.env.example +32 -0
- package/examples/production-ready/01-customer-support-bot/Dockerfile +30 -0
- package/examples/production-ready/01-customer-support-bot/README.md +295 -0
- package/examples/production-ready/01-customer-support-bot/agent.ossa.yaml +172 -0
- package/examples/production-ready/01-customer-support-bot/docker-compose.yml +55 -0
- package/examples/production-ready/01-customer-support-bot/openapi.yaml +238 -0
- package/examples/production-ready/01-customer-support-bot/package.json +48 -0
- package/examples/production-ready/02-code-review-agent/README.md +72 -0
- package/examples/production-ready/02-code-review-agent/agent.ossa.yaml +239 -0
- package/examples/production-ready/02-code-review-agent/docker-compose.yml +22 -0
- package/examples/production-ready/02-code-review-agent/openapi.yaml +150 -0
- package/examples/production-ready/03-data-analysis-agent/README.md +51 -0
- package/examples/production-ready/03-data-analysis-agent/agent.ossa.yaml +97 -0
- package/examples/production-ready/03-data-analysis-agent/openapi.yaml +74 -0
- package/examples/production-ready/04-content-moderator/README.md +55 -0
- package/examples/production-ready/04-content-moderator/agent.ossa.yaml +131 -0
- package/examples/production-ready/04-content-moderator/openapi.yaml +50 -0
- package/examples/production-ready/05-sales-assistant/README.md +37 -0
- package/examples/production-ready/05-sales-assistant/agent.ossa.yaml +146 -0
- package/examples/production-ready/05-sales-assistant/openapi.yaml +59 -0
- package/examples/production-ready/06-devops-agent/README.md +39 -0
- package/examples/production-ready/06-devops-agent/agent.ossa.yaml +141 -0
- package/examples/production-ready/06-devops-agent/openapi.yaml +51 -0
- package/examples/production-ready/07-research-assistant/README.md +31 -0
- package/examples/production-ready/07-research-assistant/agent.ossa.yaml +119 -0
- package/examples/production-ready/07-research-assistant/openapi.yaml +56 -0
- package/examples/production-ready/08-email-triage-agent/README.md +33 -0
- package/examples/production-ready/08-email-triage-agent/agent.ossa.yaml +133 -0
- package/examples/production-ready/08-email-triage-agent/openapi.yaml +41 -0
- package/examples/production-ready/09-security-scanner/README.md +49 -0
- package/examples/production-ready/09-security-scanner/agent.ossa.yaml +174 -0
- package/examples/production-ready/09-security-scanner/openapi.yaml +46 -0
- package/examples/production-ready/10-meeting-assistant/README.md +53 -0
- package/examples/production-ready/10-meeting-assistant/agent.ossa.yaml +211 -0
- package/examples/production-ready/10-meeting-assistant/docker-compose.yml +27 -0
- package/examples/production-ready/10-meeting-assistant/openapi.yaml +131 -0
- package/examples/production-ready/COMPLETION_REPORT.txt +272 -0
- package/examples/production-ready/INDEX.md +296 -0
- package/examples/production-ready/README.md +452 -0
- package/examples/production-ready/SUMMARY.md +362 -0
- package/examples/production-ready/TEST_RESULTS.md +458 -0
- package/examples/quickstart/support-agent.ossa.yaml +1 -1
- package/examples/real-world/gitlab-cicd-optimizer.ossa.yaml +1 -1
- package/examples/real-world/rag-documentation-assistant.ossa.yaml +1 -1
- package/examples/registry/agents/code-reviewer/agent.yaml +1 -1
- package/examples/registry/agents/security-scanner/agent.yaml +1 -1
- package/examples/runtime-adapters/bedrock-claude-example.ossa.yaml +1 -1
- package/examples/schema/reusable-components.yaml +1 -1
- package/examples/showcase/ci-pipeline.ossa.yaml +1 -1
- package/examples/showcase/code-assistant.ossa.yaml +1 -1
- package/examples/showcase/code-reviewer.ossa.yaml +1 -1
- package/examples/showcase/compliance-validator.ossa.yaml +1 -1
- package/examples/showcase/content-writer.ossa.yaml +1 -1
- package/examples/showcase/data-transformer.ossa.yaml +1 -1
- package/examples/showcase/doc-generator.ossa.yaml +1 -1
- package/examples/showcase/security-scanner.ossa.yaml +1 -1
- package/examples/showcase/test-generator.ossa.yaml +1 -1
- package/examples/showcase/workflow-orchestrator.ossa.yaml +1 -1
- package/examples/skills-example.ossa.yaml +140 -0
- package/examples/swarm/pso-optimizer.ossa.json +1 -1
- package/examples/tasks/batch-email-sender.yaml +1 -1
- package/examples/tasks/data-transform.yaml +1 -1
- package/examples/tasks/publish-content.yaml +1 -1
- package/examples/templates/ossa-compliance.yaml +1 -1
- package/examples/unified/security-scanner.ossa.yaml +1 -1
- package/examples/v0.3.6-features/genetics-breeding-advanced.ossa.yaml +1 -1
- package/examples/v0.3.6-features/genetics-breeding-simple.ossa.yaml +1 -1
- package/examples/v0.3.6-features/genetics-fitness-scoring.ossa.yaml +1 -1
- package/examples/vercel/edge-agent.ossa.json +1 -1
- package/examples/workflows/batch-email-campaign.yaml +1 -1
- package/examples/workflows/content-review-publish.yaml +1 -1
- package/examples/workflows/simple-etl.yaml +1 -1
- package/openapi/cli/openapi.yaml +221 -5
- package/package.json +17 -7
- package/dist/cli/commands/export-v2.command.d.ts +0 -7
- package/dist/cli/commands/export-v2.command.d.ts.map +0 -1
- package/dist/cli/commands/export-v2.command.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,122 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.1] - 2026-02-04
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
**Wizard Enhancements:**
|
|
13
|
+
- Claude Skills system integration with skill creation, validation, and parameter support
|
|
14
|
+
- Export target configuration for LangChain, KAgent, Drupal, and Symfony platforms
|
|
15
|
+
- Testing & validation configuration with unit, integration, load, security, and cost testing
|
|
16
|
+
- Multi-platform deployment support with platform-specific options (RBAC, TLS, caching)
|
|
17
|
+
- Schema-compliant annotations storage using `buildkit.ossa.io/` namespace
|
|
18
|
+
- Type-safe configuration interfaces and helper functions
|
|
19
|
+
|
|
20
|
+
**LangServe Export (Optional):**
|
|
21
|
+
- Production FastAPI + LangServe deployment templates (30 files, 4,350+ lines)
|
|
22
|
+
- One-click deployment support: Docker, Kubernetes, Railway, Render, Fly.io
|
|
23
|
+
- Multi-stage Docker builds with Alpine base for minimal image size
|
|
24
|
+
- Kubernetes manifests with HPA, security contexts, and production best practices
|
|
25
|
+
- Complete monitoring stack: Prometheus, Grafana, OpenTelemetry integration
|
|
26
|
+
- Health check endpoints with readiness and liveness probes
|
|
27
|
+
- OSSA manifest loader with runtime validation
|
|
28
|
+
- Comprehensive deployment documentation (180+ pages, 200+ code examples)
|
|
29
|
+
|
|
30
|
+
**Drupal Integration Architecture:**
|
|
31
|
+
- Complete TypeScript ↔ PHP bridge architecture (150+ pages)
|
|
32
|
+
- Runtime bridge server design for agent execution
|
|
33
|
+
- Config export workflow for Drupal module generation
|
|
34
|
+
- Module generation patterns with DRY principles via ai_agents base module
|
|
35
|
+
- Comprehensive examples: 50+ production code samples
|
|
36
|
+
- Architecture diagrams: 15+ ASCII diagrams
|
|
37
|
+
- Integration guides: Quick start (5 minutes), complete technical specs
|
|
38
|
+
|
|
39
|
+
**Testing Framework:**
|
|
40
|
+
- GitLab CI Components with 7-stage pipeline
|
|
41
|
+
- Zod schemas for validation at all layers
|
|
42
|
+
- OWASP Top 10 security testing integration
|
|
43
|
+
- Unit, integration, E2E, security, and performance test support
|
|
44
|
+
|
|
45
|
+
**Production-Quality Exports:**
|
|
46
|
+
- Complete REST API endpoints for all platform exports (LangChain, npm, Anthropic)
|
|
47
|
+
- OpenAPI 3.1 specifications automatically generated for all exports
|
|
48
|
+
- Interactive API documentation via Swagger UI and ReDoc
|
|
49
|
+
- Client SDK generation support (TypeScript, Python, Go, Java, etc.)
|
|
50
|
+
- Express server templates with authentication, rate limiting, and monitoring
|
|
51
|
+
|
|
52
|
+
**LangChain Export:**
|
|
53
|
+
- Dual language support (Python + TypeScript implementations)
|
|
54
|
+
- Production-ready LangChain agent classes and tools
|
|
55
|
+
- API endpoints: `/api/v1/execute`, `/api/v1/tools`, `/api/v1/status`
|
|
56
|
+
- Requirements.txt and package.json with dependencies
|
|
57
|
+
- Complete usage documentation
|
|
58
|
+
|
|
59
|
+
**npm Package Export:**
|
|
60
|
+
- Installable npm packages with TypeScript type definitions
|
|
61
|
+
- Embedded OSSA manifest (agent.ossa.yaml)
|
|
62
|
+
- API server with OpenAPI spec
|
|
63
|
+
- Claude Code skill integration (SKILL.md)
|
|
64
|
+
- Auto-generated README with examples
|
|
65
|
+
- License file support (MIT, Apache-2.0, ISC)
|
|
66
|
+
|
|
67
|
+
**Anthropic Claude Export:**
|
|
68
|
+
- Native Anthropic SDK integration
|
|
69
|
+
- Tool use support with handler registration
|
|
70
|
+
- Streaming response support via Server-Sent Events
|
|
71
|
+
- Prompt caching support (90% cost reduction)
|
|
72
|
+
- Message history and context management
|
|
73
|
+
- Cost tracking and usage metrics
|
|
74
|
+
|
|
75
|
+
**Cost Optimization:**
|
|
76
|
+
- Anthropic prompt caching (90% savings on cached portions)
|
|
77
|
+
- Token budgets with hard limits and warnings
|
|
78
|
+
- Cost estimation before execution
|
|
79
|
+
- Temperature optimization recommendations
|
|
80
|
+
- Model selection guidance for cost vs quality
|
|
81
|
+
- Tool output limits to prevent expensive operations
|
|
82
|
+
- Batch processing suggestions
|
|
83
|
+
|
|
84
|
+
**Enhanced Validation:**
|
|
85
|
+
- Best practices validation (temperature, maxTokens, etc.)
|
|
86
|
+
- Security validation (input sanitization, output filtering)
|
|
87
|
+
- Cost analysis and recommendations
|
|
88
|
+
- Auto-fix capability for common issues
|
|
89
|
+
- Enhanced linting with multiple rule categories
|
|
90
|
+
|
|
91
|
+
**API Features:**
|
|
92
|
+
- Standard endpoints: `/health`, `/api/v1/info`, `/api/v1/execute`, `/openapi`
|
|
93
|
+
- Authentication: API key and JWT support
|
|
94
|
+
- Rate limiting with configurable limits
|
|
95
|
+
- CORS configuration
|
|
96
|
+
- Request/response validation against OpenAPI spec
|
|
97
|
+
- Error handling with consistent error responses
|
|
98
|
+
- Metrics endpoint for Prometheus monitoring
|
|
99
|
+
- WebSocket support for real-time communication
|
|
100
|
+
|
|
101
|
+
**Documentation:**
|
|
102
|
+
- Complete export guides: [LangChain](./docs/exports/langchain.md), [npm](./docs/exports/npm.md), [Anthropic](./docs/exports/anthropic.md)
|
|
103
|
+
- API Endpoints guide: [docs/guides/api-endpoints.md](./docs/guides/api-endpoints.md)
|
|
104
|
+
- OpenAPI Specifications guide: [docs/guides/openapi-specs.md](./docs/guides/openapi-specs.md)
|
|
105
|
+
- Best Practices guide: [docs/guides/best-practices.md](./docs/guides/best-practices.md)
|
|
106
|
+
- Cost Optimization guide: [docs/guides/cost-optimization.md](./docs/guides/cost-optimization.md)
|
|
107
|
+
- Migration guide: [docs/migration/v0.4-to-v0.5.md](./docs/migration/v0.4-to-v0.5.md)
|
|
108
|
+
|
|
109
|
+
### Changed
|
|
110
|
+
- Export command now supports `--with-api` flag to include API endpoints
|
|
111
|
+
- Export command now supports `--skill` flag to include Claude Code skills
|
|
112
|
+
- All exports now include OpenAPI 3.1 specifications
|
|
113
|
+
- Enhanced dry-run mode with detailed preview
|
|
114
|
+
- Improved validation messages with actionable suggestions
|
|
115
|
+
- Better error messages with context and fix suggestions
|
|
116
|
+
|
|
117
|
+
### Fixed
|
|
118
|
+
- Export path handling for nested directories
|
|
119
|
+
- OpenAPI spec generation for complex schemas
|
|
120
|
+
- TypeScript type generation for optional properties
|
|
121
|
+
- API server port configuration
|
|
122
|
+
- CORS handling for cross-origin requests
|
|
123
|
+
|
|
8
124
|
## [0.4.0] - 2026-02-01
|
|
9
125
|
|
|
10
126
|
### Added
|
|
@@ -220,6 +336,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
220
336
|
- Fixed CI/CD configuration for proper Docker image usage
|
|
221
337
|
- Fixed hardcoded version detection and validation
|
|
222
338
|
|
|
339
|
+
[0.4.1]: https://github.com/blueflyio/openstandardagents/compare/v0.4.0...v0.4.1
|
|
223
340
|
[0.4.0]: https://github.com/blueflyio/openstandardagents/compare/v0.3.6...v0.4.0
|
|
224
341
|
[0.3.6]: https://github.com/blueflyio/openstandardagents/compare/v0.3.5...v0.3.6
|
|
225
342
|
[0.3.5]: https://github.com/blueflyio/openstandardagents/compare/v0.3.4...v0.3.5
|
package/DEMO.md
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
# OSSA v0.4.1 - The Killer Demo
|
|
2
|
+
|
|
3
|
+
## Turn Any AI Agent into a Production NPM Package in 60 Seconds
|
|
4
|
+
|
|
5
|
+
**Problem**: You built an AI agent. How do you deploy it? Share it? Version it? Install it like real software?
|
|
6
|
+
|
|
7
|
+
**Solution**: OSSA CLI
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## The Demo
|
|
12
|
+
|
|
13
|
+
### 1. Install OSSA CLI (when published)
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g @bluefly/openstandardagents
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### 2. Create Your Agent (3 commands)
|
|
19
|
+
```bash
|
|
20
|
+
# Quick start with wizard
|
|
21
|
+
ossa quickstart
|
|
22
|
+
|
|
23
|
+
# OR create from scratch
|
|
24
|
+
ossa wizard
|
|
25
|
+
|
|
26
|
+
# OR import from another platform
|
|
27
|
+
ossa import cursor-agent.json --from cursor
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### 3. Export to Production Package (1 command)
|
|
31
|
+
```bash
|
|
32
|
+
ossa export my-agent.ossa.yaml --platform npm --output ./my-agent-package
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
**Output**: A production-ready NPM package with:
|
|
36
|
+
- ✅ `package.json` with proper metadata
|
|
37
|
+
- ✅ `index.js` entry point
|
|
38
|
+
- ✅ `index.d.ts` TypeScript types
|
|
39
|
+
- ✅ `README.md` with usage docs
|
|
40
|
+
- ✅ `.npmignore` for clean publishing
|
|
41
|
+
- ✅ Original OSSA manifest included
|
|
42
|
+
|
|
43
|
+
### 4. Publish & Use
|
|
44
|
+
```bash
|
|
45
|
+
cd my-agent-package
|
|
46
|
+
npm publish
|
|
47
|
+
|
|
48
|
+
# Now anyone can install it:
|
|
49
|
+
npm install my-agent
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## What Problem Does This Solve?
|
|
55
|
+
|
|
56
|
+
**Before OSSA:**
|
|
57
|
+
- No standard format for agent definitions
|
|
58
|
+
- Platform lock-in - rewrite for each platform
|
|
59
|
+
- Manual packaging and deployment setup
|
|
60
|
+
- No dependency management or versioning
|
|
61
|
+
- Copy-paste agent configs between tools
|
|
62
|
+
|
|
63
|
+
**With OSSA:**
|
|
64
|
+
- One manifest works across 12+ platforms
|
|
65
|
+
- Export to: NPM, Docker, Kubernetes, MCP, Cursor, Claude Desktop, Langchain, CrewAI, AutoGen, AG2, Langflow, OpenAI
|
|
66
|
+
- Production CLI with validation, dry-run, JSON output
|
|
67
|
+
- Type-safe manifests with Zod + TypeScript
|
|
68
|
+
- OpenAPI-style approach for agents
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## Real Example
|
|
73
|
+
|
|
74
|
+
```yaml
|
|
75
|
+
# my-agent.ossa.yaml
|
|
76
|
+
apiVersion: ossa/v0.3.6
|
|
77
|
+
kind: Agent
|
|
78
|
+
metadata:
|
|
79
|
+
name: code-reviewer
|
|
80
|
+
version: 1.0.0
|
|
81
|
+
description: AI code reviewer agent
|
|
82
|
+
spec:
|
|
83
|
+
role: "You review code for quality, security, and best practices"
|
|
84
|
+
llm:
|
|
85
|
+
provider: openai
|
|
86
|
+
model: gpt-4
|
|
87
|
+
capabilities:
|
|
88
|
+
- id: review-code
|
|
89
|
+
type: tool
|
|
90
|
+
name: review_code
|
|
91
|
+
description: Review code and provide feedback
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
**One command later:**
|
|
95
|
+
```bash
|
|
96
|
+
ossa export my-agent.ossa.yaml --platform npm
|
|
97
|
+
|
|
98
|
+
# Outputs:
|
|
99
|
+
# ✓ NPM package exported to: code-reviewer-npm/
|
|
100
|
+
# Files: package.json, index.js, index.d.ts, README.md
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**Now it's installable software:**
|
|
104
|
+
```bash
|
|
105
|
+
npm install @myorg/code-reviewer
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Platform Support Matrix
|
|
111
|
+
|
|
112
|
+
| Platform | Export | Import | Status |
|
|
113
|
+
|----------|--------|--------|--------|
|
|
114
|
+
| NPM | ✅ | ✅ | Production |
|
|
115
|
+
| Docker | ✅ | ❌ | Beta |
|
|
116
|
+
| Kubernetes | ✅ | ❌ | Beta |
|
|
117
|
+
| MCP | ✅ | ✅ | Production |
|
|
118
|
+
| Cursor | ✅ | ✅ | Production |
|
|
119
|
+
| Claude Desktop | ✅ | ❌ | Production |
|
|
120
|
+
| Langchain | ✅ | ✅ | Beta |
|
|
121
|
+
| CrewAI | ✅ | ✅ | Beta |
|
|
122
|
+
| AutoGen | ✅ | ✅ | Beta |
|
|
123
|
+
| AG2 | ✅ | ❌ | Beta |
|
|
124
|
+
| Langflow | ✅ | ✅ | Beta |
|
|
125
|
+
| OpenAI | ✅ | ✅ | Production |
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## The "Wow" Factor
|
|
130
|
+
|
|
131
|
+
**Traditional approach** (Cursor agent to production):
|
|
132
|
+
1. Write agent in Cursor format
|
|
133
|
+
2. Manually create package.json
|
|
134
|
+
3. Write entry point code
|
|
135
|
+
4. Create TypeScript types
|
|
136
|
+
5. Write README
|
|
137
|
+
6. Configure for each platform
|
|
138
|
+
7. Test deployments
|
|
139
|
+
8. Maintain separate configs
|
|
140
|
+
|
|
141
|
+
**Time**: Hours to days
|
|
142
|
+
|
|
143
|
+
**OSSA approach**:
|
|
144
|
+
```bash
|
|
145
|
+
ossa import cursor-agent.json --from cursor
|
|
146
|
+
ossa export agent.ossa.yaml --platform npm
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
**Time**: 60 seconds
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## Production Features
|
|
154
|
+
|
|
155
|
+
All commands support:
|
|
156
|
+
- `--dry-run` - Preview without changes
|
|
157
|
+
- `--verbose` - Detailed output
|
|
158
|
+
- `--quiet` - Minimal output for scripts
|
|
159
|
+
- `--json` - Machine-readable output
|
|
160
|
+
- `--no-color` - CI-friendly
|
|
161
|
+
- Proper exit codes for scripts
|
|
162
|
+
|
|
163
|
+
Example:
|
|
164
|
+
```bash
|
|
165
|
+
# Safe preview
|
|
166
|
+
ossa export agent.yaml --platform npm --dry-run
|
|
167
|
+
|
|
168
|
+
# Automated pipeline
|
|
169
|
+
ossa export agent.yaml --platform npm --quiet --json > result.json
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## Why OSSA is The Standard
|
|
175
|
+
|
|
176
|
+
1. **OpenAPI-inspired**: We learned from the API revolution
|
|
177
|
+
2. **Platform-agnostic**: Write once, deploy everywhere
|
|
178
|
+
3. **Type-safe**: Zod + TypeScript for reliability
|
|
179
|
+
4. **Production-ready**: Built for real deployments
|
|
180
|
+
5. **Open Standard**: Community-driven, not vendor lock-in
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## Get Started Now
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
# Install
|
|
188
|
+
npm install -g @bluefly/openstandardagents
|
|
189
|
+
|
|
190
|
+
# Quick start
|
|
191
|
+
ossa quickstart
|
|
192
|
+
|
|
193
|
+
# Create agent
|
|
194
|
+
ossa wizard
|
|
195
|
+
|
|
196
|
+
# Export to any platform
|
|
197
|
+
ossa export agent.yaml --platform npm
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
**Documentation**: https://openstandardagents.org
|
|
201
|
+
**GitHub**: https://github.com/blueflyio/openstandardagents
|
|
202
|
+
**Spec**: https://openstandardagents.org/spec
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
206
|
+
## Why OSSA Exists
|
|
207
|
+
|
|
208
|
+
OpenAPI standardized REST API definitions. OSSA does the same for AI agents.
|
|
209
|
+
|
|
210
|
+
One manifest format. Works everywhere. Production-ready tooling.
|
|
211
|
+
|
|
212
|
+
**OSSA v0.4.1** - Ready for production use.
|
package/README.md
CHANGED
|
@@ -17,13 +17,73 @@ npm install -g @bluefly/openstandardagents
|
|
|
17
17
|
# Create agent
|
|
18
18
|
ossa quickstart
|
|
19
19
|
|
|
20
|
-
# Export to NPM package
|
|
21
|
-
ossa export my-agent.ossa.yaml --platform npm --output ./package
|
|
20
|
+
# Export to NPM package with REST API
|
|
21
|
+
ossa export my-agent.ossa.yaml --platform npm --with-api --output ./package
|
|
22
|
+
|
|
23
|
+
# Start API server
|
|
24
|
+
cd package && npm install && npm start
|
|
25
|
+
|
|
26
|
+
# Use via HTTP
|
|
27
|
+
curl -X POST http://localhost:3000/api/v1/execute \
|
|
28
|
+
-H "Content-Type: application/json" \
|
|
29
|
+
-d '{"input":"Analyze this code"}'
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Result**: Production-ready package with REST API, OpenAPI spec, TypeScript types, and interactive documentation.
|
|
33
|
+
|
|
34
|
+
See [DEMO.md](https://github.com/blueflyio/openstandardagents/blob/main/DEMO.md) for the full story.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## What's New in v0.4.1 (Latest)
|
|
39
|
+
|
|
40
|
+
### Production-Quality Exports with API Endpoints
|
|
41
|
+
|
|
42
|
+
Export agents with complete REST APIs, OpenAPI specifications, and production features:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# Export with API endpoints
|
|
46
|
+
ossa export agent.ossa.yaml --platform langchain --with-api
|
|
47
|
+
ossa export agent.ossa.yaml --platform anthropic --with-api
|
|
48
|
+
ossa export agent.ossa.yaml --platform npm --skill --with-api
|
|
22
49
|
```
|
|
23
50
|
|
|
24
|
-
**
|
|
51
|
+
**What you get:**
|
|
52
|
+
- ✅ **REST API Endpoints**: HTTP access to your agents
|
|
53
|
+
- ✅ **OpenAPI 3.1 Specs**: Complete API documentation
|
|
54
|
+
- ✅ **Interactive Docs**: Swagger UI and ReDoc
|
|
55
|
+
- ✅ **Client Generation**: Auto-generate TypeScript, Python, Go clients
|
|
56
|
+
- ✅ **Cost Optimization**: Prompt caching (90% savings), token budgets
|
|
57
|
+
- ✅ **Production Features**: Auth, rate limiting, monitoring
|
|
58
|
+
|
|
59
|
+
### Cost Optimization
|
|
60
|
+
|
|
61
|
+
Save up to 90% on API costs:
|
|
62
|
+
|
|
63
|
+
```yaml
|
|
64
|
+
spec:
|
|
65
|
+
llm:
|
|
66
|
+
provider: anthropic
|
|
67
|
+
model: claude-3-5-sonnet-20241022
|
|
68
|
+
temperature: 0.3
|
|
69
|
+
maxTokens: 2048
|
|
70
|
+
|
|
71
|
+
extensions:
|
|
72
|
+
anthropic:
|
|
73
|
+
prompt_caching:
|
|
74
|
+
enabled: true # 90% cost reduction on cached portions
|
|
75
|
+
|
|
76
|
+
token_budget:
|
|
77
|
+
max_total_tokens: 100000
|
|
78
|
+
reset_interval: daily
|
|
79
|
+
```
|
|
25
80
|
|
|
26
|
-
See
|
|
81
|
+
**See Complete Guides:**
|
|
82
|
+
- [LangChain Export](./docs/exports/langchain.md)
|
|
83
|
+
- [Anthropic Export](./docs/exports/anthropic.md)
|
|
84
|
+
- [npm Export](./docs/exports/npm.md)
|
|
85
|
+
- [Cost Optimization](./docs/guides/cost-optimization.md)
|
|
86
|
+
- [Migration Guide v0.4→v0.5](./docs/migration/v0.4-to-v0.5.md)
|
|
27
87
|
|
|
28
88
|
---
|
|
29
89
|
|
|
@@ -38,7 +98,7 @@ OSSA is a **specification standard** that provides a common contract for definin
|
|
|
38
98
|
|
|
39
99
|
## Real-World Benefits
|
|
40
100
|
|
|
41
|
-
### 1. Agent Lifecycle Management (
|
|
101
|
+
### 1. Agent Lifecycle Management (v0.4.1)
|
|
42
102
|
|
|
43
103
|
Track agents through their entire lifecycle from creation to retirement:
|
|
44
104
|
|
|
@@ -69,7 +129,7 @@ metadata:
|
|
|
69
129
|
- Plan for agent retirement and knowledge transfer
|
|
70
130
|
- Document career progression and achievements
|
|
71
131
|
|
|
72
|
-
### 2. Agent Genetics & Breeding (
|
|
132
|
+
### 2. Agent Genetics & Breeding (v0.4.1)
|
|
73
133
|
|
|
74
134
|
Create new agents by combining traits from successful parent agents:
|
|
75
135
|
|
|
@@ -99,7 +159,7 @@ metadata:
|
|
|
99
159
|
- Track lineage and inherited traits
|
|
100
160
|
- Optimize agent performance across generations
|
|
101
161
|
|
|
102
|
-
### 3. Agent Marketplace & Economics (
|
|
162
|
+
### 3. Agent Marketplace & Economics (v0.4.1)
|
|
103
163
|
|
|
104
164
|
Monetize agent capabilities and enable agent-to-agent transactions:
|
|
105
165
|
|
|
@@ -129,7 +189,7 @@ metadata:
|
|
|
129
189
|
- Track agent resource consumption and costs
|
|
130
190
|
- Enable pay-per-use agent services
|
|
131
191
|
|
|
132
|
-
### 4. Decentralized Identity (
|
|
192
|
+
### 4. Decentralized Identity (v0.4.1)
|
|
133
193
|
|
|
134
194
|
Give agents globally unique, verifiable identities:
|
|
135
195
|
|
|
@@ -163,7 +223,7 @@ import { validateManifest } from '@bluefly/openstandardagents/validation';
|
|
|
163
223
|
|
|
164
224
|
// Your OSSA manifest
|
|
165
225
|
const manifest = {
|
|
166
|
-
apiVersion: "ossa/v0.
|
|
226
|
+
apiVersion: "ossa/v0.4.1",
|
|
167
227
|
kind: "Agent",
|
|
168
228
|
metadata: {
|
|
169
229
|
name: "code-reviewer",
|
|
@@ -203,7 +263,7 @@ npm install @bluefly/openstandardagents
|
|
|
203
263
|
Create an `agent.ossa.yaml` file:
|
|
204
264
|
|
|
205
265
|
```yaml
|
|
206
|
-
apiVersion: ossa/v0.
|
|
266
|
+
apiVersion: ossa/v0.4.1
|
|
207
267
|
kind: Agent
|
|
208
268
|
metadata:
|
|
209
269
|
name: my-agent
|
|
@@ -240,7 +300,7 @@ if (result.valid) {
|
|
|
240
300
|
import type { OssaAgent } from '@bluefly/openstandardagents/types';
|
|
241
301
|
|
|
242
302
|
const agent: OssaAgent = {
|
|
243
|
-
apiVersion: "ossa/v0.
|
|
303
|
+
apiVersion: "ossa/v0.4.1",
|
|
244
304
|
kind: "Agent",
|
|
245
305
|
metadata: {
|
|
246
306
|
name: "code-reviewer"
|
|
@@ -251,7 +311,7 @@ const agent: OssaAgent = {
|
|
|
251
311
|
};
|
|
252
312
|
```
|
|
253
313
|
|
|
254
|
-
## What's New in v0.4.
|
|
314
|
+
## What's New in v0.4.1 (Release Candidate)
|
|
255
315
|
|
|
256
316
|
### NPM Package Export + Claude Skills Integration
|
|
257
317
|
|
|
@@ -313,7 +373,7 @@ claude --print "use my-agent to analyze this code"
|
|
|
313
373
|
|
|
314
374
|
---
|
|
315
375
|
|
|
316
|
-
## What's New in v0.
|
|
376
|
+
## What's New in v0.4.1
|
|
317
377
|
|
|
318
378
|
### New Features
|
|
319
379
|
|
|
@@ -344,7 +404,7 @@ claude --print "use my-agent to analyze this code"
|
|
|
344
404
|
|
|
345
405
|
```yaml
|
|
346
406
|
# Production agent with full lifecycle tracking
|
|
347
|
-
apiVersion: ossa/v0.
|
|
407
|
+
apiVersion: ossa/v0.4.1
|
|
348
408
|
kind: Agent
|
|
349
409
|
metadata:
|
|
350
410
|
name: enterprise-analyst
|
|
@@ -375,7 +435,7 @@ spec:
|
|
|
375
435
|
|
|
376
436
|
```yaml
|
|
377
437
|
# Particle Swarm Optimization for infrastructure
|
|
378
|
-
apiVersion: ossa/v0.
|
|
438
|
+
apiVersion: ossa/v0.4.1
|
|
379
439
|
kind: Agent
|
|
380
440
|
metadata:
|
|
381
441
|
name: pso-optimizer
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Drupal Module Generator for OSSA Agents
|
|
3
|
+
*
|
|
4
|
+
* Generates complete, production-ready Drupal modules from OSSA agent manifests.
|
|
5
|
+
*
|
|
6
|
+
* Generated modules include:
|
|
7
|
+
* - MODULE.info.yml (module metadata)
|
|
8
|
+
* - MODULE.services.yml (DI configuration)
|
|
9
|
+
* - src/Service/AgentExecutor (wrapper around ossa/symfony-bundle)
|
|
10
|
+
* - src/Plugin/QueueWorker (async execution support)
|
|
11
|
+
* - src/Controller (admin UI and API endpoints)
|
|
12
|
+
* - src/Entity (agent result storage)
|
|
13
|
+
* - src/Form (configuration forms)
|
|
14
|
+
* - MODULE.module (Drupal hooks: entity_presave, cron, etc.)
|
|
15
|
+
* - templates/*.html.twig (Twig templates)
|
|
16
|
+
* - composer.json (with ossa/symfony-bundle dependency)
|
|
17
|
+
* - config/schema/MODULE.schema.yml (configuration schema)
|
|
18
|
+
* - config/install/*.yml (default configuration)
|
|
19
|
+
*
|
|
20
|
+
* SOLID Principles:
|
|
21
|
+
* - Single Responsibility: Drupal module generation only
|
|
22
|
+
* - Dependency Inversion: Uses ossa/symfony-bundle for agent execution
|
|
23
|
+
* - Interface Segregation: Separate interfaces for different module components
|
|
24
|
+
*
|
|
25
|
+
* DRY: Reuses Symfony bundle patterns, no duplication
|
|
26
|
+
*/
|
|
27
|
+
import { BaseAdapter } from '../base/adapter.interface.js';
|
|
28
|
+
import type { OssaAgent, ExportOptions, ExportResult, ValidationResult } from '../base/adapter.interface.js';
|
|
29
|
+
export interface DrupalModuleGeneratorOptions extends ExportOptions {
|
|
30
|
+
/** Include Queue Worker for async execution */
|
|
31
|
+
includeQueueWorker?: boolean;
|
|
32
|
+
/** Include Entity for result storage */
|
|
33
|
+
includeEntity?: boolean;
|
|
34
|
+
/** Include Controller with admin UI */
|
|
35
|
+
includeController?: boolean;
|
|
36
|
+
/** Include Configuration Form */
|
|
37
|
+
includeConfigForm?: boolean;
|
|
38
|
+
/** Include Drupal hooks (entity_presave, cron) */
|
|
39
|
+
includeHooks?: boolean;
|
|
40
|
+
/** Include Views integration */
|
|
41
|
+
includeViews?: boolean;
|
|
42
|
+
/** Drupal core version requirement */
|
|
43
|
+
coreVersion?: string;
|
|
44
|
+
}
|
|
45
|
+
export declare class DrupalModuleGenerator extends BaseAdapter {
|
|
46
|
+
readonly platform = "drupal";
|
|
47
|
+
readonly displayName = "Drupal Module (Full)";
|
|
48
|
+
readonly description = "Production-ready Drupal module with OSSA/Symfony integration";
|
|
49
|
+
readonly supportedVersions: string[];
|
|
50
|
+
/**
|
|
51
|
+
* Generate complete Drupal module from OSSA manifest
|
|
52
|
+
*/
|
|
53
|
+
export(manifest: OssaAgent, options?: DrupalModuleGeneratorOptions): Promise<ExportResult>;
|
|
54
|
+
/**
|
|
55
|
+
* Validate manifest for Drupal compatibility
|
|
56
|
+
*/
|
|
57
|
+
validate(manifest: OssaAgent): Promise<ValidationResult>;
|
|
58
|
+
/**
|
|
59
|
+
* Get example manifest optimized for Drupal
|
|
60
|
+
*/
|
|
61
|
+
getExample(): OssaAgent;
|
|
62
|
+
/**
|
|
63
|
+
* Generate MODULE.info.yml
|
|
64
|
+
*/
|
|
65
|
+
private generateInfoYml;
|
|
66
|
+
/**
|
|
67
|
+
* Generate MODULE.services.yml with full DI configuration
|
|
68
|
+
*/
|
|
69
|
+
private generateServicesYml;
|
|
70
|
+
/**
|
|
71
|
+
* Generate composer.json with ossa/symfony-bundle dependency
|
|
72
|
+
*/
|
|
73
|
+
private generateComposerJson;
|
|
74
|
+
/**
|
|
75
|
+
* Generate MODULE.module with Drupal hooks
|
|
76
|
+
*/
|
|
77
|
+
private generateModuleHooks;
|
|
78
|
+
/**
|
|
79
|
+
* Generate src/Service/AgentExecutorService.php
|
|
80
|
+
*
|
|
81
|
+
* Wraps Symfony bundle AgentExecutor with Drupal-specific features
|
|
82
|
+
*/
|
|
83
|
+
private generateAgentExecutorService;
|
|
84
|
+
/**
|
|
85
|
+
* Generate src/Plugin/QueueWorker/AgentQueueWorker.php
|
|
86
|
+
*/
|
|
87
|
+
private generateQueueWorker;
|
|
88
|
+
/**
|
|
89
|
+
* Generate src/Entity/AgentResult.php
|
|
90
|
+
*/
|
|
91
|
+
private generateEntityClass;
|
|
92
|
+
/**
|
|
93
|
+
* Generate src/Entity/AgentResultInterface.php
|
|
94
|
+
*/
|
|
95
|
+
private generateEntityInterface;
|
|
96
|
+
/**
|
|
97
|
+
* Generate MODULE.views.inc
|
|
98
|
+
*/
|
|
99
|
+
private generateViewsData;
|
|
100
|
+
/**
|
|
101
|
+
* Generate src/Controller/AgentController.php
|
|
102
|
+
*/
|
|
103
|
+
private generateController;
|
|
104
|
+
/**
|
|
105
|
+
* Generate MODULE.routing.yml
|
|
106
|
+
*/
|
|
107
|
+
private generateRouting;
|
|
108
|
+
/**
|
|
109
|
+
* Generate src/Form/AgentConfigForm.php
|
|
110
|
+
*/
|
|
111
|
+
private generateConfigForm;
|
|
112
|
+
/**
|
|
113
|
+
* Generate MODULE.links.menu.yml
|
|
114
|
+
*/
|
|
115
|
+
private generateMenuLinks;
|
|
116
|
+
/**
|
|
117
|
+
* Generate config/schema/MODULE.schema.yml
|
|
118
|
+
*/
|
|
119
|
+
private generateConfigSchema;
|
|
120
|
+
/**
|
|
121
|
+
* Generate config/install/MODULE.settings.yml
|
|
122
|
+
*/
|
|
123
|
+
private generateDefaultConfig;
|
|
124
|
+
/**
|
|
125
|
+
* Generate templates/agent-result.html.twig
|
|
126
|
+
*/
|
|
127
|
+
private generateAgentResultTemplate;
|
|
128
|
+
/**
|
|
129
|
+
* Generate templates/agent-execute-form.html.twig
|
|
130
|
+
*/
|
|
131
|
+
private generateExecuteFormTemplate;
|
|
132
|
+
/**
|
|
133
|
+
* Generate README.md
|
|
134
|
+
*/
|
|
135
|
+
private generateReadme;
|
|
136
|
+
/**
|
|
137
|
+
* Generate INSTALL.md
|
|
138
|
+
*/
|
|
139
|
+
private generateInstallGuide;
|
|
140
|
+
/**
|
|
141
|
+
* Sanitize module name for Drupal
|
|
142
|
+
*/
|
|
143
|
+
private sanitizeModuleName;
|
|
144
|
+
/**
|
|
145
|
+
* Convert module name to class name (PascalCase)
|
|
146
|
+
*/
|
|
147
|
+
private toClassName;
|
|
148
|
+
}
|
|
149
|
+
//# sourceMappingURL=generator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../../src/adapters/drupal/generator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,KAAK,EACV,SAAS,EACT,aAAa,EACb,YAAY,EACZ,gBAAgB,EAGjB,MAAM,8BAA8B,CAAC;AAEtC,MAAM,WAAW,4BAA6B,SAAQ,aAAa;IACjE,+CAA+C;IAC/C,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,wCAAwC;IACxC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,uCAAuC;IACvC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,iCAAiC;IACjC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,kDAAkD;IAClD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,gCAAgC;IAChC,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,sCAAsC;IACtC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,qBAAa,qBAAsB,SAAQ,WAAW;IACpD,QAAQ,CAAC,QAAQ,YAAY;IAC7B,QAAQ,CAAC,WAAW,0BAA0B;IAC9C,QAAQ,CAAC,WAAW,kEAAkE;IACtF,QAAQ,CAAC,iBAAiB,WAAoB;IAE9C;;OAEG;IACG,MAAM,CACV,QAAQ,EAAE,SAAS,EACnB,OAAO,CAAC,EAAE,4BAA4B,GACrC,OAAO,CAAC,YAAY,CAAC;IA8RxB;;OAEG;IACG,QAAQ,CAAC,QAAQ,EAAE,SAAS,GAAG,OAAO,CAAC,gBAAgB,CAAC;IA2B9D;;OAEG;IACH,UAAU,IAAI,SAAS;IA2CvB;;OAEG;IACH,OAAO,CAAC,eAAe;IA6BvB;;OAEG;IACH,OAAO,CAAC,mBAAmB;IA4C3B;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAkC5B;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAiH3B;;;;OAIG;IACH,OAAO,CAAC,4BAA4B;IA2NpC;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAwF3B;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAsH3B;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAe/B;;OAEG;IACH,OAAO,CAAC,iBAAiB;IAkFzB;;OAEG;IACH,OAAO,CAAC,kBAAkB;IAoI1B;;OAEG;IACH,OAAO,CAAC,eAAe;IA2CvB;;OAEG;IACH,OAAO,CAAC,kBAAkB;IA8G1B;;OAEG;IACH,OAAO,CAAC,iBAAiB;IAsBzB;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAyB5B;;OAEG;IACH,OAAO,CAAC,qBAAqB;IAW7B;;OAEG;IACH,OAAO,CAAC,2BAA2B;IAiDnC;;OAEG;IACH,OAAO,CAAC,2BAA2B;IAuBnC;;OAEG;IACH,OAAO,CAAC,cAAc;IA4MtB;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAgL5B;;OAEG;IACH,OAAO,CAAC,kBAAkB;IAS1B;;OAEG;IACH,OAAO,CAAC,WAAW;CAMpB"}
|