Skip to content

Commit 0db341b

Browse files
committed
fix: address PR review feedback from CodeRabbit and Claude
- Fix README formatting regressions (backtick-wrapped </br>, missing spaces) - Add timeout=15 to _is_probe_installed() subprocess call - Remove stale 'build semantic search index' text from SyncSection
1 parent c04057e commit 0db341b

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### Claude Code is powerful. Pilot Shell makes it reliable.
88

9-
Start a task, grab a coffee, come back to production-grade code.`</br>`
9+
Start a task, grab a coffee, come back to production-grade code.</br>
1010
**Tests enforced. Context preserved. Quality automated.**
1111

1212
[![Stars](https://img.shields.io/github/stars/maxritter/pilot-shell?style=flat&color=F59E0B)](https://github.com/maxritter/pilot-shell/stargazers)
@@ -382,7 +382,7 @@ The `pilot` binary (`~/.pilot/bin/pilot`) manages sessions, worktrees, licensing
382382
| Command | Purpose |
383383
| --------------------------------------- | -------------------------------------------------------------------------- |
384384
| `pilot` | Start Claude with Pilot Shell enhancements, auto-update, and license check |
385-
| `pilot run [args...]` | Same as above, with optional flags (e.g.,`--skip-update-check`) |
385+
| `pilot run [args...]` | Same as above, with optional flags (e.g., `--skip-update-check`) |
386386
| `pilot check-context --json` | Get current context usage percentage |
387387
| `pilot register-plan <path> <status>` | Associate a plan file with the current session |
388388
| `pilot sessions [--json]` | Show count of active Pilot Shell sessions |
@@ -437,7 +437,7 @@ Pilot Shell is source-available under a commercial license. See the [LICENSE](LI
437437

438438
| Tier | Seats | Includes |
439439
| :------------- | :---- | :-------------------------------------------------------------------------------- |
440-
| **Solo** | 1 | All features, continuous updates, community support via[GitHub Issues][gh-issues] |
440+
| **Solo** | 1 | All features, continuous updates, community support via [GitHub Issues][gh-issues] |
441441
| **Team** | Multi | Solo + team asset sharing, seat management, priority support |
442442

443443
All plans work across multiple personal machines and Dev Containers — one subscription, all your devices.

installer/steps/dependencies.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ def _is_probe_installed() -> bool:
112112
["npm", "list", "-g", "@probelabs/probe", "--depth=0"],
113113
capture_output=True,
114114
text=True,
115+
timeout=15,
115116
)
116117
return result.returncode == 0 and "@probelabs/probe" in result.stdout
117118
except Exception:

0 commit comments

Comments
 (0)