EnterpriseAgentFramework
Enterprise AI Capability Platform for Java/Spring Boot. Register business APIs as governed AI capabilities, compose Agents with GraphSpec, Runtime, MCP/A2A/Gateway, RunOps and Trace. 企业智能体开发框架-把 Ja...
Source#
- Repository: w8123/EnterpriseAgentFramework
- Last source update: 2026-05-24
- Last verified: 2026-05-24
Tags#
Integration notes#
Repository is focused on tool/server interoperability; wrap in bounded worker contracts for production use.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: enterpriseagentframework-repo-derived-worker
name: EnterpriseAgentFramework Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/enterpriseagentframework/
source_repository: https://github.com/w8123/EnterpriseAgentFramework
repository_default_branch: main
repository_language: Java
repository_license: MIT
repository_updated_at: 2026-05-24
worker_mode: tool-gateway-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.9
derived_on: 2026-05-24
tags:
- a2a
- agent-framework
- ai-agents
- ai-capability
- ai-gateway
- ai-platform
---
# EnterpriseAgentFramework Repo-Derived Worker
## Repo-derived summary
- Registry summary: Enterprise AI Capability Platform for Java/Spring Boot. Register business APIs as governed AI capabilities, compose Agents with GraphSpec, Runtime, MCP/A2A/Gateway, RunOps and Trace. 企业智能体开发框架-把 Ja...
- Repository description: Enterprise AI Capability Platform for Java/Spring Boot. Register business APIs as governed AI capabilities, compose Agents with GraphSpec, Runtime, MCP/A2A/Gateway, RunOps and Trace. 企业智能体开发框架-把 Java 企业系统中的接口、领域方法、知识、模型和流程,沉淀为可治理、可编排、可开放的 AI 能力资产。
- Stars (snapshot): 163
- Primary language: Java
- Worker mode classification: tool-gateway-worker
## Extracted from
- https://github.com/w8123/EnterpriseAgentFramework
- https://github.com/w8123/EnterpriseAgentFramework/blob/main/README.md
## Evidence notes (from repository text)
- README summary paragraph: 让 Spring Boot 业务系统像注册微服务一样注册 AI 能力,并在进入 Agent 前完成治理、编排、发布、审计和开放。
- 让 Spring Boot 业务系统像注册微服务一样注册 AI 能力,并在进入 Agent 前完成治理、编排、发布、审计和开放。
- 在真实业务系统里,接口和领域方法早已存在,但它们通常缺少面向 Agent 的语义、权限、审计和变更治理:
- - MCP、A2A、Gateway、Trace、ACL、Guard、人工确认如何放到同一条生产链路里?
- ReachAI 的主线不是单纯的 Workflow Builder,也不是只扫描历史项目生成 Tool,而是一条从业务系统到生产 Agent 的完整链路。
- | Java 系统 AI 化 | 将 Spring Boot 接口和领域方法声明为 Agent 可理解、可调用、可治理的能力 |
## Installation hints found in README
- No explicit package installation command detected in README text.
## worker.md contract (derived starter)
Purpose: Expose repository-supported tool/server capabilities behind a bounded worker interface.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"request_id",
"operation",
"payload"
],
"properties": {
"request_id": {
"type": "string"
},
"operation": {
"type": "string"
},
"payload": {
"type": "object"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"request_id",
"status",
"result"
],
"properties": {
"request_id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"result": {
"type": "object"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: request_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
enterpriseagentframework-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/enterpriseagentframework/
Source URL: https://github.com/w8123/EnterpriseAgentFramework