@boxes-dev/dvb-runtime 1.0.189 → 1.0.190

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.
@@ -9,14 +9,18 @@ Note: this inventory is used to bundle/copy required local-dev files to the remo
9
9
  Important: you must base your response on actual evidence from this machine. Do not guess.
10
10
  You must run shell commands to scan the repo and environment before returning the final JSON.
11
11
  Do not scan devbox-generated state directories.
12
+ Never enumerate dependency, cache, or build-output trees. Always exclude or prune at least `node_modules`, `.git`, `.devbox`, `dist`, `build`, `.next`, `.turbo`, `.vite`, and `coverage`.
13
+ Never use shell globstar patterns such as `**/*.md` or `**/package.json`; in zsh they can expand into `node_modules`. Prefer `find ... -prune` or `rg --glob '!node_modules/**'`.
14
+ Do not run `git ls-files --others --ignored --exclude-standard`; it can dump huge ignored dependency trees. Prefer `git status --porcelain=v1 --ignored --untracked-files=normal`.
12
15
  Before returning JSON, verify every `path` you include currently exists on disk.
13
16
  Do not include any missing/nonexistent paths in `envFiles` or `secretFiles`.
14
17
 
15
18
  Minimum evidence to gather (run these, plus anything else you need):
16
19
 
17
20
  - `ls -la`
21
+ - `cat .gitignore 2>/dev/null || true`
18
22
  - `find . -maxdepth 4 -type f -name '.env*' -not -path './node_modules/*' -not -path './.git/*' -not -path './.devbox/*'`
19
- - `git status --porcelain=v1 --ignored`
23
+ - `git status --porcelain=v1 --ignored --untracked-files=normal`
20
24
  - `cat package.json`
21
25
  - `rg -n \"VITE_|CONVEX_|dotenv\" package.json vite.config.ts src convex 2>/dev/null || true`
22
26
 
@@ -10,6 +10,9 @@ Important: you must base your response on actual evidence from this machine. Do
10
10
  You must run shell commands to scan the repo and environment before returning the final JSON.
11
11
  Do not deeply / recursively scan the home directory; it's ok to list files, but keep your exploration tight: prefer checking specific, high-signal locations you can justify (like `~/.npmrc`).
12
12
  Do not scan devbox-generated state directories.
13
+ Never enumerate dependency, cache, or build-output trees. Always exclude or prune at least `node_modules`, `.git`, `.devbox`, `dist`, `build`, `.next`, `.turbo`, `.vite`, and `coverage`.
14
+ Never use shell globstar patterns such as `**/*.md` or `**/package.json`; in zsh they can expand into `node_modules`. Prefer `find ... -prune` or `rg --glob '!node_modules/**'`.
15
+ Keep command output tight. Prefer listing candidate files first, then reading only the small set of relevant files.
13
16
  Before returning JSON, verify every `path` in `externalConfigs` currently exists on disk.
14
17
  Do not include any missing/nonexistent paths.
15
18
 
@@ -17,8 +20,9 @@ Minimum evidence to gather (run these, plus anything else you need):
17
20
 
18
21
  - `ls -la`
19
22
  - `cat package.json`
23
+ - `find . -maxdepth 4 -type f \\( -name 'README*' -o -path './docs/*' -o -path './.github/*' -o -path './scripts/*' -o -name 'package.json' \\) -not -path './node_modules/*' -not -path './.git/*' -not -path './.devbox/*' | sort | head -n 200`
20
24
  - `command -v just >/dev/null && just --list || true`
21
- - `rg -n \"\\b(just|make|task|npm|pnpm|yarn|bun|docker|wrangler|fly|convex|codex|sprite)\\b\" README* docs .github scripts package.json **/package.json 2>/dev/null || true`
25
+ - `command -v rg >/dev/null && rg -n --glob '!node_modules/**' --glob '!.git/**' --glob '!.devbox/**' --glob '!dist/**' --glob '!build/**' --glob '*.md' --glob 'package.json' \"\\b(just|make|task|npm|pnpm|yarn|bun|docker|wrangler|fly|convex|codex|sprite)\\b\" . 2>/dev/null || true`
22
26
  - `command -v node >/dev/null && node --version || true`
23
27
  - `command -v npm >/dev/null && npm --version || true`
24
28
 
@@ -7,14 +7,18 @@ Be sure to only include items that are required for operation of the development
7
7
  Important: you must base your response on actual evidence from this machine. Do not guess.
8
8
  You must run shell commands to scan the repo before returning the final JSON.
9
9
  Do not scan devbox-generated state directories.
10
+ Never enumerate dependency, cache, or build-output trees. Always exclude or prune at least `node_modules`, `.git`, `.devbox`, `dist`, `build`, `.next`, `.turbo`, `.vite`, and `coverage`.
11
+ Never use shell globstar patterns such as `**/*.md` or `**/package.json`; in zsh they can expand into `node_modules`. Prefer `find ... -prune` or `rg --glob '!node_modules/**'`.
12
+ Keep command output tight. Prefer candidate-file lists over recursive dumps.
10
13
  Before returning JSON, verify every `path` in `extraArtifacts` currently exists on disk.
11
14
  Do not include any missing/nonexistent paths.
12
15
 
13
16
  Minimum evidence to gather (run these, plus anything else you need):
14
17
 
15
18
  - `ls -la`
