{"componentChunkName":"component---src-templates-post-tsx","path":"/copilot-chronicle-app-sessions/","result":{"data":{"logo":{"childImageSharp":{"fixed":{"base64":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAGwGAABsBgFnvUbqAAAC5UlEQVQ4y5WUT0gUcRTHvzuzS+scNg9Z2Epjiwdhy13/0BzWDTx1jYKIQCMU2VYQPC9SeNgg7KIdklhYPHRQhBA8SOAKHcJsRRfRU9BNTFHapXB3/jx548wyrqPVgzfvNzO/9/l9f+/3B/iL+Xw+Dh77fWNjw/lbWFhYwD9bXV0d9vf37dcHAD56vd7PAD4AiNlQn8/ncQ7qaqIoOpWlFUWh2dlZyufzNDMzQy0tLQTgmTOHiE4aHo+Z5xEEQXRARCvea29vJ03TdCKq7OzsaLlcrry1tUWNjY1HABQAVwFcqwJd5IqyLAtWO5vJZIhh/BgbGzNYzN7enj46OkqyLBdTqdRPRVF+AAiaNbASeaQ3AGSrfmJzczM3Py0tLTFLIyLj4OCAVldXDf4wMTGhDw4OsnJKJpOs9rqtKCBJ0vf+/n5qaGj4BeChQ+3bqakpzlHL5TI5zOD+6XSaFhcXSZKkdz09PdWkF4lEgjv9WV9fp6amJi7GfQASgGQoFKLd3V1WYlQq5syNzc1NCgQCh9Fo9Gt9ff1rAJeqW83v9xfW1tbsaWnLy8usVGtrazuMx+OlYDCoTU5OmiBLpTY/P8+DfmFAKBQ6tRY3w+FwWdfNUhiaxkzSi8UilUolYgC7qqpm3QzjJPCjs7NTA3CrZlcgGo/HzU66rhtsNpzBVrRhZlRV1Qx9fX2s8nEtMBKLxU4BOc/NbYWWWm1kZISBiVrgjdbW1t9WbapAN7O/2wp7e3sZ+KgWKHi93m8rKytmsSuVSpXoppBnwc7tSCTCNQzbHOfJSFnb5oihnMAqeGo1zkeQYUdzc3OsLsfJXV1dZy6Gy4IgbA8NDVGhUCBrMXi51Ro3T0sul7Mvh7tu6mz6FQAv/X7/dnd3Nw0PD/PRounpacpmszQ+Pk4DAwPU0dGhA8gDeHLOPXDmI+/4OwCeW2c7A+A9gFcAngK4fU7emfvP41ypi8y6pkT8hwlWgpsLF2UeA2cncRiRWBqkAAAAAElFTkSuQmCC","width":400,"height":400,"src":"/static/c145ae02d8428dda1fa96de2fe8a40ed/497c6/rubber-duck-logo.png","srcSet":"/static/c145ae02d8428dda1fa96de2fe8a40ed/497c6/rubber-duck-logo.png 1x,\n/static/c145ae02d8428dda1fa96de2fe8a40ed/2a4de/rubber-duck-logo.png 1.5x,\n/static/c145ae02d8428dda1fa96de2fe8a40ed/ee604/rubber-duck-logo.png 2x"}}},"markdownRemark":{"html":"<div className=\"seo-hidden\">\nLearn how to use the /chronicle command with GitHub Copilot app sessions to get insights and summaries from your recent coding work across Copilot CLI sessions.\n</div>\n<h1>Introduction</h1>\n<p>I recently discovered that the GitHub Copilot app is built on top of GitHub Copilot CLI. This means we get access to powerful session history features, most notably <code class=\"language-text\">/chronicle</code>, which lets us pull insights from recent coding work across Copilot CLI sessions.</p>\n<hr>\n<h2>What is /chronicle?</h2>\n<p>The <code class=\"language-text\">/chronicle</code> command taps into the session data that GitHub Copilot CLI accumulates as you work. Every interaction, code generation, and terminal command is tracked locally in a session store. <code class=\"language-text\">/chronicle</code> gives you a way to query and summarise that history.</p>\n<p>This is particularly useful for:</p>\n<ul>\n<li>Recalling what was worked on recently</li>\n<li>Generating standup summaries</li>\n<li>Reviewing decisions made during a coding session</li>\n<li>Tracing back through multi-step problem solving</li>\n</ul>\n<hr>\n<h2>Using /chronicle standup</h2>\n<p>The most common use case is generating a quick standup summary. Simply run:</p>\n<div class=\"gatsby-highlight\" data-language=\"plaintext\"><pre class=\"language-plaintext\"><code class=\"language-plaintext\">/chronicle standup</code></pre></div>\n<p>This queries the last 24 hours of session data and produces a concise summary, what files were touched, what problems were solved, and what tools or commands were used.</p>\n<p>The output is ideal for daily standups or async updates to the team.</p>\n<hr>\n<h2>How It Works Under the Hood</h2>\n<p>Because the GitHub Copilot app shares the same CLI foundation, session history is unified. Whether I was:</p>\n<ol>\n<li>Using the Copilot app to scaffold a project</li>\n<li>Running Copilot CLI in a terminal to debug an issue</li>\n<li>Asking Copilot to explain code in the editor</li>\n</ol>\n<p>All of these interactions feed into the same session store. <code class=\"language-text\">/chronicle</code> reads from this store, so it’s fast and entirely local.</p>\n<hr>\n<h2>Querying Specific Sessions</h2>\n<p>Beyond standup summaries, <code class=\"language-text\">/chronicle</code> can query specific timeframes or topics:</p>\n<p>e.g.</p>\n<div class=\"gatsby-highlight\" data-language=\"plaintext\"><pre class=\"language-plaintext\"><code class=\"language-plaintext\">/chronicle search authentication</code></pre></div>\n<p><a href=\"https://docs.github.com/en/copilot/how-tos/copilot-cli/use-copilot-cli/chronicle#using-the-chronicle-slash-command\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Refer documentation</a></p>\n<p>This performs a direct content search instead of a semantic one.</p>\n<hr>\n<h2>Why This Matters</h2>\n<p>For developers juggling multiple projects or context-switching frequently, <code class=\"language-text\">/chronicle</code> acts as a persistent memory layer. Instead of manually keeping notes about what was done and why, the session history captures it automatically.</p>\n<p>It’s especially powerful for:</p>\n<ul>\n<li><strong>End-of-week summaries</strong>: Rolling up a week’s worth of work without checking git logs manually</li>\n<li><strong>Onboarding context</strong>: Reviewing how a project was set up days or weeks ago</li>\n<li><strong>Debugging trails</strong>: Retracing steps when revisiting a tricky issue</li>\n</ul>\n<hr>\n<h2>Getting Started</h2>\n<p>With the GitHub Copilot app installed, <code class=\"language-text\">/chronicle</code> is available out of the box. No additional setup required, just type <code class=\"language-text\">/chronicle</code> followed by a query or use the <code class=\"language-text\">standup</code> subcommand.</p>\n<p>For more details, see <a href=\"https://docs.github.com/en/copilot/how-tos/github-copilot-app/agent-sessions#using-chronicle-with-app-sessions\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Using GitHub Copilot CLI session data</a> in the official documentation.</p>\n<hr>\n<h2>Conclusion</h2>\n<p>The <code class=\"language-text\">/chronicle</code> command bridges the gap between working in the moment and reflecting on past work. By leveraging the shared session history between the GitHub Copilot app and CLI, we get a unified view of development activity, no extra tooling required.</p>","htmlAst":{"type":"root","children":[{"type":"element","tagName":"div","properties":{"className":["seo-hidden"]},"children":[{"type":"text","value":"\nLearn how to use the /chronicle command with GitHub Copilot app sessions to get insights and summaries from your recent coding work across Copilot CLI sessions.\n"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"h1","properties":{},"children":[{"type":"text","value":"Introduction"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"I recently discovered that the GitHub Copilot app is built on top of GitHub Copilot CLI. This means we get access to powerful session history features, most notably "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":", which lets us pull insights from recent coding work across Copilot CLI sessions."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"hr","properties":{},"children":[]},{"type":"text","value":"\n"},{"type":"element","tagName":"h2","properties":{},"children":[{"type":"text","value":"What is /chronicle?"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"The "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" command taps into the session data that GitHub Copilot CLI accumulates as you work. Every interaction, code generation, and terminal command is tracked locally in a session store. "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" gives you a way to query and summarise that history."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"This is particularly useful for:"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"ul","properties":{},"children":[{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"text","value":"Recalling what was worked on recently"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"text","value":"Generating standup summaries"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"text","value":"Reviewing decisions made during a coding session"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"text","value":"Tracing back through multi-step problem solving"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"hr","properties":{},"children":[]},{"type":"text","value":"\n"},{"type":"element","tagName":"h2","properties":{},"children":[{"type":"text","value":"Using /chronicle standup"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"The most common use case is generating a quick standup summary. Simply run:"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"div","properties":{"className":["gatsby-highlight"],"dataLanguage":"plaintext"},"children":[{"type":"element","tagName":"pre","properties":{"className":["language-plaintext"]},"children":[{"type":"element","tagName":"code","properties":{"className":["language-plaintext"]},"children":[{"type":"text","value":"/chronicle standup"}]}]}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"This queries the last 24 hours of session data and produces a concise summary, what files were touched, what problems were solved, and what tools or commands were used."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"The output is ideal for daily standups or async updates to the team."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"hr","properties":{},"children":[]},{"type":"text","value":"\n"},{"type":"element","tagName":"h2","properties":{},"children":[{"type":"text","value":"How It Works Under the Hood"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"Because the GitHub Copilot app shares the same CLI foundation, session history is unified. Whether I was:"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"ol","properties":{},"children":[{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"text","value":"Using the Copilot app to scaffold a project"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"text","value":"Running Copilot CLI in a terminal to debug an issue"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"text","value":"Asking Copilot to explain code in the editor"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"All of these interactions feed into the same session store. "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" reads from this store, so it’s fast and entirely local."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"hr","properties":{},"children":[]},{"type":"text","value":"\n"},{"type":"element","tagName":"h2","properties":{},"children":[{"type":"text","value":"Querying Specific Sessions"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"Beyond standup summaries, "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" can query specific timeframes or topics:"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"e.g."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"div","properties":{"className":["gatsby-highlight"],"dataLanguage":"plaintext"},"children":[{"type":"element","tagName":"pre","properties":{"className":["language-plaintext"]},"children":[{"type":"element","tagName":"code","properties":{"className":["language-plaintext"]},"children":[{"type":"text","value":"/chronicle search authentication"}]}]}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"element","tagName":"a","properties":{"href":"https://docs.github.com/en/copilot/how-tos/copilot-cli/use-copilot-cli/chronicle#using-the-chronicle-slash-command","target":"_blank","rel":["nofollow","noopener","noreferrer"]},"children":[{"type":"text","value":"Refer documentation"}]}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"This performs a direct content search instead of a semantic one."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"hr","properties":{},"children":[]},{"type":"text","value":"\n"},{"type":"element","tagName":"h2","properties":{},"children":[{"type":"text","value":"Why This Matters"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"For developers juggling multiple projects or context-switching frequently, "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" acts as a persistent memory layer. Instead of manually keeping notes about what was done and why, the session history captures it automatically."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"It’s especially powerful for:"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"ul","properties":{},"children":[{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"element","tagName":"strong","properties":{},"children":[{"type":"text","value":"End-of-week summaries"}]},{"type":"text","value":": Rolling up a week’s worth of work without checking git logs manually"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"element","tagName":"strong","properties":{},"children":[{"type":"text","value":"Onboarding context"}]},{"type":"text","value":": Reviewing how a project was set up days or weeks ago"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"li","properties":{},"children":[{"type":"element","tagName":"strong","properties":{},"children":[{"type":"text","value":"Debugging trails"}]},{"type":"text","value":": Retracing steps when revisiting a tricky issue"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"hr","properties":{},"children":[]},{"type":"text","value":"\n"},{"type":"element","tagName":"h2","properties":{},"children":[{"type":"text","value":"Getting Started"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"With the GitHub Copilot app installed, "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" is available out of the box. No additional setup required, just type "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" followed by a query or use the "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"standup"}]},{"type":"text","value":" subcommand."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"For more details, see "},{"type":"element","tagName":"a","properties":{"href":"https://docs.github.com/en/copilot/how-tos/github-copilot-app/agent-sessions#using-chronicle-with-app-sessions","target":"_blank","rel":["nofollow","noopener","noreferrer"]},"children":[{"type":"text","value":"Using GitHub Copilot CLI session data"}]},{"type":"text","value":" in the official documentation."}]},{"type":"text","value":"\n"},{"type":"element","tagName":"hr","properties":{},"children":[]},{"type":"text","value":"\n"},{"type":"element","tagName":"h2","properties":{},"children":[{"type":"text","value":"Conclusion"}]},{"type":"text","value":"\n"},{"type":"element","tagName":"p","properties":{},"children":[{"type":"text","value":"The "},{"type":"element","tagName":"code","properties":{"className":["language-text"]},"children":[{"type":"text","value":"/chronicle"}]},{"type":"text","value":" command bridges the gap between working in the moment and reflecting on past work. By leveraging the shared session history between the GitHub Copilot app and CLI, we get a unified view of development activity, no extra tooling required."}]}],"data":{"quirksMode":false}},"excerpt":"Introduction I recently discovered that the GitHub Copilot app is built on top of GitHub Copilot CLI. This means we get access to powerful…","timeToRead":2,"frontmatter":{"title":"Using /chronicle with GitHub Copilot App Sessions","userDate":"22 June 2026","date":"2026-06-22T22:00:00.000Z","tags":["Copilot","All"],"image":{"childImageSharp":{"fluid":{"base64":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAJCAYAAAAywQxIAAAACXBIWXMAAAsTAAALEwEAmpwYAAABsElEQVQoz42Sa2sTYRCF80v8Qxb8VEGhFPoHilCoNSlI4/aDoNR0k4I2QWjXVGpMoUZptRV6J9WivcBujAgBG7Tutmv25naTR/JqNomIODBwmDnvmRneEwFoNBr8LZr1f/WCIBC4Xq+HvEgL2L6Pop8wpJ+QLn/CdpzwsWVZGIaB87vWFOjsdQ6J/GIEpMsfuLhV5sLqHj3rKuOr70Xr8/ExN2IxZmYVxm5JJGSZkWiM+w+mebWywvVolCe5XLfgwZc3XFYyXL1dYjA+S5+s0XNvDVX/ypmuc3MsTkJOMplMIqdSJFNT3J2YYGh4mLgkCRwK+ufQn5cYyPYznnnK6wMVKb1M750MVx7OC6KmaaiaJs6uVqsYp6ccHh2J7UulEqZptgWDcxjIDDKyfI18UeXtxwrZrX0ujSboHZ0UxOLuLts7O+QXFphRFBYLBeZzORafFXiUneObrnef7P4wef7uJXMbaxSKe6RfrPN4aRPHsgXRdT3OTBPLtqlUKgJ7nketVsO2HXzfbwt22sL1XAzzO57rdf3c/0Rom9BTHVZoRhC0vdXyYzNbnvszWxv+BL1QhSZytlUGAAAAAElFTkSuQmCC","aspectRatio":2.2195704057279237,"src":"/static/6423bd5b2dc04184b3532ec271743253/54967/banner.png","srcSet":"/static/6423bd5b2dc04184b3532ec271743253/c5c6c/banner.png 930w,\n/static/6423bd5b2dc04184b3532ec271743253/54967/banner.png 1400w","sizes":"(max-width: 1400px) 100vw, 1400px"}}},"author":{"id":"Dushyant","bio":"Check about page for details.","avatar":{"children":[{"__typename":"ImageSharp","fixed":{"base64":"data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAATABQDASIAAhEBAxEB/8QAGAABAQEBAQAAAAAAAAAAAAAAAAQCBQH/xAAXAQEBAQEAAAAAAAAAAAAAAAABAwIE/9oADAMBAAIQAxAAAAGC3Hg4dQPBrOiN41P/xAAbEAACAwEBAQAAAAAAAAAAAAABAgADESEEMv/aAAgBAQABBQIKRNBq0TQi+b7LV7vahFHP/8QAGBEAAgMAAAAAAAAAAAAAAAAAABEBAhD/2gAIAQMBAT8BcIZbP//EABcRAAMBAAAAAAAAAAAAAAAAAAEQEQL/2gAIAQIBAT8Bhqyv/8QAHBAAAgICAwAAAAAAAAAAAAAAAREAMQIQICIy/9oACAEBAAY/AqiONaIbc7VPA4f/xAAdEAEAAwABBQAAAAAAAAAAAAABABEhQRAxYYGx/9oACAEBAAE/ISLx5jZEdCHbpcbDiA1R+4TQeoJQwLgOif/aAAwDAQACAAMAAAAQJC8+/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQAhMXH/2gAIAQMBAT8QC8WtG5i//8QAGREAAgMBAAAAAAAAAAAAAAAAADEBESGR/9oACAECAQE/EOwWUOSz/8QAHxABAQACAQQDAAAAAAAAAAAAAREAIVExQWGBcaHB/9oACAEBAAE/ECCZsaWvrF6FZ3RLvhvTLdbfkf3Eo1h5d9n16yVHiJb7nfJTRa5HOsQildYEIbMrqbmf/9k=","width":400,"height":388,"src":"/static/ca50b870313d79772bec7be9f9d9786f/64b17/dp-profile.jpg","srcSet":"/static/ca50b870313d79772bec7be9f9d9786f/64b17/dp-profile.jpg 1x,\n/static/ca50b870313d79772bec7be9f9d9786f/39f27/dp-profile.jpg 1.5x,\n/static/ca50b870313d79772bec7be9f9d9786f/a1eb1/dp-profile.jpg 2x"}}]}}}},"relatedPosts":{"totalCount":1,"edges":[{"node":{"id":"6777c65f-c85d-526d-9995-a33984fa934e","timeToRead":2,"excerpt":"Introduction I recently discovered that the GitHub Copilot app is built on top of GitHub Copilot CLI. This means we get access to powerful…","frontmatter":{"title":"Using /chronicle with GitHub Copilot App Sessions"},"fields":{"slug":"/copilot-chronicle-app-sessions/"}}}]}},"pageContext":{"slug":"/copilot-chronicle-app-sessions/","prev":{"excerpt":"The Problem When deploying a .NET MAUI (or Xamarin) Android application to a physical device or emulator, you may hit this error: Each time…","timeToRead":2,"frontmatter":{"title":"ADB0060: Fixing InsufficientSpaceException on Android Device","tags":["Android","All"],"date":"2026-06-21T23:00:00.000Z","draft":false,"image":{"childImageSharp":{"fluid":{"aspectRatio":2.96028880866426,"base64":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAHCAIAAACHqfpvAAAACXBIWXMAAAsTAAALEwEAmpwYAAABhklEQVQY0z2Qu04bQRRAt88H8AH5gtDzHbRRqhQUdFQ06ZCQUIpIREgUFIAUJCJLgPLAiWNiHuaxsQ3GmMca2+vYLOtdZu5jZnZ3kCDKqU5zmuPgf5iREEBqlSYqVWy0yojIWmuMAQBA1IzWKCaEp8KR8CwEUUgSEm07gZs7eZM7ed0JDiXIrW9Ft3qujWbEbhjve/5QAAIKKZ2UiJSWf9tHk2+99aWDznyx8W67PjX79cVC4ZXnu5tffv+p1oyhTMH6WWt8Zcft9mxqkiRxKr0gFCED1A9X5zdevs+PlJozP+rTufLEZcsdDmNr7V0UtvptAWE8vI7ujjMtv7vuyq+SM5mvHLe7NrWRgVLzw8LP0cXCWLn+KbonKYSAWBHvXTWLjYpWKYc75M2R8M9at+XzhuMHoSSKr/NR7bNm27+/GQz6JDKJAlBKiAVE0ruCgR9DsLy2sV3YVZq0UqlJHMOErB/6zahTAQQmQ8T4byciMciHi49zvfwWZ7Z2euHd+ooVPN1/BA7WcOf6KrIVAAAAAElFTkSuQmCC","sizes":"(max-width: 820px) 100vw, 820px","src":"/static/bed33a4a602fc2ea877e1c8eed42b170/8f331/banner.png","srcSet":"/static/bed33a4a602fc2ea877e1c8eed42b170/8f331/banner.png 820w"}}},"author":{"id":"Dushyant","bio":"Check about page for details.","avatar":{"children":[{"fixed":{"src":"/static/ca50b870313d79772bec7be9f9d9786f/64b17/dp-profile.jpg"}}]}}},"fields":{"layout":"post","slug":"/adb-insufficient-space-exception/"}},"next":null,"primaryTag":"Copilot"}},"staticQueryHashes":["3100086437","794779027","990608418"]}