Skip to content
Open
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeseeker",
"version": "1.7.2",
"version": "1.8.0",
"description": "Graph-powered code intelligence for Claude Code. Semantic search + knowledge graph for better AI code understanding.",
"main": "dist/index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/codeseeker/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeseeker",
"version": "1.7.2",
"version": "1.8.0",
"description": "CodeSeeker - Intelligent code understanding with semantic search, knowledge graphs, and auto-detected coding standards",
"author": {
"name": "CodeSeeker Team",
Expand Down
4 changes: 2 additions & 2 deletions plugins/codeseeker/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "1.7.2",
"releaseDate": "2026-01-20",
"version": "1.8.0",
"releaseDate": "2026-02-07",
"minCliVersion": "1.0.1",
"changelog": "https://github.com/jghiringhelli/codeseeker/releases",
"updateCommand": "/plugin uninstall codeseeker && /plugin install codeseeker@github:jghiringhelli/codeseeker#plugin"
Expand Down
4 changes: 2 additions & 2 deletions src/cli/commands/handlers/search-command-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ export class SearchCommandHandler extends BaseCommandHandler {

try {
// Get all code files
const files = await glob(['**/*.{ts,js,jsx,tsx,py,java,cs,cpp,c,h,hpp}'], {
const files = await glob(['**/*.{ts,js,jsx,tsx,py,java,cs,cpp,c,h,hpp,php,rb,go,rs,swift,kt,scala}'], {
cwd: projectPath,
ignore: ['**/node_modules/**', '**/dist/**', '**/build/**', '**/.git/**']
ignore: ['**/node_modules/**', '**/vendor/**', '**/dist/**', '**/build/**', '**/.git/**']
});

console.log(`📂 Found ${files.length} files to scan`);
Expand Down
4 changes: 2 additions & 2 deletions src/cli/services/search/semantic-search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export class SemanticSearchService extends AnalysisTool implements IProjectIndex

// Configuration
private config = {
supportedExtensions: ['.ts', '.js', '.py', '.java', '.go', '.rs', '.cpp', '.c', '.h'],
excludePatterns: ['node_modules', '.git', 'dist', 'build', 'coverage'],
supportedExtensions: ['.ts', '.js', '.py', '.java', '.go', '.rs', '.cpp', '.c', '.h', '.php', '.rb', '.swift', '.kt', '.scala', '.cs'],
excludePatterns: ['node_modules', 'vendor', '.git', 'dist', 'build', 'coverage'],
batchSize: 50,
enableCaching: true
};
Expand Down