From ca9e8255161e2f3378b5cafd3ce41dae73924fd7 Mon Sep 17 00:00:00 2001 From: Milana Gurbanova Date: Fri, 28 Aug 2026 12:13:05 +0200 Subject: [PATCH] chore: add npm package manifest for the tracing plugin --- package.json | 3 ++- plugins/tracing/package.json | 37 ++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 plugins/tracing/package.json diff --git a/package.json b/package.json index 2b3bb20..bf99df9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { - "name": "@langfuse/codex-observability-plugin", + "name": "codex-observability-plugin-workspace", "version": "0.1.0", + "private": true, "description": "OpenAI Codex plugin that traces agent turns, tool calls, and subagents to Langfuse", "keywords": [ "codex", diff --git a/plugins/tracing/package.json b/plugins/tracing/package.json new file mode 100644 index 0000000..8a776df --- /dev/null +++ b/plugins/tracing/package.json @@ -0,0 +1,37 @@ +{ + "name": "@langfuse/codex-observability-plugin", + "version": "0.1.0", + "description": "Langfuse observability plugin for the OpenAI Codex coding agent for tracing prompts, agent turns, model generations, and tool calls.", + "license": "MIT", + "author": "Langfuse", + "type": "module", + "repository": { + "type": "git", + "url": "git+https://github.com/langfuse/codex-observability-plugin.git", + "directory": "plugins/tracing" + }, + "bugs": { + "url": "https://github.com/langfuse/codex-observability-plugin/issues" + }, + "homepage": "https://github.com/langfuse/codex-observability-plugin#readme", + "keywords": [ + "codex", + "codex-plugin", + "langfuse", + "openai", + "observability", + "tracing", + "opentelemetry" + ], + "files": [ + ".codex-plugin", + "hooks", + "dist" + ], + "scripts": { + "prepack": "pnpm -w run build" + }, + "engines": { + "node": ">=22" + } +}