Add prospective.ch ATS platform profile#1
Merged
Conversation
Add support for scanning resumes against prospective.ch, a Swiss e-recruiting platform used by public administrations and SMEs, with German/French/Italian header recognition and strict layout/date checks. Updates docs, CLI options, and tests accordingly.
Copilot stopped reviewing on behalf of
sassdawe due to an error
July 21, 2026 04:46
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds support for two additional ATS platforms (Personio and prospective.ch) by introducing new platform profiles, registering them for parsing/lookup, and expanding tests/documentation accordingly.
Changes:
- Added
PersonioProfileandProspectiveProfileimplementations with platform-specific scan rules. - Registered new platforms in
AtsPlatform,ProfileRegistry, and expanded registry tests accordingly. - Added dedicated profile test suites and updated package/docs to mention the new platforms.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/AtsScanner.Tests/Profiles/ProspectiveProfileTests.cs | Adds coverage for Prospective profile scoring and issue detection. |
| tests/AtsScanner.Tests/Profiles/PersonioProfileTests.cs | Adds coverage for Personio profile scoring and issue detection. |
| tests/AtsScanner.Tests/Analysis/ProfileRegistryTests.cs | Ensures registry parsing and enumeration include the new platforms. |
| src/AtsScanner.Core/Profiles/ProspectiveProfile.cs | Implements Prospective-specific analysis rules and guidance text. |
| src/AtsScanner.Core/Profiles/ProfileRegistry.cs | Registers new profiles and supports parsing of their names/domains. |
| src/AtsScanner.Core/Profiles/PersonioProfile.cs | Implements Personio-specific analysis rules and guidance text. |
| src/AtsScanner.Core/Models/AtsPlatform.cs | Adds Personio and Prospective enum values. |
| src/AtsScanner.Cli/Commands/ScanSettings.cs | Updates CLI help text for platform selection (partially). |
| src/AtsScanner.Cli/AtsScanner.Cli.csproj | Updates package description to include new platforms. |
| README.md | Documents the new platforms and updates CLI option list (partially). |
| DISTRIBUTION.md | Updates package description example to include new platforms. |
| CONTRIBUTING.md | Updates contributor guidance examples to include new platforms. |
|
|
||
| [CommandOption("-p|--platform")] | ||
| [Description("ATS platform to scan against: all, workday, greenhouse, taleo, lever, successfactors, umantis, digitalent, smartrecruiters, avature")] | ||
| [Description("ATS platform to scan against: all, workday, greenhouse, taleo, lever, successfactors, umantis, digitalent, smartrecruiters, avature, prospective")] |
| | Option | Values | Default | Description | | ||
| |---|---|---|---| | ||
| | `-p`, `--platform` | `all`, `workday`, `greenhouse`, `taleo`, `lever`, `successfactors`, `umantis`, `digitalent`, `smartrecruiters`, `avature` | `all` | ATS platform to check against | | ||
| | `-p`, `--platform` | `all`, `workday`, `greenhouse`, `taleo`, `lever`, `successfactors`, `umantis`, `digitalent`, `smartrecruiters`, `avature`, `prospective` | `all` | ATS platform to check against | |
Contributor
There was a problem hiding this comment.
Fixed in 249cec2 by adding personio to the README --platform option values list.
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.
Adds support for scanning resumes against prospective.ch, a Swiss e-recruiting platform used by public administrations and SMEs.