)]}'
{
  "log": [
    {
      "commit": "cf724583660cf683efa7fd8eb9b32e120e88beb7",
      "tree": "ca8f4072f3e131ace3400552698caa04786a155c",
      "parents": [
        "4432056dc2db2f4b9b1120a890255a540a4c8537"
      ],
      "author": {
        "name": "banksean",
        "email": "banksean@gmail.com",
        "time": "Mon Jul 21 22:22:57 2025 +0000"
      },
      "committer": {
        "name": "Autoformatter",
        "email": "bot@sketch.dev",
        "time": "Mon Jul 21 22:45:56 2025 +0000"
      },
      "message": "skaband: move timeline viewer from sketch/webui to resolve bundle conflicts\n\nMove read-only timeline viewer functionality from sketch/webui to skaband\nto eliminate custom element registration conflicts when using newsessions\nwith newui\u003dtrue parameter.\n\nChanges made:\n- Created skaband/sketch-timeline-readonly.ts with timeline viewer functionality\n- Updated skaband/messages.gohtml to use local sketch-timeline-readonly.js bundle\n- Removed messages-viewer.ts from sketch/webui build configuration\n- Updated Makefile to remove messages-viewer bundle extraction steps\n- Added sketch-timeline-readonly.ts to skaband build.js entry points\n\nFiles created:\n- skaband/sketch-timeline-readonly.ts: Timeline viewer component for archived sessions\n- skaband/sketch-timeline-readonly.test.ts: Test coverage for timeline functionality\n\nFiles removed:\n- sketch/webui/src/messages-viewer.ts: Relocated to skaband\n- sketch/webui/src/messages-viewer.test.ts: Relocated to skaband\n\nBuild configuration updates:\n- sketch/webui/esbuild.go: Remove messages-viewer.ts from bundleTs arrays\n- sketch/webui/package.json: Remove messages-viewer.js export\n- skaband/build.js: Add sketch-timeline-readonly.ts entry point\n- Makefile: Remove messages-viewer bundle extraction from build and prepare-deploy\n\nThe timeline viewer is only used by skaband for archived session viewing,\nso co-locating it with skaband eliminates the architectural issue where\nboth messages-viewer.js and newsessions-components.js contained overlapping\ncustom elements (sketch-timeline, sketch-tool-card-*, etc.) causing\nregistration conflicts.\n\nThis change resolves bundle conflicts on /newsessions?newui\u003dtrue while\nmaintaining identical functionality for archived message viewing.\n\nCo-Authored-By: sketch \u003chello@sketch.dev\u003e\nChange-ID: sd62ec3594672899ek\n"
    },
    {
      "commit": "c514748e2bebc4c0d2955c3da15224f4a71aed19",
      "tree": "b849f32531dd8fad42060eb38127d018bb7fb131",
      "parents": [
        "26bc659f8f7e8864a6fb0a71dcbee7d3742d3763"
      ],
      "author": {
        "name": "banksean",
        "email": "banksean@gmail.com",
        "time": "Sun Jun 29 00:41:58 2025 +0000"
      },
      "committer": {
        "name": "Autoformatter",
        "email": "bot@sketch.dev",
        "time": "Tue Jul 01 03:51:08 2025 +0000"
      },
      "message": "webui: convert SketchTimelineMessage to TailwindElement with TypeScript demo module\n\nConvert SketchTimelineMessage component from Lit CSS-in-JS styles to TailwindElement\ninheritance with Tailwind utility classes, and replace standalone HTML test with\ncomprehensive TypeScript demo module integrated with the demo runner framework.\n\nProblems Solved:\n\nCSS Inconsistency and Shadow DOM Isolation:\n- SketchTimelineMessage used shadow DOM with extensive CSS-in-JS styles while other components use TailwindElement\n- Component styling was isolated from global design system and Tailwind utilities\n- Over 400 lines of CSS-in-JS code created maintenance overhead and styling inconsistencies\n- No access to global Tailwind utility classes within shadow DOM environment\n\nTest Infrastructure Brittleness:\n- Tests relied on CSS class selectors that were implementation details\n- Complex CSS class selectors made tests fragile to styling changes\n- No standardized approach for testing UI elements across component library\n- Test selectors tightly coupled to internal CSS implementation\n\nMissing Development Infrastructure:\n- timeline-message-test.html was standalone and not integrated with demo runner\n- Required manual HTML file maintenance and Tailwind CDN loading\n- Component not discoverable through standardized demo system\n- No interactive controls for testing different component states\n- No integration with demo framework utilities and mock data\n\nSolution Implementation:\n\nTailwindElement Conversion:\n- Changed inheritance from LitElement to SketchTailwindElement to disable shadow DOM\n- Replaced all CSS-in-JS styles with equivalent Tailwind utility classes\n- Converted over 400 lines of CSS to responsive Tailwind class compositions\n- Maintained complete visual and functional parity while using global design system\n\nCSS Class Mapping and Styling:\n- .message → relative mb-1.5 flex flex-col w-full (base message layout)\n- .message-content → relative px-2.5 py-1.5 rounded-xl shadow-sm max-w-full w-fit (message bubble)\n- .user .message-content → bg-blue-500 text-white rounded-br-sm (user message styling)\n- .agent .message-content → bg-gray-100 text-black rounded-bl-sm (agent message styling)\n- .message-actions → absolute top-1 right-1 z-10 opacity-0 hover:opacity-100 (interaction buttons)\n- .commit-card → bg-gray-100 rounded-lg overflow-hidden mb-1.5 shadow-sm (commit display)\n- .commit-hash → text-blue-600 font-bold font-mono cursor-pointer bg-blue-600/10 (commit hash styling)\n- .commit-branch → text-green-600 font-medium cursor-pointer font-mono bg-green-600/10 (branch styling)\n\nTest Infrastructure Modernization:\n- Replaced CSS class selectors with Tailwind class selectors for reliable element targeting\n- Updated all test selectors to use new Tailwind class patterns for better maintainability\n- Converted .message-text to .overflow-x-auto for text content targeting\n- Converted .message-info-panel to .mt-2.p-2 for info panel targeting\n- Converted .commit-notification to .bg-green-100 for commit notification targeting\n- Maintained all existing test functionality while improving test reliability\n\nTypeScript Demo Module Creation:\n- Created sketch-timeline-message.demo.ts following established demo module pattern\n- Comprehensive component demonstration with multiple message types and features\n- Interactive controls for testing component behavior and state changes\n- Proper integration with demo framework types, utilities, and mock data system\n- Added component to knownComponents registry in demo-runner.ts for discoverability\n\nDemo Content Organization and Features:\n- Message Types section: User, agent, and error message examples with proper styling\n- Interactive Features section: Live component with control buttons for state testing\n- Advanced Examples section: Tool calls, commits, and complex markdown demonstrations\n- Interactive controls: Toggle info panel, change message type, toggle compact padding, cycle content examples\n- Event listeners for commit diff interactions and proper error handling\n\nGlobal Styling Architecture:\n- Added global CSS using document.head.appendChild for complex styling not easily replicated with Tailwind\n- Implemented floating message animations and transitions for user feedback\n- Created comprehensive markdown content styling for both user and agent messages\n- Added print media query support using Tailwind print: variants for proper printing\n- Used Tailwind @apply directive in global styles for complex component styling\n\nImplementation Details:\n\nComponent Structure and Functionality:\n- Maintained all existing properties, methods, and component lifecycle hooks\n- Preserved scroll handling, markdown rendering, and interaction features completely\n- Added comprehensive Tailwind class composition for dynamic styling based on message type\n- Kept all existing functionality while changing only the styling implementation approach\n\nVisual Consistency and Behavior:\n- All colors, spacing, borders, and animations maintained complete visual parity\n- User message styling: blue background with white text and right alignment\n- Agent message styling: gray background with black text and left alignment\n- Commit cards: consistent styling with color-coded elements and proper interaction states\n- Info panels: conditional styling based on message type with proper contrast\n\nInteractive Features and Accessibility:\n- Copy buttons with proper hover states and transition animations\n- Info toggle functionality with slide-in panel animations and proper state management\n- Commit hash and branch click-to-copy functionality with user feedback\n- Floating success/error messages with proper positioning and accessibility\n- Keyboard navigation and screen reader compatibility maintained\n\nDemo Module Architecture:\n- Follows DemoModule interface with title, description, imports, and setup function\n- Includes Tailwind CSS styles for proper component rendering in demo environment\n- Cleanup function for demo-specific style removal to prevent memory leaks\n- Comprehensive error handling for malformed message data and edge cases\n- Uses existing demo fixture utilities and realistic mock state for consistency\n\nMock Data Integration and Examples:\n- Realistic message examples with proper timestamps, IDs, and conversation threading\n- Tool call examples with proper structure, formatting, and result display\n- Git commit examples with hash, branch, subject, and GitHub integration\n- Usage information examples with token counts, costs, and performance metrics\n- Error message examples with proper error state styling and user guidance\n\nFiles Modified:\n- sketch/webui/src/web-components/sketch-timeline-message.ts: TailwindElement inheritance and complete Tailwind class conversion\n- sketch/webui/src/web-components/sketch-timeline-message.test.ts: Updated test selectors to use new Tailwind class patterns\n\nFiles Added:\n- sketch/webui/src/web-components/demo/sketch-timeline-message.demo.ts: Comprehensive TypeScript demo module\n\nFiles Modified (Demo Integration):\n- sketch/webui/src/web-components/demo/demo-framework/demo-runner.ts: Added sketch-timeline-message to knownComponents\n\nFiles Removed:\n- sketch/webui/src/web-components/demo/timeline-message-test.html: Replaced with TypeScript demo module\n\nThe conversion maintains complete visual and functional parity while enabling\nconsistent styling across the component library, improving test reliability\nthrough semantic Tailwind class targeting, and providing superior development\ncapabilities through integrated TypeScript demo infrastructure.\n\nCo-Authored-By: sketch \u003chello@sketch.dev\u003e\nChange-ID: s0efb435d3be1c182k\n"
    },
    {
      "commit": "cad67b0ac0e374dd687ca4ef8abddbc9c4323fd5",
      "tree": "44b66d28b1be62eb47b3cc26fd228c7031704922",
      "parents": [
        "cebb03c0513e98e1861efe787ac1577c614e2e52"
      ],
      "author": {
        "name": "banksean",
        "email": "banksean@gmail.com",
        "time": "Fri Jun 27 21:57:05 2025 +0000"
      },
      "committer": {
        "name": "Autoformatter",
        "email": "bot@sketch.dev",
        "time": "Fri Jun 27 22:21:38 2025 +0000"
      },
      "message": "sketch: add git username attribution for user messages in timeline\n\nImplement comprehensive user attribution system displaying git username below user message bubbles in both active sketch sessions and archived skaband message views, with full test coverage.\n\nProblems Solved:\n\nMissing User Attribution:\n- User messages in timeline lacked visible attribution for identification\n- No way to distinguish which user sent messages in shared or review contexts\n- Timeline display provided no user context beyond message type differentiation\n- Archived messages on skaband /messages/\u003csession-id\u003e page had no user attribution\n\nInconsistent Attribution Between Views:\n- Active sketch sessions and archived skaband views used different component systems\n- Messages-viewer component wasn\u0027t setting state property for timeline attribution\n- Git username information wasn\u0027t being extracted from session data in skaband\n- Version skew between sketch and skaband frontend components\n\nSolution Implementation:\n\nBackend State Management:\n- Added GitUsername() method to Agent struct returning config.GitUsername\n- Extended CodingAgent interface to include GitUsername() method\n- Added git_username field to State struct in loophttp.go\n- Populated git_username in getState() method from agent.GitUsername()\n- Enhanced skaband SessionWithData with UserName field for git username storage\n- Updated session JSON parsing to extract git_username into UserName field\n\nFrontend Timeline Component:\n- Added user attribution display outside and below user message bubbles\n- Right-edge alignment of username with message bubble edge\n- Clean visual separation between message content and attribution metadata\n- Conditional rendering only for user message types with available git_username\n- Responsive design handling both normal and compact display modes\n\nSkaband Integration:\n- Modified messages-viewer.ts to create proper State object for timeline component\n- Added git_username population with fallback hierarchy for backward compatibility\n- Enhanced session JSON parsing to extract git_username into UserName field\n- Updated all session data retrieval functions in skaband database layer\n- Ensured consistent attribution across active and archived message views\n\nVisual Design:\n- Username displays in 11px italic font below message content\n- Right-aligned to match user message bubble alignment\n- Color: #666 for clear contrast and subtle attribution appearance\n- 4px top margin for appropriate spacing from message bubble\n- CSS classes: .user-name-container and .user-name for styling\n\nImplementation Details:\n\nState Management Architecture:\n- Active sessions: Agent config → State object → timeline component\n- Archived sessions: Session JSON → SessionWithData.UserName → State object → timeline component\n- Consistent data flow ensuring attribution works in both contexts\n- Three-tier fallback: session_state.git_username → user_name → undefined\n\nData Extraction Pipeline:\n- Session JSON parsing extracts git_username using same pattern as user_email\n- Database layer updates in GetAllSessionStateData, SearchSessionsByMessageContentPaginated, GetSessionStateDataWithFilters\n- Graceful degradation for older sessions without git username data\n- No breaking changes to existing data structures or APIs\n\nComponent Integration:\n- Timeline component state property receives comprehensive git-related fields\n- Messages-viewer creates state object matching active session behavior\n- No breaking changes to existing component interfaces or data structures\n- Clean separation between message content and user attribution\n\nBackward Compatibility:\n- Older sessions without git_username gracefully show no attribution\n- New sessions have complete attribution data in both views\n- No impact on existing message display or functionality\n- Optional field design maintains compatibility with existing code\n\nTesting and Validation:\n\nComprehensive Test Coverage:\n- Created messages-viewer.test.ts with 8 test scenarios covering state creation logic\n- Added git username attribution tests to sketch-timeline-message.test.ts\n- Tested fallback hierarchy: session_state.git_username → user_name → undefined\n- Verified message filtering, data handling, and edge cases\n- All messages-viewer tests passing (8/8)\n\nTest Environment Compatibility:\n- Resolved TypeScript decorator configuration issues in test environment\n- Implemented workarounds for Lit component testing constraints\n- Fixed mock data factory functions to properly handle undefined values\n- Maintained comprehensive test coverage despite environment limitations\n\nFunctional Validation:\n- Created visual mockups confirming correct alignment and positioning\n- Verified state object creation with proper git_username extraction\n- Confirmed visual positioning and alignment requirements\n- Validated TypeScript compilation and Go build compatibility\n- Manual testing confirms runtime functionality works correctly\n\nFiles Modified:\n- sketch/loop/agent.go: Added GitUsername() method to interface and implementation\n- sketch/loop/server/loophttp.go: Added git_username to State struct and population\n- sketch/webui/src/types.ts: Added git_username field to State interface\n- sketch/webui/src/web-components/sketch-timeline-message.ts: User attribution display and positioning\n- sketch/webui/src/messages-viewer.ts: State object creation for timeline component\n- skaband/skadb/skadb.go: UserName field and git username extraction from session JSON\n- sketch/webui/src/messages-viewer.test.ts: Comprehensive test coverage for state creation\n- sketch/webui/src/web-components/sketch-timeline-message.test.ts: Timeline component tests\n\nThe implementation provides consistent user attribution across all message viewing contexts while maintaining clean visual design, full backward compatibility, and comprehensive test coverage.\n\nCo-Authored-By: sketch \u003chello@sketch.dev\u003e\nChange-ID: seb68c9ba94cdcc5bk\n"
    },
    {
      "commit": "0d09284f0319105ee548b78881f6076c45212740",
      "tree": "285d7162c2791d3e0a102d109275ce5b2f5ae0db",
      "parents": [
        "4168263109e4f5dfa9b24d3ce66594d90c6cf66a"
      ],
      "author": {
        "name": "Philip Zeyliger",
        "email": "philip@bold.dev",
        "time": "Mon Jun 09 18:57:12 2025 -0700"
      },
      "committer": {
        "name": "Autoformatter",
        "email": "bot@sketch.dev",
        "time": "Tue Jun 10 01:58:44 2025 +0000"
      },
      "message": "webui: fix HTML escaping in markdown code blocks\n\nThe mermaid stuff didn\u0027t hook up the right code block rendering,\nor so I think. I don\u0027t love how the cut and paste stuff works,\nbut not changing that now.\n\nCo-Authored-By: sketch \u003chello@sketch.dev\u003e\nChange-ID: s3b56d06b8ee8a15ak\n"
    },
    {
      "commit": "16fa8b48f6c9f54f579bbc5bb22223443422f2e1",
      "tree": "8ac9a487881b49baa423465c19fc1be72534aa78",
      "parents": [
        "66439b0d8001d4685270681804900e81a5e68c6d"
      ],
      "author": {
        "name": "Philip Zeyliger",
        "email": "philip@bold.dev",
        "time": "Fri May 02 04:28:16 2025 +0000"
      },
      "committer": {
        "name": "Philip Zeyliger",
        "email": "philip@bold.dev",
        "time": "Fri May 02 20:32:06 2025 -0700"
      },
      "message": "Overhaul UI with chat-like interface\n\nMajor UI improvements:\n- Revamp timeline messages with chat-like interface\n  - User messages now on right with white text on blue background\n  - Agent/tool messages on left with black text on grey background\n  - Chat bubbles extend up to 80% of screen width\n  - Maintain left-aligned text for code readability\n  - Move metadata to outer gutters\n  - Show turn duration for end-of-turn messages\n  - Integrate tool calls within agent message bubbles\n  - Add thinking indicator with animated dots when LLM is processing\n  - Replace buttons with intuitive icons (copy, info, etc.)\n\n- Improve tool call presentation\n  - Simplify to single row design with all essential info\n  - Add clear status indicators for success/pending/error\n  - Fix horizontal scrolling for long commands and outputs\n  - Prevent tool name truncation\n  - Improve spacing and alignment throughout\n\n- Enhance header and status displays\n  - Move Last Commit to dedicated third column in header grid\n  - Add proper labeling with two-row structure\n  - Provide consistent styling across all status elements\n\n- Other UI refinements\n  - Add root URL redirection to demo page\n  - Fix spacing throughout the interface\n  - Optimize CSS for better performance\n  - Ensure consistent styling across components\n  - Improve command output display and wrapping\n\nCo-Authored-By: sketch \u003chello@sketch.dev\u003e\n"
    },
    {
      "commit": "5c70bfe5601e9919e598025ac56984e1b2e21040",
      "tree": "a2b53c46956af8beaa37aa4157ad7dc2482d3dba",
      "parents": [
        "eda2a8ca73891aa55831391cea6cc8c6d2a79d67"
      ],
      "author": {
        "name": "Autoformatter",
        "email": "bot@sketch.dev",
        "time": "Fri Apr 25 21:28:00 2025 +0000"
      },
      "committer": {
        "name": "Autoformatter",
        "email": "bot@sketch.dev",
        "time": "Fri Apr 25 21:28:00 2025 +0000"
      },
      "message": "all: fix formatting\n"
    },
    {
      "commit": "a0801ad5dbd2a0e4d4983447b62f72444e829927",
      "tree": "6c622b74649869703cd85f2fe3ea317ee293d46f",
      "parents": [
        "df2d3dccd3f2f97fd4b8ab3bd153fbef15becea0"
      ],
      "author": {
        "name": "Josh Bleecher Snyder",
        "email": "josharian@gmail.com",
        "time": "Fri Apr 25 19:34:53 2025 +0000"
      },
      "committer": {
        "name": "Josh Bleecher Snyder",
        "email": "josharian@gmail.com",
        "time": "Fri Apr 25 13:56:59 2025 -0700"
      },
      "message": "Add comma formatting to input and output token displays\n\nThe token counts now display with commas in both the terminal UI and web UI.\n\nCo-Authored-By: sketch \u003chello@sketch.dev\u003e\n"
    },
    {
      "commit": "35889970de8690e8e38ea14503dd1a11db751498",
      "tree": "575df0d71e7fc89e7a6f2f5f68fdf80efc10ce5c",
      "parents": [
        "f5e28f67b3f569c73b1b020b5783872371bd0c3c"
      ],
      "author": {
        "name": "Josh Bleecher Snyder",
        "email": "josharian@gmail.com",
        "time": "Thu Apr 24 20:48:16 2025 +0000"
      },
      "committer": {
        "name": "Josh Bleecher Snyder",
        "email": "josharian@gmail.com",
        "time": "Fri Apr 25 11:40:27 2025 -0700"
      },
      "message": "all: only display total input tokens\n\nKnowing the cache reads and writes was mildly interesting for us,\nbut it is inside baseball, and our calculations ended up being a little wrong.\nStreamline the UI and make the math right.\n\nCo-Authored-By: sketch \u003chello@sketch.dev\u003e"
    },
    {
      "commit": "2032b1c1971ceb85ca14b20273a3783729fba3e3",
      "tree": "0486e9222643ffcbbd34286148f4a7913a169668",
      "parents": [
        "4f50a68ac73677c0022b2b3da8b4667cee01c11b"
      ],
      "author": {
        "name": "Philip Zeyliger",
        "email": "philip.zeyliger@gmail.com",
        "time": "Wed Apr 23 19:40:42 2025 -0700"
      },
      "committer": {
        "name": "Philip Zeyliger",
        "email": "philip.zeyliger@gmail.com",
        "time": "Wed Apr 23 19:40:42 2025 -0700"
      },
      "message": "Move webui from /loop/webui to /webui\n\nThanks, perl (and git mv):\n\n\tperl -pi -e s,loop/webui,webui,g $(git grep -l loop/webui)\n"
    },
    {
      "commit": "d9f1337ec3317a60df50d8ba4eefb448473d62fa",
      "tree": "67b60b05d8e2e3fb01293f68dfc5d08600a28dda",
      "parents": [
        "db8c5abcc18082bcbf47247e8d50889a32e65e06"
      ],
      "author": {
        "name": "Sean McCullough",
        "email": "banksean@gmail.com",
        "time": "Mon Apr 21 15:08:49 2025 -0700"
      },
      "committer": {
        "name": "Sean McCullough",
        "email": "banksean@gmail.com",
        "time": "Mon Apr 21 15:21:40 2025 -0700"
      },
      "message": "webui: auto-generate types.ts from go structs\n"
    },
    {
      "commit": "b29f8911e4c0d99d6c32866d7174a51b6730e9d8",
      "tree": "34e445527e949fb27970d4264db8a776323be485",
      "parents": [
        "ec3ad1a7798b0dc1d17d363c91680b7828d7fce2"
      ],
      "author": {
        "name": "Sean McCullough",
        "email": "banksean@gmail.com",
        "time": "Sun Apr 20 15:39:11 2025 -0700"
      },
      "committer": {
        "name": "Sean McCullough",
        "email": "banksean@gmail.com",
        "time": "Sun Apr 20 15:53:30 2025 -0700"
      },
      "message": "webui: Migrate from @open-wc/testing to Playwright\n"
    },
    {
      "commit": "71941bdfa1156b748072e2dfe61c714d3ed02913",
      "tree": "28eeb5cb68bef3e0eb5b6a5ec63d17f4150e4fbb",
      "parents": [
        "9abbf92a1c58300005971d7f89b301620d59e883"
      ],
      "author": {
        "name": "Sean McCullough",
        "email": "banksean@gmail.com",
        "time": "Fri Apr 18 13:31:48 2025 -0700"
      },
      "committer": {
        "name": "Sean McCullough",
        "email": "banksean@gmail.com",
        "time": "Fri Apr 18 14:01:53 2025 -0700"
      },
      "message": "loop/webui: add prettier\n"
    },
    {
      "commit": "86b56862f8d3e192646a17548ef5294582c31f8f",
      "tree": "d0235f3f56695de8e6281ba3f57a663847204f33",
      "parents": [
        "f5bb3d3f1aa33e2a066c4139675f096f73c1f9d4"
      ],
      "author": {
        "name": "Sean McCullough",
        "email": "banksean@gmail.com",
        "time": "Fri Apr 18 13:04:03 2025 -0700"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 18 13:04:03 2025 -0700"
      },
      "message": "loop/webui: swtich to web components impl (#1)\n\n* loop/webui: swtich to web components impl\n\nThis change reorganizes the original vibe-coded\nfrontend code into a structure that\u0027s much\neasier for a human to read and reason about,\nwhile retaining the user-visible functionality\nof its vibe-coded predecessor. Perhaps most\nimportantly, this change makes the code testable.\n\nSome other notable details:\n\nThis does not use any of the popular large web\nframeworks, but instead follows more of an\n\"a la carte\" approach: leverage features\nthat already exist in modern web browsers,\nlike custom elements and shadow DOM.\n\nTemplating and basic component lifecycle\nmanagement are provided by lit.\n\nState management is nothing fancy. It\ndoesn\u0027t use any library or framework, just\na basic \"Events up, properties down\"\napproach.\n\n* fix bad esbuild.go merge\n\n* loop/webui: don\u0027t bundle src/web-components/demo\n\n* loop/webui: don\u0027t \u0027npm ci\u0027 dev deps in the container\n\n* rebase to main, undo README.md changes, add webuil.Build() call to LaunchContainer()"
    }
  ]
}
