@kilocode/sdk 7.1.9 → 7.1.11
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.js +2 -0
- package/dist/v2/gen/types.gen.d.ts +5 -0
- package/dist/v2/server.js +2 -0
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -43,6 +43,7 @@ export async function createKiloServer(options) {
|
|
|
43
43
|
const proc = spawn(`kilo`, args, {
|
|
44
44
|
// kilocode_change end
|
|
45
45
|
signal: options.signal,
|
|
46
|
+
windowsHide: true,
|
|
46
47
|
env: {
|
|
47
48
|
...process.env,
|
|
48
49
|
KILO_CONFIG_CONTENT: buildConfigEnv(options.config), // kilocode_change
|
|
@@ -118,6 +119,7 @@ export function createKiloTui(options) {
|
|
|
118
119
|
// kilocode_change end
|
|
119
120
|
signal: options?.signal,
|
|
120
121
|
stdio: "inherit",
|
|
122
|
+
windowsHide: true,
|
|
121
123
|
env: {
|
|
122
124
|
...process.env,
|
|
123
125
|
KILO_CONFIG_CONTENT: buildConfigEnv(options?.config), // kilocode_change
|
|
@@ -1152,6 +1152,10 @@ export type Config = {
|
|
|
1152
1152
|
* @deprecated Use 'share' field instead. Share newly created sessions automatically
|
|
1153
1153
|
*/
|
|
1154
1154
|
autoshare?: boolean;
|
|
1155
|
+
/**
|
|
1156
|
+
* Enable remote control of sessions via Kilo Cloud. Equivalent to running /remote on startup.
|
|
1157
|
+
*/
|
|
1158
|
+
remote_control?: boolean;
|
|
1155
1159
|
/**
|
|
1156
1160
|
* Automatically update to the latest version. Set to true to auto-update, false to disable, or 'notify' to show update notifications
|
|
1157
1161
|
*/
|
|
@@ -1647,6 +1651,7 @@ export type Agent = {
|
|
|
1647
1651
|
mode: "subagent" | "primary" | "all";
|
|
1648
1652
|
native?: boolean;
|
|
1649
1653
|
hidden?: boolean;
|
|
1654
|
+
deprecated?: boolean;
|
|
1650
1655
|
topP?: number;
|
|
1651
1656
|
temperature?: number;
|
|
1652
1657
|
color?: string;
|
package/dist/v2/server.js
CHANGED
|
@@ -43,6 +43,7 @@ export async function createKiloServer(options) {
|
|
|
43
43
|
const proc = spawn(`kilo`, args, {
|
|
44
44
|
// kilocode_change end
|
|
45
45
|
signal: options.signal,
|
|
46
|
+
windowsHide: true,
|
|
46
47
|
env: {
|
|
47
48
|
...process.env,
|
|
48
49
|
KILO_CONFIG_CONTENT: buildConfigEnv(options.config), // kilocode_change
|
|
@@ -118,6 +119,7 @@ export function createKiloTui(options) {
|
|
|
118
119
|
// kilocode_change end
|
|
119
120
|
signal: options?.signal,
|
|
120
121
|
stdio: "inherit",
|
|
122
|
+
windowsHide: true,
|
|
121
123
|
env: {
|
|
122
124
|
...process.env,
|
|
123
125
|
KILO_CONFIG_CONTENT: buildConfigEnv(options?.config), // kilocode_change
|