Repository Scanner: languages, frameworks, dependencies, structure, git (v0.1.0)#7
Merged
Conversation
…it (v0.1.0) First milestone — DevPilot analyzes a repository end to end. No AI. New devpilot-scan crate: pure manifest detectors (npm, Cargo, PyPI, Go) split from a filesystem adapter (FsProjectScanner) behind a new ProjectScanner port. ScanRepository use case assembles a full ScanReport: languages from the file tree, frameworks and dependencies from manifests, folder structure, and git info (branch, commit count, last commit, top contributors). Wired through DI as the scan_folder command with a typed lib/ipc/scan layer, and surfaced in the Analysis view (overview cards, language bars, framework chips, dependency list, structure and git panels). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
First milestone (v0.1.0): DevPilot analyzes a repository end to end. No AI.
Repository Scanner — scan a project folder and get a full report:
devpilot-scancrate: pure manifest detectors (npm, Cargo, PyPI, Go) split from a filesystem adapter (FsProjectScanner) behind a newProjectScannercore port. Detectors are pure functions over manifest text.ScanReport/Framework/Dependency/FolderSummary/GitSummaryentities,ScanRepositoryuse case.scan_folderTauri command via DI; typedlib/ipc/scan.ts.Verification
cargo fmt --check,clippy -D warnings, fullcargo test --workspace: clean.pnpm build(tsc strict + vite): clean.Real scanning runs against the backend in
pnpm tauri dev.Architecture holds:
devpilot-scandepends only ondevpilot-core; the scanner reads the working copy directly, so it does not depend ondevpilot-git(use case orchestrates both).🤖 Generated with Claude Code