@parall/codex-agent 1.55.0 → 1.55.1
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/workspace.js +2 -2
- package/package.json +4 -4
- package/src/workspace.ts +2 -2
package/dist/workspace.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as fs from 'node:fs';
|
|
2
2
|
import * as path from 'node:path';
|
|
3
|
-
import {
|
|
3
|
+
import { buildCodexPlatformInstructions, writeSkillFiles } from '@parall/agent-core';
|
|
4
4
|
import { runLegacyWorkspaceConfigMigration } from './legacy-workspace-config-migration.js';
|
|
5
5
|
/**
|
|
6
6
|
* Config-lock timings, exported for tests.
|
|
@@ -556,7 +556,7 @@ function systemPromptCopyPath(workspaceDir) {
|
|
|
556
556
|
// failure must fail startup loudly; the refresh hot path wraps this in
|
|
557
557
|
// try/catch and retries next refresh.
|
|
558
558
|
export function writeCodexSystemPrompt(workspaceDir, agentIdentity, capabilityFragments) {
|
|
559
|
-
const systemPrompt =
|
|
559
|
+
const systemPrompt = buildCodexPlatformInstructions(workspaceDir, agentIdentity, capabilityFragments);
|
|
560
560
|
// Reference copy the agent can read as a file. The prompt itself is
|
|
561
561
|
// delivered per-thread via the app-server `developerInstructions` param —
|
|
562
562
|
// deliberately NOT via workspace `.codex/config.toml`, which codex only
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parall/codex-agent",
|
|
3
|
-
"version": "1.55.
|
|
3
|
+
"version": "1.55.1",
|
|
4
4
|
"description": "Codex CLI bridge runtime for self-hosted Parall agents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"src"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@parall/
|
|
29
|
-
"@parall/
|
|
30
|
-
"@parall/
|
|
28
|
+
"@parall/cli": "1.55.1",
|
|
29
|
+
"@parall/sdk": "1.55.1",
|
|
30
|
+
"@parall/agent-core": "1.55.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^22.0.0",
|
package/src/workspace.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as fs from 'node:fs';
|
|
2
2
|
import * as path from 'node:path';
|
|
3
3
|
import type { AgentIdentity } from '@parall/agent-core';
|
|
4
|
-
import {
|
|
4
|
+
import { buildCodexPlatformInstructions, writeSkillFiles } from '@parall/agent-core';
|
|
5
5
|
import type { AuthorshipProof } from './legacy-workspace-config-migration.js';
|
|
6
6
|
import { runLegacyWorkspaceConfigMigration } from './legacy-workspace-config-migration.js';
|
|
7
7
|
|
|
@@ -569,7 +569,7 @@ export function writeCodexSystemPrompt(
|
|
|
569
569
|
agentIdentity?: AgentIdentity,
|
|
570
570
|
capabilityFragments?: string[],
|
|
571
571
|
): string {
|
|
572
|
-
const systemPrompt =
|
|
572
|
+
const systemPrompt = buildCodexPlatformInstructions(
|
|
573
573
|
workspaceDir,
|
|
574
574
|
agentIdentity,
|
|
575
575
|
capabilityFragments,
|