klaudiak 2.1.93 → 2.1.94

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 CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  Klaudia Kode is a coding agent wrapper CLI that can run against many LLM providers through a local OpenRouter-compatible proxy.
4
4
 
5
+ ![klaudiak proxy screenshot](https://raw.githubusercontent.com/samuraicoderr/klaudia-kode/main/.docs/screenshots/klaudiak.png)
6
+
7
+
5
8
  Use the CLI as `klaudiak`.
6
9
 
7
10
  ## Quick Start
@@ -61,11 +64,11 @@ Screenshots of this exact lazy flow:
61
64
 
62
65
  ### `klaudiak proxy`
63
66
 
64
- ![klaudiak proxy screenshot](.docs/screenshots/openrouter-proxy.png)
67
+ ![klaudiak proxy screenshot](https://raw.githubusercontent.com/samuraicoderr/klaudia-kode/main/.docs/screenshots/openrouter-proxy.png)
65
68
 
66
69
  ### `klaudiak`
67
70
 
68
- ![klaudiak screenshot](.docs/screenshots/klaudiak.png)
71
+ ![klaudiak screenshot](https://raw.githubusercontent.com/samuraicoderr/klaudia-kode/main/.docs/screenshots/klaudiak.png)
69
72
 
70
73
  ## Recommended Daily Workflow
71
74
 
@@ -106,7 +106,7 @@ function sendToOpenRouter(url, payload) {
106
106
  'authorization': `Bearer ${OPENROUTER_API_KEY}`,
107
107
  'anthropic-version': '2023-06-01',
108
108
  'content-length': Buffer.byteLength(payload),
109
- 'http-referer': 'https://github.com/klaudia-kode/klaudiak',
109
+ 'http-referer': 'https://github.com/samuraicoderr/klaudia-kode',
110
110
  'x-title': 'Klaudia Kode',
111
111
  },
112
112
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klaudiak",
3
- "version": "2.1.93",
3
+ "version": "2.1.94",
4
4
  "bin": {
5
5
  "klaudiak": "klaudiak.js"
6
6
  },
@@ -11,9 +11,13 @@
11
11
  "author": "Klaudia Kode Maintainers",
12
12
  "license": "SEE LICENSE IN README.md",
13
13
  "description": "Klaudia Kode is a production-grade coding agent that supports many LLMs through a local OpenRouter-compatible proxy.",
14
- "homepage": "https://github.com/klaudia-kode/klaudiak",
14
+ "homepage": "https://github.com/samuraicoderr/klaudia-kode",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/samuraicoderr/klaudia-kode.git"
18
+ },
15
19
  "bugs": {
16
- "url": "https://github.com/klaudia-kode/klaudiak/issues"
20
+ "url": "https://github.com/samuraicoderr/klaudia-kode/issues"
17
21
  },
18
22
  "scripts": {
19
23
  "prepare": "node -e \"if (!process.env.AUTHORIZED) { console.error('ERROR: Direct publishing is not allowed.\\nPlease see the release workflow documentation to publish this package.'); process.exit(1); }\""