@elyracode/coding-agent 0.7.15 → 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 +2 -0
- package/README.md +25 -14
- package/docs/index.md +3 -3
- 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.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -11,11 +11,21 @@
|
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
Elyra is a
|
|
14
|
+
Elyra is a terminal-first AI coding agent that adapts to your workflows instead of dictating them. Seven built-in tools (`read`, `edit`, `write`, `bash`, `grep`, `find`, `ls`), a growing ecosystem of [extensions](#extensions), and a small core that stays out of your way.
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
**What makes it different:**
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
- **`/goal`** — set a completion condition and the agent keeps working until it passes. No manual "continue."
|
|
19
|
+
- **`/rewind`** — roll back both conversation and files to any previous point with git-based checkpoints.
|
|
20
|
+
- **Smart read** — large files return structural outlines instead of raw dumps. Hash-annotated lines for precise edits.
|
|
21
|
+
- **Post-edit diagnostics** — the edit tool runs `tsc` after each change and reports errors immediately.
|
|
22
|
+
- **`/btw`** — parallel side conversations that don't touch the main context.
|
|
23
|
+
- **`/update`** — update and restart without leaving the session.
|
|
24
|
+
- **[Workflows](#elyra-packages)** — code-orchestrated pipelines where code handles control flow and the LLM handles judgment.
|
|
25
|
+
|
|
26
|
+
Extend with TypeScript [Extensions](#extensions), [Skills](#skills), [Prompt Templates](#prompt-templates), and [Themes](#themes). Share via npm or git as [Elyra Packages](#elyra-packages).
|
|
27
|
+
|
|
28
|
+
Four modes: interactive, print/JSON, RPC for process integration, and an SDK for embedding.
|
|
19
29
|
|
|
20
30
|
## Share your OSS coding agent sessions
|
|
21
31
|
|
|
@@ -161,13 +171,16 @@ Type `/` in the editor to trigger commands. [Extensions](#extensions) can regist
|
|
|
161
171
|
| `/name <name>` | Set session display name |
|
|
162
172
|
| `/session` | Show session info (file, ID, messages, tokens, cost) |
|
|
163
173
|
| `/tree` | Jump to any point in the session and continue from there |
|
|
174
|
+
| `/rewind` | Rewind session and file state to a previous checkpoint |
|
|
164
175
|
| `/fork` | Create a new session from a previous user message |
|
|
165
176
|
| `/clone` | Duplicate the current active branch into a new session |
|
|
177
|
+
| `/goal <cmd>` | Agent keeps working until the command exits with code 0 |
|
|
166
178
|
| `/compact [prompt]` | Manually compact context, optional custom instructions |
|
|
167
179
|
| `/copy` | Copy last assistant message to clipboard |
|
|
168
180
|
| `/export [file]` | Export session to HTML file |
|
|
169
181
|
| `/share` | Upload as private GitHub gist with shareable HTML link |
|
|
170
|
-
| `/reload` | Reload keybindings, extensions, skills, prompts, and context files
|
|
182
|
+
| `/reload` | Reload keybindings, extensions, skills, prompts, and context files |
|
|
183
|
+
| `/update` | Update Elyra to the latest version and restart |
|
|
171
184
|
| `/hotkeys` | Show all keyboard shortcuts |
|
|
172
185
|
| `/changelog` | Display version history |
|
|
173
186
|
| `/quit` | Quit elyra |
|
|
@@ -237,6 +250,10 @@ Use `/session` in interactive mode to see the current session ID before reusing
|
|
|
237
250
|
|
|
238
251
|
**`/clone`** - Duplicate the current active branch into a new session file at the current position. The new session keeps the full active-path history and opens with an empty editor.
|
|
239
252
|
|
|
253
|
+
**`/rewind`** - Roll back both conversation and file state to a previous point. Git checkpoints are created automatically before each agent turn. Select a checkpoint, and Elyra navigates the session tree and restores tracked files via git.
|
|
254
|
+
|
|
255
|
+
**`/goal <command>`** - Set a completion condition. After each agent turn, the command runs. Exit 0 = goal met, agent stops. Non-zero = output sent back to the agent, work continues automatically. Example: `/goal npm run check`.
|
|
256
|
+
|
|
240
257
|
**`--fork <path|id>`** - Fork an existing session file or partial session UUID directly from the CLI. This copies the full source session into a new session file in the current project.
|
|
241
258
|
|
|
242
259
|
### Compaction
|
|
@@ -447,21 +464,15 @@ See [docs/rpc.md](docs/rpc.md) for the protocol.
|
|
|
447
464
|
|
|
448
465
|
## Philosophy
|
|
449
466
|
|
|
450
|
-
Elyra
|
|
467
|
+
Elyra keeps the core small and pushes workflow-specific behavior into extensions. The built-in tools handle reading, writing, editing, and searching. Everything else — Laravel support, SEO tools, LSP, workflows, side conversations — ships as installable extensions that you opt into.
|
|
451
468
|
|
|
452
|
-
**
|
|
469
|
+
**Use code for what code is good at. Use models for what models are good at.** The `/goal` command is a shell check, not an LLM judgment. The `/workflow` engine is a JSON runner, not an AI planner. Prompt caching is a message reorder, not a feature flag. The best optimizations don't involve the model at all.
|
|
453
470
|
|
|
454
|
-
**No
|
|
455
|
-
|
|
456
|
-
**No permission popups.** Run in a container, or build your own confirmation flow with [extensions](#extensions) inline with your environment and security requirements.
|
|
457
|
-
|
|
458
|
-
**No plan mode.** Write plans to files, or build it with [extensions](#extensions), or install a package.
|
|
471
|
+
**No permission popups.** The agent runs tools directly. If you need gating, build it with [extensions](#extensions) or run in a container.
|
|
459
472
|
|
|
460
473
|
**No built-in to-dos.** They confuse models. Use a TODO.md file, or build your own with [extensions](#extensions).
|
|
461
474
|
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
Read the [blog post](https://mariozechner.at/posts/2025-11-30-elyra-coding-agent/) for the full rationale.
|
|
475
|
+
See [elyracode.com/blog](https://elyracode.com/blog) for design rationale and release notes.
|
|
465
476
|
|
|
466
477
|
---
|
|
467
478
|
|
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/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",
|