@protolabsai/proto 0.48.0 → 0.48.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.
Files changed (2) hide show
  1. package/cli.js +11 -5
  2. package/package.json +2 -2
package/cli.js CHANGED
@@ -168676,7 +168676,7 @@ __export(geminiContentGenerator_exports, {
168676
168676
  createGeminiContentGenerator: () => createGeminiContentGenerator
168677
168677
  });
168678
168678
  function createGeminiContentGenerator(config2, gcConfig) {
168679
- const version2 = "0.48.0";
168679
+ const version2 = "0.48.1";
168680
168680
  const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
168681
168681
  const baseHeaders = {
168682
168682
  "User-Agent": userAgent2
@@ -416526,7 +416526,7 @@ __name(getPackageJson, "getPackageJson");
416526
416526
  // packages/cli/src/utils/version.ts
416527
416527
  async function getCliVersion() {
416528
416528
  const pkgJson = await getPackageJson();
416529
- return "0.48.0";
416529
+ return "0.48.1";
416530
416530
  }
416531
416531
  __name(getCliVersion, "getCliVersion");
416532
416532
 
@@ -421331,7 +421331,13 @@ async function loadCliConfig(settings2, argv, cwd6 = process.cwd(), overrideExte
421331
421331
  useRipgrep: settings2.tools?.useRipgrep,
421332
421332
  useBuiltinRipgrep: settings2.tools?.useBuiltinRipgrep,
421333
421333
  shouldUseNodePtyShell: settings2.tools?.shell?.enableInteractiveShell,
421334
- skipNextSpeakerCheck: settings2.model?.skipNextSpeakerCheck,
421334
+ // Autonomous sessions (SDK / headless / non-TTY) default to RUNNING the
421335
+ // next-speaker check so the loop nudges the model to continue after a turn
421336
+ // that states intent without a tool call, instead of silently ending
421337
+ // (#307). Interactive REPL keeps the check skipped by default for snappy
421338
+ // responses — a human (or an active /goal) drives continuation there.
421339
+ // An explicit `model.skipNextSpeakerCheck` setting overrides either way.
421340
+ skipNextSpeakerCheck: settings2.model?.skipNextSpeakerCheck ?? interactive,
421335
421341
  skipLoopDetection: settings2.model?.skipLoopDetection ?? true,
421336
421342
  skipStartupContext: settings2.model?.skipStartupContext ?? false,
421337
421343
  truncateToolOutputThreshold: settings2.tools?.truncateToolOutputThreshold,
@@ -424534,7 +424540,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
424534
424540
 
424535
424541
  // packages/cli/src/generated/git-commit.ts
424536
424542
  init_esbuild_shims();
424537
- var GIT_COMMIT_INFO = "3dda9bec1";
424543
+ var GIT_COMMIT_INFO = "47108a5d6";
424538
424544
 
424539
424545
  // packages/cli/src/utils/systemInfo.ts
424540
424546
  async function getNpmVersion() {
@@ -493281,7 +493287,7 @@ var QwenAgent = class {
493281
493287
  async initialize(args2) {
493282
493288
  this.clientCapabilities = args2.clientCapabilities;
493283
493289
  const authMethods = buildAuthMethods();
493284
- const version2 = "0.48.0";
493290
+ const version2 = "0.48.1";
493285
493291
  return {
493286
493292
  protocolVersion: PROTOCOL_VERSION,
493287
493293
  agentInfo: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@protolabsai/proto",
3
- "version": "0.48.0",
3
+ "version": "0.48.1",
4
4
  "description": "proto - AI-powered coding agent",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,7 +21,7 @@
21
21
  "bundled"
22
22
  ],
23
23
  "config": {
24
- "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.48.0"
24
+ "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.48.1"
25
25
  },
26
26
  "dependencies": {},
27
27
  "optionalDependencies": {