@elyracode/coding-agent 0.4.7 → 0.4.9
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 +13 -1
- package/docs/docs.json +2 -2
- package/docs/extensions.md +77 -0
- package/docs/index.md +1 -1
- package/docs/usage.md +1 -1
- package/examples/extensions/custom-provider-anthropic/package.json +2 -2
- package/examples/extensions/custom-provider-gitlab-duo/package.json +2 -2
- package/examples/extensions/sandbox/package.json +2 -2
- package/examples/extensions/with-deps/package.json +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## [0.4.
|
|
5
|
+
## [0.4.9] - 2026-05-13
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Subagent orchestrated workflows: `/build-feature` (scout -> planner -> oracle -> worker -> reviewer -> fix), `/ui-review` (adversarial UI testing with screenshots and accessibility checks), `/deep-review` (parallel correctness + tests + security review with synthesis)
|
|
9
|
+
- Git integration: `/git-review` (review diff with go/no-go verdict), `/setup-git-hook` (install pre-push hook that blocks pushes with issues)
|
|
10
|
+
|
|
11
|
+
## [0.4.8] - 2026-05-13
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Design tools extension (`@elyracode/design-tools`): live browser preview with Tailwind CDN, screenshot capture for visual QA, Tailwind design system consistency checker
|
|
15
|
+
- Subagents extension (`@elyracode/subagents`): delegate to focused child agents (scout, reviewer, planner, worker, oracle, researcher, delegate) with single and parallel execution
|
|
16
|
+
|
|
17
|
+
## [0.4.7] - 2026-05-12
|
|
6
18
|
|
|
7
19
|
### Added
|
|
8
20
|
- Design tools extension (`@elyracode/design-tools`): live browser preview with Tailwind CDN, screenshot capture for visual QA, and Tailwind design system consistency checker
|
package/docs/docs.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"path": "quickstart.md"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
|
-
"title": "Using Elyra"
|
|
15
|
+
"title": "Using Elyra",
|
|
16
16
|
"path": "usage.md"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"path": "themes.md"
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
|
-
"title": "Elyra Packages"
|
|
60
|
+
"title": "Elyra Packages",
|
|
61
61
|
"path": "packages.md"
|
|
62
62
|
},
|
|
63
63
|
{
|
package/docs/extensions.md
CHANGED
|
@@ -30,6 +30,7 @@ See [examples/extensions/](../examples/extensions/) for working implementations.
|
|
|
30
30
|
|
|
31
31
|
## Table of Contents
|
|
32
32
|
|
|
33
|
+
- [Installing Extensions](#installing-extensions)
|
|
33
34
|
- [Quick Start](#quick-start)
|
|
34
35
|
- [Extension Locations](#extension-locations)
|
|
35
36
|
- [Available Imports](#available-imports)
|
|
@@ -52,8 +53,84 @@ See [examples/extensions/](../examples/extensions/) for working implementations.
|
|
|
52
53
|
- [Mode Behavior](#mode-behavior)
|
|
53
54
|
- [Examples Reference](#examples-reference)
|
|
54
55
|
|
|
56
|
+
## Installing Extensions
|
|
57
|
+
|
|
58
|
+
There are three ways to install an extension, depending on where it comes from.
|
|
59
|
+
|
|
60
|
+
> **Security:** Extensions run with your full system permissions and execute arbitrary code. Review the source before installing anything from a third party.
|
|
61
|
+
|
|
62
|
+
### 1. Install a published package (npm or git)
|
|
63
|
+
|
|
64
|
+
Use `elyra install` with one of the supported source prefixes:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
# From npm
|
|
68
|
+
elyra install npm:@elyracode/stack-tall
|
|
69
|
+
elyra install npm:@foo/bar@1.2.3 # pin to a version
|
|
70
|
+
|
|
71
|
+
# From GitHub / any git host
|
|
72
|
+
elyra install git:github.com/user/repo
|
|
73
|
+
elyra install git:github.com/user/repo@v1 # pin to a tag, branch, or commit
|
|
74
|
+
elyra install https://github.com/user/repo # raw URLs also work
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
This writes the package to your global settings (`~/.elyra/agent/settings.json`) and downloads it into `~/.elyra/agent/packages/`. The extension is loaded automatically the next time you start Elyra.
|
|
78
|
+
|
|
79
|
+
Use `-l` to install to the **current project only** (writes to `.elyra/settings.json`, which you can commit so your team gets the same extensions):
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
elyra install -l npm:@foo/bar
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### 2. Drop in a single `.ts` file
|
|
86
|
+
|
|
87
|
+
If someone shares an extension as a single TypeScript file, copy it into one of the auto-discovered directories:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
# Global — available in every project
|
|
91
|
+
mkdir -p ~/.elyra/agent/extensions
|
|
92
|
+
cp my-extension.ts ~/.elyra/agent/extensions/
|
|
93
|
+
|
|
94
|
+
# Project-local — only available in this project
|
|
95
|
+
mkdir -p .elyra/extensions
|
|
96
|
+
cp my-extension.ts .elyra/extensions/
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Elyra auto-discovers `*.ts` files (and `*/index.ts` for directory-style extensions) on the next start. Inside a running session, run `/reload` to pick up new or changed files without restarting.
|
|
100
|
+
|
|
101
|
+
If the extension needs npm dependencies, place a `package.json` next to it and run `npm install` in that directory.
|
|
102
|
+
|
|
103
|
+
### 3. Try without installing
|
|
104
|
+
|
|
105
|
+
Use `--extension` (or `-e`) to load an extension for a single run. Nothing is written to settings:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
elyra -e ./my-extension.ts # local file
|
|
109
|
+
elyra -e /abs/path/to/extension # local directory
|
|
110
|
+
elyra -e npm:@foo/bar # remote package (installed to a temp dir)
|
|
111
|
+
elyra -e git:github.com/user/repo
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
This is the recommended way to test an extension before adding it to your settings.
|
|
115
|
+
|
|
116
|
+
### Verify, list, update, and remove
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
elyra list # show installed packages
|
|
120
|
+
elyra update # update Elyra and all non-pinned packages
|
|
121
|
+
elyra update --extensions # update packages only
|
|
122
|
+
elyra update npm:@foo/bar # update a single package
|
|
123
|
+
elyra remove npm:@foo/bar # uninstall
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Inside a session, use `/reload` after editing files in auto-discovered locations to apply changes immediately.
|
|
127
|
+
|
|
128
|
+
See [Elyra Packages](packages.md) for the full reference on package sources, structure, and dependencies.
|
|
129
|
+
|
|
55
130
|
## Quick Start
|
|
56
131
|
|
|
132
|
+
This section walks you through **creating** a new extension from scratch. If you only want to install an existing one, see [Installing Extensions](#installing-extensions) above.
|
|
133
|
+
|
|
57
134
|
Create `~/.elyra/agent/extensions/my-extension.ts`:
|
|
58
135
|
|
|
59
136
|
```typescript
|
package/docs/index.md
CHANGED
|
@@ -29,7 +29,7 @@ For the full first-run flow, see [Quickstart](quickstart.md).
|
|
|
29
29
|
## Start here
|
|
30
30
|
|
|
31
31
|
- [Quickstart](quickstart.md) - install, authenticate, and run a first session.
|
|
32
|
-
- [Using
|
|
32
|
+
- [Using Elyra](usage.md) - interactive mode, slash commands, context files, and CLI reference.
|
|
33
33
|
- [Providers](providers.md) - subscription and API-key setup for built-in providers.
|
|
34
34
|
- [Settings](settings.md) - global and project settings.
|
|
35
35
|
- [Keybindings](keybindings.md) - default shortcuts and custom keybindings.
|
package/docs/usage.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyracode/coding-agent",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
|
|
3
|
+
"version": "0.4.9",
|
|
4
|
+
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"elyraConfig": {
|
|
7
7
|
"configDir": ".elyra"
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"prepublishOnly": "npm run clean && npm run build"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@elyracode/agent-core": "^0.4.
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
"@elyracode/agent-core": "^0.4.9",
|
|
42
|
+
"@elyracode/ai": "^0.4.9",
|
|
43
|
+
"@elyracode/tui": "^0.4.9",
|
|
44
44
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
45
45
|
"chalk": "^5.5.0",
|
|
46
46
|
"cli-highlight": "^2.1.11",
|