Initial commit: Add CLI tool with OpenAI integration, including file listing and echo functionalities. Introduce package.json for dependencies and scripts, and system prompt for AI behavior.

This commit is contained in:
sebseb7
2025-08-11 15:21:01 +02:00
commit f6f809263c
5 changed files with 377 additions and 0 deletions

58
package.json Normal file
View File

@@ -0,0 +1,58 @@
{
"name": "aitools",
"version": "1.0.0",
"type": "module",
"main": "cli.js",
"dependencies": {
"dotenv": "^16.4.5",
"abort-controller": "^3.0.0",
"agentkeepalive": "^4.6.0",
"asynckit": "^0.4.0",
"call-bind-apply-helpers": "^1.0.2",
"chalk": "^5.5.0",
"combined-stream": "^1.0.8",
"delayed-stream": "^1.0.0",
"dunder-proto": "^1.0.1",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.1.1",
"es-set-tostringtag": "^2.1.0",
"esbuild": "^0.25.8",
"event-target-shim": "^5.0.1",
"form-data": "^4.0.4",
"form-data-encoder": "^1.7.2",
"formdata-node": "^4.4.1",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.3.0",
"get-proto": "^1.0.1",
"get-tsconfig": "^4.10.1",
"gopd": "^1.2.0",
"has-symbols": "^1.1.0",
"has-tostringtag": "^1.0.2",
"hasown": "^2.0.2",
"humanize-ms": "^1.2.1",
"math-intrinsics": "^1.1.0",
"mime-db": "^1.52.0",
"mime-types": "^2.1.35",
"ms": "^2.1.3",
"node-domexception": "^1.0.0",
"node-fetch": "^2.7.0",
"openai": "^4.104.0",
"resolve-pkg-maps": "^1.0.0",
"tr46": "^0.0.3",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"undici-types": "^5.26.5",
"web-streams-polyfill": "^4.0.0-beta.3",
"webidl-conversions": "^3.0.1",
"whatwg-url": "^5.0.0"
},
"scripts": {
"start": "node cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}