@elyracode/coding-agent 0.9.27 → 0.9.29
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 +4 -0
- package/docs/usage.md +25 -0
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
package/docs/usage.md
CHANGED
|
@@ -148,6 +148,31 @@ elyra config # Enable/disable package resources
|
|
|
148
148
|
|
|
149
149
|
See [Elyra Packages](packages.md) for package sources and security notes.
|
|
150
150
|
|
|
151
|
+
### Diagnostics
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
elyra doctor # list the subcommands
|
|
155
|
+
elyra doctor preflight # validate configured defaults, offline
|
|
156
|
+
elyra doctor models # live-verify providers behave as the registry claims
|
|
157
|
+
elyra doctor routing # per-model outcome measurements from the local ledger
|
|
158
|
+
elyra doctor resources # running Elyra instances, their memory and CPU time
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
| Command | What it answers |
|
|
162
|
+
|---------|-----------------|
|
|
163
|
+
| `preflight` | Are my configured defaults still real models, and is there a newer one? Offline — it reads the registry rather than the network |
|
|
164
|
+
| `models` | Does this provider actually behave the way the registry says, including thinking mode? **Makes real API calls**, so it costs a little. `--provider`, `--model` and `--max <n>` narrow it |
|
|
165
|
+
| `routing` | Which models are failing me? Turn success, edit failures, retries and failovers, measured locally and never sent anywhere |
|
|
166
|
+
| `resources` | What is Elyra costing this machine right now? |
|
|
167
|
+
|
|
168
|
+
`elyra doctor resources` lists every running instance with its age, accumulated CPU
|
|
169
|
+
time and memory — including the language servers and headless browsers it started,
|
|
170
|
+
which are the part people do not think to look for. Idle Elyra uses no CPU, but a
|
|
171
|
+
forgotten instance holds its memory, so an instance that is both large and more than
|
|
172
|
+
a day old is flagged with a kill hint you can paste. Not available on Windows yet.
|
|
173
|
+
|
|
174
|
+
`preflight` exits non-zero when it finds a problem, so it can gate a script.
|
|
175
|
+
|
|
151
176
|
### Modes
|
|
152
177
|
|
|
153
178
|
| Flag | Description |
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elyra-extension-custom-provider",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "elyra-extension-custom-provider",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.29",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sdk": "^0.52.0"
|
|
12
12
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elyra-extension-sandbox",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "elyra-extension-sandbox",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.29",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sandbox-runtime": "^0.0.26"
|
|
12
12
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elyra-extension-with-deps",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "elyra-extension-with-deps",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.29",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"ms": "^2.1.3"
|
|
12
12
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyracode/coding-agent",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"elyraConfig": {
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"prepublishOnly": "npm run clean && npm run build"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@elyracode/agent-core": "^0.9.
|
|
42
|
-
"@elyracode/ai": "^0.9.
|
|
43
|
-
"@elyracode/tui": "^0.9.
|
|
41
|
+
"@elyracode/agent-core": "^0.9.29",
|
|
42
|
+
"@elyracode/ai": "^0.9.29",
|
|
43
|
+
"@elyracode/tui": "^0.9.29",
|
|
44
44
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
45
45
|
"chalk": "^5.5.0",
|
|
46
46
|
"cli-highlight": "^2.1.11",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"@elyracode/clipboard": "^0.9.
|
|
70
|
+
"@elyracode/clipboard": "^0.9.29"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@types/diff": "^7.0.2",
|