@synkro-sh/cli 1.6.7 → 1.6.8
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/bootstrap.js +6 -2
- package/dist/bootstrap.js.map +1 -1
- package/package.json +1 -1
package/dist/bootstrap.js
CHANGED
|
@@ -3162,6 +3162,8 @@ async function main() {
|
|
|
3162
3162
|
command: command.slice(0, 200),
|
|
3163
3163
|
session_id: sessionId,
|
|
3164
3164
|
repo: cwd,
|
|
3165
|
+
cc_model: transcript.ccModel,
|
|
3166
|
+
reasoning: 'Safe in-repo read — auto-allowed without an LLM grade.',
|
|
3165
3167
|
});
|
|
3166
3168
|
outputJson({
|
|
3167
3169
|
systemMessage: tagStr + ' bashGuard → pass: safe in-repo read',
|
|
@@ -4294,6 +4296,8 @@ async function main() {
|
|
|
4294
4296
|
capture_type: 'local_verdict', verdict: 'pass', hook_type: 'bash',
|
|
4295
4297
|
category: 'safe_read', tool_name: toolName, command: command.slice(0, 200),
|
|
4296
4298
|
session_id: sessionId, repo: cwd,
|
|
4299
|
+
cc_model: model,
|
|
4300
|
+
reasoning: 'Safe in-repo read \u2014 auto-allowed without an LLM grade.',
|
|
4297
4301
|
});
|
|
4298
4302
|
finishAllow();
|
|
4299
4303
|
}
|
|
@@ -6446,7 +6450,7 @@ function writeConfigEnv(opts) {
|
|
|
6446
6450
|
`SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
|
|
6447
6451
|
`SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
|
|
6448
6452
|
`SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
|
|
6449
|
-
`SYNKRO_VERSION=${shellQuoteSingle("1.6.
|
|
6453
|
+
`SYNKRO_VERSION=${shellQuoteSingle("1.6.8")}`
|
|
6450
6454
|
];
|
|
6451
6455
|
if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
|
|
6452
6456
|
if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
|
|
@@ -7976,7 +7980,7 @@ var args = process.argv.slice(2);
|
|
|
7976
7980
|
var cmd = args[0] || "";
|
|
7977
7981
|
var subArgs = args.slice(1);
|
|
7978
7982
|
function printVersion() {
|
|
7979
|
-
console.log("1.6.
|
|
7983
|
+
console.log("1.6.8");
|
|
7980
7984
|
}
|
|
7981
7985
|
function printHelp() {
|
|
7982
7986
|
console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
|