fix(mcp): clarify application lifecycle and add restore support - #67
Merged
Conversation
Qodana for JVM3 new problems were found
View the detailed Qodana reportTo be able to view the detailed Qodana report, you can either:
To get - name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2025.3.2
with:
upload-result: trueContact Qodana teamContact us at qodana-support@jetbrains.com
|
vitorhugo-dotnet
marked this pull request as ready for review
July 29, 2026 01:51
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.
Problem
MCP clients could infer that a terminal application status such as
Rejectedshould also archive the record because hiring-process status and record visibility were not explicitly separated.Changes
resource://job-apply-tracker/application-lifecycle-rulesas the authoritative lifecycle policy;Update-Application-Status,Archive-Application, andDelete-Applicationdescriptions;dar baixawith a rejection message as a status-only update toRejected;RejectedorApproved;Restore-Application, backed byApplicationService.restore(UUID), preserving status and clearing onlyarchived/archivedAt;docs/superpowers/.Safety rules
Tests
TDD red/green cycle verified:
ApplicationServiceTestcovers restoration and status/archive independence;McpApplicationToolsTestcovers mutation descriptions and restore delegation;McpApplicationLifecycleRulesResourceTestcovers mandatory policy wording;mvn clean verify: 290 tests, 0 failures;