Cleanup: Runtime artifacts, hard-coded paths, PR 14 bug fixes
This commit is contained in:
parent
98886d1901
commit
1c4b5ab401
27 changed files with 1629 additions and 204 deletions
|
|
@ -338,8 +338,8 @@ When configuring `bd config set mail.delegate "node <path>/bb-mail-shim.mjs"`:
|
|||
|
||||
| Environment | Path format example |
|
||||
|-------------|---------------------|
|
||||
| WSL2 | `node /mnt/c/Users/<you>/codex/beadboard/skills/beadboard-driver/scripts/bb-mail-shim.mjs` |
|
||||
| Windows native | `node C:\Users\<you>\codex\beadboard\skills\beadboard-driver\scripts\bb-mail-shim.mjs` |
|
||||
| WSL2 | `node /home/<you>/<project-path>/skills/beadboard-driver/scripts/bb-mail-shim.mjs` |
|
||||
| Windows native | `node C:\Users\<you>\<project-path>\skills\beadboard-driver\scripts\bb-mail-shim.mjs` |
|
||||
|
||||
### Binary Detection
|
||||
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ function configureMailDelegate(bdPath, shimPath) {
|
|||
|
||||
function validateMemorySystem(bdPath) {
|
||||
try {
|
||||
const result = spawnSync(bdPath, ['query', 'label=mem-canonical,status=closed', '--limit', '5'], {
|
||||
const result = spawnSync(bdPath, ['query', 'label=mem-canonical AND status=closed', '--limit', '5'], {
|
||||
stdio: 'pipe',
|
||||
shell: false,
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
/mnt/c/Users/Zenchant/codex/beadboard/.agents/skills/shadcn-ui/
|
||||
../.agents/skills/shadcn-ui/
|
||||
Loading…
Add table
Add a link
Reference in a new issue