@bluefly/openstandardagents 0.2.5-RC → 0.2.8
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/.devfile.yaml +1 -1
- package/.env.example +1 -1
- package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
- package/.github/workflows/dependabot-comment.yml +34 -0
- package/.github/workflows/pr-comment.yml +33 -0
- package/.husky/pre-commit +5 -0
- package/.kiro/config.json +21 -0
- package/.kiro/settings/mcp.json +61 -0
- package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
- package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
- package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
- package/.kiro/specs/{website-design-audit → website-brand-identity}/design.md +381 -0
- package/.kiro/specs/{website-design-audit → website-brand-identity}/requirements.md +88 -0
- package/.kiro/specs/website-brand-identity/tasks.md +981 -0
- package/.version.json +2 -2
- package/.wiki-config.json +24 -0
- package/CHANGELOG.md +34 -18
- package/CODEOWNERS +75 -0
- package/CONTRIBUTING.md +1 -1
- package/README.md +176 -239
- package/bin/ossa-dev +42 -0
- package/bin/ossa-export +32 -0
- package/bin/ossa-generate +60 -0
- package/bin/ossa-health +40 -0
- package/bin/ossa-init +26 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/repositories/schema.repository.d.ts +6 -1
- package/dist/repositories/schema.repository.d.ts.map +1 -1
- package/dist/repositories/schema.repository.js +63 -36
- package/dist/repositories/schema.repository.js.map +1 -1
- package/dist/services/github-sync/github-client.d.ts +14 -0
- package/dist/services/github-sync/github-client.d.ts.map +1 -0
- package/dist/services/github-sync/github-client.js +41 -0
- package/dist/services/github-sync/github-client.js.map +1 -0
- package/dist/services/github-sync/gitlab-client.d.ts +17 -0
- package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
- package/dist/services/github-sync/gitlab-client.js +42 -0
- package/dist/services/github-sync/gitlab-client.js.map +1 -0
- package/dist/services/github-sync/schemas.d.ts +46 -0
- package/dist/services/github-sync/schemas.d.ts.map +1 -0
- package/dist/services/github-sync/schemas.js +36 -0
- package/dist/services/github-sync/schemas.js.map +1 -0
- package/dist/services/github-sync/sync.service.d.ts +27 -0
- package/dist/services/github-sync/sync.service.d.ts.map +1 -0
- package/dist/services/github-sync/sync.service.js +99 -0
- package/dist/services/github-sync/sync.service.js.map +1 -0
- package/dist/services/migration.service.d.ts +4 -3
- package/dist/services/migration.service.d.ts.map +1 -1
- package/dist/services/migration.service.js +11 -10
- package/dist/services/migration.service.js.map +1 -1
- package/dist/services/release-automation/release.service.js +1 -1
- package/dist/services/release-automation/release.service.js.map +1 -1
- package/dist/services/release-automation/schemas/release.schema.js +1 -1
- package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
- package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
- package/dist/services/runtime/claude/capability-mapper.js +245 -0
- package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
- package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
- package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
- package/dist/services/runtime/claude/claude-adapter.js +287 -0
- package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
- package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
- package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
- package/dist/services/runtime/claude/manifest-parser.js +169 -0
- package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
- package/dist/services/runtime/claude/types.d.ts +115 -0
- package/dist/services/runtime/claude/types.d.ts.map +1 -0
- package/dist/services/runtime/claude/types.js +6 -0
- package/dist/services/runtime/claude/types.js.map +1 -0
- package/dist/services/validation.service.d.ts.map +1 -1
- package/dist/services/validation.service.js +12 -1
- package/dist/services/validation.service.js.map +1 -1
- package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
- package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.6/README.md +72 -0
- package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/dist/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
- package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
- package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
- package/dist/spec/v0.2.6-dev/README.md +75 -0
- package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
- package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
- package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
- package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
- package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.8/README.md +72 -0
- package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
- package/dist/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
- package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
- package/dist/types/index.d.ts +3 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +6 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/version.d.ts +68 -0
- package/dist/utils/version.d.ts.map +1 -0
- package/dist/utils/version.js +156 -0
- package/dist/utils/version.js.map +1 -0
- package/docs/brand-guide/01-brand-overview.md +37 -0
- package/docs/brand-guide/02-logo-usage.md +43 -0
- package/docs/brand-guide/03-color-palette.md +70 -0
- package/docs/brand-guide/04-typography.md +82 -0
- package/docs/brand-guide/05-voice-and-tone.md +108 -0
- package/docs/brand-guide/06-visual-elements.md +137 -0
- package/docs/brand-guide/07-application-examples.md +153 -0
- package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
- package/docs/brand-guide/OssaLogo/brand.af +0 -0
- package/docs/brand-guide/README.md +107 -0
- package/docs/comparison.md +315 -0
- package/docs/operations/automation-roadmap.md +245 -0
- package/docs/operations/github-sync-strategy.md +357 -0
- package/eslint-report.json +1 -0
- 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/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/anthropic/claude-assistant.ossa.json +5 -4
- package/examples/autogen/multi-agent.ossa.json +6 -4
- package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
- package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
- package/examples/common_npm/agent-router.ossa.yaml +1 -0
- package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
- package/examples/crewai/research-team.ossa.json +14 -5
- package/examples/cursor/code-review-agent.ossa.json +21 -6
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
- package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
- package/examples/extensions/drupal-v1.yml +1 -1
- package/examples/extensions/kagent-v1.yml +1 -1
- package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
- 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 +1 -0
- package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
- 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 +21 -5
- package/examples/langflow/workflow-agent.ossa.json +2 -3
- package/examples/langgraph/state-machine-agent.ossa.json +2 -3
- package/examples/llamaindex/rag-agent.ossa.json +2 -3
- package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
- package/examples/multi-agent/README.md +74 -0
- package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
- package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
- package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
- package/examples/openai/basic-agent.ossa.yaml +1 -1
- package/examples/openai/multi-tool-agent.ossa.json +33 -10
- package/examples/openai/swarm-agent.ossa.json +18 -5
- package/examples/production/document-analyzer-openai.yml +1 -1
- package/examples/quickstart/support-agent.ossa.yaml +1 -1
- package/examples/spec-examples/audit-agent.yml +1 -1
- package/examples/spec-examples/chat-agent.yml +1 -1
- package/examples/spec-examples/compliance-agent.yml +1 -1
- package/examples/spec-examples/monitoring-agent.yml +1 -1
- package/examples/spec-examples/workflow-agent.yml +1 -1
- package/examples/templates/ossa-compliance.yaml +1 -1
- package/examples/vercel/edge-agent.ossa.json +5 -4
- package/gl-code-quality-report.json +62 -0
- package/llms-ctx-full.txt +39 -0
- package/llms-ctx.txt +39 -0
- package/llms.txt +47 -0
- package/openapi/github-sync.yaml +115 -0
- package/package.json +26 -4
- package/scripts/README.md +103 -0
- package/scripts/auto-rebase-mrs.ts +106 -0
- package/scripts/batch-dependabot.sh +57 -0
- package/scripts/configure-gitlab-branch-protection.ts +95 -0
- package/scripts/create-issue-helper.ts +238 -0
- package/scripts/create-milestone-issue.ts +73 -0
- package/scripts/eslint-to-codequality.cjs +34 -0
- package/scripts/fix-schema-formats.js +82 -0
- package/scripts/generate-agents-catalog.ts +77 -0
- package/scripts/generate-api-docs.ts +218 -0
- package/scripts/generate-cli-docs.ts +410 -0
- package/scripts/generate-config-docs.ts +109 -0
- package/scripts/generate-errors-docs.ts +76 -0
- package/scripts/generate-examples-docs.ts +99 -0
- package/scripts/generate-llms-ctx.sh +17 -0
- package/scripts/generate-schema-docs.ts +317 -0
- package/scripts/generate-types-docs.ts +48 -0
- package/scripts/lowercase-docs.ts +43 -0
- package/scripts/manage-milestone-mrs.ts +279 -0
- package/scripts/rebase-all-mrs.sh +75 -0
- package/scripts/sync-github-pr.sh +48 -0
- package/scripts/sync-version.js +32 -0
- package/scripts/sync-wiki.sh +50 -0
- package/scripts/validate-all.js +127 -0
- package/scripts/validate-schema.ts +2 -1
- package/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
- package/spec/v0.2.6/CHANGELOG.md +401 -0
- package/spec/v0.2.6/README.md +72 -0
- package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
- package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
- package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
- package/spec/v0.2.6-dev/README.md +75 -0
- package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
- package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
- package/spec/v0.2.7/core/agentgraph.md +324 -0
- package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
- package/spec/v0.2.8/CHANGELOG.md +401 -0
- package/spec/v0.2.8/README.md +72 -0
- package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
- package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
- package/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
- package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
- package/test-results/junit.xml +299 -0
- package/.kiro/specs/agent-buildkit-templates/design.md +0 -495
- package/.kiro/specs/agent-buildkit-templates/requirements.md +0 -165
- package/.kiro/specs/kiro-ide-supercharger/README.md +0 -202
- package/.kiro/specs/kiro-ide-supercharger/design.md +0 -1005
- package/.kiro/specs/kiro-ide-supercharger/requirements.md +0 -141
- package/.kiro/specs/kiro-ide-supercharger/tasks.md +0 -507
- package/bin/validate-ossa-0.2.5-RC.ts +0 -244
- package/docs/issue-19-completion-summary.md +0 -648
- package/docs/issue-19-validation.md +0 -351
- package/scripts/lib/exec.ts +0 -37
- package/scripts/lib/file-ops.ts +0 -58
- package/scripts/lib/version.ts +0 -83
- package/website/.lighthouserc.ts +0 -24
- package/website/.prettierrc +0 -10
- package/website/Dockerfile +0 -30
- package/website/app/about/page.tsx +0 -295
- package/website/app/blog/[slug]/page.tsx +0 -208
- package/website/app/blog/page.tsx +0 -249
- package/website/app/design-guide/page.tsx +0 -511
- package/website/app/docs/[[...slug]]/page.tsx +0 -847
- package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
- package/website/app/ecosystem/page.tsx +0 -375
- package/website/app/examples/page.tsx +0 -133
- package/website/app/globals.scss +0 -135
- package/website/app/layout.tsx +0 -106
- package/website/app/license/page.tsx +0 -183
- package/website/app/not-found.tsx +0 -18
- package/website/app/page.tsx +0 -474
- package/website/app/playground/page.tsx +0 -487
- package/website/app/robots.ts +0 -19
- package/website/app/rss.xml/route.ts +0 -74
- package/website/app/schema/page.tsx +0 -1001
- package/website/app/sitemap.ts +0 -56
- package/website/app/specification/page.tsx +0 -287
- package/website/components/InstallCommand.tsx +0 -96
- package/website/components/Logo.tsx +0 -97
- package/website/components/StructuredData.tsx +0 -65
- package/website/components/docs/DocsSearch.tsx +0 -104
- package/website/components/docs/DocsSidebar.tsx +0 -155
- package/website/components/docs/MarkdownContent.tsx +0 -401
- package/website/components/docs/VersionSelector.tsx +0 -105
- package/website/components/examples/ExamplesViewer.tsx +0 -293
- package/website/components/layout/Footer.tsx +0 -116
- package/website/components/layout/Header.tsx +0 -168
- package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
- package/website/components/schema/SchemaExplorer.tsx +0 -213
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
- package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
- package/website/content/blog/introducing-ossa-framework.md +0 -328
- package/website/content/blog/ossa-production-results.md +0 -279
- package/website/content/blog/welcome-to-ossa.md +0 -43
- package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
- package/website/content/docs/00-HOME.md +0 -153
- package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +0 -107
- package/website/content/docs/Examples.md +0 -71
- package/website/content/docs/OpenAPI-Extensions.md +0 -934
- package/website/content/docs/adapters/openai-adapter.md +0 -693
- package/website/content/docs/architecture/execution-flow.md +0 -335
- package/website/content/docs/architecture/multi-agent-systems.md +0 -737
- package/website/content/docs/architecture/overview.md +0 -121
- package/website/content/docs/architecture/stack-integration.md +0 -461
- package/website/content/docs/changelog.md +0 -246
- package/website/content/docs/contributing.md +0 -599
- package/website/content/docs/core-concepts/Project-Structure.md +0 -348
- package/website/content/docs/ecosystem/framework-support.md +0 -819
- package/website/content/docs/ecosystem/overview.md +0 -366
- package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +0 -107
- package/website/content/docs/examples/Migration-Guides.md +0 -214
- package/website/content/docs/for-audiences/Architects.md +0 -224
- package/website/content/docs/for-audiences/Developers.md +0 -220
- package/website/content/docs/for-audiences/Enterprises.md +0 -256
- package/website/content/docs/for-audiences/Students-Researchers.md +0 -122
- package/website/content/docs/getting-started/5-Minute-Overview.md +0 -85
- package/website/content/docs/getting-started/First-Agent.md +0 -196
- package/website/content/docs/getting-started/Hello-World.md +0 -184
- package/website/content/docs/getting-started/Installation.md +0 -155
- package/website/content/docs/getting-started/index.md +0 -92
- package/website/content/docs/getting-started/running-agents.md +0 -309
- package/website/content/docs/getting-started.md +0 -91
- package/website/content/docs/integrations/aiflow.md +0 -104
- package/website/content/docs/integrations/drupal.md +0 -105
- package/website/content/docs/migration-guides/00-INDEX.md +0 -76
- package/website/content/docs/migration-guides/README.md +0 -133
- package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
- package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
- package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
- package/website/content/docs/migration-guides/index.md +0 -133
- package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
- package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
- package/website/content/docs/migration-guides/migration-manifest.json +0 -64
- package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
- package/website/content/docs/openapi-extensions/examples.md +0 -550
- package/website/content/docs/openapi-extensions/index.md +0 -551
- package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
- package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
- package/website/content/docs/ossa-compliant-badge.md +0 -251
- package/website/content/docs/pre-release/index.md +0 -175
- package/website/content/docs/quick-reference.md +0 -17
- package/website/content/docs/readme.md +0 -35
- package/website/content/docs/schema-reference/agent-spec.md +0 -406
- package/website/content/docs/schema-reference/autonomy.md +0 -568
- package/website/content/docs/schema-reference/constraints.md +0 -543
- package/website/content/docs/schema-reference/index.md +0 -176
- package/website/content/docs/schema-reference/llm-config.md +0 -445
- package/website/content/docs/schema-reference/observability.md +0 -654
- package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
- package/website/content/docs/schema-reference/taxonomy.md +0 -509
- package/website/content/docs/schema-reference/tools.md +0 -628
- package/website/content/docs/templates/blog-post.md +0 -43
- package/website/content/docs/use-cases/00-index.md +0 -395
- package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
- package/website/content/docs/use-cases/customer-support.md +0 -1234
- package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
- package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
- package/website/content/docs/versioning.md +0 -288
- package/website/lib/version.ts +0 -35
- package/website/lib/versions.json +0 -78
- package/website/next.config.ts +0 -18
- package/website/nginx.conf +0 -32
- package/website/package-lock.json +0 -9679
- package/website/package.json +0 -59
- package/website/postcss.config.mjs +0 -9
- package/website/scripts/fetch-versions.js +0 -166
- package/website/scripts/generate-examples-index.js +0 -163
- package/website/scripts/merge-docs-to-wiki.ts +0 -207
- package/website/scripts/sync-version.js +0 -72
- package/website/scripts/sync-wiki.ts +0 -322
- package/website/scripts/upload-wiki.ts +0 -199
- package/website/styles/_variables.scss +0 -36
- package/website/tailwind.config.ts +0 -136
- /package/dist/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
- /package/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
|
@@ -1,395 +0,0 @@
|
|
|
1
|
-
# OSSA Use Case Gallery
|
|
2
|
-
|
|
3
|
-
Production-ready examples demonstrating real-world OSSA agent implementations across enterprise, DevOps, customer experience, and research domains.
|
|
4
|
-
|
|
5
|
-
## Overview
|
|
6
|
-
|
|
7
|
-
Each use case provides:
|
|
8
|
-
- **Problem statement** - Real-world challenge being solved
|
|
9
|
-
- **Architecture diagrams** - Complete system design (Mermaid)
|
|
10
|
-
- **OSSA manifests** - Production-ready YAML specifications
|
|
11
|
-
- **Implementation code** - TypeScript or Python reference implementations
|
|
12
|
-
- **Deployment instructions** - Kubernetes/Docker deployment guides
|
|
13
|
-
- **Cost management** - Budget controls and optimization strategies
|
|
14
|
-
- **Production checklist** - Security, monitoring, and operational requirements
|
|
15
|
-
|
|
16
|
-
## Use Cases
|
|
17
|
-
|
|
18
|
-
### 1. Enterprise Financial Compliance Agent
|
|
19
|
-
|
|
20
|
-
**Domain**: Financial Services, Healthcare, Government
|
|
21
|
-
**Problem**: Continuous compliance monitoring across SOC2, PCI-DSS, GDPR
|
|
22
|
-
**Technology**: Kubernetes-native, cost-limited, audit-logged
|
|
23
|
-
|
|
24
|
-
[View Full Use Case →](./enterprise-compliance.md)
|
|
25
|
-
|
|
26
|
-
**Highlights**:
|
|
27
|
-
- ✅ Automated compliance scanning with 7-year audit retention
|
|
28
|
-
- ✅ Multi-framework validation (PCI-DSS, SOC2, GDPR)
|
|
29
|
-
- ✅ Cost controls with $50/day budget enforcement
|
|
30
|
-
- ✅ Auto-remediation with approval workflows
|
|
31
|
-
- ✅ Real-time alerting for critical violations
|
|
32
|
-
|
|
33
|
-
**Key Features**:
|
|
34
|
-
```yaml
|
|
35
|
-
Capabilities:
|
|
36
|
-
- Infrastructure scanning (Kubernetes, databases, storage)
|
|
37
|
-
- Policy validation with evidence collection
|
|
38
|
-
- Audit report generation (PDF, HTML, JSON, CSV)
|
|
39
|
-
- Auto-remediation with rollback support
|
|
40
|
-
|
|
41
|
-
Policies:
|
|
42
|
-
- Cost limit: $50/day with 80% alert threshold
|
|
43
|
-
- Audit retention: 2555 days (7 years)
|
|
44
|
-
- Encryption: Required at rest and in transit
|
|
45
|
-
- Auto-remediation: Disabled by default, requires approval
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
**Use When**:
|
|
49
|
-
- Financial institutions requiring continuous compliance
|
|
50
|
-
- Healthcare organizations managing HIPAA/PHI data
|
|
51
|
-
- Government agencies with FedRAMP requirements
|
|
52
|
-
- Any organization with strict audit requirements
|
|
53
|
-
|
|
54
|
-
---
|
|
55
|
-
|
|
56
|
-
### 2. CI/CD Automated Code Review Agent
|
|
57
|
-
|
|
58
|
-
**Domain**: Software Engineering, DevOps
|
|
59
|
-
**Problem**: PR review bottlenecks, inconsistent quality, missed bugs
|
|
60
|
-
**Technology**: GitHub Actions, GitLab CI, AI-powered analysis
|
|
61
|
-
|
|
62
|
-
[View Full Use Case →](./cicd-code-review.md)
|
|
63
|
-
|
|
64
|
-
**Highlights**:
|
|
65
|
-
- ✅ Automated PR reviews in minutes (vs. hours/days)
|
|
66
|
-
- ✅ Multi-language support (TypeScript, Python, Go, Rust, Java)
|
|
67
|
-
- ✅ AI-powered code analysis with GPT-4
|
|
68
|
-
- ✅ Security vulnerability scanning (Snyk, Trivy)
|
|
69
|
-
- ✅ Auto-fix for trivial issues (formatting, imports)
|
|
70
|
-
|
|
71
|
-
**Key Features**:
|
|
72
|
-
```yaml
|
|
73
|
-
Capabilities:
|
|
74
|
-
- Comprehensive PR review (linting + testing + security)
|
|
75
|
-
- Multi-language linters (ESLint, Pylint, golint, rustfmt)
|
|
76
|
-
- Test execution with coverage tracking
|
|
77
|
-
- Security vulnerability scanning
|
|
78
|
-
- Complexity analysis (cyclomatic, cognitive)
|
|
79
|
-
- AI code quality assessment
|
|
80
|
-
|
|
81
|
-
Quality Gates:
|
|
82
|
-
- Min test coverage: 80%
|
|
83
|
-
- Max cyclomatic complexity: 10
|
|
84
|
-
- Block on: Critical security issues, failed tests
|
|
85
|
-
- Auto-approval: Disabled (requires human review)
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
**Use When**:
|
|
89
|
-
- Development teams with high PR volume
|
|
90
|
-
- Organizations enforcing coding standards
|
|
91
|
-
- Teams needing 24/7 code review coverage
|
|
92
|
-
- Projects requiring security scanning in CI/CD
|
|
93
|
-
|
|
94
|
-
---
|
|
95
|
-
|
|
96
|
-
### 3. Customer Support Ticket Triage Agent
|
|
97
|
-
|
|
98
|
-
**Domain**: Customer Success, SaaS, E-commerce
|
|
99
|
-
**Problem**: Slow response times, misrouted tickets, inconsistent prioritization
|
|
100
|
-
**Technology**: Zendesk/Intercom integration, vector search, sentiment analysis
|
|
101
|
-
|
|
102
|
-
[View Full Use Case →](./customer-support.md)
|
|
103
|
-
|
|
104
|
-
**Highlights**:
|
|
105
|
-
- ✅ Instant ticket triage (seconds vs. hours)
|
|
106
|
-
- ✅ Intelligent routing to correct team/agent
|
|
107
|
-
- ✅ Knowledge base search with semantic matching
|
|
108
|
-
- ✅ Sentiment analysis with angry customer detection
|
|
109
|
-
- ✅ Auto-reply for high-confidence cases
|
|
110
|
-
|
|
111
|
-
**Key Features**:
|
|
112
|
-
```yaml
|
|
113
|
-
Capabilities:
|
|
114
|
-
- Ticket classification (8 categories)
|
|
115
|
-
- Priority scoring (critical, high, normal, low)
|
|
116
|
-
- Team routing (billing, engineering, sales, success)
|
|
117
|
-
- Sentiment analysis with emotion detection
|
|
118
|
-
- Knowledge base search (vector embeddings)
|
|
119
|
-
- Response generation (AI-powered)
|
|
120
|
-
- Escalation triggers (VIP, angry, complex)
|
|
121
|
-
|
|
122
|
-
SLA Targets:
|
|
123
|
-
- Critical: 15 minutes
|
|
124
|
-
- High: 2 hours
|
|
125
|
-
- Normal: 24 hours
|
|
126
|
-
- Low: 48 hours
|
|
127
|
-
|
|
128
|
-
Auto-Reply:
|
|
129
|
-
- Enabled: Yes (95% confidence threshold)
|
|
130
|
-
- Excluded: Enterprise tier, angry customers, complaints
|
|
131
|
-
- Human review: 10% sample rate
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
**Use When**:
|
|
135
|
-
- Support teams overwhelmed with ticket volume
|
|
136
|
-
- Organizations with tiered customer bases (free/pro/enterprise)
|
|
137
|
-
- Companies needing 24/7 support coverage
|
|
138
|
-
- Teams with extensive knowledge bases to leverage
|
|
139
|
-
|
|
140
|
-
---
|
|
141
|
-
|
|
142
|
-
### 4. Research Multi-Agent Debate System
|
|
143
|
-
|
|
144
|
-
**Domain**: Academic Research, R&D, Scientific Publishing
|
|
145
|
-
**Problem**: Single-reviewer bias, shallow analysis, scalability limits
|
|
146
|
-
**Technology**: Multi-agent orchestration, adversarial collaboration, Claude/GPT-4
|
|
147
|
-
|
|
148
|
-
[View Full Use Case →](./research-multi-agent.md)
|
|
149
|
-
|
|
150
|
-
**Highlights**:
|
|
151
|
-
- ✅ Multi-perspective analysis (5 specialist agents)
|
|
152
|
-
- ✅ Structured debate across 4 rounds
|
|
153
|
-
- ✅ Evidence-based argumentation
|
|
154
|
-
- ✅ Literature search integration (arXiv, PubMed)
|
|
155
|
-
- ✅ Reproducibility validation (code/data checks)
|
|
156
|
-
|
|
157
|
-
**Key Features**:
|
|
158
|
-
```yaml
|
|
159
|
-
Specialist Agents:
|
|
160
|
-
- Methodology Critic: Evaluates experimental rigor
|
|
161
|
-
- Novelty Assessor: Compares against existing literature
|
|
162
|
-
- Reproducibility Checker: Validates code/data availability
|
|
163
|
-
- Impact Evaluator: Assesses potential impact
|
|
164
|
-
- Ethics Reviewer: Checks ethical considerations
|
|
165
|
-
|
|
166
|
-
Debate Process:
|
|
167
|
-
- Round 1: Initial positions (independent reviews)
|
|
168
|
-
- Round 2: Rebuttals (challenge other perspectives)
|
|
169
|
-
- Round 3: Evidence gathering (support arguments)
|
|
170
|
-
- Round 4: Consensus building (final positions)
|
|
171
|
-
|
|
172
|
-
Outputs:
|
|
173
|
-
- Multi-dimensional scores (methodology, novelty, reproducibility, impact, ethics)
|
|
174
|
-
- Recommendation (strong accept → strong reject)
|
|
175
|
-
- Confidence score (based on agent agreement)
|
|
176
|
-
- Debate transcript (full argumentation history)
|
|
177
|
-
- Executive summary (strengths, weaknesses, key findings)
|
|
178
|
-
```
|
|
179
|
-
|
|
180
|
-
**Use When**:
|
|
181
|
-
- Academic conferences needing scalable peer review
|
|
182
|
-
- Research teams reviewing large bodies of literature
|
|
183
|
-
- Organizations conducting systematic literature reviews
|
|
184
|
-
- Journals requiring multi-perspective analysis
|
|
185
|
-
|
|
186
|
-
---
|
|
187
|
-
|
|
188
|
-
## Architecture Patterns
|
|
189
|
-
|
|
190
|
-
### Common Patterns Across Use Cases
|
|
191
|
-
|
|
192
|
-
1. **Cost Management**
|
|
193
|
-
- All agents include daily/monthly budget limits
|
|
194
|
-
- Alert thresholds (typically 80-85%)
|
|
195
|
-
- Automatic throttling when approaching limits
|
|
196
|
-
- Per-operation cost tracking
|
|
197
|
-
|
|
198
|
-
2. **Security Controls**
|
|
199
|
-
- Secrets managed via environment variables or Vault
|
|
200
|
-
- Mutual TLS for inter-agent communication
|
|
201
|
-
- RBAC for capability access
|
|
202
|
-
- Audit logging with encryption at rest
|
|
203
|
-
|
|
204
|
-
3. **Monitoring & Observability**
|
|
205
|
-
- Prometheus metrics export
|
|
206
|
-
- Jaeger distributed tracing
|
|
207
|
-
- Structured JSON logging
|
|
208
|
-
- Health/readiness checks
|
|
209
|
-
- Custom business metrics
|
|
210
|
-
|
|
211
|
-
4. **Integration Patterns**
|
|
212
|
-
- Webhook-based triggers (GitHub, GitLab, Zendesk)
|
|
213
|
-
- REST/gRPC APIs for synchronous operations
|
|
214
|
-
- Agent-to-agent communication (multi-agent systems)
|
|
215
|
-
- External service integration (AI APIs, databases, search)
|
|
216
|
-
|
|
217
|
-
## Technology Stack
|
|
218
|
-
|
|
219
|
-
### AI/LLM Providers
|
|
220
|
-
- **OpenAI**: GPT-4 Turbo, text-embedding-ada-002
|
|
221
|
-
- **Anthropic**: Claude 3.5 Sonnet
|
|
222
|
-
- **Vector Databases**: Pinecone, Weaviate
|
|
223
|
-
|
|
224
|
-
### Deployment Platforms
|
|
225
|
-
- **Kubernetes**: Production orchestration
|
|
226
|
-
- **Docker**: Containerization
|
|
227
|
-
- **CI/CD**: GitHub Actions, GitLab CI
|
|
228
|
-
|
|
229
|
-
### Integrations
|
|
230
|
-
- **Version Control**: GitHub, GitLab
|
|
231
|
-
- **Support**: Zendesk, Intercom
|
|
232
|
-
- **Communication**: Slack, Email, SMS
|
|
233
|
-
- **Security**: Snyk, Trivy, OWASP Dependency-Check
|
|
234
|
-
- **Research**: arXiv, PubMed
|
|
235
|
-
|
|
236
|
-
## Cost Comparison
|
|
237
|
-
|
|
238
|
-
| Use Case | Estimated Monthly Cost | Per-Operation Cost | Optimization Strategy |
|
|
239
|
-
|----------|----------------------|-------------------|----------------------|
|
|
240
|
-
| **Compliance** | $500-1,500 | $0.10-0.50/scan | Scheduled scans, skip unchanged resources |
|
|
241
|
-
| **Code Review** | $200-800 | $0.05-0.20/PR | Cache linter results, parallel analysis |
|
|
242
|
-
| **Support Triage** | $300-1,000 | $0.02-0.10/ticket | Vector DB caching, batch processing |
|
|
243
|
-
| **Research Review** | $500-2,000 | $5-10/paper | Reuse literature searches, agent pooling |
|
|
244
|
-
|
|
245
|
-
## Getting Started
|
|
246
|
-
|
|
247
|
-
### Prerequisites
|
|
248
|
-
|
|
249
|
-
```bash
|
|
250
|
-
# Install OSSA CLI
|
|
251
|
-
npm install -g @bluefly/openstandardagents
|
|
252
|
-
|
|
253
|
-
# Verify installation
|
|
254
|
-
ossa --version
|
|
255
|
-
```
|
|
256
|
-
|
|
257
|
-
### Quick Start
|
|
258
|
-
|
|
259
|
-
```bash
|
|
260
|
-
# 1. Choose a use case
|
|
261
|
-
cd website/content/docs/use-cases/
|
|
262
|
-
|
|
263
|
-
# 2. Review the manifest
|
|
264
|
-
cat enterprise-compliance.md # or other use case
|
|
265
|
-
|
|
266
|
-
# 3. Extract manifest to file
|
|
267
|
-
# (Manifests are embedded in markdown)
|
|
268
|
-
|
|
269
|
-
# 4. Validate manifest
|
|
270
|
-
ossa validate my-agent.ossa.yaml
|
|
271
|
-
|
|
272
|
-
# 5. Deploy to Kubernetes
|
|
273
|
-
kubectl apply -f deployment.yaml
|
|
274
|
-
|
|
275
|
-
# 6. Verify deployment
|
|
276
|
-
kubectl get pods -n <namespace>
|
|
277
|
-
kubectl logs -n <namespace> <pod-name>
|
|
278
|
-
```
|
|
279
|
-
|
|
280
|
-
### Customization Guide
|
|
281
|
-
|
|
282
|
-
Each use case is designed to be customized:
|
|
283
|
-
|
|
284
|
-
1. **Adjust cost limits** in `policies.cost_management`
|
|
285
|
-
2. **Modify quality gates** in `policies.quality_gates`
|
|
286
|
-
3. **Configure integrations** in `integration` section
|
|
287
|
-
4. **Add custom capabilities** in `capabilities`
|
|
288
|
-
5. **Update resource limits** in `runtime.resources`
|
|
289
|
-
|
|
290
|
-
## Production Deployment
|
|
291
|
-
|
|
292
|
-
### Security Checklist
|
|
293
|
-
|
|
294
|
-
- [ ] Secrets stored in Vault or Kubernetes secrets (never in config)
|
|
295
|
-
- [ ] Mutual TLS configured for all network communication
|
|
296
|
-
- [ ] RBAC policies restricted to minimum required permissions
|
|
297
|
-
- [ ] Network policies enforcing least-privilege access
|
|
298
|
-
- [ ] Audit logging enabled with encryption at rest
|
|
299
|
-
- [ ] Pod security standards enforced (restricted profile)
|
|
300
|
-
- [ ] Image scanning integrated into CI/CD
|
|
301
|
-
- [ ] Regular security audits scheduled
|
|
302
|
-
|
|
303
|
-
### Operational Checklist
|
|
304
|
-
|
|
305
|
-
- [ ] Monitoring dashboards configured (Grafana)
|
|
306
|
-
- [ ] Alerting rules defined (Prometheus Alertmanager)
|
|
307
|
-
- [ ] Cost tracking enabled and reviewed weekly
|
|
308
|
-
- [ ] Backup/disaster recovery plan tested
|
|
309
|
-
- [ ] Runbooks created for common issues
|
|
310
|
-
- [ ] On-call rotation established
|
|
311
|
-
- [ ] SLA targets defined and monitored
|
|
312
|
-
- [ ] Performance baselines established
|
|
313
|
-
|
|
314
|
-
### Compliance Checklist
|
|
315
|
-
|
|
316
|
-
- [ ] Data retention policies configured
|
|
317
|
-
- [ ] PII handling documented and compliant
|
|
318
|
-
- [ ] Audit trails comprehensive and immutable
|
|
319
|
-
- [ ] Access controls reviewed quarterly
|
|
320
|
-
- [ ] Third-party vendor assessments completed
|
|
321
|
-
- [ ] Incident response plan documented
|
|
322
|
-
- [ ] Compliance reports generated automatically
|
|
323
|
-
- [ ] Regular compliance audits scheduled
|
|
324
|
-
|
|
325
|
-
## Troubleshooting
|
|
326
|
-
|
|
327
|
-
### Common Issues
|
|
328
|
-
|
|
329
|
-
**High Cost Overruns**
|
|
330
|
-
```bash
|
|
331
|
-
# Check cost metrics
|
|
332
|
-
kubectl exec -it <pod> -- curl localhost:9090/metrics | grep cost
|
|
333
|
-
|
|
334
|
-
# Review cost policies
|
|
335
|
-
ossa validate --check-costs manifest.yaml
|
|
336
|
-
|
|
337
|
-
# Adjust budget limits
|
|
338
|
-
# Edit manifest: policies.cost_management.budget.daily_limit_usd
|
|
339
|
-
```
|
|
340
|
-
|
|
341
|
-
**Agent Communication Failures**
|
|
342
|
-
```bash
|
|
343
|
-
# Check agent registry
|
|
344
|
-
kubectl get services -n <namespace>
|
|
345
|
-
|
|
346
|
-
# Verify DNS resolution
|
|
347
|
-
kubectl exec -it <pod> -- nslookup <service-name>
|
|
348
|
-
|
|
349
|
-
# Check logs
|
|
350
|
-
kubectl logs -n <namespace> <pod-name> --tail=100
|
|
351
|
-
```
|
|
352
|
-
|
|
353
|
-
**Performance Degradation**
|
|
354
|
-
```bash
|
|
355
|
-
# Check resource usage
|
|
356
|
-
kubectl top pods -n <namespace>
|
|
357
|
-
|
|
358
|
-
# Review metrics
|
|
359
|
-
curl localhost:9090/metrics | grep duration_seconds
|
|
360
|
-
|
|
361
|
-
# Scale replicas
|
|
362
|
-
kubectl scale deployment <name> --replicas=5
|
|
363
|
-
```
|
|
364
|
-
|
|
365
|
-
## Contributing
|
|
366
|
-
|
|
367
|
-
We welcome contributions! To add a new use case:
|
|
368
|
-
|
|
369
|
-
1. Follow the template structure (see existing use cases)
|
|
370
|
-
2. Include complete OSSA manifest
|
|
371
|
-
3. Provide working implementation (TypeScript or Python)
|
|
372
|
-
4. Add architecture diagram (Mermaid)
|
|
373
|
-
5. Include deployment instructions
|
|
374
|
-
6. Document cost estimates
|
|
375
|
-
7. Add production checklist
|
|
376
|
-
|
|
377
|
-
Submit PRs to: https://github.com/blueflyio/openstandardagents/pulls
|
|
378
|
-
|
|
379
|
-
## Support & Resources
|
|
380
|
-
|
|
381
|
-
- **Documentation**: https://openstandardagents.org/docs
|
|
382
|
-
- **Specification**: https://github.com/blueflyio/openstandardagents/spec
|
|
383
|
-
- **Examples**: https://github.com/blueflyio/openstandardagents/examples
|
|
384
|
-
- **Community**: https://github.com/blueflyio/openstandardagents/discussions
|
|
385
|
-
- **Issues**: https://github.com/blueflyio/openstandardagents/issues
|
|
386
|
-
|
|
387
|
-
## License
|
|
388
|
-
|
|
389
|
-
All use cases are provided under Apache 2.0 license. Implementation code may be used freely in commercial and open-source projects.
|
|
390
|
-
|
|
391
|
-
---
|
|
392
|
-
|
|
393
|
-
**Last Updated**: November 2024
|
|
394
|
-
**OSSA Version**: v0.2.x
|
|
395
|
-
**Status**: Production Ready
|