Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"name": "matrix",
"source": "./",
"description": "Claude on Rails Tooling System - Persistent memory for Claude Code",
"version": "2.4.0"
"version": "2.4.1"
}
],
"version": "2.4.0"
"version": "2.4.1"
}
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "matrix",
"description": "Claude on Rails Tooling System",
"version": "2.4.0",
"version": "2.4.1",
"author": {
"name": "Matrix Contributors"
},
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to Claude Matrix are documented here.

## [2.4.1] - 2026-04-01

### Fixed
- **Indexer spams terminal during session start** - Removed per-file progress output that flooded the terminal with `[Matrix] Indexing: ...` lines for every file. Now prints only a single summary line when indexing completes.

---

## [2.4.0] - 2026-04-01

> Leaner, sharper. Claude Code grew up, so we dropped what it handles natively and doubled down on what only Matrix can do.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "claude-matrix",
"version": "2.4.0",
"version": "2.4.1",
"description": "Claude on Rails Tooling System",
"type": "module",
"main": "src/index.ts",
Expand Down
15 changes: 2 additions & 13 deletions src/hooks/session-start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ async function runIndexer(repoRoot: string, repoId: string, config: IndexingConf
// Dynamic import to avoid loading heavy modules if not needed
const { indexRepository } = await import('../indexer/index.js');

let lastProgress = '';
const result = await indexRepository({
repoRoot,
repoId,
Expand All @@ -244,21 +243,11 @@ async function runIndexer(repoRoot: string, repoId: string, config: IndexingConf
excludePatterns: config.excludePatterns,
maxFileSize: config.maxFileSize,
includeTests: config.includeTests,
onProgress: (msg, pct) => {
// Update progress on same line
const progressLine = `\r\x1b[36m[Matrix]\x1b[0m ${msg} (${pct}%)`;
if (progressLine !== lastProgress) {
printToUser(progressLine);
lastProgress = progressLine;
}
},
});

// Clear progress line and show result
// Show a single summary line (no per-file spam)
if (result.filesIndexed > 0) {
printToUser(`\r\x1b[32m[Matrix]\x1b[0m Indexed ${result.filesIndexed} files, ${result.symbolsFound} symbols (${result.duration}ms)`);
} else if (result.filesSkipped > 0) {
printToUser(`\r\x1b[32m[Matrix]\x1b[0m Index up to date (${result.filesSkipped} files)`);
printToUser(`\x1b[32m[Matrix]\x1b[0m Indexed ${result.filesIndexed} files, ${result.symbolsFound} symbols (${result.duration}ms)`);
}
} catch (err) {
// Silently fail - indexing is optional
Expand Down
Loading