@bazilio-san/glm-cc 1.0.7 → 1.0.9

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/bin/glm.js +2 -2
  2. package/package.json +1 -1
package/bin/glm.js CHANGED
@@ -16,7 +16,7 @@ const CONFIG_FIELDS = [
16
16
  },
17
17
  {
18
18
  key: 'ANTHROPIC_AUTH_TOKEN',
19
- label: 'Anthropic Auth Token (primary)',
19
+ label: 'Anthropic Auth Token',
20
20
  defaultValue: '',
21
21
  },
22
22
  {
@@ -63,7 +63,7 @@ async function runConfig(fields) {
63
63
  const current = config[field.key] !== undefined && config[field.key] !== ''
64
64
  ? config[field.key]
65
65
  : field.defaultValue;
66
- const hint = current ? ` [${current}]` : '';
66
+ const hint = current ? ` [\x1b[32m${current}\x1b[0m]` : '';
67
67
  const answer = await ask(rl, `${field.label}${hint}: `);
68
68
  config[field.key] = answer.trim() !== '' ? answer.trim() : current;
69
69
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bazilio-san/glm-cc",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "CLI tool for running claude with custom GLM configuration",
5
5
  "main": "bin/glm.js",
6
6
  "bin": {