@longtable/provider-codex 0.1.19 → 0.1.21

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/dist/config.js CHANGED
@@ -8,8 +8,8 @@ export function createCodexConfigFragment(setup, setupPath) {
8
8
  defaultInteractionMode: bridge.defaultInteractionMode,
9
9
  profileSummary: {
10
10
  field: bridge.profile.field ?? "unspecified",
11
- careerStage: bridge.profile.careerStage,
12
- experienceLevel: bridge.profile.experienceLevel,
11
+ careerStage: bridge.profile.careerStage ?? "unspecified",
12
+ experienceLevel: bridge.profile.experienceLevel ?? "advanced",
13
13
  currentProjectType: bridge.profile.currentProjectType
14
14
  },
15
15
  runtimeGuidance: bridge.runtimeDefaults
package/dist/index.js CHANGED
@@ -22,9 +22,9 @@ export function getCodexProviderCapabilities() {
22
22
  export function normalizeResearcherProfile(profile) {
23
23
  return {
24
24
  field: profile.field ?? "unspecified",
25
- careerStage: profile.careerStage,
26
- experienceLevel: profile.experienceLevel,
27
- preferredCheckpointIntensity: profile.preferredCheckpointIntensity,
25
+ careerStage: profile.careerStage ?? "unspecified",
26
+ experienceLevel: profile.experienceLevel ?? "advanced",
27
+ preferredCheckpointIntensity: profile.preferredCheckpointIntensity ?? "balanced",
28
28
  currentProjectType: profile.currentProjectType ?? "unspecified research task",
29
29
  ...(profile.humanAuthorshipSignal ? { humanAuthorshipSignal: profile.humanAuthorshipSignal } : {}),
30
30
  ...(profile.aiAutonomyPreference ? { aiAutonomyPreference: profile.aiAutonomyPreference } : {})
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/provider-codex",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "private": false,
5
5
  "description": "Codex adapter surface for LongTable",
6
6
  "type": "module",
@@ -15,9 +15,9 @@
15
15
  "typecheck": "tsc -p tsconfig.json --noEmit"
16
16
  },
17
17
  "dependencies": {
18
- "@longtable/checkpoints": "0.1.19",
19
- "@longtable/core": "0.1.19",
20
- "@longtable/setup": "0.1.19"
18
+ "@longtable/checkpoints": "0.1.21",
19
+ "@longtable/core": "0.1.21",
20
+ "@longtable/setup": "0.1.21"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^22.10.1",