wile 0.4.19 → 0.4.20

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.
@@ -10,6 +10,11 @@ echo "════════════════════════
10
10
  echo " 🌵 WILE - Container Startup"
11
11
  echo "══════════════════════════════════════════════════════"
12
12
 
13
+ if command -v sysctl >/dev/null 2>&1; then
14
+ sysctl -w net.ipv6.conf.all.disable_ipv6=0 >/dev/null 2>&1 || true
15
+ sysctl -w net.ipv6.conf.default.disable_ipv6=0 >/dev/null 2>&1 || true
16
+ fi
17
+
13
18
  if [ "${WILE_TEST:-}" = "true" ]; then
14
19
  TEST_REPO="${WILE_TEST_REPO_PATH:-/home/wile/workspace/repo}"
15
20
 
package/dist/cli.js CHANGED
@@ -7721,18 +7721,18 @@ var runConfig = async () => {
7721
7721
  message: "GitHub repo URL",
7722
7722
  initial: existingEnv.GITHUB_REPO_URL ?? ""
7723
7723
  }) : { repoUrl: undefined };
7724
+ const branchResponse = await prompt({
7725
+ type: "text",
7726
+ name: "branchName",
7727
+ message: "Default GitHub branch name",
7728
+ initial: existingEnv.BRANCH_NAME ?? "main"
7729
+ });
7724
7730
  const envProjectPathResponse = await prompt({
7725
7731
  type: "text",
7726
7732
  name: "envProjectPath",
7727
7733
  message: "Project env file path to forward into the container",
7728
7734
  initial: existingEnv.WILE_ENV_PROJECT_PATH ?? ".wile/.env.project"
7729
7735
  });
7730
- const branchResponse = await prompt({
7731
- type: "text",
7732
- name: "branchName",
7733
- message: "Default branch name",
7734
- initial: existingEnv.BRANCH_NAME ?? "main"
7735
- });
7736
7736
  const iterationsResponse = await prompt({
7737
7737
  type: "number",
7738
7738
  name: "maxIterations",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wile",
3
- "version": "0.4.19",
3
+ "version": "0.4.20",
4
4
  "description": "Autonomous AI coding agent that ships features while you sleep",
5
5
  "type": "module",
6
6
  "bin": {