agentgui 1.0.88 → 1.0.89

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.
Files changed (2) hide show
  1. package/.prd +0 -44
  2. package/package.json +1 -1
package/.prd CHANGED
@@ -1,44 +0,0 @@
1
- HTML Code Block Rendering Implementation
2
-
3
- GOAL: Render HTML code blocks as actual HTML elements instead of escaped text
4
-
5
- DEPENDENCIES:
6
- - streaming-renderer.js renderCode() method modification
7
- - client.js renderMessageContent() method modification
8
- - client.js renderMessages() method modification
9
-
10
- COMPLETED ITEMS:
11
-
12
- 1. DONE: Update streaming-renderer.js renderCode() to detect HTML blocks
13
- - Check if language === 'html' ✓
14
- - If HTML: render content with innerHTML (Claude responses trusted) ✓
15
- - If not HTML: keep existing escaped text rendering ✓
16
- - Wrap HTML output in styled container ✓
17
-
18
- 2. DONE: Update client.js renderMessageContent() to handle HTML code blocks
19
- - Detect block.type === 'code_block' AND block.language === 'html' ✓
20
- - If HTML: render with innerHTML in wrapper div ✓
21
- - If not HTML: escape and display as text ✓
22
-
23
- 3. DONE: Update client.js renderMessages() to handle HTML code blocks
24
- - Detect block.type === 'code_block' AND block.language === 'html' ✓
25
- - If HTML: render with innerHTML in wrapper div ✓
26
- - If not HTML: escape and display as text ✓
27
-
28
- 4. DONE: Style HTML rendered blocks appropriately
29
- - Add CSS classes for container styling ✓
30
- - Ensure proper padding and borders ✓
31
- - Add label indicating "Rendered HTML" ✓
32
-
33
- 5. DONE: Test implementation
34
- - Created test cases for HTML detection logic ✓
35
- - Verified HTML detection correctly identifies html language ✓
36
- - Verified non-HTML code blocks use escaped rendering ✓
37
- - Confirmed no breaking changes to existing logic ✓
38
-
39
- 6. DONE: Commit changes
40
- - Stage modified files ✓
41
- - Create meaningful commit message ✓
42
- - Commit hash: 13ee551 ✓
43
-
44
- ALL WORK COMPLETED ✓
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.88",
3
+ "version": "1.0.89",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",