Open
Conversation
Co-authored-by: data-douser <70299490+data-douser@users.noreply.github.com>
Co-authored-by: data-douser <70299490+data-douser@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
data-douser
May 9, 2026 03:12
View session
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Contributor
There was a problem hiding this comment.
Pull request overview
Prepares the repo’s release-facing documentation for the v2.25.4 release by promoting [Unreleased] changelog content into a dated release entry and updating public docs to reflect current prompt/resource/language support.
Changes:
- Promotes existing changelog entries into a new
v2.25.4section and updates link references/comparisons. - Updates
docs/ql-mcp/documentation to reflect current prompt/resource counts and language/resource matrices. - Updates README to reflect 10 supported CodeQL languages (now including Rust + Swift).
Show a summary per file
| File | Description |
|---|---|
| README.md | Updates “Multi-Language Support” claim from 9 → 10 languages. |
| docs/ql-mcp/resources.md | Updates static resource count and adds MaD “Library Modeling” coverage to the language matrix. |
| docs/ql-mcp/prompts.md | Updates prompt count and references the canonical prompt documentation resource. |
| CHANGELOG.md | Adds a v2.25.4 release section and updates [Unreleased] comparison/link references. |
Copilot's findings
- Files reviewed: 4/4 changed files
- Comments generated: 2
Comment on lines
+35
to
+47
| | URI | Description | | ||
| | ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| | `codeql://learning/data-extensions` | Models-as-Data (MaD) overview: YAML model formats, extensible predicates, and model-pack layout. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/cpp/library-modeling` | C/C++-specific library-modeling guide for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/csharp/library-modeling` | C#-specific library-modeling guide for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/java/library-modeling` | Java/Kotlin-specific library-modeling guide for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/javascript/library-modeling` | JavaScript/TypeScript-specific library-modeling guide for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/python/library-modeling` | Python-specific library-modeling guide for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/ruby/library-modeling` | Ruby-specific library-modeling guide for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/rust/library-modeling` | Rust-specific library-modeling guide (crate-path-based MaD format) for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
| | `codeql://languages/swift/library-modeling` | Swift-specific library-modeling guide (MaD tuple format) for the `data_extension_development` workflow. ([#271](https://github.com/advanced-security/codeql-development-mcp-server/pull/271)) | | ||
|
|
||
| Every CodeQL language that supports Models-as-Data upstream (`cpp`, `csharp`, `go`, `java`, `javascript`, `python`, `ruby`, `rust`, `swift`) now has a registered `codeql://languages/<language>/library-modeling` resource. `actions` is intentionally excluded because it does not support data extensions. | ||
| With these additions, every CodeQL language that supports Models-as-Data upstream (`cpp`, `csharp`, `go`, `java`, `javascript`, `python`, `ruby`, `rust`, `swift`) now has a registered `codeql://languages/<lang>/library-modeling` resource. `actions` is intentionally excluded because it does not support data extensions. |
Comment on lines
+7
to
+11
| The server provides **15 prompts** that guide AI assistants through common CodeQL development workflows. Each prompt is backed by a `*.prompt.md` file containing structured instructions. | ||
|
|
||
| > **Authoritative reference**: The MCP-served resource at `codeql://server/prompts` ([`server/src/resources/server-prompts.md`](../../server/src/resources/server-prompts.md)) is the canonical documentation for prompts. Update that file when adding, removing, or changing any prompt. | ||
|
|
||
| For the complete prompt reference (all 11 prompts with descriptions and categories), see [`server/src/resources/server-prompts.md`](../../server/src/resources/server-prompts.md). | ||
| For the complete prompt reference (all 15 prompts with descriptions and categories), see [`server/src/resources/server-prompts.md`](../../server/src/resources/server-prompts.md). |
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.
✨ Enhancement
What does this improve?
Promotes the existing
[Unreleased]content inCHANGELOG.mdto a[v2.25.4]section (dated 2026-05-08) and refreshes user-facing docs that went stale when MaD support landed in #271.Why is this valuable?
package.json,server/package.json,extensions/vscode/package.json, and.codeql-versionwere already bumped tov2.25.4, but the changelog still pointed[Unreleased]atv2.25.2...HEAD, the language/resource matrices indocs/ql-mcp/predated MaD library-modeling registration, and the README still advertised 9 supported CodeQL languages.Implementation approach:
CHANGELOG.md[v2.25.4]section with Highlights, Added (full per-languagelibrary-modelingresource enumeration plus thedata_extension_developmentprompt), Fixed (#263schema fix and#272C#ControlFlow::Node/Java CFG re-baselining), Dependencies (#272CodeQL CLI,#273hono), Changed › Infrastructure & CI/CD (#274on.pathstriggers).[Unreleased]section.[v2.25.4]link reference and updated[Unreleased]to compare againstv2.25.4...HEAD.#266to the actual main-branch landing PR#271.docs/ql-mcp/prompts.md—11 prompts→15 prompts(matchesserver.prompt(...)registrations inserver/src/prompts/workflow-prompts.ts).docs/ql-mcp/resources.md—10 static→11 static(addscodeql://learning/data-extensions); language matrix gains a Library Modeling column andrust/swiftrows; description list updated accordingly.README.md—9 languages→10 languages(Rust + Swift).server/src/{resources,prompts,tools}/**already reflects v2.25.4 (PR #271 source landed with the MaD prompt,learning-data-extensions.md, and the eight<lang>_library_modeling.mdresources). No source changes were required.