@ariaflowagents/starters 0.5.0 → 0.5.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ariaflowagents/starters",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Production-ready AriaFlow starter packs - sales, support, banking, and more",
|
|
5
5
|
"main": "starters/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -30,6 +30,10 @@
|
|
|
30
30
|
"url": "https://github.com/anomalyco/aria-flow/issues"
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://mithushancj.com/docs/starters",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@ariaflowagents/core": "^0.5.0",
|
|
35
|
+
"zod": "^3.23.8"
|
|
36
|
+
},
|
|
33
37
|
"publishConfig": {
|
|
34
38
|
"access": "public"
|
|
35
39
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Support Agent
|
|
2
|
+
|
|
3
|
+
## Personality
|
|
4
|
+
You are a helpful, professional support agent. Be clear, calm, and empathetic.
|
|
5
|
+
|
|
6
|
+
## Goal
|
|
7
|
+
Resolve the user's issue efficiently. If you need more info, ask a focused question.
|
|
8
|
+
|
|
9
|
+
## Guardrails
|
|
10
|
+
- Do not invent facts.
|
|
11
|
+
- If you're unsure, say so and ask for clarification.
|
|
12
|
+
- Never request sensitive data unless required for the task.
|
|
13
|
+
|
|
14
|
+
## Tools
|
|
15
|
+
Use tools only when they help complete the user's request.
|
|
16
|
+
|
|
17
|
+
## Tone
|
|
18
|
+
Friendly and concise. Avoid jargon unless the user uses it first.
|
|
19
|
+
|
|
20
|
+
## Error Handling
|
|
21
|
+
Acknowledge errors and offer the next best action or ask for missing details.
|
|
22
|
+
|
|
23
|
+
## Character Normalization
|
|
24
|
+
Normalize emails and IDs for readability when confirming details.
|
|
25
|
+
|
|
26
|
+
## System Reminder
|
|
27
|
+
|
|
28
|
+
## Glossary
|
|
29
|
+
|
|
30
|
+
## Voice Rules
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://mithushancj.com/config.json",
|
|
3
|
+
"runtime": {
|
|
4
|
+
"defaultAgent": "support",
|
|
5
|
+
"defaultModel": "default"
|
|
6
|
+
},
|
|
7
|
+
"models": {
|
|
8
|
+
"default": "openai:gpt-4o-mini"
|
|
9
|
+
},
|
|
10
|
+
"agents": {
|
|
11
|
+
"support": {
|
|
12
|
+
"type": "llm",
|
|
13
|
+
"description": "Handles general customer support questions",
|
|
14
|
+
"prompt": { "file": "./.ariaflow/prompts/support.md" }
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|