cc-pulse 1.6.0 → 1.6.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/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/cc-pulse)](https://www.npmjs.com/package/cc-pulse)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
5
5
 
6
- A real-time statusline for [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
6
+ See your context usage, cost, MCP health, hooks, skills, and git status — all without leaving [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
7
7
 
8
8
  **Full mode** shows names, groups, and token breakdown:
9
9
 
@@ -145,7 +145,6 @@ Colour thresholds: green below 70%, yellow at 70%, orange at 85%, red at 95%.
145
145
  |--------|--------|
146
146
  | `showNames: true` | List each server with its status |
147
147
  | `showOnlyProblems: true` | Hide the line when all servers are healthy |
148
- | `maxDisplay: 4` | Limit servers shown, with "+N more" for the rest |
149
148
 
150
149
  | Icon | Status |
151
150
  |------|--------|
package/dist/cli.js CHANGED
@@ -16,7 +16,7 @@ var __export = (target, all) => {
16
16
  // package.json
17
17
  var package_default = {
18
18
  name: "cc-pulse",
19
- version: "1.6.0",
19
+ version: "1.6.1",
20
20
  description: "A customizable, real-time statusline for Claude Code",
21
21
  type: "module",
22
22
  bin: {
@@ -616,7 +616,6 @@ function renderMcp(config, theme) {
616
616
  disabled: "○",
617
617
  error: "▲"
618
618
  };
619
- const maxDisplay = config.maxDisplay ?? 4;
620
619
  const servers = getMcpServers();
621
620
  const connectedCount = servers.filter((s) => s.status === "connected").length;
622
621
  const showOnlyProblems = config.showOnlyProblems ?? false;
@@ -1015,6 +1014,8 @@ function scanSkillsDirectory(dirPath, skills) {
1015
1014
  for (const entry of entries) {
1016
1015
  if (!entry.isDirectory())
1017
1016
  continue;
1017
+ if (!existsSync4(join4(dirPath, entry.name, "SKILL.md")))
1018
+ continue;
1018
1019
  const skillInfo = validateSkill(dirPath, entry.name);
1019
1020
  skills.push(skillInfo);
1020
1021
  }
@@ -1197,8 +1198,7 @@ var DEFAULT_CONFIG = {
1197
1198
  showNames: true,
1198
1199
  showOnlyProblems: false,
1199
1200
  style: "auto",
1200
- icons: { connected: "✓", disconnected: "✗", disabled: "○", error: "!" },
1201
- maxDisplay: 4
1201
+ icons: { connected: "✓", disconnected: "✗", disabled: "○", error: "!" }
1202
1202
  },
1203
1203
  branch: {
1204
1204
  enabled: true
@@ -14926,7 +14926,6 @@ var McpConfigSchema = exports_external.object({
14926
14926
  disabled: exports_external.string(),
14927
14927
  error: exports_external.string()
14928
14928
  }).optional(),
14929
- maxDisplay: exports_external.number().optional(),
14930
14929
  showOnlyProblems: exports_external.boolean().optional()
14931
14930
  });
14932
14931
  var CwdConfigSchema = exports_external.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-pulse",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "A customizable, real-time statusline for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {