@ramarivera/coding-agent-langfuse 0.1.35 → 0.1.36
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/README.md +3 -3
- package/dist/service.js +1 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,9 +79,9 @@ service binary; raw `sc.exe` is not a good fit for a transient npm command.
|
|
|
79
79
|
|
|
80
80
|
The generated services are package-manager agnostic. By default the installer
|
|
81
81
|
uses `npx` through the service `PATH` (`/usr/bin/env npx` on macOS and Linux)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
82
|
+
with a conservative cross-platform PATH. Use `--npx-path` and `--path` when a
|
|
83
|
+
host keeps Node.js somewhere outside the normal npm/Homebrew/system locations,
|
|
84
|
+
including nvm, fnm, Volta, asdf, mise, or another shell manager.
|
|
85
85
|
|
|
86
86
|
## Backfill windows
|
|
87
87
|
|
package/dist/service.js
CHANGED
|
@@ -20,7 +20,7 @@ Service options:
|
|
|
20
20
|
--state PATH Dedupe state file
|
|
21
21
|
--home PATH Home directory to scan (default: current user home)
|
|
22
22
|
--package-spec SPEC npx package spec (default: ${defaultPackageSpec})
|
|
23
|
-
--npx-path PATH npx executable path for host services (default:
|
|
23
|
+
--npx-path PATH npx executable path for host services (default: npx/npx.cmd)
|
|
24
24
|
--batch-size N OTLP spans per POST (default: 10)
|
|
25
25
|
--poll-interval-ms N Delay between --follow scans (default: 5000)
|
|
26
26
|
--post-delay-ms N Delay after each successful OTLP POST (default: 0)
|
|
@@ -384,8 +384,6 @@ function defaultServiceName(agents, platform) {
|
|
|
384
384
|
: `coding-agent-langfuse-${suffix}`;
|
|
385
385
|
}
|
|
386
386
|
function defaultPathEnv(homeDir, platform) {
|
|
387
|
-
if (process.env.PATH)
|
|
388
|
-
return process.env.PATH;
|
|
389
387
|
if (platform === "win32") {
|
|
390
388
|
return [
|
|
391
389
|
"%APPDATA%\\npm",
|