opencode-gitlab-dap 1.12.1 → 1.14.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/README.md +13 -8
- package/dist/index.cjs +476 -82
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +476 -82
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,7 +110,7 @@ The plugin provides a multi-round design workflow:
|
|
|
110
110
|
|
|
111
111
|
The vendored `flow_v2.json` schema from GitLab Rails powers client-side validation using `ajv`, catching errors before hitting the API.
|
|
112
112
|
|
|
113
|
-
###
|
|
113
|
+
### 34 Tools
|
|
114
114
|
|
|
115
115
|
#### DAP Tools (20)
|
|
116
116
|
|
|
@@ -157,13 +157,18 @@ Say **"bootstrap project memory"** to automatically inspect a project and build
|
|
|
157
157
|
|
|
158
158
|
##### Skill Tools
|
|
159
159
|
|
|
160
|
-
| Tool
|
|
161
|
-
|
|
|
162
|
-
| `gitlab_skill_list`
|
|
163
|
-
| `gitlab_skill_load`
|
|
164
|
-
| `gitlab_skill_save`
|
|
165
|
-
| `gitlab_skill_promote`
|
|
166
|
-
|
|
160
|
+
| Tool | Description |
|
|
161
|
+
| ----------------------- | --------------------------------------------------------- |
|
|
162
|
+
| `gitlab_skill_list` | List skills with auto-rebuilding index |
|
|
163
|
+
| `gitlab_skill_load` | Load a skill (SKILL page + available references) |
|
|
164
|
+
| `gitlab_skill_save` | Create/update a skill with required description for index |
|
|
165
|
+
| `gitlab_skill_promote` | Promote a draft skill to published (moves all pages) |
|
|
166
|
+
| `gitlab_skill_discover` | Search group wiki for team-shared skills |
|
|
167
|
+
| `gitlab_skill_install` | Copy a skill from group wiki to project wiki |
|
|
168
|
+
| `gitlab_skill_delete` | Delete a skill and remove from index |
|
|
169
|
+
|
|
170
|
+
Each skill is a directory: `agents/skills/<name>/SKILL` with optional `references/` subpages.
|
|
171
|
+
Skills are indexed in `agents/skills/index` for fast discovery.
|
|
167
172
|
All tools support project scope (default) and group scope (`scope="groups"`).
|
|
168
173
|
|
|
169
174
|
### Dynamic Refresh
|