@h-rig/cli 0.0.6-alpha.43 → 0.0.6-alpha.44
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/bin/rig.js +2 -1
- package/dist/src/commands/_operator-view.js +2 -1
- package/dist/src/commands/_pi-frontend.js +2 -1
- package/dist/src/commands/run.js +2 -1
- package/dist/src/commands/task.js +2 -1
- package/dist/src/commands.js +2 -1
- package/dist/src/index.js +2 -1
- package/package.json +6 -6
package/dist/bin/rig.js
CHANGED
|
@@ -8084,7 +8084,8 @@ async function attachRunBundledPiFrontend(context, input) {
|
|
|
8084
8084
|
const tempSessionDir = mkdtempSync(join2(tmpdir(), "rig-pi-frontend-sessions-"));
|
|
8085
8085
|
const restoreEnv = setTemporaryEnv({
|
|
8086
8086
|
PI_CODING_AGENT_SESSION_DIR: tempSessionDir,
|
|
8087
|
-
PI_SKIP_VERSION_CHECK: "1"
|
|
8087
|
+
PI_SKIP_VERSION_CHECK: "1",
|
|
8088
|
+
PI_HIDDEN_COMMANDS: "import,fork,clone,tree,new,resume,trust"
|
|
8088
8089
|
});
|
|
8089
8090
|
const controller = new RigRemoteSessionController({ context, runId: input.runId });
|
|
8090
8091
|
const createRemoteRuntime = async ({ cwd, agentDir, sessionManager, sessionStartEvent }) => {
|
|
@@ -1183,7 +1183,8 @@ async function attachRunBundledPiFrontend(context, input) {
|
|
|
1183
1183
|
const tempSessionDir = mkdtempSync(join(tmpdir(), "rig-pi-frontend-sessions-"));
|
|
1184
1184
|
const restoreEnv = setTemporaryEnv({
|
|
1185
1185
|
PI_CODING_AGENT_SESSION_DIR: tempSessionDir,
|
|
1186
|
-
PI_SKIP_VERSION_CHECK: "1"
|
|
1186
|
+
PI_SKIP_VERSION_CHECK: "1",
|
|
1187
|
+
PI_HIDDEN_COMMANDS: "import,fork,clone,tree,new,resume,trust"
|
|
1187
1188
|
});
|
|
1188
1189
|
const controller = new RigRemoteSessionController({ context, runId: input.runId });
|
|
1189
1190
|
const createRemoteRuntime = async ({ cwd, agentDir, sessionManager, sessionStartEvent }) => {
|
|
@@ -957,7 +957,8 @@ async function attachRunBundledPiFrontend(context, input) {
|
|
|
957
957
|
const tempSessionDir = mkdtempSync(join(tmpdir(), "rig-pi-frontend-sessions-"));
|
|
958
958
|
const restoreEnv = setTemporaryEnv({
|
|
959
959
|
PI_CODING_AGENT_SESSION_DIR: tempSessionDir,
|
|
960
|
-
PI_SKIP_VERSION_CHECK: "1"
|
|
960
|
+
PI_SKIP_VERSION_CHECK: "1",
|
|
961
|
+
PI_HIDDEN_COMMANDS: "import,fork,clone,tree,new,resume,trust"
|
|
961
962
|
});
|
|
962
963
|
const controller = new RigRemoteSessionController({ context, runId: input.runId });
|
|
963
964
|
const createRemoteRuntime = async ({ cwd, agentDir, sessionManager, sessionStartEvent }) => {
|
package/dist/src/commands/run.js
CHANGED
|
@@ -1261,7 +1261,8 @@ async function attachRunBundledPiFrontend(context, input) {
|
|
|
1261
1261
|
const tempSessionDir = mkdtempSync(join(tmpdir(), "rig-pi-frontend-sessions-"));
|
|
1262
1262
|
const restoreEnv = setTemporaryEnv({
|
|
1263
1263
|
PI_CODING_AGENT_SESSION_DIR: tempSessionDir,
|
|
1264
|
-
PI_SKIP_VERSION_CHECK: "1"
|
|
1264
|
+
PI_SKIP_VERSION_CHECK: "1",
|
|
1265
|
+
PI_HIDDEN_COMMANDS: "import,fork,clone,tree,new,resume,trust"
|
|
1265
1266
|
});
|
|
1266
1267
|
const controller = new RigRemoteSessionController({ context, runId: input.runId });
|
|
1267
1268
|
const createRemoteRuntime = async ({ cwd, agentDir, sessionManager, sessionStartEvent }) => {
|
|
@@ -1664,7 +1664,8 @@ async function attachRunBundledPiFrontend(context, input) {
|
|
|
1664
1664
|
const tempSessionDir = mkdtempSync(join(tmpdir(), "rig-pi-frontend-sessions-"));
|
|
1665
1665
|
const restoreEnv = setTemporaryEnv({
|
|
1666
1666
|
PI_CODING_AGENT_SESSION_DIR: tempSessionDir,
|
|
1667
|
-
PI_SKIP_VERSION_CHECK: "1"
|
|
1667
|
+
PI_SKIP_VERSION_CHECK: "1",
|
|
1668
|
+
PI_HIDDEN_COMMANDS: "import,fork,clone,tree,new,resume,trust"
|
|
1668
1669
|
});
|
|
1669
1670
|
const controller = new RigRemoteSessionController({ context, runId: input.runId });
|
|
1670
1671
|
const createRemoteRuntime = async ({ cwd, agentDir, sessionManager, sessionStartEvent }) => {
|
package/dist/src/commands.js
CHANGED
|
@@ -7890,7 +7890,8 @@ async function attachRunBundledPiFrontend(context, input) {
|
|
|
7890
7890
|
const tempSessionDir = mkdtempSync(join2(tmpdir(), "rig-pi-frontend-sessions-"));
|
|
7891
7891
|
const restoreEnv = setTemporaryEnv({
|
|
7892
7892
|
PI_CODING_AGENT_SESSION_DIR: tempSessionDir,
|
|
7893
|
-
PI_SKIP_VERSION_CHECK: "1"
|
|
7893
|
+
PI_SKIP_VERSION_CHECK: "1",
|
|
7894
|
+
PI_HIDDEN_COMMANDS: "import,fork,clone,tree,new,resume,trust"
|
|
7894
7895
|
});
|
|
7895
7896
|
const controller = new RigRemoteSessionController({ context, runId: input.runId });
|
|
7896
7897
|
const createRemoteRuntime = async ({ cwd, agentDir, sessionManager, sessionStartEvent }) => {
|
package/dist/src/index.js
CHANGED
|
@@ -8080,7 +8080,8 @@ async function attachRunBundledPiFrontend(context, input) {
|
|
|
8080
8080
|
const tempSessionDir = mkdtempSync(join2(tmpdir(), "rig-pi-frontend-sessions-"));
|
|
8081
8081
|
const restoreEnv = setTemporaryEnv({
|
|
8082
8082
|
PI_CODING_AGENT_SESSION_DIR: tempSessionDir,
|
|
8083
|
-
PI_SKIP_VERSION_CHECK: "1"
|
|
8083
|
+
PI_SKIP_VERSION_CHECK: "1",
|
|
8084
|
+
PI_HIDDEN_COMMANDS: "import,fork,clone,tree,new,resume,trust"
|
|
8084
8085
|
});
|
|
8085
8086
|
const controller = new RigRemoteSessionController({ context, runId: input.runId });
|
|
8086
8087
|
const createRemoteRuntime = async ({ cwd, agentDir, sessionManager, sessionStartEvent }) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/cli",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.44",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Rig package",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@clack/prompts": "^1.2.0",
|
|
26
|
-
"@earendil-works/pi-coding-agent": "npm:@h-rig/pi-coding-agent@0.0.6-alpha.
|
|
27
|
-
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.
|
|
28
|
-
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.
|
|
29
|
-
"@rig/client": "npm:@h-rig/client@0.0.6-alpha.
|
|
30
|
-
"@rig/server": "npm:@h-rig/server@0.0.6-alpha.
|
|
26
|
+
"@earendil-works/pi-coding-agent": "npm:@h-rig/pi-coding-agent@0.0.6-alpha.44",
|
|
27
|
+
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.44",
|
|
28
|
+
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.44",
|
|
29
|
+
"@rig/client": "npm:@h-rig/client@0.0.6-alpha.44",
|
|
30
|
+
"@rig/server": "npm:@h-rig/server@0.0.6-alpha.44",
|
|
31
31
|
"picocolors": "^1.1.1"
|
|
32
32
|
}
|
|
33
33
|
}
|