osagent 0.1.46 → 0.1.48

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 +22 -12
  2. package/package.json +2 -2
package/cli.js CHANGED
@@ -146205,7 +146205,7 @@ function createContentGeneratorConfig(config2, authType, generationConfig) {
146205
146205
  };
146206
146206
  }
146207
146207
  async function createContentGenerator(config2, gcConfig, sessionId2, isInitialAuth) {
146208
- const version3 = "0.1.46";
146208
+ const version3 = "0.1.48";
146209
146209
  const userAgent2 = `OSAgent/${version3} (${process.platform}; ${process.arch})`;
146210
146210
  const baseHeaders = {
146211
146211
  "User-Agent": userAgent2
@@ -329137,7 +329137,7 @@ __name(getPackageJson, "getPackageJson");
329137
329137
  // packages/cli/src/utils/version.ts
329138
329138
  async function getCliVersion() {
329139
329139
  const pkgJson = await getPackageJson();
329140
- return "0.1.46";
329140
+ return "0.1.48";
329141
329141
  }
329142
329142
  __name(getCliVersion, "getCliVersion");
329143
329143
 
@@ -333306,8 +333306,8 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
333306
333306
 
333307
333307
  // packages/cli/src/generated/git-commit.ts
333308
333308
  init_esbuild_shims();
333309
- var GIT_COMMIT_INFO2 = "3585045";
333310
- var CLI_VERSION2 = "0.1.46";
333309
+ var GIT_COMMIT_INFO2 = "e560674";
333310
+ var CLI_VERSION2 = "0.1.48";
333311
333311
 
333312
333312
  // packages/cli/src/utils/systemInfo.ts
333313
333313
  async function getNpmVersion() {
@@ -360630,10 +360630,20 @@ var TodoItemRow = /* @__PURE__ */ __name(({ todo }) => {
360630
360630
  const statusIcon2 = STATUS_ICONS[todo.status];
360631
360631
  const isCompleted = todo.status === "completed";
360632
360632
  const isInProgress = todo.status === "in_progress";
360633
- const itemColor = isCompleted ? Colors.Foreground : isInProgress ? Colors.AccentGreen : Colors.Foreground;
360633
+ const itemColor = isInProgress ? Colors.AccentYellow : isCompleted ? Colors.Foreground : Colors.Foreground;
360634
360634
  return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(Box_default, { flexDirection: "row", minHeight: 1, children: [
360635
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Box_default, { width: 3, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Text3, { color: itemColor, children: statusIcon2 }) }),
360636
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Box_default, { flexGrow: 1, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Text3, { color: itemColor, strikethrough: isCompleted, wrap: "wrap", children: todo.content }) })
360635
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Box_default, { width: 3, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Text3, { color: itemColor, dimColor: isCompleted, children: statusIcon2 }) }),
360636
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Box_default, { flexGrow: 1, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
360637
+ Text3,
360638
+ {
360639
+ color: itemColor,
360640
+ dimColor: isCompleted,
360641
+ strikethrough: isCompleted,
360642
+ bold: isInProgress,
360643
+ wrap: "wrap",
360644
+ children: todo.content
360645
+ }
360646
+ ) })
360637
360647
  ] });
360638
360648
  }, "TodoItemRow");
360639
360649
 
@@ -375156,12 +375166,12 @@ var useOrchestration = /* @__PURE__ */ __name(() => {
375156
375166
  // packages/cli/src/ui/components/TaskMasterPanel.tsx
375157
375167
  var import_jsx_runtime110 = __toESM(require_jsx_runtime(), 1);
375158
375168
  var STATUS_ICONS2 = {
375159
- pending: "\u2610",
375160
- // Empty checkbox
375169
+ pending: "\u25CB",
375170
+ // Empty circle
375161
375171
  in_progress: "\u25D0",
375162
- // Half-filled
375163
- completed: "\u2611"
375164
- // Checked checkbox
375172
+ // Half-filled circle
375173
+ completed: "\u25CF"
375174
+ // Filled circle
375165
375175
  };
375166
375176
  function formatTokenCount(count) {
375167
375177
  if (count >= 1e6) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osagent",
3
- "version": "0.1.46",
3
+ "version": "0.1.48",
4
4
  "description": "OS Agent - AI-powered CLI for autonomous coding with Ollama Cloud and Qwen models",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,7 +20,7 @@
20
20
  "locales"
21
21
  ],
22
22
  "config": {
23
- "sandboxImageUri": "ghcr.io/osagent/osagent:0.1.46"
23
+ "sandboxImageUri": "ghcr.io/osagent/osagent:0.1.48"
24
24
  },
25
25
  "dependencies": {
26
26
  "tiktoken": "^1.0.21",