@protolabsai/proto 0.55.0 → 0.55.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.
- package/cli.js +11 -7
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -168684,7 +168684,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
168684
168684
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
168685
168685
|
});
|
|
168686
168686
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
168687
|
-
const version2 = "0.55.
|
|
168687
|
+
const version2 = "0.55.1";
|
|
168688
168688
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
168689
168689
|
const baseHeaders = {
|
|
168690
168690
|
"User-Agent": userAgent2
|
|
@@ -190243,9 +190243,9 @@ Digest teammate findings thoroughly. Cite file paths and line numbers. NEVER wri
|
|
|
190243
190243
|
|
|
190244
190244
|
## Task Decomposition
|
|
190245
190245
|
When given a complex task:
|
|
190246
|
-
1. Break it into independent subtasks using ${ToolNames.TASK_CREATE}
|
|
190246
|
+
1. Break it into independent subtasks using ${ToolNames.TASK_CREATE} and track their status with ${ToolNames.TASK_UPDATE}
|
|
190247
190247
|
2. Identify which can run in parallel vs which have dependencies
|
|
190248
|
-
3.
|
|
190248
|
+
3. Delegate each subtask to a teammate via your team channel, briefing it per the Delegation Rules above
|
|
190249
190249
|
4. Monitor completion notifications and synthesize results
|
|
190250
190250
|
5. Run dependent tasks after prerequisites complete
|
|
190251
190251
|
|
|
@@ -190258,13 +190258,17 @@ Before reporting completion:
|
|
|
190258
190258
|
Notes:
|
|
190259
190259
|
- Agent threads always have their cwd reset between bash calls, as a result please only use absolute file paths.
|
|
190260
190260
|
- For clear communication, avoid using emojis.`,
|
|
190261
|
+
// NOTE: ToolNames.AGENT is intentionally NOT listed here. The runtime
|
|
190262
|
+
// strips the agent tool from every subagent to prevent recursion
|
|
190263
|
+
// (see agent-core.ts `excludedFromSubagents`), so listing it would only
|
|
190264
|
+
// tell the model about a tool it can't actually call. The coordinator
|
|
190265
|
+
// delegates to teammates via the team channel when run as a team lead.
|
|
190261
190266
|
tools: [
|
|
190262
190267
|
ToolNames.READ_FILE,
|
|
190263
190268
|
ToolNames.GREP,
|
|
190264
190269
|
ToolNames.GLOB,
|
|
190265
190270
|
ToolNames.SHELL,
|
|
190266
190271
|
ToolNames.LS,
|
|
190267
|
-
ToolNames.AGENT,
|
|
190268
190272
|
ToolNames.TASK_CREATE,
|
|
190269
190273
|
ToolNames.TASK_LIST,
|
|
190270
190274
|
ToolNames.TASK_UPDATE,
|
|
@@ -416785,7 +416789,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
416785
416789
|
// packages/cli/src/utils/version.ts
|
|
416786
416790
|
async function getCliVersion() {
|
|
416787
416791
|
const pkgJson = await getPackageJson();
|
|
416788
|
-
return "0.55.
|
|
416792
|
+
return "0.55.1";
|
|
416789
416793
|
}
|
|
416790
416794
|
__name(getCliVersion, "getCliVersion");
|
|
416791
416795
|
|
|
@@ -424985,7 +424989,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
424985
424989
|
|
|
424986
424990
|
// packages/cli/src/generated/git-commit.ts
|
|
424987
424991
|
init_esbuild_shims();
|
|
424988
|
-
var GIT_COMMIT_INFO = "
|
|
424992
|
+
var GIT_COMMIT_INFO = "a8772314d";
|
|
424989
424993
|
|
|
424990
424994
|
// packages/cli/src/utils/systemInfo.ts
|
|
424991
424995
|
async function getNpmVersion() {
|
|
@@ -493874,7 +493878,7 @@ var QwenAgent = class {
|
|
|
493874
493878
|
async initialize(args2) {
|
|
493875
493879
|
this.clientCapabilities = args2.clientCapabilities;
|
|
493876
493880
|
const authMethods = buildAuthMethods();
|
|
493877
|
-
const version2 = "0.55.
|
|
493881
|
+
const version2 = "0.55.1";
|
|
493878
493882
|
return {
|
|
493879
493883
|
protocolVersion: PROTOCOL_VERSION,
|
|
493880
493884
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@protolabsai/proto",
|
|
3
|
-
"version": "0.55.
|
|
3
|
+
"version": "0.55.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.55.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.55.1"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|