kob-cli 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/.env.example +11 -0
  2. package/package.json +7 -3
package/.env.example ADDED
@@ -0,0 +1,11 @@
1
+ # KOB AI API Configuration
2
+ # Developed by Kob AI | www.kob-ai.dev | Developer in Thailand
3
+
4
+ # Base URL for KOB AI API
5
+ KOB_API_BASE_URL=https://www.kob-ai.dev
6
+
7
+ # Your API Key (format: kob_xxx:your_token or just kob_xxx)
8
+ KOB_API_KEY=kob_your_api_key_here
9
+
10
+ # Default AI Model ID (optional, fallback if --model not specified)
11
+ # KOB_MODEL_ID=deepseek-chat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kob-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "KOB CLI — AI-powered code generation tool. Built by Kob AI, made in Thailand.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,13 +15,17 @@
15
15
  "INSTALL.md",
16
16
  "MANUAL.md",
17
17
  "QUICKSTART.md",
18
- "SPECTS.md"
18
+ "SPECTS.md",
19
+ ".env.example"
19
20
  ],
20
21
  "scripts": {
21
22
  "dev": "bun run src/index.ts",
22
23
  "start": "bun run src/index.ts",
23
24
  "build": "bun build src/index.ts --compile --outfile kob-cli",
24
- "prepublishOnly": "bun run build"
25
+ "prepublishOnly": "bun run build",
26
+ "release:patch": "npm version patch --no-git-tag-version && npm publish",
27
+ "release:minor": "npm version minor --no-git-tag-version && npm publish",
28
+ "release:major": "npm version major --no-git-tag-version && npm publish"
25
29
  },
26
30
  "engines": {
27
31
  "node": ">=18.0.0"