@ftarganski/omni-ai 1.1.7 → 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/package.json +3 -3
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/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": {
|
|
@@ -95,8 +95,8 @@
|
|
|
95
95
|
"@omni-ai/mcp": "0.1.0",
|
|
96
96
|
"@omni-ai/provider-anthropic": "0.1.0",
|
|
97
97
|
"@omni-ai/provider-google": "0.1.0",
|
|
98
|
-
"@omni-ai/
|
|
99
|
-
"@omni-ai/
|
|
98
|
+
"@omni-ai/skills": "0.1.0",
|
|
99
|
+
"@omni-ai/provider-openai": "0.1.0"
|
|
100
100
|
},
|
|
101
101
|
"peerDependencies": {
|
|
102
102
|
"@anthropic-ai/sdk": "^0.39.0",
|