Change integrated prompts to -apm suffix#30
Merged
danielmeppiel merged 3 commits intomainfrom Nov 14, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request migrates the prompt integration naming convention from an @ prefix (e.g., @accessibility-audit.prompt.md) to a -apm suffix (e.g., accessibility-audit-apm.prompt.md). The change improves VSCode autocomplete discoverability and avoids symbol conflicts with Copilot's @ agent syntax.
Key Changes:
- Updated core filename generation logic in
PromptIntegrator.get_target_filename()to use-apmsuffix pattern - Modified
.gitignorepattern from@*.prompt.mdto*-apm.prompt.md - Added comprehensive test coverage for the new suffix pattern with edge case validation
Reviewed Changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Bumped version from 0.5.2 to 0.5.3 |
| uv.lock | Updated package version (inconsistent with pyproject.toml) |
| src/apm_cli/integration/prompt_integrator.py | Implemented -apm suffix logic in get_target_filename() and updated gitignore pattern |
| src/apm_cli/cli.py | Enhanced user feedback message to show the new pattern |
| tests/unit/integration/test_prompt_integrator.py | Updated all test assertions and added TestPromptSuffixPattern class for edge cases |
| tests/integration/test_auto_integration.py | Updated integration test assertions to use new suffix pattern |
| docs/integrations.md | Partially updated documentation with new pattern and intent-first discovery explanation |
| docs/cli-reference.md | Not updated - still references old @ prefix pattern |
| CHANGELOG.md | Added comprehensive release notes with migration guidance |
Comments suppressed due to low confidence (1)
docs/integrations.md:289
- Comment still references the old
@*.prompt.mdpattern. Update to*-apm.prompt.mdto match the new naming convention.
# .github/prompts/@*.prompt.md (integrated prompts)
…and clarify PyInstaller handling
…ils in spec; bump apm-cli to 0.5.3
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.
This pull request updates the prompt integration naming convention from an
@prefix to a-apmsuffix, improving discoverability and avoiding conflicts in VSCode and Copilot. The change affects prompt file generation,.gitignorepatterns, documentation, and all related tests to ensure a consistent and intent-first naming approach.