@ramarivera/coding-agent-langfuse 0.1.50 → 0.1.51
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 +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,8 +54,8 @@ real network cause, and preserves local state so reruns resume cleanly.
|
|
|
54
54
|
## Project tags and metadata
|
|
55
55
|
|
|
56
56
|
Backfills and live followers can attach stable Langfuse dimensions based on the
|
|
57
|
-
session cwd. Use this for client/workstream dashboards
|
|
58
|
-
|
|
57
|
+
session cwd. Use this for client/workstream dashboards without guessing from
|
|
58
|
+
host names or Windows paths in the Langfuse UI.
|
|
59
59
|
|
|
60
60
|
There are two config layers:
|
|
61
61
|
|
|
@@ -69,14 +69,14 @@ Global config uses prefix rules:
|
|
|
69
69
|
{
|
|
70
70
|
"rules": [
|
|
71
71
|
{
|
|
72
|
-
"pathPrefix": "/Users/
|
|
73
|
-
"tags": ["
|
|
72
|
+
"pathPrefix": "/Users/example/dev/acme",
|
|
73
|
+
"tags": ["acme", "client:acme"],
|
|
74
74
|
"metadata": {
|
|
75
|
-
"project_group": "
|
|
76
|
-
"project_owner": "
|
|
75
|
+
"project_group": "acme",
|
|
76
|
+
"project_owner": "platform-team"
|
|
77
77
|
},
|
|
78
|
-
"projectName": "
|
|
79
|
-
"projectFolder": "
|
|
78
|
+
"projectName": "acme",
|
|
79
|
+
"projectFolder": "acme"
|
|
80
80
|
}
|
|
81
81
|
]
|
|
82
82
|
}
|
|
@@ -93,7 +93,7 @@ repos add repo-specific fields:
|
|
|
93
93
|
"metadata": {
|
|
94
94
|
"service": "portal"
|
|
95
95
|
},
|
|
96
|
-
"projectName": "
|
|
96
|
+
"projectName": "acme-portal"
|
|
97
97
|
}
|
|
98
98
|
```
|
|
99
99
|
|