@gitlab/opencode-gitlab-plugin 1.0.1
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 +292 -0
- package/README.md +1283 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.js +3853 -0
- package/package.json +87 -0
- package/scripts/postinstall.mjs +163 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Plugin } from '@opencode-ai/plugin';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* GitLab Tools Plugin for OpenCode
|
|
5
|
+
*
|
|
6
|
+
* Provides tools for interacting with GitLab:
|
|
7
|
+
* - Merge requests: get, list, changes, discussions, notes (list/create), diffs (paginated)
|
|
8
|
+
* - Issues: create, get, list, notes (list/create/get), discussions
|
|
9
|
+
* - Epics: get, list, create, update, manage issues, notes (list/create/get), discussions
|
|
10
|
+
* - Pipelines: list, get, jobs, logs, retry, failing jobs, CI linter
|
|
11
|
+
* - Repository: get file, commits, diff, branches, tree, create commit, commit comments
|
|
12
|
+
* - Search: projects, issues, MRs, blobs, commits, etc.
|
|
13
|
+
* - Projects: get project, list members
|
|
14
|
+
* - Users: get current user
|
|
15
|
+
* - TODOs: list, mark as done, get count
|
|
16
|
+
* - Security: list vulnerabilities, get vulnerability details
|
|
17
|
+
* - Audit: list project/group/instance audit events
|
|
18
|
+
* - Wikis: get wiki page
|
|
19
|
+
* - Work Items: get, list, create, update, notes
|
|
20
|
+
* - Snippets: discussions, notes
|
|
21
|
+
* - Discussions: universal discussion tools for all resource types
|
|
22
|
+
* - Git: execute safe, read-only git commands in repository
|
|
23
|
+
*/
|
|
24
|
+
declare const gitlabPlugin: Plugin;
|
|
25
|
+
|
|
26
|
+
export { gitlabPlugin as default, gitlabPlugin };
|