-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathagent.yaml
More file actions
150 lines (138 loc) · 3.48 KB
/
agent.yaml
File metadata and controls
150 lines (138 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Self Service Plugin Agent Configuration
name: "Mifos Self Service Plugin Agent"
version: "1.15.0-SNAPSHOT"
description: "AI agent specialized in Mifos Self Service Plugin for Apache Fineract - providing self-service banking capabilities to end users"
# Core agent metadata
type: "domain-specific"
domain: "banking-fintech"
framework: "spring-ai-agent-skills"
# Agent identification
agent_id: "mifos-selfservice-plugin"
namespace: "org.apache.fineract.selfservice"
# Runtime configuration
runtime:
java_version: "21"
spring_boot_version: "3"
fineract_version: "1.15.0-SNAPSHOT"
# Security and permissions
security:
authentication_required: true
public_endpoints:
- "/v1/self/authentication"
- "/v1/self/registration"
- "/v1/self/registration/user"
permissions:
- "READ_SAVINGSPRODUCT"
- "READ_LOANPRODUCT"
- "READ_SAVINGSACCOUNT"
- "READ_LOAN"
- "SELF_SERVICE_USER"
# API endpoints served
endpoints:
base_path: "/v1/self"
authentication: "/v1/self/authentication"
registration: "/v1/self/registration"
user_details: "/v1/self/userdetails"
savings: "/v1/self/savingsaccounts"
loans: "/v1/self/loans"
products:
savings: "/v1/self/savingsproducts"
loans: "/v1/self/loanproducts"
shares: "/v1/self/products/share"
# Integration points
integrations:
apache_fineract:
version: "1.15.0-SNAPSHOT"
modules:
- "fineract-provider"
- "fineract-core"
- "fineract-security"
- "fineract-client"
- "fineract-savings"
- "fineract-loan"
databases:
- "postgresql"
- "mysql"
security:
- "spring-security"
- "basic-auth"
- "oauth2"
# Agent capabilities
features:
- "user_registration"
- "authentication"
- "savings_account_management"
- "loan_account_management"
- "product_browsing"
- "survey_participation"
- "report_generation"
- "client_data_access"
# Development metadata
repository:
url: "https://github.com/openMF/selfservice-plugin"
license: "MPL-2.0"
organization: "Mifos Initiative"
# Build and deployment
build:
tool: "maven"
packaging: "jar"
deployment:
- "docker"
- "tomcat"
# Optional tool schemas for agent/tooling interoperability
tools:
- name: "get_loan_details"
description: "Fetch loan details for a given loan id"
input_schema:
type: "object"
properties:
loanId:
type: "integer"
required: ["loanId"]
output_schema:
type: "object"
properties:
loanId:
type: "integer"
status:
type: "string"
outstandingBalance:
type: "number"
- name: "get_savings_account"
description: "Fetch savings account details for a given account id"
input_schema:
type: "object"
properties:
accountId:
type: "integer"
required: ["accountId"]
output_schema:
type: "object"
properties:
accountId:
type: "integer"
status:
type: "string"
balance:
type: "number"
- name: "self_register_user"
description: "Create a self-service user registration request"
input_schema:
type: "object"
properties:
username:
type: "string"
email:
type: "string"
password:
type: "string"
required: ["username", "email", "password"]
output_schema:
type: "object"
properties:
userId:
type: "integer"
status:
type: "string"
message:
type: "string"