@ftarganski/omni-ai 1.1.6 → 1.1.8
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 +12 -2
- package/dist/cli/bin.js +0 -0
- package/package.json +16 -18
package/README.md
CHANGED
|
@@ -1390,6 +1390,16 @@ pnpm --filter @omni-ai/core build
|
|
|
1390
1390
|
pnpm build && omni list agents
|
|
1391
1391
|
```
|
|
1392
1392
|
|
|
1393
|
+
### Publicar uma nova versão
|
|
1394
|
+
|
|
1395
|
+
```bash
|
|
1396
|
+
pnpm release # patch: 1.0.0 → 1.0.1
|
|
1397
|
+
pnpm release minor # minor: 1.0.0 → 1.1.0
|
|
1398
|
+
pnpm release major # major: 1.0.0 → 2.0.0
|
|
1399
|
+
```
|
|
1400
|
+
|
|
1401
|
+
O script cria a branch `release/x.x.x`, commita o bump de versão e abre o PR para `main`. Ao mergear, o GitHub Actions publica automaticamente no npm e cria a GitHub Release.
|
|
1402
|
+
|
|
1393
1403
|
---
|
|
1394
1404
|
|
|
1395
1405
|
## Roadmap
|
|
@@ -1480,6 +1490,6 @@ O pacote referenciado não foi buildado ainda. Execute `pnpm build` na raiz para
|
|
|
1480
1490
|
|
|
1481
1491
|
---
|
|
1482
1492
|
|
|
1483
|
-
##
|
|
1493
|
+
## License
|
|
1484
1494
|
|
|
1485
|
-
MIT
|
|
1495
|
+
MIT — © [Francis Targanski](https://targanski.com)
|
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.8",
|
|
4
4
|
"description": "Provider-agnostic AI agents and skills framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -79,22 +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
|
-
"prepack": "node -e \"require('fs').copyFileSync('../../README.md', './README.md')\"",
|
|
87
|
-
"postpack": "node -e \"try{require('fs').unlinkSync('./README.md')}catch(e){}\""
|
|
88
|
-
},
|
|
89
82
|
"dependencies": {
|
|
90
|
-
"@omni-ai/cli": "workspace:*",
|
|
91
|
-
"@omni-ai/core": "workspace:*",
|
|
92
|
-
"@omni-ai/memory": "workspace:*",
|
|
93
|
-
"@omni-ai/mcp": "workspace:*",
|
|
94
|
-
"@omni-ai/provider-anthropic": "workspace:*",
|
|
95
|
-
"@omni-ai/provider-google": "workspace:*",
|
|
96
|
-
"@omni-ai/provider-openai": "workspace:*",
|
|
97
|
-
"@omni-ai/skills": "workspace:*",
|
|
98
83
|
"@inquirer/prompts": "^7.0.0",
|
|
99
84
|
"chalk": "^5.3.0",
|
|
100
85
|
"chokidar": "^4.0.0",
|
|
@@ -103,7 +88,15 @@
|
|
|
103
88
|
"express": "^4.21.0",
|
|
104
89
|
"glob": "^11.0.0",
|
|
105
90
|
"yaml": "^2.7.0",
|
|
106
|
-
"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/skills": "0.1.0",
|
|
99
|
+
"@omni-ai/provider-openai": "0.1.0"
|
|
107
100
|
},
|
|
108
101
|
"peerDependencies": {
|
|
109
102
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
@@ -135,5 +128,10 @@
|
|
|
135
128
|
"@types/node": "^22.0.0",
|
|
136
129
|
"tsup": "^8.0.0",
|
|
137
130
|
"typescript": "^5.7.0"
|
|
131
|
+
},
|
|
132
|
+
"scripts": {
|
|
133
|
+
"build": "tsup",
|
|
134
|
+
"dev": "tsup --watch",
|
|
135
|
+
"lint": "biome check src/"
|
|
138
136
|
}
|
|
139
|
-
}
|
|
137
|
+
}
|