@protolabsai/proto 0.19.3 → 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 +9 -6
- 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() {
|
|
@@ -486231,7 +486234,7 @@ var QwenAgent = class {
|
|
|
486231
486234
|
async initialize(args2) {
|
|
486232
486235
|
this.clientCapabilities = args2.clientCapabilities;
|
|
486233
486236
|
const authMethods = buildAuthMethods();
|
|
486234
|
-
const version2 = "0.
|
|
486237
|
+
const version2 = "0.20.0";
|
|
486235
486238
|
return {
|
|
486236
486239
|
protocolVersion: PROTOCOL_VERSION,
|
|
486237
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": {
|