Skip to content

Commit 354b4e5

Browse files
committed
Address PR review feedback
1 parent 8cb8f0e commit 354b4e5

2 files changed

Lines changed: 13 additions & 9 deletions

File tree

.github/skills/maintain-changelog/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ Within `Added` and `Changed`, use sub-headings to group by area: `MCP Server Too
5050
Identify all merged PRs since the last stable release tag.
5151

5252
```sh
53-
# List PRs merged since the last stable release
54-
git log --oneline --merges v2.25.0..HEAD
53+
# List PRs merged since the last stable release (replace vPREV with the last stable tag)
54+
git log --oneline --merges vPREV..HEAD
5555
```
5656

5757
Alternatively, use the GitHub compare view:

CHANGELOG.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,26 @@ _Changes on `main` since the latest tagged release that have not yet been includ
2626

2727
#### MCP Server Tools
2828

29-
- Duplicated code detection tools to support the new duplicate-code workflow prompts. ([#109](https://github.com/advanced-security/codeql-development-mcp-server/pull/109))
29+
| Tool | Description |
30+
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
31+
| `check_for_duplicated_code` | Detects duplicated code patterns across CodeQL databases to support the duplicate-code workflow prompts. ([#109](https://github.com/advanced-security/codeql-development-mcp-server/pull/109)) |
32+
| `find_overlapping_queries` | Finds overlapping or redundant CodeQL queries to support the duplicate-code workflow prompts. ([#109](https://github.com/advanced-security/codeql-development-mcp-server/pull/109)) |
3033

3134
#### MCP Server Prompts
3235

33-
- Duplicated code detection prompts for guiding agents through finding and reporting code duplication. ([#109](https://github.com/advanced-security/codeql-development-mcp-server/pull/109))
36+
| Prompt | Description |
37+
| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
38+
| `check_for_duplicated_code` | Guides agents through finding and reporting duplicated code patterns across a CodeQL database. ([#109](https://github.com/advanced-security/codeql-development-mcp-server/pull/109)) |
39+
| `find_overlapping_queries` | Guides agents through identifying overlapping or redundant CodeQL queries. ([#109](https://github.com/advanced-security/codeql-development-mcp-server/pull/109)) |
3440

3541
#### CodeQL Query Packs
3642

37-
- `CallGraphFromTo` queries added for all supported languages (actions, cpp, csharp, go, java, javascript, python, ruby, swift). ([#168](https://github.com/advanced-security/codeql-development-mcp-server/pull/168))
43+
| Pack | Description |
44+
| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
45+
| `CallGraphFromTo` | Unified call-graph entry-point queries added for all supported languages (actions, cpp, csharp, go, java, javascript, python, ruby, swift). ([#168](https://github.com/advanced-security/codeql-development-mcp-server/pull/168)) |
3846

3947
### Changed
4048

41-
#### MCP Server Tools
42-
43-
- `codeql_database_analyze` — Fixed `additionalArgs` pass-through so extra CLI arguments are correctly forwarded. ([#188](https://github.com/advanced-security/codeql-development-mcp-server/pull/188))
44-
4549
#### Infrastructure & CI/CD
4650

4751
- Pinned all GitHub Actions to full-length commit SHAs for supply-chain integrity. ([#190](https://github.com/advanced-security/codeql-development-mcp-server/pull/190))

0 commit comments

Comments
 (0)