kv1nt-agents 0.1.0 → 0.1.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.
- package/dist-server/server.mjs +5 -1
- package/package.json +9 -2
package/dist-server/server.mjs
CHANGED
|
@@ -750509,7 +750509,11 @@ function normalizeOrigin(origin2) {
|
|
|
750509
750509
|
}
|
|
750510
750510
|
}
|
|
750511
750511
|
function getConfiguredOrigins(port, allowRemote) {
|
|
750512
|
-
const baseOrigins = /* @__PURE__ */ new Set([
|
|
750512
|
+
const baseOrigins = /* @__PURE__ */ new Set([
|
|
750513
|
+
`http://localhost:${port}`,
|
|
750514
|
+
`http://127.0.0.1:${port}`,
|
|
750515
|
+
"https://agents.kv1nt.com"
|
|
750516
|
+
]);
|
|
750513
750517
|
if (allowRemote) {
|
|
750514
750518
|
const allIPs = getAllNonInternalIPs();
|
|
750515
750519
|
for (const ip of allIPs) {
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kv1nt-agents",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "kv1nt Agents - Control local AI agents from your browser.",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"agents",
|
|
8
|
+
"kv1nt",
|
|
9
|
+
"opencode",
|
|
10
|
+
"claude",
|
|
11
|
+
"gemini"
|
|
12
|
+
],
|
|
6
13
|
"license": "Apache-2.0",
|
|
7
14
|
"author": {
|
|
8
15
|
"name": "kv1nt",
|