@protolabsai/proto 0.24.1 → 0.25.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 +14 -13
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -170887,7 +170887,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
170887
170887
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
170888
170888
|
});
|
|
170889
170889
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
170890
|
-
const version2 = "0.
|
|
170890
|
+
const version2 = "0.25.0";
|
|
170891
170891
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
170892
170892
|
const baseHeaders = {
|
|
170893
170893
|
"User-Agent": userAgent2
|
|
@@ -414126,7 +414126,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
414126
414126
|
// packages/cli/src/utils/version.ts
|
|
414127
414127
|
async function getCliVersion() {
|
|
414128
414128
|
const pkgJson = await getPackageJson();
|
|
414129
|
-
return "0.
|
|
414129
|
+
return "0.25.0";
|
|
414130
414130
|
}
|
|
414131
414131
|
__name(getCliVersion, "getCliVersion");
|
|
414132
414132
|
|
|
@@ -421898,7 +421898,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
421898
421898
|
|
|
421899
421899
|
// packages/cli/src/generated/git-commit.ts
|
|
421900
421900
|
init_esbuild_shims();
|
|
421901
|
-
var GIT_COMMIT_INFO = "
|
|
421901
|
+
var GIT_COMMIT_INFO = "be28906a6";
|
|
421902
421902
|
|
|
421903
421903
|
// packages/cli/src/utils/systemInfo.ts
|
|
421904
421904
|
async function getNpmVersion() {
|
|
@@ -451143,11 +451143,6 @@ var Colors = {
|
|
|
451143
451143
|
|
|
451144
451144
|
// packages/cli/src/ui/components/TodoDisplay.tsx
|
|
451145
451145
|
var import_jsx_runtime11 = __toESM(require_jsx_runtime(), 1);
|
|
451146
|
-
var STATUS_ICONS = {
|
|
451147
|
-
pending: "\u25CB",
|
|
451148
|
-
in_progress: "\u25D0",
|
|
451149
|
-
completed: "\u25CF"
|
|
451150
|
-
};
|
|
451151
451146
|
var TodoDisplay = /* @__PURE__ */ __name(({ todos }) => {
|
|
451152
451147
|
if (!todos || todos.length === 0) {
|
|
451153
451148
|
return null;
|
|
@@ -451155,13 +451150,19 @@ var TodoDisplay = /* @__PURE__ */ __name(({ todos }) => {
|
|
|
451155
451150
|
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Box_default, { flexDirection: "column", children: todos.map((todo) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(TodoItemRow, { todo }, todo.id)) });
|
|
451156
451151
|
}, "TodoDisplay");
|
|
451157
451152
|
var TodoItemRow = /* @__PURE__ */ __name(({ todo }) => {
|
|
451158
|
-
const statusIcon = STATUS_ICONS[todo.status];
|
|
451159
451153
|
const isCompleted = todo.status === "completed";
|
|
451160
451154
|
const isInProgress = todo.status === "in_progress";
|
|
451161
|
-
const itemColor = isCompleted ? Colors.Foreground : isInProgress ? Colors.AccentGreen : Colors.Foreground;
|
|
451162
451155
|
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(Box_default, { flexDirection: "row", minHeight: 1, children: [
|
|
451163
|
-
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Box_default, { width: 3, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Text3, { color:
|
|
451164
|
-
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Box_default, { flexGrow: 1, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
451156
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Box_default, { width: 3, children: isCompleted ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Text3, { color: Colors.AccentGreen, children: "\u2713" }) : /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Text3, { color: Colors.Comment, children: "\u25A1" }) }),
|
|
451157
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(Box_default, { flexGrow: 1, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
451158
|
+
Text3,
|
|
451159
|
+
{
|
|
451160
|
+
color: isCompleted ? Colors.Comment : isInProgress ? Colors.AccentGreen : Colors.Foreground,
|
|
451161
|
+
strikethrough: isCompleted,
|
|
451162
|
+
wrap: "wrap",
|
|
451163
|
+
children: todo.content
|
|
451164
|
+
}
|
|
451165
|
+
) })
|
|
451165
451166
|
] });
|
|
451166
451167
|
}, "TodoItemRow");
|
|
451167
451168
|
|
|
@@ -488870,7 +488871,7 @@ var QwenAgent = class {
|
|
|
488870
488871
|
async initialize(args2) {
|
|
488871
488872
|
this.clientCapabilities = args2.clientCapabilities;
|
|
488872
488873
|
const authMethods = buildAuthMethods();
|
|
488873
|
-
const version2 = "0.
|
|
488874
|
+
const version2 = "0.25.0";
|
|
488874
488875
|
return {
|
|
488875
488876
|
protocolVersion: PROTOCOL_VERSION,
|
|
488876
488877
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@protolabsai/proto",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.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.25.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|