opencode-gitlab-plugin 2.0.3 → 2.0.4

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 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.0.4](https://gitlab.com/vglafirov/opencode-gitlab-plugin/compare/v2.0.3...v2.0.4) (2026-04-01)
6
+
7
+
8
+ ### ♻️ Code Refactoring
9
+
10
+ * remove DAP agent/flow tools (moved to opencode-gitlab-dap) ([9377e43](https://gitlab.com/vglafirov/opencode-gitlab-plugin/commit/9377e430b72ecddcbefda866b9fc9262d96a9963))
11
+
5
12
  ## [2.0.3](https://gitlab.com/vglafirov/opencode-gitlab-plugin/compare/v2.0.2...v2.0.3) (2026-03-22)
6
13
 
7
14
 
package/README.md CHANGED
@@ -40,6 +40,11 @@ A comprehensive GitLab API plugin for OpenCode that provides AI-powered access t
40
40
  - **🔧 Git Commands**: Execute safe, read-only git operations
41
41
  - **👥 Project Management**: Member management and project details
42
42
 
43
+ ### Companion Plugin: DAP (Duo Agent Platform)
44
+
45
+ For GitLab AI Catalog agent/flow management, flow execution, and `@` menu integration,
46
+ see [opencode-gitlab-dap](https://gitlab.com/vglafirov/opencode-gitlab-dap).
47
+
43
48
  ### Technical Features
44
49
 
45
50
  - **TypeScript**: Full type safety with comprehensive type definitions
@@ -53,7 +58,7 @@ A comprehensive GitLab API plugin for OpenCode that provides AI-powered access t
53
58
  - **Rate Limiting**: Built-in handling for GitLab API rate limits
54
59
  - **Caching**: Efficient API response handling
55
60
  - **Modular Architecture**: Clean separation of concerns with client and tool modules
56
- - **Comprehensive Testing**: 180 tests with full coverage of all features
61
+ - **Comprehensive Testing**: 225 tests with full coverage of all features
57
62
 
58
63
  ### GraphQL-Powered Tools
59
64
 
@@ -755,7 +760,7 @@ opencode-gitlab-plugin/
755
760
  │ ├── index.ts # Main plugin entry point
756
761
  │ ├── utils.ts # Utility functions
757
762
  │ └── validation.ts # GID validation utilities
758
- ├── tests/ # Test suite (180 tests)
763
+ ├── tests/ # Test suite (225 tests)
759
764
  │ ├── client/ # Client tests
760
765
  │ ├── tools/ # Tool tests
761
766
  │ ├── validation.test.ts # Validation tests
@@ -877,7 +882,7 @@ npm run test:coverage
877
882
 
878
883
  **Test Coverage:**
879
884
 
880
- - **180 tests** across 21 test files
885
+ - **225 tests** across 25 test files
881
886
  - Client tests for all API methods (REST and GraphQL)
882
887
  - Tool tests for all tool definitions
883
888
  - Validation tests for GID utilities
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-gitlab-plugin",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "GitLab tools plugin for OpenCode - provides GitLab API access for merge requests, issues, pipelines, and more",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",