SabaPivot/repro-codetaste-can-llms-generate-human-level-code-refactorings
0
1<!doctype html>2<html lang="en">3 <head>4 <meta charset="utf-8" />5 <meta name="viewport" content="width=device-width, initial-scale=1" />6 <title>Reproduction: CodeTaste: Can LLMs Generate Human-Level Code Refactorings?</title>7 <link rel="stylesheet" href="./logbook.css" />8 </head>9 <body>10 <div id="app">11 <aside id="sidebar">12 <div id="book-head">13 <img id="book-wordmark" src="./trackio-wordmark-dark.png" alt="" />14 <div id="book-title" class="sr-only">Logbook</div>15 </div>16 <nav id="tree"></nav>17 <div id="sidebar-foot" hidden>18 <button id="connect-btn" type="button">19 <span class="ico">ⓘ</span> Collaborate with your agent20 </button>21 </div>22 </aside>23 <main id="content">24 <nav id="view-tabs" aria-label="Logbook views">25 <a data-view="code" href="#/view/code/index">26 <svg viewBox="0 0 24 24" aria-hidden="true">27 <path d="m18 16 4-4-4-4" />28 <path d="m6 8-4 4 4 4" />29 <path d="m14.5 4-5 16" />30 </svg>31 <span>Logbook</span>32 </a>33 <a data-view="trace" href="#/view/trace">34 <svg viewBox="0 0 24 24" aria-hidden="true">35 <path d="M8 5h13" />36 <path d="M13 12h8" />37 <path d="M13 19h8" />38 <path d="M3 10a2 2 0 0 0 2 2h3" />39 <path d="M3 5v12a2 2 0 0 0 2 2h3" />40 </svg>41 <span>Traces</span>42 </a>43 <a data-view="workspace" href="#/view/workspace">44 <svg viewBox="0 0 24 24" aria-hidden="true">45 <path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" />46 </svg>47 <span>Workspace</span>48 </a>49 </nav>50 <header id="logbook-header">51 <h1 id="logbook-title"></h1>52 <div id="logbook-cli"></div>53 </header>54 <div id="page"></div>55 </main>56 </div>57 58 <div id="modal" hidden>59 <div class="modal-backdrop"></div>60 <div class="modal-card" role="dialog" aria-modal="true">61 <div class="modal-head">62 <div class="modal-title">63 <img class="modal-logo" src="./trackio-logo.png" alt="" />64 Collaborate with your agent65 </div>66 <div class="modal-actions">67 <button id="copy-agent" class="btn">Copy for agent</button>68 <button id="modal-close" class="btn icon" aria-label="Close">×</button>69 </div>70 </div>71 <div class="modal-body">72 <p class="modal-intro">73 Point your coding agent at this logbook. It reads a compact,74 token-efficient version — and if you've given it write access to this75 Space, it can add findings that sync back automatically.76 </p>77 <ol id="connect-steps"></ol>78 </div>79 </div>80 </div>81 82 <script src="./logbook.js"></script>83 </body>84</html>85 