omniagent 0.1.1 → 0.1.3
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/CLAUDE.md +29 -0
- package/README.md +49 -0
- package/dist/cli.js +1232 -163
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omniagent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Unified agent configuration CLI that compiles canonical agent configs to multiple runtimes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
"main": "./dist/index.js",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "npm run check && vite build",
|
|
12
|
+
"patch": "npm version patch --no-git-tag-version",
|
|
13
|
+
"prepublish": "npm run patch && npm run build",
|
|
14
|
+
"postbuild": "chmod +x dist/cli.js",
|
|
12
15
|
"dev": "npm run build && node dist/cli.js",
|
|
13
16
|
"check": "biome check .",
|
|
14
17
|
"fix": "biome check --write .",
|