minimax-status 1.1.5 → 1.1.6

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/renderer.js +1 -1
  2. package/package.json +1 -1
package/cli/renderer.js CHANGED
@@ -104,7 +104,7 @@ class Renderer {
104
104
  if (contextUsage !== null && contextUsage !== undefined) {
105
105
  const contextPercent = Math.round((contextUsage / contextSize) * 100);
106
106
  const contextColor = this.getStatusColor(contextPercent);
107
- parts.push(`${contextColor(contextPercent + '%')} ${chalk.gray(this.formatTokens(contextUsage))}`);
107
+ parts.push(`${contextColor(contextPercent + '%')} ${contextColor('·')} ${contextColor(this.formatTokens(contextUsage) + ' tokens')}`);
108
108
  } else {
109
109
  parts.push(chalk.cyan(this.formatContextSize(contextSize)));
110
110
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minimax-status",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "MiniMax Claude Code 使用状态监控工具",
5
5
  "bin": {
6
6
  "minimax-status": "cli/index.js",