@bluefly/openstandardagents 0.4.9 → 0.5.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/.version.json +3 -3
- package/CHANGELOG.md +35 -4
- package/README.md +77 -62
- package/dist/.version.json +3 -3
- package/dist/adapters/a2a/a2a-protocol.js +4 -2
- package/dist/adapters/a2a/a2a-tool.js +4 -2
- package/dist/adapters/a2a/mcp-integration.d.ts +2 -1
- package/dist/adapters/a2a/mcp-integration.js +6 -3
- package/dist/adapters/browser/browser-exporter.d.ts +26 -0
- package/dist/adapters/browser/browser-exporter.js +73 -0
- package/dist/adapters/browser/browser-runner.d.ts +23 -0
- package/dist/adapters/browser/browser-runner.js +46 -0
- package/dist/adapters/browser/index.d.ts +9 -0
- package/dist/adapters/browser/index.js +9 -0
- package/dist/adapters/claude-code/adapter.js +2 -2
- package/dist/adapters/docker/generators.js +19 -19
- package/dist/adapters/docker/index.d.ts +2 -0
- package/dist/adapters/docker/index.js +2 -0
- package/dist/adapters/docker/openclaw-bridge.d.ts +57 -0
- package/dist/adapters/docker/openclaw-bridge.js +173 -0
- package/dist/adapters/drupal/generator.js +76 -76
- package/dist/adapters/drupal/index.d.ts +1 -0
- package/dist/adapters/drupal/index.js +2 -0
- package/dist/adapters/drupal/twig-renderer.d.ts +23 -0
- package/dist/adapters/drupal/twig-renderer.js +99 -0
- package/dist/adapters/gitlab/agent-generator.js +2 -1
- package/dist/adapters/openai-agents/adapter.js +2 -2
- package/dist/api/index.js +2 -1
- package/dist/api/routes/mcp.router.js +3 -1
- package/dist/api/routes/wizard.router.js +3 -1
- package/dist/cli/commands/agent/discover-type.command.js +1 -1
- package/dist/cli/commands/agent-card.command.js +37 -10
- package/dist/cli/commands/agents-sync.command.d.ts +2 -2
- package/dist/cli/commands/agents-sync.command.js +27 -17
- package/dist/cli/commands/catalog/config.js +1 -1
- package/dist/cli/commands/catalog/validate.command.js +2 -2
- package/dist/cli/commands/config.command.js +2 -2
- package/dist/cli/commands/daemon.command.js +32 -8
- package/dist/cli/commands/discover.d.ts +1 -1
- package/dist/cli/commands/discover.js +16 -8
- package/dist/cli/commands/economics.command.d.ts +9 -0
- package/dist/cli/commands/economics.command.js +113 -0
- package/dist/cli/commands/export.command.js +6 -3
- package/dist/cli/commands/mcp.command.js +3 -1
- package/dist/cli/commands/memory.command.d.ts +18 -0
- package/dist/cli/commands/memory.command.js +168 -0
- package/dist/cli/commands/publish.command.js +7 -4
- package/dist/cli/commands/serve-builder-routes.js +1 -1
- package/dist/cli/commands/usie-skills.command.d.ts +24 -0
- package/dist/cli/commands/usie-skills.command.js +297 -0
- package/dist/cli/commands/validate.command.js +8 -1
- package/dist/cli/commands/verify.d.ts +3 -3
- package/dist/cli/commands/verify.js +12 -6
- package/dist/cli/commands/workspace.command.d.ts +1 -0
- package/dist/cli/commands/workspace.command.js +28 -4
- package/dist/cli/index.js +12 -0
- package/dist/cli/schema-driven/schema-loader.js +5 -5
- package/dist/cli/workspace-validate.d.ts +23 -0
- package/dist/cli/workspace-validate.js +117 -0
- package/dist/data/platform-matrix.js +1 -4
- package/dist/generated/types.d.ts +97 -97
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/mcp-server/index.js +658 -982
- package/dist/mesh/discovery-gkg.d.ts +26 -0
- package/dist/mesh/discovery-gkg.js +92 -0
- package/dist/messenger/Handler/AgentBatchHandler.js +3 -2
- package/dist/messenger/Handler/AgentExecutionHandler.js +6 -1
- package/dist/package.json +43 -14
- package/dist/sdks/shared/types.d.ts +1 -1
- package/dist/services/agent-card-generator.js +6 -2
- package/dist/services/daemon/audit-log.service.js +3 -1
- package/dist/services/daemon/execution.service.js +8 -4
- package/dist/services/daemon/fs-watcher.service.js +6 -7
- package/dist/services/daemon/pairing.service.js +2 -1
- package/dist/services/daemon/skill-aggregator.service.js +105 -21
- package/dist/services/daemon/sse-endpoints.js +1 -1
- package/dist/services/daemon/ws-server.js +10 -3
- package/dist/services/export/langchain/langchain-exporter.js +2 -2
- package/dist/services/export/langchain/memory-generator.js +2 -2
- package/dist/services/export/testing/test-generator.js +1 -1
- package/dist/services/governance/cedar-provider.js +12 -8
- package/dist/services/governance/cedar-validator.service.js +1 -1
- package/dist/services/mcp/bridge.service.js +40 -9
- package/dist/services/openapi-extensions-validation.d.ts +20 -0
- package/dist/services/openapi-extensions-validation.js +193 -0
- package/dist/services/release-automation/merge-request.service.d.ts +4 -4
- package/dist/services/release-automation/release-buttons.js +3 -3
- package/dist/services/release-automation/schemas/release.schema.d.ts +3 -3
- package/dist/services/runtime/openai.adapter.d.ts +46 -13
- package/dist/services/runtime/openai.adapter.js +169 -131
- package/dist/services/skill-registry.service.d.ts +1 -1
- package/dist/services/skills-pipeline/skills-research.service.js +47 -7
- package/dist/services/taxonomy-service.d.ts +3 -3
- package/dist/services/trust/trust.service.js +6 -4
- package/dist/services/validation-zod.service.js +3 -22
- package/dist/services/validators/index.d.ts +1 -0
- package/dist/services/validators/index.js +1 -0
- package/dist/services/validators/registry.d.ts +21 -0
- package/dist/services/validators/registry.js +42 -0
- package/dist/skills/test-skill/package.json +1 -1
- package/dist/spec/extensions/cognition.schema.json +87 -0
- package/dist/spec/extensions/role-manifest.md +188 -0
- package/dist/spec/layer4-economics/duadp-examples.json +44 -0
- package/dist/spec/v0.4/agent.schema.json +14 -0
- package/dist/spec/v0.4/extensions/mcp/README.md +1 -1
- package/dist/spec/v0.5/agent-builder-openapi.yaml +230 -0
- package/dist/spec/v0.5/agent.schema.json +34 -2
- package/dist/spec/v0.5/extensions/cognition/cognition.schema.json +78 -1
- package/dist/spec/v0.5/extensions/economics/context-pack.schema.json +91 -0
- package/dist/spec/v0.5/extensions/economics/execution-profile.schema.json +148 -0
- package/dist/spec/v0.5/extensions/economics/failure-semantics.schema.json +32 -0
- package/dist/spec/v0.5/extensions/economics/replay-packet.schema.json +120 -0
- package/dist/spec/v0.5/memory-hierarchy.yaml +120 -0
- package/dist/spec/v0.5/role.schema.json +268 -0
- package/dist/spec/v1/agent-card.schema.json +254 -0
- package/dist/types/cognition.zod.d.ts +312 -0
- package/dist/types/cognition.zod.js +223 -0
- package/dist/types/identity.zod.d.ts +5 -5
- package/dist/types/index.d.ts +54 -6
- package/dist/types/index.js +6 -2
- package/dist/types/personality.zod.d.ts +3 -3
- package/dist/types/role.d.ts +126 -0
- package/dist/types/role.js +38 -0
- package/dist/utils/http-client.d.ts +22 -0
- package/dist/utils/http-client.js +51 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +3 -0
- package/dist/utils/proxy-resolver.d.ts +36 -0
- package/dist/utils/proxy-resolver.js +59 -0
- package/dist/utils/user-agent.d.ts +11 -0
- package/dist/utils/user-agent.js +17 -0
- package/dist/validation/validator.js +1 -1
- package/dist/validation/version-compliance.js +1 -1
- package/examples/agents/01-customer-support-bot/agent.ossa.yaml +24 -31
- package/examples/agents/05-sales-assistant/agent.ossa.yaml +35 -23
- package/examples/agents/07-research-assistant/agent.ossa.yaml +27 -21
- package/examples/agents/10-meeting-assistant/agent.ossa.yaml +27 -35
- package/examples/agents/security-audit-agent.ossa.yaml +234 -0
- package/examples/agentscope/react-assistant/README.md +1 -1
- package/examples/agentscope/react-assistant/agent.ossa.yaml +37 -33
- package/examples/drupal/content-moderator.ossa.yaml +2 -2
- package/examples/drupal/drupal-contributor-agent/.eslintrc.json +58 -0
- package/examples/drupal/drupal-contributor-agent/.prettierrc.json +10 -0
- package/examples/drupal/drupal-contributor-agent/package.json +55 -0
- package/examples/drupal/drupal-contributor-agent/src/core/index.ts +10 -0
- package/examples/drupal/drupal-contributor-agent/src/index.ts +17 -0
- package/examples/drupal/drupal-contributor-agent/src/types/index.ts +180 -0
- package/examples/drupal/drupal-contributor-agent/tsconfig.json +36 -0
- package/examples/drupal/drupal-contributor.ossa.yaml +247 -0
- package/examples/export/langchain/production-agent-with-memory/README.md +1 -1
- package/examples/export/langchain/production-agent-with-memory/agent.ossa.yaml +13 -23
- package/examples/export/langchain/production-agent-with-streaming/agent.ossa.yaml +1 -15
- package/examples/export/langchain/production-agent-with-tools/agent.ossa.yaml +28 -29
- 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/README.md +3 -3
- package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
- package/examples/gitlab-agents/gitlab-ci-agent.ossa.yaml +221 -0
- package/examples/hierarchical-agent.ossa.yaml +10 -53
- package/examples/kagent/ossa-kagent-anthropic.ossa.yaml +2 -25
- package/examples/kagent/ossa-kagent-mcp-tools.ossa.yaml +2 -30
- package/examples/kagent/ossa-kagent-multi-tool.ossa.yaml +2 -18
- package/examples/kagent/ossa-kagent-poc.ossa.yaml +2 -16
- package/examples/pipeline-agent.ossa.yaml +3 -3
- package/examples/platform-specific/claude-code-subagent.yaml +1 -1
- package/examples/platform-specific/cursor-coding-agent.yaml +1 -1
- package/examples/platform-specific/warp-terminal-agent.yaml +1 -1
- package/examples/production-ready/01-customer-support-bot/agent.ossa.yaml +24 -31
- package/examples/production-ready/05-sales-assistant/agent.ossa.yaml +35 -23
- package/examples/production-ready/07-research-assistant/agent.ossa.yaml +27 -19
- package/examples/production-ready/10-meeting-assistant/agent.ossa.yaml +27 -35
- package/examples/roles/drupal-developer.role.yaml +37 -0
- package/examples/roles/platform-operator.role.yaml +28 -0
- package/examples/roles/security-auditor.role.yaml +27 -0
- package/examples/swarm-agent.ossa.yaml +13 -51
- package/examples/team-agent.ossa.yaml +12 -61
- package/examples/team-lead-teammate.ossa.yaml +12 -17
- package/openapi/agent-cognition-sessions.yaml +580 -0
- package/openapi/agent-communication.yaml +260 -212
- package/openapi/agent-crud.yaml +237 -207
- package/openapi/agent-discovery.yaml +119 -81
- package/openapi/agent-identity.yaml +219 -187
- package/openapi/agent-taxonomy.yaml +95 -38
- package/openapi/agents-md-service.yaml +103 -30
- package/openapi/cli/openapi.yaml +147 -40
- package/openapi/core/ossa-core-api.openapi.yaml +327 -271
- package/openapi/core/ossa-registry-api.openapi.yaml +299 -236
- package/openapi/core/ossa-registry.openapi.yaml +299 -159
- package/openapi/core/unified-agent-gateway.openapi.yaml +234 -170
- package/openapi/daemon-api.openapi.yaml +323 -181
- package/openapi/dev-cli/openapi.yaml +137 -113
- package/openapi/github-sync.yaml +62 -19
- package/openapi/marketplace-plugin.openapi.yaml +539 -466
- package/openapi/ossa-api.openapi.yaml +354 -213
- package/openapi/ossa-cli-enhancements.openapi.yaml +109 -90
- package/openapi/ossa-cli.yaml +260 -184
- package/openapi/protocols/sse-streams.yaml +66 -74
- package/openapi/protocols/websocket-events.yaml +61 -54
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +37 -20
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +35 -23
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +29 -18
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +45 -19
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +30 -24
- package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +101 -50
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +33 -22
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +20 -16
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +41 -23
- package/openapi/reference-implementations/helm-generator.openapi.yaml +88 -46
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +30 -20
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +22 -16
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +32 -18
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +32 -21
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +34 -21
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +49 -27
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +27 -19
- package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +427 -293
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +34 -23
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +35 -21
- package/openapi/release-automation.openapi.yaml +48 -14
- package/openapi/schemas/common/agent.yaml +30 -29
- package/openapi/schemas/common/economics.yaml +98 -0
- package/openapi/schemas/common/errors.yaml +13 -3
- package/openapi/schemas/common/metadata.yaml +22 -7
- package/openapi/schemas/common/pagination.yaml +18 -6
- package/openapi/schemas/common/security.yaml +13 -5
- package/openapi/schemas/index.yaml +49 -42
- package/openapi/uadp-asyncapi.yaml +5 -3
- package/openapi/uadp-openapi.yaml +243 -165
- package/openapi/version-management.openapi.yaml +142 -135
- package/package.json +43 -14
- package/spec/extensions/cognition.schema.json +87 -0
- package/spec/extensions/role-manifest.md +188 -0
- package/spec/layer4-economics/duadp-examples.json +44 -0
- package/spec/v0.4/agent.schema.json +14 -0
- package/spec/v0.4/extensions/mcp/README.md +1 -1
- package/spec/v0.5/agent-builder-openapi.yaml +230 -0
- package/spec/v0.5/agent.schema.json +34 -2
- package/spec/v0.5/extensions/cognition/cognition.schema.json +78 -1
- package/spec/v0.5/extensions/economics/context-pack.schema.json +91 -0
- package/spec/v0.5/extensions/economics/execution-profile.schema.json +148 -0
- package/spec/v0.5/extensions/economics/failure-semantics.schema.json +32 -0
- package/spec/v0.5/extensions/economics/replay-packet.schema.json +120 -0
- package/spec/v0.5/memory-hierarchy.yaml +120 -0
- package/spec/v0.5/role.schema.json +268 -0
- package/spec/v1/agent-card.schema.json +254 -0
- package/dist/adapters/a2a/__tests__/mcp-integration.spec.d.ts +0 -5
- package/dist/adapters/a2a/__tests__/mcp-integration.spec.js +0 -268
- package/dist/adapters/a2a/__tests__/mcp-transport.spec.d.ts +0 -5
- package/dist/adapters/a2a/__tests__/mcp-transport.spec.js +0 -203
- package/dist/mcp-server/__tests__/mcp-server.spec.d.ts +0 -8
- package/dist/mcp-server/__tests__/mcp-server.spec.js +0 -557
- package/dist/validation/__tests__/error-codes.test.d.ts +0 -5
- package/dist/validation/__tests__/error-codes.test.js +0 -252
- package/dist/version-management/core/version-manager.test.d.ts +0 -2
- package/dist/version-management/core/version-manager.test.js +0 -210
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
apiVersion: ossa/v0.
|
|
1
|
+
apiVersion: ossa/v0.5
|
|
2
2
|
kind: Agent
|
|
3
3
|
metadata:
|
|
4
4
|
name: sales-assistant
|
|
@@ -19,20 +19,17 @@ spec:
|
|
|
19
19
|
- Automated follow-up communication
|
|
20
20
|
- Meeting scheduling and coordination
|
|
21
21
|
- Sales pipeline management
|
|
22
|
-
|
|
23
22
|
llm:
|
|
24
23
|
provider: openai
|
|
25
24
|
model: gpt-4o
|
|
26
25
|
temperature: 0.7
|
|
27
26
|
maxTokens: 1500
|
|
28
|
-
|
|
29
27
|
capabilities:
|
|
30
28
|
- search_crm
|
|
31
29
|
- create_lead
|
|
32
30
|
- send_followup
|
|
33
31
|
- schedule_meeting
|
|
34
32
|
- update_pipeline
|
|
35
|
-
|
|
36
33
|
tools:
|
|
37
34
|
- type: function
|
|
38
35
|
name: search_crm
|
|
@@ -51,7 +48,6 @@ spec:
|
|
|
51
48
|
type: string
|
|
52
49
|
revenue_range:
|
|
53
50
|
type: string
|
|
54
|
-
|
|
55
51
|
- type: function
|
|
56
52
|
name: create_lead
|
|
57
53
|
description: Create new lead in CRM
|
|
@@ -73,7 +69,6 @@ spec:
|
|
|
73
69
|
required:
|
|
74
70
|
- name
|
|
75
71
|
- email
|
|
76
|
-
|
|
77
72
|
- type: function
|
|
78
73
|
name: send_followup
|
|
79
74
|
description: Send automated follow-up email
|
|
@@ -84,13 +79,16 @@ spec:
|
|
|
84
79
|
type: string
|
|
85
80
|
template:
|
|
86
81
|
type: string
|
|
87
|
-
enum:
|
|
82
|
+
enum:
|
|
83
|
+
- intro
|
|
84
|
+
- demo_followup
|
|
85
|
+
- pricing
|
|
86
|
+
- closing
|
|
88
87
|
personalization:
|
|
89
88
|
type: object
|
|
90
89
|
required:
|
|
91
90
|
- leadId
|
|
92
91
|
- template
|
|
93
|
-
|
|
94
92
|
- type: function
|
|
95
93
|
name: schedule_meeting
|
|
96
94
|
description: Schedule meeting with lead
|
|
@@ -101,7 +99,11 @@ spec:
|
|
|
101
99
|
type: string
|
|
102
100
|
meetingType:
|
|
103
101
|
type: string
|
|
104
|
-
enum:
|
|
102
|
+
enum:
|
|
103
|
+
- discovery
|
|
104
|
+
- demo
|
|
105
|
+
- negotiation
|
|
106
|
+
- closing
|
|
105
107
|
duration:
|
|
106
108
|
type: integer
|
|
107
109
|
suggestedTimes:
|
|
@@ -112,16 +114,23 @@ spec:
|
|
|
112
114
|
required:
|
|
113
115
|
- leadId
|
|
114
116
|
- meetingType
|
|
115
|
-
|
|
116
117
|
memory:
|
|
117
118
|
enabled: true
|
|
118
119
|
type: entity_memory
|
|
119
120
|
entities:
|
|
120
121
|
- type: lead
|
|
121
|
-
fields:
|
|
122
|
+
fields:
|
|
123
|
+
- name
|
|
124
|
+
- company
|
|
125
|
+
- status
|
|
126
|
+
- last_contact
|
|
127
|
+
- notes
|
|
122
128
|
- type: interaction
|
|
123
|
-
fields:
|
|
124
|
-
|
|
129
|
+
fields:
|
|
130
|
+
- date
|
|
131
|
+
- type
|
|
132
|
+
- summary
|
|
133
|
+
- outcome
|
|
125
134
|
observability:
|
|
126
135
|
logging:
|
|
127
136
|
level: info
|
|
@@ -132,15 +141,18 @@ spec:
|
|
|
132
141
|
- emails_sent
|
|
133
142
|
- meetings_scheduled
|
|
134
143
|
- conversion_rate
|
|
135
|
-
|
|
136
144
|
extensions:
|
|
137
145
|
langchain:
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
-
|
|
144
|
-
|
|
145
|
-
-
|
|
146
|
-
|
|
146
|
+
enabled: true
|
|
147
|
+
chain_type: agent
|
|
148
|
+
memory:
|
|
149
|
+
type: vector
|
|
150
|
+
tools:
|
|
151
|
+
- name: search_crm
|
|
152
|
+
description: Search CRM for contacts and accounts
|
|
153
|
+
- name: create_lead
|
|
154
|
+
description: Create new lead in CRM
|
|
155
|
+
- name: send_followup
|
|
156
|
+
description: Send automated follow-up email
|
|
157
|
+
- name: schedule_meeting
|
|
158
|
+
description: Schedule meeting with lead
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
apiVersion: ossa/v0.
|
|
1
|
+
apiVersion: ossa/v0.5
|
|
2
2
|
kind: Agent
|
|
3
3
|
metadata:
|
|
4
4
|
name: research-assistant
|
|
@@ -19,19 +19,16 @@ spec:
|
|
|
19
19
|
- Citation management
|
|
20
20
|
- Research question formulation
|
|
21
21
|
- Methodology analysis
|
|
22
|
-
|
|
23
22
|
llm:
|
|
24
23
|
provider: anthropic
|
|
25
24
|
model: claude-sonnet-4-20250514
|
|
26
25
|
temperature: 0.5
|
|
27
26
|
maxTokens: 4000
|
|
28
|
-
|
|
29
27
|
capabilities:
|
|
30
28
|
- search_papers
|
|
31
29
|
- summarize_paper
|
|
32
30
|
- generate_citations
|
|
33
31
|
- compare_studies
|
|
34
|
-
|
|
35
32
|
tools:
|
|
36
33
|
- type: function
|
|
37
34
|
name: search_papers
|
|
@@ -45,7 +42,11 @@ spec:
|
|
|
45
42
|
type: array
|
|
46
43
|
items:
|
|
47
44
|
type: string
|
|
48
|
-
enum:
|
|
45
|
+
enum:
|
|
46
|
+
- pubmed
|
|
47
|
+
- arxiv
|
|
48
|
+
- semantic_scholar
|
|
49
|
+
- google_scholar
|
|
49
50
|
filters:
|
|
50
51
|
type: object
|
|
51
52
|
properties:
|
|
@@ -57,7 +58,6 @@ spec:
|
|
|
57
58
|
type: number
|
|
58
59
|
required:
|
|
59
60
|
- query
|
|
60
|
-
|
|
61
61
|
- type: function
|
|
62
62
|
name: summarize_paper
|
|
63
63
|
description: Generate structured summary of research paper
|
|
@@ -68,10 +68,13 @@ spec:
|
|
|
68
68
|
type: string
|
|
69
69
|
summaryType:
|
|
70
70
|
type: string
|
|
71
|
-
enum:
|
|
71
|
+
enum:
|
|
72
|
+
- abstract
|
|
73
|
+
- full
|
|
74
|
+
- methodology
|
|
75
|
+
- findings
|
|
72
76
|
required:
|
|
73
77
|
- paperId
|
|
74
|
-
|
|
75
78
|
- type: function
|
|
76
79
|
name: generate_citations
|
|
77
80
|
description: Generate citations in various formats
|
|
@@ -84,11 +87,14 @@ spec:
|
|
|
84
87
|
type: string
|
|
85
88
|
format:
|
|
86
89
|
type: string
|
|
87
|
-
enum:
|
|
90
|
+
enum:
|
|
91
|
+
- apa
|
|
92
|
+
- mla
|
|
93
|
+
- chicago
|
|
94
|
+
- bibtex
|
|
88
95
|
required:
|
|
89
96
|
- papers
|
|
90
97
|
- format
|
|
91
|
-
|
|
92
98
|
personality:
|
|
93
99
|
name: Full-Stack Research Developer
|
|
94
100
|
tone:
|
|
@@ -132,7 +138,6 @@ spec:
|
|
|
132
138
|
response_length: moderate
|
|
133
139
|
use_bullets: true
|
|
134
140
|
use_code_blocks: true
|
|
135
|
-
|
|
136
141
|
autonomy:
|
|
137
142
|
level: autonomous
|
|
138
143
|
approval_required: false
|
|
@@ -148,7 +153,6 @@ spec:
|
|
|
148
153
|
cannot_decide:
|
|
149
154
|
- Publishing research without human review
|
|
150
155
|
- Sharing proprietary research data
|
|
151
|
-
|
|
152
156
|
memory:
|
|
153
157
|
enabled: true
|
|
154
158
|
type: summary_memory
|
|
@@ -157,7 +161,6 @@ spec:
|
|
|
157
161
|
summary_prompt: |
|
|
158
162
|
Summarize the key research topics, papers discussed,
|
|
159
163
|
and important findings from this session.
|
|
160
|
-
|
|
161
164
|
observability:
|
|
162
165
|
logging:
|
|
163
166
|
level: info
|
|
@@ -167,13 +170,16 @@ spec:
|
|
|
167
170
|
- papers_searched
|
|
168
171
|
- summaries_generated
|
|
169
172
|
- citations_created
|
|
170
|
-
|
|
171
173
|
extensions:
|
|
172
174
|
langchain:
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
-
|
|
179
|
-
|
|
175
|
+
enabled: true
|
|
176
|
+
chain_type: agent
|
|
177
|
+
memory:
|
|
178
|
+
type: summary
|
|
179
|
+
tools:
|
|
180
|
+
- name: search_papers
|
|
181
|
+
description: Search academic papers and publications
|
|
182
|
+
- name: summarize_paper
|
|
183
|
+
description: Generate structured summary of research paper
|
|
184
|
+
- name: generate_citations
|
|
185
|
+
description: Generate citations in various formats
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
apiVersion: ossa/v0.
|
|
1
|
+
apiVersion: ossa/v0.5
|
|
2
2
|
kind: Agent
|
|
3
3
|
metadata:
|
|
4
4
|
name: meeting-assistant
|
|
@@ -19,19 +19,16 @@ spec:
|
|
|
19
19
|
- Action item identification and tracking
|
|
20
20
|
- Meeting minutes generation
|
|
21
21
|
- Follow-up task creation
|
|
22
|
-
|
|
23
22
|
llm:
|
|
24
23
|
provider: openai
|
|
25
24
|
model: gpt-4o
|
|
26
25
|
temperature: 0.5
|
|
27
26
|
maxTokens: 3000
|
|
28
|
-
|
|
29
27
|
capabilities:
|
|
30
28
|
- transcribe_audio
|
|
31
29
|
- summarize_meeting
|
|
32
30
|
- extract_action_items
|
|
33
31
|
- generate_minutes
|
|
34
|
-
|
|
35
32
|
tools:
|
|
36
33
|
- type: function
|
|
37
34
|
name: transcribe_audio
|
|
@@ -50,7 +47,6 @@ spec:
|
|
|
50
47
|
default: true
|
|
51
48
|
required:
|
|
52
49
|
- audioUrl
|
|
53
|
-
|
|
54
50
|
- type: function
|
|
55
51
|
name: summarize_meeting
|
|
56
52
|
description: Generate meeting summary
|
|
@@ -61,13 +57,15 @@ spec:
|
|
|
61
57
|
type: string
|
|
62
58
|
summaryType:
|
|
63
59
|
type: string
|
|
64
|
-
enum:
|
|
60
|
+
enum:
|
|
61
|
+
- brief
|
|
62
|
+
- detailed
|
|
63
|
+
- executive
|
|
65
64
|
includeTopic:
|
|
66
65
|
type: boolean
|
|
67
66
|
default: true
|
|
68
67
|
required:
|
|
69
68
|
- transcript
|
|
70
|
-
|
|
71
69
|
- type: function
|
|
72
70
|
name: extract_action_items
|
|
73
71
|
description: Extract action items from meeting
|
|
@@ -82,7 +80,6 @@ spec:
|
|
|
82
80
|
type: string
|
|
83
81
|
required:
|
|
84
82
|
- transcript
|
|
85
|
-
|
|
86
83
|
- type: function
|
|
87
84
|
name: generate_minutes
|
|
88
85
|
description: Generate formal meeting minutes
|
|
@@ -103,19 +100,22 @@ spec:
|
|
|
103
100
|
type: array
|
|
104
101
|
format:
|
|
105
102
|
type: string
|
|
106
|
-
enum:
|
|
103
|
+
enum:
|
|
104
|
+
- markdown
|
|
105
|
+
- html
|
|
106
|
+
- pdf
|
|
107
107
|
default: markdown
|
|
108
108
|
required:
|
|
109
109
|
- meetingData
|
|
110
|
-
|
|
111
110
|
triggers:
|
|
112
111
|
- type: webhook
|
|
113
112
|
source: zoom
|
|
114
|
-
events:
|
|
113
|
+
events:
|
|
114
|
+
- recording.completed
|
|
115
115
|
- type: webhook
|
|
116
116
|
source: google_meet
|
|
117
|
-
events:
|
|
118
|
-
|
|
117
|
+
events:
|
|
118
|
+
- recording.ready
|
|
119
119
|
tasks:
|
|
120
120
|
- name: process-recording
|
|
121
121
|
steps:
|
|
@@ -125,20 +125,17 @@ spec:
|
|
|
125
125
|
params:
|
|
126
126
|
audioUrl: ${inputs.recording_url}
|
|
127
127
|
speakerDiarization: true
|
|
128
|
-
|
|
129
128
|
- name: generate-summary
|
|
130
129
|
action: function_call
|
|
131
130
|
function: summarize_meeting
|
|
132
131
|
params:
|
|
133
132
|
transcript: ${outputs.transcript}
|
|
134
133
|
summaryType: detailed
|
|
135
|
-
|
|
136
134
|
- name: extract-actions
|
|
137
135
|
action: function_call
|
|
138
136
|
function: extract_action_items
|
|
139
137
|
params:
|
|
140
138
|
transcript: ${outputs.transcript}
|
|
141
|
-
|
|
142
139
|
- name: create-minutes
|
|
143
140
|
action: function_call
|
|
144
141
|
function: generate_minutes
|
|
@@ -148,26 +145,23 @@ spec:
|
|
|
148
145
|
attendees: ${inputs.attendees}
|
|
149
146
|
topics: ${outputs.summary}
|
|
150
147
|
decisions: ${outputs.action_items}
|
|
151
|
-
|
|
152
148
|
- name: send-to-participants
|
|
153
149
|
action: http
|
|
154
150
|
method: POST
|
|
155
151
|
url: ${env.EMAIL_SERVICE_URL}/send
|
|
156
152
|
body:
|
|
157
153
|
to: ${inputs.attendees}
|
|
158
|
-
subject:
|
|
154
|
+
subject: 'Meeting Notes: ${inputs.meeting_title}'
|
|
159
155
|
body: ${outputs.minutes}
|
|
160
156
|
attachments:
|
|
161
157
|
- type: pdf
|
|
162
158
|
content: ${outputs.minutes_pdf}
|
|
163
|
-
|
|
164
159
|
memory:
|
|
165
160
|
enabled: true
|
|
166
161
|
type: conversation_buffer
|
|
167
162
|
window_size: 5
|
|
168
163
|
persistence:
|
|
169
164
|
enabled: false
|
|
170
|
-
|
|
171
165
|
outputs:
|
|
172
166
|
- name: transcript
|
|
173
167
|
type: string
|
|
@@ -181,7 +175,6 @@ spec:
|
|
|
181
175
|
- name: minutes
|
|
182
176
|
type: string
|
|
183
177
|
description: Formal meeting minutes
|
|
184
|
-
|
|
185
178
|
observability:
|
|
186
179
|
logging:
|
|
187
180
|
level: info
|
|
@@ -193,19 +186,18 @@ spec:
|
|
|
193
186
|
- action_items_extracted
|
|
194
187
|
tracing:
|
|
195
188
|
enabled: true
|
|
196
|
-
|
|
197
189
|
extensions:
|
|
198
190
|
langchain:
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
-
|
|
205
|
-
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
191
|
+
enabled: true
|
|
192
|
+
chain_type: agent
|
|
193
|
+
memory:
|
|
194
|
+
type: buffer
|
|
195
|
+
tools:
|
|
196
|
+
- name: transcribe_audio
|
|
197
|
+
description: Transcribe meeting audio to text
|
|
198
|
+
- name: summarize_meeting
|
|
199
|
+
description: Generate meeting summary
|
|
200
|
+
- name: extract_action_items
|
|
201
|
+
description: Extract action items from meeting
|
|
202
|
+
- name: generate_minutes
|
|
203
|
+
description: Generate formal meeting minutes
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
apiVersion: ossa/v0.5
|
|
2
|
+
kind: Agent
|
|
3
|
+
metadata:
|
|
4
|
+
name: security-audit-agent
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
description: Repository security scanner. Runs static analysis, dependency audits, secret detection, and Dragonfly audit rules against codebases. Reports findings with severity and remediation guidance.
|
|
7
|
+
labels:
|
|
8
|
+
use-case: security-audit
|
|
9
|
+
production-ready: 'false'
|
|
10
|
+
ossa-native: 'true'
|
|
11
|
+
agentType: custom
|
|
12
|
+
agentKind: specialist
|
|
13
|
+
identity:
|
|
14
|
+
namespace: blueflyio/ossa
|
|
15
|
+
agent_id: security-audit-agent
|
|
16
|
+
version: 1.0.0
|
|
17
|
+
publisher:
|
|
18
|
+
name: BlueFly.io
|
|
19
|
+
email: agents@bluefly.io
|
|
20
|
+
website: https://openstandardagents.org
|
|
21
|
+
created_at: 2026-03-10T12:00:00Z
|
|
22
|
+
updated_at: 2026-03-10T12:00:00Z
|
|
23
|
+
catalog:
|
|
24
|
+
published: true
|
|
25
|
+
visibility: public
|
|
26
|
+
categories:
|
|
27
|
+
- security
|
|
28
|
+
- code-quality
|
|
29
|
+
- compliance
|
|
30
|
+
tags:
|
|
31
|
+
- security
|
|
32
|
+
- audit
|
|
33
|
+
- phpstan
|
|
34
|
+
- phpcs
|
|
35
|
+
- dragonfly
|
|
36
|
+
- ossa-native
|
|
37
|
+
spec:
|
|
38
|
+
role: |
|
|
39
|
+
You are a security audit specialist agent.
|
|
40
|
+
|
|
41
|
+
Your mission:
|
|
42
|
+
1. Scan repositories for vulnerabilities using static analysis tools
|
|
43
|
+
2. Run PHPStan at strictest levels for type safety issues
|
|
44
|
+
3. Run PHPCS for coding standard violations
|
|
45
|
+
4. Execute Dragonfly audit rules for anti-patterns and best practices
|
|
46
|
+
5. Check for exposed secrets and credentials
|
|
47
|
+
6. Produce structured reports with severity ratings and remediation steps
|
|
48
|
+
|
|
49
|
+
Guidelines:
|
|
50
|
+
- Never output or log actual secret values
|
|
51
|
+
- Classify findings by severity: critical, high, medium, low, informational
|
|
52
|
+
- Provide actionable remediation for each finding
|
|
53
|
+
- Reference CWE/CVE identifiers where applicable
|
|
54
|
+
- Map findings to NIST AI RMF and OWASP Top 10 where relevant
|
|
55
|
+
llm:
|
|
56
|
+
provider: anthropic
|
|
57
|
+
model: claude-sonnet-4-20250514
|
|
58
|
+
temperature: 0.1
|
|
59
|
+
max_tokens: 16384
|
|
60
|
+
tools:
|
|
61
|
+
- type: command
|
|
62
|
+
name: phpstan_analyze
|
|
63
|
+
description: Run PHPStan static analysis
|
|
64
|
+
operation: read
|
|
65
|
+
command: phpstan analyse
|
|
66
|
+
parameters:
|
|
67
|
+
path:
|
|
68
|
+
type: string
|
|
69
|
+
description: Path to analyze
|
|
70
|
+
level:
|
|
71
|
+
type: number
|
|
72
|
+
description: Analysis strictness 0-9
|
|
73
|
+
default: 8
|
|
74
|
+
- type: command
|
|
75
|
+
name: phpcs_check
|
|
76
|
+
description: Run PHP CodeSniffer checks
|
|
77
|
+
operation: read
|
|
78
|
+
command: phpcs
|
|
79
|
+
parameters:
|
|
80
|
+
path:
|
|
81
|
+
type: string
|
|
82
|
+
description: Path to check
|
|
83
|
+
standard:
|
|
84
|
+
type: string
|
|
85
|
+
default: Drupal,DrupalPractice
|
|
86
|
+
- type: command
|
|
87
|
+
name: npm_audit
|
|
88
|
+
description: Run npm audit for JS/TS dependencies
|
|
89
|
+
operation: read
|
|
90
|
+
command: npm audit
|
|
91
|
+
parameters:
|
|
92
|
+
path:
|
|
93
|
+
type: string
|
|
94
|
+
description: Project path with package.json
|
|
95
|
+
- type: command
|
|
96
|
+
name: secret_scan
|
|
97
|
+
description: Scan for exposed secrets and credentials
|
|
98
|
+
operation: read
|
|
99
|
+
command: git secrets --scan
|
|
100
|
+
parameters:
|
|
101
|
+
path:
|
|
102
|
+
type: string
|
|
103
|
+
description: Repository path to scan
|
|
104
|
+
- type: api
|
|
105
|
+
name: dragonfly_audit
|
|
106
|
+
description: Run Dragonfly audit rules from catalog
|
|
107
|
+
operation: read
|
|
108
|
+
parameters:
|
|
109
|
+
rule_set:
|
|
110
|
+
type: string
|
|
111
|
+
description: Audit rule set (e.g. anti-patterns, best-practices, a11y, seo)
|
|
112
|
+
target_url:
|
|
113
|
+
type: string
|
|
114
|
+
description: URL or path to audit
|
|
115
|
+
capabilities:
|
|
116
|
+
- name: static-analysis
|
|
117
|
+
description: PHPStan and PHPCS code analysis
|
|
118
|
+
- name: dependency-audit
|
|
119
|
+
description: npm/composer dependency vulnerability checks
|
|
120
|
+
- name: secret-detection
|
|
121
|
+
description: Scan for exposed credentials and secrets
|
|
122
|
+
- name: dragonfly-audit
|
|
123
|
+
description: Run Dragonfly quality audit rules
|
|
124
|
+
- name: compliance-mapping
|
|
125
|
+
description: Map findings to NIST, OWASP, CWE frameworks
|
|
126
|
+
safety:
|
|
127
|
+
guardrails:
|
|
128
|
+
- never_output_secrets
|
|
129
|
+
- read_only_operations
|
|
130
|
+
- audit_all_actions
|
|
131
|
+
pii_handling: redact
|
|
132
|
+
audit_all_actions: true
|
|
133
|
+
max_cost_per_execution: 0.4
|
|
134
|
+
observability:
|
|
135
|
+
telemetry:
|
|
136
|
+
enabled: true
|
|
137
|
+
export_traces: true
|
|
138
|
+
export_metrics: true
|
|
139
|
+
security:
|
|
140
|
+
tier: tier_1_read
|
|
141
|
+
threat_model:
|
|
142
|
+
- category: information-disclosure
|
|
143
|
+
severity: critical
|
|
144
|
+
mitigations:
|
|
145
|
+
- output-filtering
|
|
146
|
+
- secret-redaction
|
|
147
|
+
description: Must never expose secrets found during scanning
|
|
148
|
+
capabilities:
|
|
149
|
+
required:
|
|
150
|
+
- filesystem-read
|
|
151
|
+
- network-outbound
|
|
152
|
+
- process-spawn
|
|
153
|
+
- tool-execution
|
|
154
|
+
optional:
|
|
155
|
+
- browser
|
|
156
|
+
sandboxing:
|
|
157
|
+
required: true
|
|
158
|
+
type: container
|
|
159
|
+
resource_limits:
|
|
160
|
+
max_memory_mb: 2048
|
|
161
|
+
max_cpu_cores: 2
|
|
162
|
+
max_execution_seconds: 600
|
|
163
|
+
network_access:
|
|
164
|
+
allowed_domains:
|
|
165
|
+
- registry.npmjs.org
|
|
166
|
+
- packagist.org
|
|
167
|
+
- api.anthropic.com
|
|
168
|
+
- nvd.nist.gov
|
|
169
|
+
protocols:
|
|
170
|
+
- https
|
|
171
|
+
egress_policy: allow-list
|
|
172
|
+
data_classification: confidential
|
|
173
|
+
audit:
|
|
174
|
+
log_inputs: true
|
|
175
|
+
log_outputs: false
|
|
176
|
+
log_tool_calls: true
|
|
177
|
+
retention_days: 365
|
|
178
|
+
protocols:
|
|
179
|
+
mcp:
|
|
180
|
+
version: 1.0.0
|
|
181
|
+
role: client
|
|
182
|
+
capabilities:
|
|
183
|
+
tools: true
|
|
184
|
+
resources: true
|
|
185
|
+
prompts: false
|
|
186
|
+
sampling: false
|
|
187
|
+
servers:
|
|
188
|
+
- name: dragonfly
|
|
189
|
+
transport: stdio
|
|
190
|
+
command: dragonfly
|
|
191
|
+
tools:
|
|
192
|
+
- dragonfly_audit
|
|
193
|
+
a2a:
|
|
194
|
+
version: 0.2.0
|
|
195
|
+
endpoint: https://openstandardagents.org/agents/security-audit-agent
|
|
196
|
+
agent_card:
|
|
197
|
+
name: Security Audit Agent
|
|
198
|
+
description: Run repository security audits and compliance scans
|
|
199
|
+
skills:
|
|
200
|
+
- id: audit-repository
|
|
201
|
+
name: Audit Repository
|
|
202
|
+
description: Run a security audit on a repository
|
|
203
|
+
capabilities:
|
|
204
|
+
streaming: false
|
|
205
|
+
pushNotifications: false
|
|
206
|
+
stateTransitionHistory: true
|
|
207
|
+
authentication:
|
|
208
|
+
schemes:
|
|
209
|
+
- none
|
|
210
|
+
governance:
|
|
211
|
+
authorization:
|
|
212
|
+
clearance_level: 1
|
|
213
|
+
policy_references:
|
|
214
|
+
- blueflyio/cedar-policies
|
|
215
|
+
tool_permissions:
|
|
216
|
+
- tool: phpstan_analyze
|
|
217
|
+
risk_level: low
|
|
218
|
+
- tool: phpcs_check
|
|
219
|
+
risk_level: low
|
|
220
|
+
- tool: npm_audit
|
|
221
|
+
risk_level: low
|
|
222
|
+
- tool: secret_scan
|
|
223
|
+
risk_level: medium
|
|
224
|
+
- tool: dragonfly_audit
|
|
225
|
+
risk_level: medium
|
|
226
|
+
quality_requirements:
|
|
227
|
+
confidence_threshold: 0.9
|
|
228
|
+
security_score_threshold: 90
|
|
229
|
+
max_vulnerability_count: 0
|
|
230
|
+
compliance:
|
|
231
|
+
frameworks:
|
|
232
|
+
- NIST-800-53
|
|
233
|
+
data_classification: confidential
|
|
234
|
+
audit_logging_required: true
|
|
@@ -71,7 +71,7 @@ agent = ReActAgent(
|
|
|
71
71
|
|
|
72
72
|
The manifest declares two MCP tool servers under `spec.tools`:
|
|
73
73
|
|
|
74
|
-
1. **knowledge-base** -- Graph knowledge base at `gkg.
|
|
74
|
+
1. **knowledge-base** -- Graph knowledge base at `gkg.bluefly.internal` for codebase analysis and structured queries.
|
|
75
75
|
2. **web-search** -- General MCP server at `mcp.blueflyagents.com` for web search and content retrieval.
|
|
76
76
|
|
|
77
77
|
At runtime, the adapter connects to these SSE endpoints, discovers available tools, and registers them with the AgentScope `ReActAgent` tool list.
|