16
- - `git status --porcelain=v1 --ignored`
17
- - `rg -n \"\\b(artifact|cert|key|token|config|credential|cache)\\b\" README* docs .github scripts package.json **/*.md 2>/dev/null || true`
19
+ - `git status --porcelain=v1 --ignored --untracked-files=normal`
20
+ - `find . -maxdepth 4 -type f \\( -name 'README*' -o -path './docs/*' -o -path './.github/*' -o -path './scripts/*' -o -name 'package.json' \\) -not -path './node_modules/*' -not -path './.git/*' -not -path './.devbox/*' | sort | head -n 200`
21
+ - `command -v rg >/dev/null && rg -n --glob '!node_modules/**' --glob '!.git/**' --glob '!.devbox/**' --glob '!dist/**' --glob '!build/**' --glob '*.md' --glob 'package.json' \"\\b(artifact|cert|key|token|config|credential|cache)\\b\" . 2>/dev/null || true`
18
22
 
19
23
  Return JSON with this shape:
20
24
 
@@ -12,6 +12,9 @@ Important requirements (read carefully):
12
12
  - You MUST run shell commands to scan the repo before returning the final JSON.
13
13
  - Only include commands that are required or explicitly documented in this repo (README/docs, task runners, scripts, config files). Treat `package.json` scripts, `Justfile` recipes, `Makefile` targets, and compose files as explicit documentation.
14
14
  - Avoid broad recursive scans of huge directories.
15
+ - Never enumerate dependency, cache, or build-output trees. Always exclude or prune at least `node_modules`, `.git`, `.devbox`, `dist`, `build`, `.next`, `.turbo`, `.vite`, and `coverage`.
16
+ - Never use shell globstar patterns such as `**/*.md` or `**/package.json`; in zsh they can expand into `node_modules`. Prefer `find ... -prune` or `rg --glob '!node_modules/**'`.
17
+ - Keep command output tight. Prefer listing candidate files first, then reading only the files that look relevant.
15
18
  - Do not scan devbox-generated state directories. Ignore devbox.toml.
16
19
  - If you return empty arrays, it must be because you performed the evidence-gathering steps below and found no documented entrypoints/services.
17
20
 
@@ -25,8 +28,8 @@ Minimum evidence to gather (run these, plus anything else you need):
25
28
  - `ls -la`
26
29
  - `find . -maxdepth 4 -type f \\( -name 'README*' -o -name 'CONTRIBUTING*' -o -name 'Justfile' -o -name 'Makefile' -o -name 'Taskfile.yml' -o -name 'taskfile.yml' -o -name 'package.json' -o -name 'pnpm-workspace.yaml' -o -name 'lerna.json' -o -name 'turbo.json' -o -name 'nx.json' -o -name 'Dockerfile*' -o -name 'docker-compose*.yml' -o -name 'docker-compose*.yaml' -o -name 'compose*.yml' -o -name 'compose*.yaml' -o -name 'Procfile*' -o -name 'devcontainer.json' -o -name 'wrangler.toml' -o -name 'fly.toml' -o -name 'firebase.json' -o -name 'vercel.json' -o -name 'netlify.toml' -o -name 'supabase/config.toml' -o -name 'cargo.toml' -o -name 'go.mod' -o -name 'pyproject.toml' -o -name 'requirements*.txt' -o -name 'Pipfile' -o -name 'Gemfile' -o -name 'mix.exs' -o -name '*.csproj' -o -name '*.sln' \\) -not -path './node_modules/*' -not -path './.git/*' -not -path './.devbox/*'`
27
30
  - `find . -maxdepth 4 -type f \\( -path './docs/*' -o -path './.github/*' -o -path './scripts/*' -o -path './bin/*' -o -path './docker/*' -o -path './dev/*' -o -path './infra/*' \\) -not -path './node_modules/*' -not -path './.git/*' -not -path './.devbox/*' | head -n 200`
28
- - `command -v rg >/dev/null && rg -n \"(^|\\\\b)(just|make|task|npm|pnpm|yarn|bun|docker compose|docker-compose|foreman|honcho|overmind|tilt|skaffold)\\\\b\" README* docs .github scripts bin package.json **/package.json **/*.md 2>/dev/null || true`
29
- - `command -v rg >/dev/null && rg -n \"\\\\b(dev|start|serve|up|run|watch|worker|daemon|api|web|frontend|backend)\\\\b\" README* docs .github scripts bin package.json **/package.json **/*.md 2>/dev/null || true`
31
+ - `command -v rg >/dev/null && rg -n --glob '!node_modules/**' --glob '!.git/**' --glob '!.devbox/**' --glob '!dist/**' --glob '!build/**' --glob '*.md' --glob 'package.json' \"(^|\\\\b)(just|make|task|npm|pnpm|yarn|bun|docker compose|docker-compose|foreman|honcho|overmind|tilt|skaffold)\\\\b\" . 2>/dev/null || true`
32
+ - `command -v rg >/dev/null && rg -n --glob '!node_modules/**' --glob '!.git/**' --glob '!.devbox/**' --glob '!dist/**' --glob '!build/**' --glob '*.md' --glob 'package.json' \"\\\\b(dev|start|serve|up|run|watch|worker|daemon|api|web|frontend|backend)\\\\b\" . 2>/dev/null || true`
30
33
  - If present, inspect task runners:
31
34
  - `command -v just >/dev/null && just --list`
32
35
  - `test -f Makefile && make -qp | head -n 200` (or at least `rg -n \"^([A-Za-z0-9_.-]+):\" Makefile`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boxes-dev/dvb-runtime",
3
- "version": "1.0.189",
3
+ "version": "1.0.190",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {
@@ -39,5 +39,5 @@
39
39
  "@boxes-dev/core": "*",
40
40
  "@boxes-dev/daemon": "*"
41
41
  },
42
- "devboxReleasedAt": "2026-03-12T20:03:59Z"
42
+ "devboxReleasedAt": "2026-03-12T21:12:59Z"
43
43
  }