agentflow-core 0.3.0 → 0.3.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/package.json +24 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentflow-core",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Monitor any AI agent system. Auto-detects failures, sends alerts. Zero config, zero dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -23,11 +23,32 @@
|
|
|
23
23
|
"keywords": [
|
|
24
24
|
"ai",
|
|
25
25
|
"agent",
|
|
26
|
+
"monitoring",
|
|
27
|
+
"alerting",
|
|
28
|
+
"observability",
|
|
26
29
|
"tracing",
|
|
27
30
|
"execution-graph",
|
|
28
|
-
"
|
|
31
|
+
"ai-agent",
|
|
32
|
+
"llm",
|
|
33
|
+
"openai",
|
|
34
|
+
"anthropic",
|
|
35
|
+
"langchain",
|
|
36
|
+
"crewai",
|
|
37
|
+
"autogen",
|
|
38
|
+
"cron",
|
|
39
|
+
"watchdog",
|
|
40
|
+
"health-check"
|
|
29
41
|
],
|
|
30
42
|
"license": "MIT",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/ClemenceChee/AgentFlow.git"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/ClemenceChee/AgentFlow#readme",
|
|
48
|
+
"author": "Clemence Chee",
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=20"
|
|
51
|
+
},
|
|
31
52
|
"bin": {
|
|
32
53
|
"agentflow": "./dist/cli.js"
|
|
33
54
|
}
|