@elyracode/coding-agent 0.7.14 → 0.7.16
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 +12 -0
- package/README.md +25 -14
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +1 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/index.md +3 -3
- package/docs/packages.md +1 -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 +4 -4
package/docs/index.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Elyra Documentation
|
|
2
2
|
|
|
3
|
-
Elyra is a
|
|
3
|
+
Elyra is a terminal-first AI coding agent. Seven built-in tools, a growing extension ecosystem, and a core that stays out of your way. Set a goal and walk away. Rewind when things go wrong. Ask side questions without losing context.
|
|
4
4
|
|
|
5
5
|
## Quick start
|
|
6
6
|
|
|
@@ -27,7 +27,7 @@ For the full first-run flow, see [Quickstart](quickstart.md).
|
|
|
27
27
|
- [Providers](providers.md) - subscription and API-key setup for built-in providers.
|
|
28
28
|
- [Settings](settings.md) - global and project settings.
|
|
29
29
|
- [Keybindings](keybindings.md) - default shortcuts and custom keybindings.
|
|
30
|
-
- [Sessions](sessions.md) - session management, branching,
|
|
30
|
+
- [Sessions](sessions.md) - session management, branching, tree navigation, `/rewind`, and `/goal`.
|
|
31
31
|
- [Compaction](compaction.md) - context compaction and branch summarization.
|
|
32
32
|
|
|
33
33
|
## Customization
|
|
@@ -36,7 +36,7 @@ For the full first-run flow, see [Quickstart](quickstart.md).
|
|
|
36
36
|
- [Skills](skills.md) - Agent Skills for reusable on-demand capabilities.
|
|
37
37
|
- [Prompt templates](prompt-templates.md) - reusable prompts that expand from slash commands.
|
|
38
38
|
- [Themes](themes.md) - built-in and custom terminal themes.
|
|
39
|
-
- [
|
|
39
|
+
- [Elyra packages](packages.md) - bundle and share extensions, skills, prompts, and themes.
|
|
40
40
|
- [Custom models](models.md) - add model entries for supported provider APIs.
|
|
41
41
|
- [Custom providers](custom-provider.md) - implement custom APIs and OAuth flows.
|
|
42
42
|
|
package/docs/packages.md
CHANGED
|
@@ -35,6 +35,7 @@ Elyra packages bundle extensions, skills, prompt templates, and themes so you ca
|
|
|
35
35
|
| `@elyracode/seo` | SEO and LLM optimization — audit, structured data, llms.txt, meta tags |
|
|
36
36
|
| `@elyracode/workflows` | Code-orchestrated workflows — multi-step pipelines where code handles control flow, LLMs handle judgment |
|
|
37
37
|
| `@elyracode/laravel` | Deep Laravel understanding — model relationships, route mapping, architecture analysis |
|
|
38
|
+
| `@elyracode/btw` | Side conversations — ask questions in parallel without affecting the main session |
|
|
38
39
|
|
|
39
40
|
Install any of these with `elyra install npm:@elyracode/<name>`.
|
|
40
41
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elyra-extension-custom-provider",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.15",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "elyra-extension-custom-provider",
|
|
9
|
-
"version": "0.7.
|
|
9
|
+
"version": "0.7.15",
|
|
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.7.
|
|
3
|
+
"version": "0.7.15",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "elyra-extension-sandbox",
|
|
9
|
-
"version": "0.7.
|
|
9
|
+
"version": "0.7.15",
|
|
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.7.
|
|
3
|
+
"version": "0.7.15",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "elyra-extension-with-deps",
|
|
9
|
-
"version": "0.7.
|
|
9
|
+
"version": "0.7.15",
|
|
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.7.
|
|
3
|
+
"version": "0.7.16",
|
|
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.7.
|
|
42
|
-
"@elyracode/ai": "^0.7.
|
|
43
|
-
"@elyracode/tui": "^0.7.
|
|
41
|
+
"@elyracode/agent-core": "^0.7.16",
|
|
42
|
+
"@elyracode/ai": "^0.7.16",
|
|
43
|
+
"@elyracode/tui": "^0.7.16",
|
|
44
44
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
45
45
|
"chalk": "^5.5.0",
|
|
46
46
|
"cli-highlight": "^2.1.11",
|