@protolabsai/proto 0.19.2 → 0.20.0
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/cli.js +13 -7
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -170771,7 +170771,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
170771
170771
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
170772
170772
|
});
|
|
170773
170773
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
170774
|
-
const version2 = "0.
|
|
170774
|
+
const version2 = "0.20.0";
|
|
170775
170775
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
170776
170776
|
const baseHeaders = {
|
|
170777
170777
|
"User-Agent": userAgent2
|
|
@@ -190178,8 +190178,11 @@ Your strengths:
|
|
|
190178
190178
|
- Reading and analyzing file contents
|
|
190179
190179
|
|
|
190180
190180
|
Guidelines:
|
|
190181
|
-
-
|
|
190182
|
-
- Use ${ToolDisplayNames.GREP} for searching file contents
|
|
190181
|
+
- **Prefer fff MCP tools** when available \u2014 they are faster, typo-resistant, and have frecency memory:
|
|
190182
|
+
- Use \`fff__grep\` instead of ${ToolDisplayNames.GREP} for searching file contents by identifier (default choice)
|
|
190183
|
+
- Use \`fff__find_files\` instead of ${ToolDisplayNames.GLOB} when finding files by name or topic
|
|
190184
|
+
- Use \`fff__multi_grep\` to search multiple patterns at once (e.g. snake_case + PascalCase variants)
|
|
190185
|
+
- Fall back to ${ToolDisplayNames.GLOB} / ${ToolDisplayNames.GREP} only if fff tools are not available
|
|
190183
190186
|
- Use ${ToolDisplayNames.READ_FILE} when you know the specific file path you need to read
|
|
190184
190187
|
- Use ${ToolDisplayNames.SHELL} ONLY for read-only operations (ls, git status, git log, git diff, find, cat, head, tail)
|
|
190185
190188
|
- NEVER use ${ToolDisplayNames.SHELL} for: mkdir, touch, rm, cp, mv, git add, git commit, npm install, pip install, or any file creation/modification
|
|
@@ -411660,7 +411663,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
411660
411663
|
// packages/cli/src/utils/version.ts
|
|
411661
411664
|
async function getCliVersion() {
|
|
411662
411665
|
const pkgJson = await getPackageJson();
|
|
411663
|
-
return "0.
|
|
411666
|
+
return "0.20.0";
|
|
411664
411667
|
}
|
|
411665
411668
|
__name(getCliVersion, "getCliVersion");
|
|
411666
411669
|
|
|
@@ -419432,7 +419435,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
419432
419435
|
|
|
419433
419436
|
// packages/cli/src/generated/git-commit.ts
|
|
419434
419437
|
init_esbuild_shims();
|
|
419435
|
-
var GIT_COMMIT_INFO = "
|
|
419438
|
+
var GIT_COMMIT_INFO = "a2c8fa3e8";
|
|
419436
419439
|
|
|
419437
419440
|
// packages/cli/src/utils/systemInfo.ts
|
|
419438
419441
|
async function getNpmVersion() {
|
|
@@ -469422,6 +469425,7 @@ var InputPrompt = /* @__PURE__ */ __name(({
|
|
|
469422
469425
|
const voiceEnabled = uiState.voiceEnabled;
|
|
469423
469426
|
const voiceBackendAvailable = uiState.voiceBackendAvailable;
|
|
469424
469427
|
const voiceState = uiState.voiceState;
|
|
469428
|
+
const voiceError = uiState.voiceError;
|
|
469425
469429
|
const { agents, agentTabBarFocused } = useAgentViewState();
|
|
469426
469430
|
const { setAgentTabBarFocused } = useAgentViewActions();
|
|
469427
469431
|
const hasAgents = agents.size > 0;
|
|
@@ -470254,7 +470258,7 @@ ${finalValue.trim()}`;
|
|
|
470254
470258
|
Text3,
|
|
470255
470259
|
{
|
|
470256
470260
|
color: voiceState === "recording" ? theme.status.error : voiceState === "error" ? theme.status.errorDim : theme.text.secondary,
|
|
470257
|
-
children: voiceState === "recording" ? "[\u25CF REC]" : voiceState === "transcribing" ? "[\u25CC STT...]" : `[Voice error: ${"unknown"}]`
|
|
470261
|
+
children: voiceState === "recording" ? "[\u25CF REC]" : voiceState === "transcribing" ? "[\u25CC STT...]" : `[Voice error: ${voiceError ?? "unknown"}]`
|
|
470258
470262
|
}
|
|
470259
470263
|
) }),
|
|
470260
470264
|
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
@@ -481915,6 +481919,7 @@ ${migrationResult.failedFiles.map((f5) => ` \u2022 ${f5.file}: ${f5.error}`).jo
|
|
|
481915
481919
|
voiceEnabled,
|
|
481916
481920
|
voiceBackendAvailable: voice.backendAvailable,
|
|
481917
481921
|
voiceState: voice.voiceState,
|
|
481922
|
+
voiceError: voice.error,
|
|
481918
481923
|
// Prompt suggestion
|
|
481919
481924
|
promptSuggestion,
|
|
481920
481925
|
dismissPromptSuggestion
|
|
@@ -482025,6 +482030,7 @@ ${migrationResult.failedFiles.map((f5) => ` \u2022 ${f5.file}: ${f5.error}`).jo
|
|
|
482025
482030
|
voiceEnabled,
|
|
482026
482031
|
voice.backendAvailable,
|
|
482027
482032
|
voice.voiceState,
|
|
482033
|
+
voice.error,
|
|
482028
482034
|
// Prompt suggestion
|
|
482029
482035
|
promptSuggestion,
|
|
482030
482036
|
dismissPromptSuggestion
|
|
@@ -486228,7 +486234,7 @@ var QwenAgent = class {
|
|
|
486228
486234
|
async initialize(args2) {
|
|
486229
486235
|
this.clientCapabilities = args2.clientCapabilities;
|
|
486230
486236
|
const authMethods = buildAuthMethods();
|
|
486231
|
-
const version2 = "0.
|
|
486237
|
+
const version2 = "0.20.0";
|
|
486232
486238
|
return {
|
|
486233
486239
|
protocolVersion: PROTOCOL_VERSION,
|
|
486234
486240
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@protolabsai/proto",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
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.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.20.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|