@ftarganski/omni-ai 1.1.5 → 1.1.7
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/README.md +1485 -0
- package/dist/cli/bin.js +0 -0
- package/package.json +16 -16
package/dist/cli/bin.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ftarganski/omni-ai",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Provider-agnostic AI agents and skills framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -79,20 +79,7 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"scripts": {
|
|
83
|
-
"build": "tsup",
|
|
84
|
-
"dev": "tsup --watch",
|
|
85
|
-
"lint": "biome check src/"
|
|
86
|
-
},
|
|
87
82
|
"dependencies": {
|
|
88
|
-
"@omni-ai/cli": "workspace:*",
|
|
89
|
-
"@omni-ai/core": "workspace:*",
|
|
90
|
-
"@omni-ai/memory": "workspace:*",
|
|
91
|
-
"@omni-ai/mcp": "workspace:*",
|
|
92
|
-
"@omni-ai/provider-anthropic": "workspace:*",
|
|
93
|
-
"@omni-ai/provider-google": "workspace:*",
|
|
94
|
-
"@omni-ai/provider-openai": "workspace:*",
|
|
95
|
-
"@omni-ai/skills": "workspace:*",
|
|
96
83
|
"@inquirer/prompts": "^7.0.0",
|
|
97
84
|
"chalk": "^5.3.0",
|
|
98
85
|
"chokidar": "^4.0.0",
|
|
@@ -101,7 +88,15 @@
|
|
|
101
88
|
"express": "^4.21.0",
|
|
102
89
|
"glob": "^11.0.0",
|
|
103
90
|
"yaml": "^2.7.0",
|
|
104
|
-
"zod": "^3.24.0"
|
|
91
|
+
"zod": "^3.24.0",
|
|
92
|
+
"@omni-ai/cli": "0.1.0",
|
|
93
|
+
"@omni-ai/core": "0.1.0",
|
|
94
|
+
"@omni-ai/memory": "0.1.0",
|
|
95
|
+
"@omni-ai/mcp": "0.1.0",
|
|
96
|
+
"@omni-ai/provider-anthropic": "0.1.0",
|
|
97
|
+
"@omni-ai/provider-google": "0.1.0",
|
|
98
|
+
"@omni-ai/provider-openai": "0.1.0",
|
|
99
|
+
"@omni-ai/skills": "0.1.0"
|
|
105
100
|
},
|
|
106
101
|
"peerDependencies": {
|
|
107
102
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
@@ -133,5 +128,10 @@
|
|
|
133
128
|
"@types/node": "^22.0.0",
|
|
134
129
|
"tsup": "^8.0.0",
|
|
135
130
|
"typescript": "^5.7.0"
|
|
131
|
+
},
|
|
132
|
+
"scripts": {
|
|
133
|
+
"build": "tsup",
|
|
134
|
+
"dev": "tsup --watch",
|
|
135
|
+
"lint": "biome check src/"
|
|
136
136
|
}
|
|
137
|
-
}
|
|
137
|
+
}
|