@ramarivera/coding-agent-langfuse 0.1.0 → 0.1.3
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 +13 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -10,3 +10,16 @@ estimated cost details. Tool calls remain child spans under the same session.
|
|
|
10
10
|
```sh
|
|
11
11
|
coding-agent-langfuse-backfill --agents codex,claude,grok,pi,opencode
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Use the public Langfuse OTLP hostname for real imports from any host:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
npx @ramarivera/coding-agent-langfuse@latest \
|
|
18
|
+
--agents claude,codex,grok,pi,opencode \
|
|
19
|
+
--endpoint https://langfuse.ai.roxasroot.net/otel/v1/traces \
|
|
20
|
+
--state "$HOME/.local/state/coding-agent-langfuse/backfill-v6.json" \
|
|
21
|
+
--batch-size 1000
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
The importer is fail-fast: the first failed OTLP POST stops the run, prints the
|
|
25
|
+
real network cause, and preserves local state so reruns resume cleanly.
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ramarivera/coding-agent-langfuse",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Universal coding-agent Langfuse backfiller and live OTLP helpers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Ramiro Rivera",
|
|
8
8
|
"bin": {
|
|
9
|
-
"coding-agent-langfuse": "
|
|
10
|
-
"coding-agent-langfuse-backfill": "
|
|
9
|
+
"coding-agent-langfuse": "bin/coding-agent-langfuse.mjs",
|
|
10
|
+
"coding-agent-langfuse-backfill": "bin/coding-agent-langfuse.mjs"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
13
|
".": "./src/index.ts",
|