poetry-agent 0.0.4 → 0.1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/poetry/agent/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b431842dfbb921394ed37568220e59c06ac11b2efc67d8845f9087faa472eda
|
|
4
|
+
data.tar.gz: 83b79d109c54cf5de587c8d3d61751c5d4da2a64408693cce714f0ed2b1404a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7cfdb8e3c559c77d2eae086165cf35ce7337a156c229cd5bf9e9ab9c143d89b1ec269cd62586cab010d8442e285a22c6b9dba299c0841e52ca6f55079ac4a4cf
|
|
7
|
+
data.tar.gz: 8698481f32a719b868bf2d3cbf36d217e140754e627075b6d892d4e22d6a0e518950a58e92a3eb8a688bfff4d87f713f2781d495310ba8d0321c21761209ac60
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
## [0.1.0] - 2026-09-05
|
|
6
|
+
|
|
7
|
+
Initial public release. The family releases in lockstep; every gem pins its siblings at the same version.
|
|
8
|
+
|
|
9
|
+
- An MCP server (stdio and HTTP) with ten tools read from the live registry: compose, build_page, list_components, describe_component, check, list_blocks, describe_block, list_recipes, get_skill, and guidance.
|
|
10
|
+
- The WebMCP runtime: Stimulus controllers that register component tools with the browser's agent, `poetry_webmcp_form`, a registration budget, and the origin trial middleware.
|
|
11
|
+
- An AG-UI client: SSE parsing, a transcript that folds events into messages, a relay that streams them as Poetry chat rows over Turbo Streams, and client tool bridging.
|
|
12
|
+
- A2UI on Rails: session, surface, and pointer model, the basic catalog and a native catalog for every registry component, checks and functions, the renderer, and Turbo Stream delivery with the versioned `vreplace` action.
|
|
13
|
+
- The `@poetry/agent` runtime registering all of it in one call.
|
data/lib/poetry/agent/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: poetry-agent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Solt
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.0
|
|
18
|
+
version: 0.1.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.0
|
|
25
|
+
version: 0.1.0
|
|
26
26
|
description: 'The agent-interop gem of Poetry, the AI-native UI component library.
|
|
27
27
|
Five surfaces: the boot-free poetry-agent MCP server (the component contract over
|
|
28
28
|
Model Context Protocol, with runtime skill delivery); the WebMCP runtime that registers
|