@elyracode/coding-agent 0.3.6 → 0.4.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/CHANGELOG.md +11 -0
- 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
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.4.0] - 2026-05-11
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Flux UI extension (`@elyracode/flux-ui`): live component index from GitHub, Blade-to-Flux converter, page generator with Livewire 4
|
|
9
|
+
- Laravel AI SDK extension (`@elyracode/stack-laravel-ai`): complete reference for agents, sub-agents, tools, structured output, embeddings, vector stores, streaming, and testing
|
|
10
|
+
|
|
11
|
+
## [0.3.7] - 2026-05-11
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Flux UI extension (`@elyracode/flux-ui`): live component index from GitHub, Blade-to-Flux converter, and page generator
|
|
15
|
+
|
|
5
16
|
## [0.3.6] - 2026-05-11
|
|
6
17
|
|
|
7
18
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyracode/coding-agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
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.
|
|
42
|
-
"@elyracode/ai": "^0.
|
|
43
|
-
"@elyracode/tui": "^0.
|
|
41
|
+
"@elyracode/agent-core": "^0.4.0",
|
|
42
|
+
"@elyracode/ai": "^0.4.0",
|
|
43
|
+
"@elyracode/tui": "^0.4.0",
|
|
44
44
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
45
45
|
"chalk": "^5.5.0",
|
|
46
46
|
"cli-highlight": "^2.1.11",
|