opencode-gitlab-plugin 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.cjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.2.0](https://gitlab.com/vglafirov/opencode-gitlab-plugin/compare/v2.1.0...v2.2.0) (2026-04-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features
|
|
9
|
+
|
|
10
|
+
* add system prompt hint when tools are served via lazy-mcp ([d9d8f01](https://gitlab.com/vglafirov/opencode-gitlab-plugin/commit/d9d8f015a128e934d5e963aebfea9e5920f78130))
|
|
11
|
+
|
|
5
12
|
## [2.1.0](https://gitlab.com/vglafirov/opencode-gitlab-plugin/compare/v2.0.4...v2.1.0) (2026-04-07)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -4984,7 +4984,15 @@ Examples:
|
|
|
4984
4984
|
// src/index.ts
|
|
4985
4985
|
var gitlabPlugin = async (_input, options) => {
|
|
4986
4986
|
if (options?.tools === false) {
|
|
4987
|
-
return {
|
|
4987
|
+
return {
|
|
4988
|
+
"experimental.chat.system.transform": async (_input2, output) => {
|
|
4989
|
+
output.system.push(
|
|
4990
|
+
`## GitLab Tools via lazy-mcp
|
|
4991
|
+
GitLab API tools (MRs, issues, pipelines, security, search, repos, users, todos, work items, discussions, notes, audit, git, award emoji) are served via the "gitlab" MCP server through lazy-mcp. Use lazy-mcp_list_commands with server "gitlab" to discover and call them.
|
|
4992
|
+
DAP tools (agents, flows, memory, skills) are on the "gitlab-dap" server instead.`
|
|
4993
|
+
);
|
|
4994
|
+
}
|
|
4995
|
+
};
|
|
4988
4996
|
}
|
|
4989
4997
|
return {
|
|
4990
4998
|
tool: {
|