@elinpf/dsh-ops 0.1.6 → 0.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/package.json +17 -15
- package/presets/ops/agent.cordis.yml +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elinpf/dsh-ops",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Single-package deployment unit for the dsh-ops plugin suite: host-plane rows plus the ops agent preset, over the granular @elinpf/dsh-ops-* packages.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,20 +22,22 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@elinpf/dsh-ops-access": "^0.
|
|
26
|
-
"@elinpf/dsh-ops-access-
|
|
27
|
-
"@elinpf/dsh-ops-access-
|
|
28
|
-
"@elinpf/dsh-ops-access-k8s": "^0.
|
|
29
|
-
"@elinpf/dsh-ops-access-
|
|
30
|
-
"@elinpf/dsh-ops-access-
|
|
31
|
-
"@elinpf/dsh-ops-
|
|
32
|
-
"@elinpf/dsh-ops-
|
|
33
|
-
"@elinpf/dsh-ops-
|
|
34
|
-
"@elinpf/dsh-ops-tool-
|
|
35
|
-
"@elinpf/dsh-ops-tool-
|
|
36
|
-
"@elinpf/dsh-ops-
|
|
37
|
-
"@elinpf/dsh-ops-tool-
|
|
38
|
-
"@elinpf/dsh-ops-
|
|
25
|
+
"@elinpf/dsh-ops-access": "^0.2.0",
|
|
26
|
+
"@elinpf/dsh-ops-access-gate": "^0.2.0",
|
|
27
|
+
"@elinpf/dsh-ops-access-ceph": "^0.2.0",
|
|
28
|
+
"@elinpf/dsh-ops-access-k8s": "^0.2.0",
|
|
29
|
+
"@elinpf/dsh-ops-access-ui": "^0.2.0",
|
|
30
|
+
"@elinpf/dsh-ops-access-prometheus": "^0.2.0",
|
|
31
|
+
"@elinpf/dsh-ops-access-ssh": "^0.2.0",
|
|
32
|
+
"@elinpf/dsh-ops-panel": "^0.2.0",
|
|
33
|
+
"@elinpf/dsh-ops-prompts": "^0.2.0",
|
|
34
|
+
"@elinpf/dsh-ops-tool-environment": "^0.2.0",
|
|
35
|
+
"@elinpf/dsh-ops-tool-kubectl": "^0.2.0",
|
|
36
|
+
"@elinpf/dsh-ops-tool-prometheus": "^0.2.0",
|
|
37
|
+
"@elinpf/dsh-ops-tool-ssh": "^0.2.0",
|
|
38
|
+
"@elinpf/dsh-ops-tool-ceph": "^0.2.0",
|
|
39
|
+
"@elinpf/dsh-ops-tool-trace": "^0.2.0",
|
|
40
|
+
"@elinpf/dsh-ops-trace-ui": "^0.2.0"
|
|
39
41
|
},
|
|
40
42
|
"devDependencies": {
|
|
41
43
|
"typescript": "^5.4.0"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
- id: persona
|
|
25
25
|
name: '@deepseek-ai/dsh-persona'
|
|
26
26
|
config:
|
|
27
|
-
|
|
27
|
+
prefix: >-
|
|
28
28
|
You are a coding agent powered by the {{model}} model. Your working directory is {{cwd}}.
|
|
29
29
|
|
|
30
30
|
- id: agent-instructions
|
|
@@ -292,6 +292,9 @@
|
|
|
292
292
|
- id: ops-access-ssh
|
|
293
293
|
name: '@elinpf/dsh-ops-access-ssh'
|
|
294
294
|
|
|
295
|
+
- id: ops-access-prometheus
|
|
296
|
+
name: '@elinpf/dsh-ops-access-prometheus'
|
|
297
|
+
|
|
295
298
|
# The access gate: per-session credential brokering with human approval.
|
|
296
299
|
# Sits in this realm so its deferred `ctx.inject(['opsAccess'])` broker
|
|
297
300
|
# registration resolves THIS preset's opsAccess instance (registerAccessBroker
|
|
@@ -316,6 +319,12 @@
|
|
|
316
319
|
- id: ops-tool-ssh
|
|
317
320
|
name: '@elinpf/dsh-ops-tool-ssh'
|
|
318
321
|
|
|
322
|
+
# Prometheus query tool: resolves a `prometheus` profile (url + optional
|
|
323
|
+
# token file) through THIS realm's opsAccess, then talks plain read-only
|
|
324
|
+
# HTTP (query/query_range) — no shell, no kubectl port-forward.
|
|
325
|
+
- id: ops-tool-prometheus
|
|
326
|
+
name: '@elinpf/dsh-ops-tool-prometheus'
|
|
327
|
+
|
|
319
328
|
# Environment inventory tool: overview/show/refresh over the scanned
|
|
320
329
|
# cluster map. Needs THIS realm's opsAccess (resolves k8s ro profiles);
|
|
321
330
|
# its prompt half lives in the ops-orchestration group.
|