@xagent/one-shot 1.1.91 → 1.1.93
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 +21 -1
- package/dist/index.js +554 -9
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@xagent/one-shot",
|
|
4
|
-
"version": "1.1.
|
|
5
|
-
"description": "An open-source AI agent that brings advanced AI capabilities directly into your terminal.",
|
|
4
|
+
"version": "1.1.93",
|
|
5
|
+
"description": "An open-source AI agent that brings advanced AI capabilities directly into your terminal with automatic documentation updates.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
"dev:site": "cd apps/site && npm run start",
|
|
31
31
|
"build:site": "cd apps/site && npm run build",
|
|
32
32
|
"sync:docs": "cd apps/site && node src/scripts/sync-agent-docs.js",
|
|
33
|
+
"update-agent-docs-auto": "tsx ./scripts/update-agent-docs-auto.mjs",
|
|
34
|
+
"docs-workflow-test": "npm run update-agent-docs-auto && npm run sync:docs",
|
|
33
35
|
"smart-push": "./scripts/smart-push.sh",
|
|
34
36
|
"push": "echo '🚨 BLOCKED: Use npm run smart-push instead' && echo '💡 Direct git push bypasses automation' && exit 1",
|
|
35
37
|
"git-push": "echo '🚨 BLOCKED: Use npm run smart-push instead' && echo '💡 Direct git push bypasses automation' && exit 1"
|