log-llm-config-staging 1.3.73 → 1.3.74
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.
|
@@ -92,6 +92,19 @@ function autofixDialogLine(v) {
|
|
|
92
92
|
const short = d.length > 160 ? `${d.slice(0, 157)}…` : d;
|
|
93
93
|
return `• [${v.finding_formatted_id}] ${short}`;
|
|
94
94
|
}
|
|
95
|
+
/** Cursor restart dialog after enforced/preventive remediation is applied locally. */
|
|
96
|
+
export function formatCursorRestartAutofixDialog(appliedViolations) {
|
|
97
|
+
const policyNames = [
|
|
98
|
+
...new Set(appliedViolations
|
|
99
|
+
.map((v) => v.policy_name?.trim() || v.finding_title?.trim() || '')
|
|
100
|
+
.filter(Boolean)),
|
|
101
|
+
];
|
|
102
|
+
const policyLabel = policyNames.length > 0 ? policyNames.join('\n\n') : 'Agent security policy';
|
|
103
|
+
return ('Optimus Labs enforced a preventive agent security policy as determined by your security team:\n\n' +
|
|
104
|
+
`${policyLabel}\n\n` +
|
|
105
|
+
'Cursor will now restart to apply this policy, and your context will be retained.\n\n' +
|
|
106
|
+
'Click OK to continue');
|
|
107
|
+
}
|
|
95
108
|
/**
|
|
96
109
|
* Upload a secondary compliance file to the backend so the server can resolve the finding.
|
|
97
110
|
* Fire-and-forget: upload runs in background; any failure is logged but does not block the gate.
|
|
@@ -209,9 +222,11 @@ export async function runCompliancePromptGate() {
|
|
|
209
222
|
}
|
|
210
223
|
if (deferredSqlitePending || recheckOk || claudeRecheckStaleAfterImmediateApply) {
|
|
211
224
|
const violationLabel = fixed === 1 ? 'policy violation' : 'policy violations';
|
|
212
|
-
const autofixMessage =
|
|
213
|
-
|
|
214
|
-
|
|
225
|
+
const autofixMessage = ide === 'cursor' && restartCommands.length > 0
|
|
226
|
+
? formatCursorRestartAutofixDialog(appliedViolations)
|
|
227
|
+
: `Optimus Labs auto-fixed ${fixed} ${violationLabel}:\n\n${appliedViolations
|
|
228
|
+
.map((v) => autofixDialogLine(v))
|
|
229
|
+
.join('\n')}`;
|
|
215
230
|
const payload = { __optimus_autofix: true, autofix_message: autofixMessage };
|
|
216
231
|
if (restartCommands.length > 0)
|
|
217
232
|
payload.restart_commands = restartCommands;
|
|
@@ -325,6 +325,7 @@ export function runLocalRemediationComplianceCheck(agent = 'cursor') {
|
|
|
325
325
|
description: check.description,
|
|
326
326
|
finding_title: entry.finding_title,
|
|
327
327
|
finding_description: entry.finding_description,
|
|
328
|
+
policy_name: entry.policy_name,
|
|
328
329
|
severity: compliance.severity,
|
|
329
330
|
autofix_allowed: compliance.autofix_allowed,
|
|
330
331
|
config_file_path: entry.config_file_path,
|
|
@@ -347,6 +348,7 @@ export function runLocalRemediationComplianceCheck(agent = 'cursor') {
|
|
|
347
348
|
description: check.description,
|
|
348
349
|
finding_title: entry.finding_title,
|
|
349
350
|
finding_description: entry.finding_description,
|
|
351
|
+
policy_name: entry.policy_name,
|
|
350
352
|
severity: compliance.severity,
|
|
351
353
|
autofix_allowed: compliance.autofix_allowed,
|
|
352
354
|
config_file_path: entry.config_file_path,
|
|
@@ -371,6 +373,7 @@ export function runLocalRemediationComplianceCheck(agent = 'cursor') {
|
|
|
371
373
|
description: check.description,
|
|
372
374
|
finding_title: entry.finding_title,
|
|
373
375
|
finding_description: entry.finding_description,
|
|
376
|
+
policy_name: entry.policy_name,
|
|
374
377
|
severity: compliance.severity,
|
|
375
378
|
autofix_allowed: compliance.autofix_allowed,
|
|
376
379
|
config_file_path: entry.config_file_path,
|
|
@@ -51,7 +51,7 @@ const getMetadata = () => ({
|
|
|
51
51
|
github_username: process.env.GITHUB_USER || process.env.GH_USER || '',
|
|
52
52
|
org_identifier: process.env.GITHUB_ORG || '',
|
|
53
53
|
organization_uuid: readOrganizationUuid(),
|
|
54
|
-
repo_identifier: process.env.OPTIMUS_WORKSPACE_REPO || '',
|
|
54
|
+
repo_identifier: process.env.OPTIMUS_WORKSPACE_REPO || process.env.GITHUB_REPOSITORY || '',
|
|
55
55
|
branch: process.env.GITHUB_REF_NAME || process.env.BRANCH_NAME || '',
|
|
56
56
|
commit_sha: process.env.GITHUB_SHA || '',
|
|
57
57
|
agent_name: process.env.OPTIMUS_AGENT || '',
|