@nail00749/agent-gvozd 0.1.0 → 0.1.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/README.md +27 -17
- package/defaults/agents/back-deep.jsonc +1 -1
- package/defaults/agents/back-fast.jsonc +1 -1
- package/defaults/agents/debugger.jsonc +1 -1
- package/defaults/agents/devops.jsonc +1 -1
- package/defaults/agents/docs.jsonc +1 -1
- package/defaults/agents/front-deep.jsonc +1 -1
- package/defaults/agents/front-fast.jsonc +1 -1
- package/defaults/agents/planner.jsonc +1 -1
- package/defaults/agents/researcher.jsonc +1 -1
- package/defaults/agents/review-deep.jsonc +1 -1
- package/defaults/agents/review-fast.jsonc +1 -1
- package/defaults/agents/security.jsonc +1 -1
- package/defaults/agents/verifier.jsonc +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -161,28 +161,38 @@ access to that ambiguous action is denied.
|
|
|
161
161
|
|
|
162
162
|
## Default capabilities
|
|
163
163
|
|
|
164
|
-
The built-in team uses exact skill IDs
|
|
165
|
-
|
|
166
|
-
GitLab, GitNexus, and Playwright
|
|
167
|
-
|
|
164
|
+
The built-in team uses exact skill IDs, a server-wide grant to the configured
|
|
165
|
+
Context7 documentation server where current library references help the role,
|
|
166
|
+
and tool-level MCP permissions for GitLab, GitNexus, and Playwright. Those
|
|
167
|
+
broader servers remain tool-scoped because each exposes actions that are too
|
|
168
|
+
broad for at least one receiving role.
|
|
169
|
+
|
|
170
|
+
The Context7 grant activates only when OpenCode already has an MCP server named
|
|
171
|
+
exactly `context7`. Gvozd grants access to that server; it does not install or
|
|
172
|
+
configure it, inspect its implementation, or constrain its individual tools.
|
|
173
|
+
Operators must trust that exact server identity and its advertised tool set.
|
|
168
174
|
|
|
169
175
|
| Agents | Skills | MCP access |
|
|
170
176
|
| --- | --- | --- |
|
|
171
|
-
| `
|
|
172
|
-
| `
|
|
173
|
-
| `
|
|
174
|
-
| `
|
|
175
|
-
| `
|
|
176
|
-
| `
|
|
177
|
+
| `master` | none | none |
|
|
178
|
+
| `planner` | verification planning, ASCII UI review, GitNexus impact | Context7; GitNexus read-only |
|
|
179
|
+
| `back-fast` | none | Context7 |
|
|
180
|
+
| `back-deep` | GitNexus impact and refactoring | Context7; GitNexus except group sync |
|
|
181
|
+
| `front-fast` | modern web and interface polish | Context7; Playwright observation; interactions ask |
|
|
182
|
+
| `front-deep` | frontend/layout skills plus GitNexus impact/refactoring | Context7; GitNexus except group sync; Playwright interactions ask |
|
|
183
|
+
| `review-fast` | code review | Context7; read-only GitLab without CI variables |
|
|
184
|
+
| `review-deep` | code review and GitNexus review/impact | Context7; read-only GitLab and GitNexus |
|
|
185
|
+
| `researcher` | none | Context7 |
|
|
177
186
|
| `explorer` | GitNexus exploration | GitNexus read-only |
|
|
178
187
|
| `git` | none | GitLab reads; mutations ask; CI variables denied |
|
|
179
|
-
| `
|
|
180
|
-
| `
|
|
181
|
-
| `
|
|
182
|
-
| `
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
188
|
+
| `docs` | none | Context7 |
|
|
189
|
+
| `verifier` | verification before completion | Context7; read-only GitNexus; Playwright interactions ask |
|
|
190
|
+
| `debugger` | systematic debugging and GitNexus debugging/PDG | Context7; read-only GitNexus; Playwright interactions ask |
|
|
191
|
+
| `security` | code review and GitNexus taint/PDG | Context7; read-only GitLab/GitNexus; Playwright interactions ask |
|
|
192
|
+
| `devops` | verification before completion | Context7; GitLab reads and CI validation; mutations ask; CI variables denied |
|
|
193
|
+
|
|
194
|
+
`master`, `explorer`, and `git` intentionally receive no Context7 grant. TDD
|
|
195
|
+
skills are not enabled implicitly.
|
|
186
196
|
|
|
187
197
|
## Model order
|
|
188
198
|
|
package/dist/index.js
CHANGED
|
@@ -6246,7 +6246,8 @@ var src_default = Plugin.define({
|
|
|
6246
6246
|
id: "agent-gvozd",
|
|
6247
6247
|
async setup(ctx) {
|
|
6248
6248
|
const config = loadConfig(ctx.location.project.directory);
|
|
6249
|
-
|
|
6249
|
+
const mcp = await ctx.mcp.list();
|
|
6250
|
+
let mcpServers = mcp.data.map((server) => server.name);
|
|
6250
6251
|
let models = await ctx.catalog.model.list();
|
|
6251
6252
|
const fileLeases = await installFileLeaseRuntime(ctx, config);
|
|
6252
6253
|
const agentTransform = await ctx.agent.transform((agents) => {
|
package/package.json
CHANGED