openai-code-assistant 1.0.2 → 1.0.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/README.md +3 -3
- package/package.json +15 -1
package/README.md
CHANGED
|
@@ -58,12 +58,12 @@ npx openai-code-assistant
|
|
|
58
58
|
|
|
59
59
|
- Node.js installed (recommended version 16 or later).
|
|
60
60
|
- OpenAI API key set in your environment variables as `OPENAI_API_KEY`.
|
|
61
|
-
- Optionally, specify the OpenAI model name using the environment variable `OPENAI_MODEL_NAME`. Defaults to `gpt-
|
|
61
|
+
- Optionally, specify the OpenAI model name using the environment variable `OPENAI_MODEL_NAME`. Defaults to `gpt-4.1-mini` if not set.
|
|
62
62
|
|
|
63
63
|
## Privacy
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
The source code of this project is private and not for public distribution. However, the use of openai-code-assistant in any projects, whether internal or external, is welcomed and encouraged.
|
|
66
66
|
|
|
67
67
|
## License
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
The source code is private and not licensed for public distribution or modification. Usage of the tool itself in projects is permitted as described in the Privacy section.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openai-code-assistant",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
6
6
|
"start": "node dist/index.js",
|
|
@@ -14,6 +14,20 @@
|
|
|
14
14
|
"author": "https://github.com/shamshodisaev",
|
|
15
15
|
"license": "ISC",
|
|
16
16
|
"description": "",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"OpenAI",
|
|
19
|
+
"AI agents",
|
|
20
|
+
"CLI tool",
|
|
21
|
+
"code assistant",
|
|
22
|
+
"code review",
|
|
23
|
+
"documentation generator",
|
|
24
|
+
"refactoring",
|
|
25
|
+
"supervisor agent",
|
|
26
|
+
"AI task orchestration",
|
|
27
|
+
"chatbot",
|
|
28
|
+
"OpenAI CLI",
|
|
29
|
+
"interactive assistant"
|
|
30
|
+
],
|
|
17
31
|
"type": "module",
|
|
18
32
|
"devDependencies": {
|
|
19
33
|
"@types/node": "^25.3.3",
|