forked from MyZubster-Ecosystem/myzubster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
29 lines (27 loc) 路 947 Bytes
/
Copy pathindex.js
File metadata and controls
29 lines (27 loc) 路 947 Bytes
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
/**
* MyZubster AI Agents Index
*
* This file exports all AI agents for the MyZubster system.
* Agents are organized by functionality:
* - PlantAgent: Plant identification and monitoring
* - PetAgent: Animal/NFC tracking and health monitoring
* - PaymentAgent: XMR transaction processing
* - VerificationAgent: Community verification and voting
* - NotificationAgent: Multi-channel notifications (Slack/Telegram)
*/
// Import agents
const PlantAgent = require('./skills/plantAgent');
const PetAgent = require('./skills/petAgent');
const PaymentAgent = require('./skills/paymentAgent');
const VerificationAgent = require('./skills/verificationAgent');
const NotificationAgent = require('./skills/notificationAgent');
const AgentOrchestrator = require('./orchestrator/agentOrchestrator');
// Export all agents
module.exports = {
PlantAgent,
PetAgent,
PaymentAgent,
VerificationAgent,
NotificationAgent,
AgentOrchestrator
};