docagent-cli 0.0.35__tar.gz

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 (395) hide show
  1. docagent_cli-0.0.35/.gitignore +225 -0
  2. docagent_cli-0.0.35/CHANGELOG.md +365 -0
  3. docagent_cli-0.0.35/DEV.md +52 -0
  4. docagent_cli-0.0.35/Makefile +85 -0
  5. docagent_cli-0.0.35/PKG-INFO +200 -0
  6. docagent_cli-0.0.35/README.md +71 -0
  7. docagent_cli-0.0.35/THREAT_MODEL.md +476 -0
  8. docagent_cli-0.0.35/docagent_cli/__init__.py +36 -0
  9. docagent_cli-0.0.35/docagent_cli/__main__.py +6 -0
  10. docagent_cli-0.0.35/docagent_cli/_ask_user_types.py +90 -0
  11. docagent_cli-0.0.35/docagent_cli/_cli_context.py +27 -0
  12. docagent_cli-0.0.35/docagent_cli/_debug.py +52 -0
  13. docagent_cli-0.0.35/docagent_cli/_env_vars.py +56 -0
  14. docagent_cli-0.0.35/docagent_cli/_server_config.py +352 -0
  15. docagent_cli-0.0.35/docagent_cli/_session_stats.py +114 -0
  16. docagent_cli-0.0.35/docagent_cli/_testing_models.py +144 -0
  17. docagent_cli-0.0.35/docagent_cli/_version.py +17 -0
  18. docagent_cli-0.0.35/docagent_cli/agent.py +1193 -0
  19. docagent_cli-0.0.35/docagent_cli/app.py +4979 -0
  20. docagent_cli-0.0.35/docagent_cli/app.tcss +283 -0
  21. docagent_cli-0.0.35/docagent_cli/ask_user.py +301 -0
  22. docagent_cli-0.0.35/docagent_cli/built_in_skills/__init__.py +5 -0
  23. docagent_cli-0.0.35/docagent_cli/built_in_skills/doc-coauthoring/SKILL.md +375 -0
  24. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/LICENSE.txt +30 -0
  25. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/SKILL.md +590 -0
  26. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/__init__.py +1 -0
  27. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/accept_changes.py +135 -0
  28. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/comment.py +318 -0
  29. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/helpers/__init__.py +0 -0
  30. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/helpers/merge_runs.py +199 -0
  31. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/helpers/simplify_redlines.py +197 -0
  32. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/pack.py +159 -0
  33. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  34. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  35. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  36. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  37. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  38. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  39. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  40. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  41. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  42. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  43. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  44. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  45. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  46. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  47. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  48. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  49. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  50. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  51. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  52. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  53. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  54. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  55. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  56. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  57. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  58. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  59. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  60. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  61. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  62. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  63. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  64. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/mce/mc.xsd +75 -0
  65. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  66. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  67. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  68. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  69. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  70. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  71. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  72. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/soffice.py +183 -0
  73. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/unpack.py +132 -0
  74. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/validate.py +111 -0
  75. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/validators/__init__.py +15 -0
  76. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/validators/base.py +847 -0
  77. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/validators/docx.py +446 -0
  78. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/validators/pptx.py +275 -0
  79. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/office/validators/redlining.py +247 -0
  80. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/templates/comments.xml +3 -0
  81. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/templates/commentsExtended.xml +3 -0
  82. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  83. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/templates/commentsIds.xml +3 -0
  84. docagent_cli-0.0.35/docagent_cli/built_in_skills/docx/scripts/templates/people.xml +3 -0
  85. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/LICENSE.txt +30 -0
  86. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/SKILL.md +314 -0
  87. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/forms.md +294 -0
  88. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/reference.md +612 -0
  89. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/check_bounding_boxes.py +65 -0
  90. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/check_fillable_fields.py +11 -0
  91. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/convert_pdf_to_images.py +33 -0
  92. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/create_validation_image.py +37 -0
  93. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/extract_form_field_info.py +122 -0
  94. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/extract_form_structure.py +115 -0
  95. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/fill_fillable_fields.py +98 -0
  96. docagent_cli-0.0.35/docagent_cli/built_in_skills/pdf/scripts/fill_pdf_form_with_annotations.py +107 -0
  97. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/LICENSE.txt +30 -0
  98. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/SKILL.md +232 -0
  99. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/editing.md +205 -0
  100. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/pptxgenjs.md +420 -0
  101. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/__init__.py +0 -0
  102. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/add_slide.py +195 -0
  103. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/clean.py +286 -0
  104. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/helpers/__init__.py +0 -0
  105. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/helpers/merge_runs.py +199 -0
  106. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/helpers/simplify_redlines.py +197 -0
  107. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/pack.py +159 -0
  108. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  109. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  110. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  111. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  112. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  113. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  114. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  115. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  116. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  117. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  118. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  119. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  120. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  121. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  122. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  123. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  124. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  125. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  126. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  127. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  128. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  129. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  130. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  131. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  132. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  133. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  134. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  135. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  136. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  137. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  138. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  139. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/mce/mc.xsd +75 -0
  140. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  141. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  142. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  143. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  144. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  145. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  146. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  147. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/soffice.py +183 -0
  148. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/unpack.py +132 -0
  149. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/validate.py +111 -0
  150. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/validators/__init__.py +15 -0
  151. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/validators/base.py +847 -0
  152. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/validators/docx.py +446 -0
  153. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/validators/pptx.py +275 -0
  154. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/office/validators/redlining.py +247 -0
  155. docagent_cli-0.0.35/docagent_cli/built_in_skills/pptx/scripts/thumbnail.py +289 -0
  156. docagent_cli-0.0.35/docagent_cli/built_in_skills/remember/SKILL.md +118 -0
  157. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/LICENSE.txt +202 -0
  158. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/SKILL.md +485 -0
  159. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/agents/analyzer.md +274 -0
  160. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/agents/comparator.md +202 -0
  161. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/agents/grader.md +223 -0
  162. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/assets/eval_review.html +146 -0
  163. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/eval-viewer/generate_review.py +471 -0
  164. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/eval-viewer/viewer.html +1325 -0
  165. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/references/schemas.md +430 -0
  166. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/__init__.py +0 -0
  167. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  168. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/generate_report.py +326 -0
  169. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/improve_description.py +247 -0
  170. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/package_skill.py +136 -0
  171. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/quick_validate.py +103 -0
  172. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/run_eval.py +310 -0
  173. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/run_loop.py +328 -0
  174. docagent_cli-0.0.35/docagent_cli/built_in_skills/skill-creator/scripts/utils.py +47 -0
  175. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/LICENSE.txt +202 -0
  176. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/SKILL.md +59 -0
  177. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/theme-showcase.pdf +0 -0
  178. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/arctic-frost.md +19 -0
  179. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/botanical-garden.md +19 -0
  180. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/desert-rose.md +19 -0
  181. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/forest-canopy.md +19 -0
  182. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/golden-hour.md +19 -0
  183. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/midnight-galaxy.md +19 -0
  184. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/modern-minimalist.md +19 -0
  185. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/ocean-depths.md +19 -0
  186. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/sunset-boulevard.md +19 -0
  187. docagent_cli-0.0.35/docagent_cli/built_in_skills/theme-factory/themes/tech-innovation.md +19 -0
  188. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/LICENSE.txt +30 -0
  189. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/SKILL.md +292 -0
  190. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/helpers/__init__.py +0 -0
  191. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/helpers/merge_runs.py +199 -0
  192. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/helpers/simplify_redlines.py +197 -0
  193. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/pack.py +159 -0
  194. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  195. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  196. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  197. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  198. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  199. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  200. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  201. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  202. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  203. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  204. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  205. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  206. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  207. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  208. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  209. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  210. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  211. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  212. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  213. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  214. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  215. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  216. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  217. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  218. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  219. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  220. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  221. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  222. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  223. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  224. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  225. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/mce/mc.xsd +75 -0
  226. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  227. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  228. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  229. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  230. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  231. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  232. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  233. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/soffice.py +183 -0
  234. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/unpack.py +132 -0
  235. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/validate.py +111 -0
  236. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/validators/__init__.py +15 -0
  237. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/validators/base.py +847 -0
  238. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/validators/docx.py +446 -0
  239. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/validators/pptx.py +275 -0
  240. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/office/validators/redlining.py +247 -0
  241. docagent_cli-0.0.35/docagent_cli/built_in_skills/xlsx/scripts/recalc.py +184 -0
  242. docagent_cli-0.0.35/docagent_cli/clipboard.py +128 -0
  243. docagent_cli-0.0.35/docagent_cli/command_registry.py +284 -0
  244. docagent_cli-0.0.35/docagent_cli/config.py +2418 -0
  245. docagent_cli-0.0.35/docagent_cli/configurable_model.py +162 -0
  246. docagent_cli-0.0.35/docagent_cli/default_agent_prompt.md +12 -0
  247. docagent_cli-0.0.35/docagent_cli/editor.py +142 -0
  248. docagent_cli-0.0.35/docagent_cli/file_ops.py +473 -0
  249. docagent_cli-0.0.35/docagent_cli/formatting.py +28 -0
  250. docagent_cli-0.0.35/docagent_cli/hooks.py +206 -0
  251. docagent_cli-0.0.35/docagent_cli/input.py +787 -0
  252. docagent_cli-0.0.35/docagent_cli/integrations/__init__.py +1 -0
  253. docagent_cli-0.0.35/docagent_cli/integrations/sandbox_factory.py +873 -0
  254. docagent_cli-0.0.35/docagent_cli/integrations/sandbox_provider.py +71 -0
  255. docagent_cli-0.0.35/docagent_cli/local_context.py +718 -0
  256. docagent_cli-0.0.35/docagent_cli/main.py +1641 -0
  257. docagent_cli-0.0.35/docagent_cli/mcp_tools.py +707 -0
  258. docagent_cli-0.0.35/docagent_cli/mcp_trust.py +168 -0
  259. docagent_cli-0.0.35/docagent_cli/media_utils.py +478 -0
  260. docagent_cli-0.0.35/docagent_cli/model_config.py +1620 -0
  261. docagent_cli-0.0.35/docagent_cli/non_interactive.py +948 -0
  262. docagent_cli-0.0.35/docagent_cli/offload.py +371 -0
  263. docagent_cli-0.0.35/docagent_cli/output.py +69 -0
  264. docagent_cli-0.0.35/docagent_cli/project_utils.py +188 -0
  265. docagent_cli-0.0.35/docagent_cli/py.typed +0 -0
  266. docagent_cli-0.0.35/docagent_cli/remote_client.py +515 -0
  267. docagent_cli-0.0.35/docagent_cli/server.py +520 -0
  268. docagent_cli-0.0.35/docagent_cli/server_graph.py +196 -0
  269. docagent_cli-0.0.35/docagent_cli/server_manager.py +365 -0
  270. docagent_cli-0.0.35/docagent_cli/sessions.py +1262 -0
  271. docagent_cli-0.0.35/docagent_cli/skills/__init__.py +18 -0
  272. docagent_cli-0.0.35/docagent_cli/skills/commands.py +1090 -0
  273. docagent_cli-0.0.35/docagent_cli/skills/load.py +192 -0
  274. docagent_cli-0.0.35/docagent_cli/subagents.py +173 -0
  275. docagent_cli-0.0.35/docagent_cli/system_prompt.md +247 -0
  276. docagent_cli-0.0.35/docagent_cli/textual_adapter.py +1352 -0
  277. docagent_cli-0.0.35/docagent_cli/theme.py +842 -0
  278. docagent_cli-0.0.35/docagent_cli/token_state.py +31 -0
  279. docagent_cli-0.0.35/docagent_cli/tool_display.py +298 -0
  280. docagent_cli-0.0.35/docagent_cli/tools.py +236 -0
  281. docagent_cli-0.0.35/docagent_cli/ui.py +420 -0
  282. docagent_cli-0.0.35/docagent_cli/unicode_security.py +516 -0
  283. docagent_cli-0.0.35/docagent_cli/update_check.py +454 -0
  284. docagent_cli-0.0.35/docagent_cli/widgets/__init__.py +9 -0
  285. docagent_cli-0.0.35/docagent_cli/widgets/_links.py +63 -0
  286. docagent_cli-0.0.35/docagent_cli/widgets/approval.py +442 -0
  287. docagent_cli-0.0.35/docagent_cli/widgets/ask_user.py +398 -0
  288. docagent_cli-0.0.35/docagent_cli/widgets/autocomplete.py +691 -0
  289. docagent_cli-0.0.35/docagent_cli/widgets/chat_input.py +1827 -0
  290. docagent_cli-0.0.35/docagent_cli/widgets/diff.py +248 -0
  291. docagent_cli-0.0.35/docagent_cli/widgets/history.py +188 -0
  292. docagent_cli-0.0.35/docagent_cli/widgets/loading.py +177 -0
  293. docagent_cli-0.0.35/docagent_cli/widgets/mcp_viewer.py +362 -0
  294. docagent_cli-0.0.35/docagent_cli/widgets/message_store.py +675 -0
  295. docagent_cli-0.0.35/docagent_cli/widgets/messages.py +1751 -0
  296. docagent_cli-0.0.35/docagent_cli/widgets/model_selector.py +964 -0
  297. docagent_cli-0.0.35/docagent_cli/widgets/status.py +372 -0
  298. docagent_cli-0.0.35/docagent_cli/widgets/theme_selector.py +164 -0
  299. docagent_cli-0.0.35/docagent_cli/widgets/thread_selector.py +1905 -0
  300. docagent_cli-0.0.35/docagent_cli/widgets/tool_renderers.py +148 -0
  301. docagent_cli-0.0.35/docagent_cli/widgets/tool_widgets.py +274 -0
  302. docagent_cli-0.0.35/docagent_cli/widgets/welcome.py +339 -0
  303. docagent_cli-0.0.35/examples/skills/arxiv-search/SKILL.md +33 -0
  304. docagent_cli-0.0.35/examples/skills/arxiv-search/arxiv_search.py +61 -0
  305. docagent_cli-0.0.35/examples/skills/langgraph-docs/SKILL.md +28 -0
  306. docagent_cli-0.0.35/examples/skills/skill-creator/SKILL.md +385 -0
  307. docagent_cli-0.0.35/examples/skills/skill-creator/scripts/init_skill.py +311 -0
  308. docagent_cli-0.0.35/examples/skills/skill-creator/scripts/quick_validate.py +152 -0
  309. docagent_cli-0.0.35/examples/skills/web-research/SKILL.md +77 -0
  310. docagent_cli-0.0.35/images/cli.png +0 -0
  311. docagent_cli-0.0.35/pyproject.toml +270 -0
  312. docagent_cli-0.0.35/scripts/check_imports.py +32 -0
  313. docagent_cli-0.0.35/scripts/install.sh +442 -0
  314. docagent_cli-0.0.35/tests/README.md +11 -0
  315. docagent_cli-0.0.35/tests/integration_tests/__init__.py +0 -0
  316. docagent_cli-0.0.35/tests/integration_tests/benchmarks/__init__.py +0 -0
  317. docagent_cli-0.0.35/tests/integration_tests/benchmarks/test_codspeed_import_benchmarks.py +185 -0
  318. docagent_cli-0.0.35/tests/integration_tests/benchmarks/test_startup_benchmarks.py +339 -0
  319. docagent_cli-0.0.35/tests/integration_tests/conftest.py +38 -0
  320. docagent_cli-0.0.35/tests/integration_tests/test_acp_mode.py +112 -0
  321. docagent_cli-0.0.35/tests/integration_tests/test_compact_resume.py +223 -0
  322. docagent_cli-0.0.35/tests/integration_tests/test_sandbox_factory.py +333 -0
  323. docagent_cli-0.0.35/tests/integration_tests/test_sandbox_operations.py +1174 -0
  324. docagent_cli-0.0.35/tests/unit_tests/__init__.py +0 -0
  325. docagent_cli-0.0.35/tests/unit_tests/conftest.py +140 -0
  326. docagent_cli-0.0.35/tests/unit_tests/skills/__init__.py +1 -0
  327. docagent_cli-0.0.35/tests/unit_tests/skills/test_commands.py +1338 -0
  328. docagent_cli-0.0.35/tests/unit_tests/skills/test_load.py +818 -0
  329. docagent_cli-0.0.35/tests/unit_tests/skills/test_skills_json.py +154 -0
  330. docagent_cli-0.0.35/tests/unit_tests/test_agent.py +2176 -0
  331. docagent_cli-0.0.35/tests/unit_tests/test_agent_friendly.py +597 -0
  332. docagent_cli-0.0.35/tests/unit_tests/test_app.py +3014 -0
  333. docagent_cli-0.0.35/tests/unit_tests/test_approval.py +333 -0
  334. docagent_cli-0.0.35/tests/unit_tests/test_args.py +438 -0
  335. docagent_cli-0.0.35/tests/unit_tests/test_ask_user.py +601 -0
  336. docagent_cli-0.0.35/tests/unit_tests/test_ask_user_middleware.py +221 -0
  337. docagent_cli-0.0.35/tests/unit_tests/test_autocomplete.py +525 -0
  338. docagent_cli-0.0.35/tests/unit_tests/test_charset.py +346 -0
  339. docagent_cli-0.0.35/tests/unit_tests/test_chat_input.py +2265 -0
  340. docagent_cli-0.0.35/tests/unit_tests/test_command_registry.py +153 -0
  341. docagent_cli-0.0.35/tests/unit_tests/test_compact_tool.py +40 -0
  342. docagent_cli-0.0.35/tests/unit_tests/test_config.py +2263 -0
  343. docagent_cli-0.0.35/tests/unit_tests/test_configurable_model.py +609 -0
  344. docagent_cli-0.0.35/tests/unit_tests/test_debug.py +69 -0
  345. docagent_cli-0.0.35/tests/unit_tests/test_editor.py +274 -0
  346. docagent_cli-0.0.35/tests/unit_tests/test_end_to_end.py +445 -0
  347. docagent_cli-0.0.35/tests/unit_tests/test_env_vars.py +90 -0
  348. docagent_cli-0.0.35/tests/unit_tests/test_exception_handling.py +275 -0
  349. docagent_cli-0.0.35/tests/unit_tests/test_file_ops.py +120 -0
  350. docagent_cli-0.0.35/tests/unit_tests/test_history.py +233 -0
  351. docagent_cli-0.0.35/tests/unit_tests/test_hooks.py +357 -0
  352. docagent_cli-0.0.35/tests/unit_tests/test_imports.py +29 -0
  353. docagent_cli-0.0.35/tests/unit_tests/test_input_parsing.py +414 -0
  354. docagent_cli-0.0.35/tests/unit_tests/test_links.py +42 -0
  355. docagent_cli-0.0.35/tests/unit_tests/test_local_context.py +1489 -0
  356. docagent_cli-0.0.35/tests/unit_tests/test_main.py +638 -0
  357. docagent_cli-0.0.35/tests/unit_tests/test_main_acp_mode.py +188 -0
  358. docagent_cli-0.0.35/tests/unit_tests/test_main_args.py +454 -0
  359. docagent_cli-0.0.35/tests/unit_tests/test_mcp_tools.py +1685 -0
  360. docagent_cli-0.0.35/tests/unit_tests/test_mcp_trust.py +112 -0
  361. docagent_cli-0.0.35/tests/unit_tests/test_mcp_viewer.py +189 -0
  362. docagent_cli-0.0.35/tests/unit_tests/test_media_utils.py +733 -0
  363. docagent_cli-0.0.35/tests/unit_tests/test_message_store.py +727 -0
  364. docagent_cli-0.0.35/tests/unit_tests/test_messages.py +759 -0
  365. docagent_cli-0.0.35/tests/unit_tests/test_model_config.py +2890 -0
  366. docagent_cli-0.0.35/tests/unit_tests/test_model_selector.py +948 -0
  367. docagent_cli-0.0.35/tests/unit_tests/test_model_switch.py +723 -0
  368. docagent_cli-0.0.35/tests/unit_tests/test_non_interactive.py +930 -0
  369. docagent_cli-0.0.35/tests/unit_tests/test_offload.py +1388 -0
  370. docagent_cli-0.0.35/tests/unit_tests/test_output.py +62 -0
  371. docagent_cli-0.0.35/tests/unit_tests/test_reload.py +499 -0
  372. docagent_cli-0.0.35/tests/unit_tests/test_remote_client.py +615 -0
  373. docagent_cli-0.0.35/tests/unit_tests/test_sandbox_factory.py +321 -0
  374. docagent_cli-0.0.35/tests/unit_tests/test_server.py +288 -0
  375. docagent_cli-0.0.35/tests/unit_tests/test_server_config.py +217 -0
  376. docagent_cli-0.0.35/tests/unit_tests/test_server_graph.py +133 -0
  377. docagent_cli-0.0.35/tests/unit_tests/test_server_helpers.py +95 -0
  378. docagent_cli-0.0.35/tests/unit_tests/test_server_manager.py +280 -0
  379. docagent_cli-0.0.35/tests/unit_tests/test_sessions.py +1732 -0
  380. docagent_cli-0.0.35/tests/unit_tests/test_shell_allow_list.py +719 -0
  381. docagent_cli-0.0.35/tests/unit_tests/test_skill_invocation.py +518 -0
  382. docagent_cli-0.0.35/tests/unit_tests/test_status.py +133 -0
  383. docagent_cli-0.0.35/tests/unit_tests/test_subagents.py +431 -0
  384. docagent_cli-0.0.35/tests/unit_tests/test_textual_adapter.py +1254 -0
  385. docagent_cli-0.0.35/tests/unit_tests/test_theme.py +1048 -0
  386. docagent_cli-0.0.35/tests/unit_tests/test_thread_selector.py +3047 -0
  387. docagent_cli-0.0.35/tests/unit_tests/test_token_tracker.py +104 -0
  388. docagent_cli-0.0.35/tests/unit_tests/test_ui.py +351 -0
  389. docagent_cli-0.0.35/tests/unit_tests/test_unicode_security.py +246 -0
  390. docagent_cli-0.0.35/tests/unit_tests/test_update_check.py +482 -0
  391. docagent_cli-0.0.35/tests/unit_tests/test_version.py +166 -0
  392. docagent_cli-0.0.35/tests/unit_tests/test_welcome.py +469 -0
  393. docagent_cli-0.0.35/tests/unit_tests/tools/__init__.py +0 -0
  394. docagent_cli-0.0.35/tests/unit_tests/tools/test_fetch_url.py +72 -0
  395. docagent_cli-0.0.35/uv.lock +6553 -0
@@ -0,0 +1,225 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ #.idea/
177
+
178
+ # Abstra
179
+ # Abstra is an AI-powered process automation framework.
180
+ # Ignore directories containing user credentials, local state, and settings.
181
+ # Learn more at https://abstra.io/docs
182
+ .abstra/
183
+
184
+ # Visual Studio Code
185
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188
+ # you could uncomment the following to ignore the entire vscode folder
189
+ # .vscode/
190
+
191
+ # Ruff stuff:
192
+ .ruff_cache/
193
+
194
+ # PyPI configuration file
195
+ .pypirc
196
+
197
+ # Cursor
198
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
199
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
200
+ # refer to https://docs.cursor.com/context/ignore-files
201
+ .cursorignore
202
+ .cursorindexingignore
203
+
204
+ # Marimo
205
+ marimo/_static/
206
+ marimo/_lsp/
207
+ __marimo__/
208
+
209
+ # LangGraph
210
+ .langgraph_api
211
+
212
+ #claude
213
+ .claude
214
+
215
+ .idea
216
+ TEXTUAL_REFACTOR_PLAN.md
217
+ libs/cli/TEXTUAL_PROGRESS.md
218
+
219
+ /tmp/
220
+
221
+ # macOS
222
+ .DS_Store
223
+ */tmp/.DS_Store
224
+
225
+ CLAUDE.md
@@ -0,0 +1,365 @@
1
+ # Changelog
2
+
3
+ ## [0.0.34](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.33...docagent-cli==0.0.34) (2026-03-17)
4
+
5
+ ### Features
6
+
7
+ * External editor support via `ctrl+x` and `/editor` ([#1861](https://github.com/langchain-ai/docagent/issues/1861)) ([bf5d088](https://github.com/langchain-ai/docagent/commit/bf5d088d4b3cee6c7e44c3abe3736f9972897896))
8
+ * Defer HITL approval menu while user is typing ([#1833](https://github.com/langchain-ai/docagent/issues/1833)) ([1d1572e](https://github.com/langchain-ai/docagent/commit/1d1572e40cc9f87b97832cbe2b9152c281f8ec92))
9
+
10
+ ### Bug Fixes
11
+
12
+ * Resolve config-defined providers during runtime model swaps ([#1941](https://github.com/langchain-ai/docagent/issues/1941)) ([aebc660](https://github.com/langchain-ai/docagent/commit/aebc660321895909f6b6eb71e72a99ca7754bcf1))
13
+
14
+ ## [0.0.33](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.32...docagent-cli==0.0.33) (2026-03-16)
15
+
16
+ ### Highlights
17
+
18
+ * **Client-server architecture:** The CLI can now connect to a remote agent backend via `langgraph dev`, decoupling the UI from the runtime and unlocking server-side execution workflows.
19
+ * **Expanded model ecosystem:** Added LiteLLM and Baseten as built-in providers. The `/model` selector now shows live model status, supports an `enabled` flag to hide providers, and auto-discovers models for `class_path` (arbitrary) providers.
20
+ * **CLI ergonomics:** New `-y` and `-S` short flags for `--auto-approve` and `--shell-allow-list`. The `ask_user` tool is now enabled by default, and the welcome banner rotates helpful tips.
21
+ * **Performance:** Integrated `textual-speedups` for Rust-based layout primitives, switched the messages container to stream layout, and offloaded blocking path ops from the event loop — noticeably snappier on long conversations.
22
+ * **Stability:** 15 bug fixes covering markup injection, scrollbar flicker during streaming, reentrant model switching, and autocomplete race conditions.
23
+
24
+ ### Features
25
+
26
+ * Client-server architecture via `langgraph dev` ([#1759](https://github.com/langchain-ai/docagent/issues/1759)) ([f5407e6](https://github.com/langchain-ai/docagent/commit/f5407e6300e6ee51d8c88f1f183dd960b30a5b56))
27
+ * Show model status in `/model` selector ([#1820](https://github.com/langchain-ai/docagent/issues/1820)) ([92ce0cf](https://github.com/langchain-ai/docagent/commit/92ce0cffde6f49131541b5985bc80058ae0ad46e))
28
+ * Enable `ask_user` tool by default ([#1830](https://github.com/langchain-ai/docagent/issues/1830)) ([ed0c745](https://github.com/langchain-ai/docagent/commit/ed0c745eef8d8fad40aa39b0dfd4de2ba9988fe5))
29
+ * Add `-y` and `-S` short flags for auto-approve and shell-allow-list ([#1919](https://github.com/langchain-ai/docagent/issues/1919)) ([1036b16](https://github.com/langchain-ai/docagent/commit/1036b16276d59d8be669d963901c91aeb8cc2236))
30
+ * Add `enabled` flag to hide providers from `/model` switcher ([#1897](https://github.com/langchain-ai/docagent/issues/1897)) ([72a216c](https://github.com/langchain-ai/docagent/commit/72a216c88f661f9e53eaf92aedce40fac7b76d3c))
31
+ * Add `litellm` optional dep ([#1818](https://github.com/langchain-ai/docagent/issues/1818)) ([defa21b](https://github.com/langchain-ai/docagent/commit/defa21bc6eea596bc67e70372e022d5b78049c0d))
32
+ * Add `sessions` as hidden keyword alias for `/threads` ([#1823](https://github.com/langchain-ai/docagent/issues/1823)) ([ffa98cc](https://github.com/langchain-ai/docagent/commit/ffa98ccf9ebe12eadb7f0e95f278dd9bd8eca240))
33
+ * Add Baseten as a built-in model provider/optional dep ([#1819](https://github.com/langchain-ai/docagent/issues/1819)) ([e05ee66](https://github.com/langchain-ai/docagent/commit/e05ee66b0d6c5cb996208d554686fc128f1094a2))
34
+ * Add rotating tips to welcome banner ([#1898](https://github.com/langchain-ai/docagent/issues/1898)) ([d882ca8](https://github.com/langchain-ai/docagent/commit/d882ca81e2c9a11768a07824fd5b5ce8579bdcd7))
35
+ * Add sandbox type to trace metadata ([#1845](https://github.com/langchain-ai/docagent/issues/1845)) ([59ef941](https://github.com/langchain-ai/docagent/commit/59ef94143fc0adabb5f70f308527d98aa1511e44))
36
+ * Show versions in non-interactive header ([#1881](https://github.com/langchain-ai/docagent/issues/1881)) ([adacc3f](https://github.com/langchain-ai/docagent/commit/adacc3fd0a0f040373b8ef39032978019b5c8e5f))
37
+ * Show editable install source path in help and banner ([#1916](https://github.com/langchain-ai/docagent/issues/1916)) ([4ce1cee](https://github.com/langchain-ai/docagent/commit/4ce1ceebdd2e4aa6db008061519d3df1e422c2db))
38
+
39
+ ### Bug Fixes
40
+
41
+ * Replace per-chunk `scroll_end` with anchor to fix scrollbar flicker ([#1891](https://github.com/langchain-ai/docagent/issues/1891)) ([a9be236](https://github.com/langchain-ai/docagent/commit/a9be2368509f9f2c66537014ae2138253cf0dc39))
42
+ * Auto-discover models for `class_path` providers ([#1816](https://github.com/langchain-ai/docagent/issues/1816)) ([177fe0f](https://github.com/langchain-ai/docagent/commit/177fe0f663926d6879aa2177b7988d45cd1e4055))
43
+ * Correct model selector footer showing wrong profile after search ([#1805](https://github.com/langchain-ai/docagent/issues/1805)) ([2f1d52f](https://github.com/langchain-ai/docagent/commit/2f1d52f4ad65add210d6f840b1b78e62eba37195))
44
+ * Escape dynamic strings in rich markup to prevent markup injection ([#1888](https://github.com/langchain-ai/docagent/issues/1888)) ([d349d10](https://github.com/langchain-ai/docagent/commit/d349d1061647325fdb4ea6322254b24555abf751))
45
+ * Forward `DAYTONA_API_URL` to avoid deprecated `server_url` access ([#1844](https://github.com/langchain-ai/docagent/issues/1844)) ([7d19ca8](https://github.com/langchain-ai/docagent/commit/7d19ca8e6404a2ea98aac6a9d4cae7a2b529922c))
46
+ * Let unknown providers through credential check ([#1815](https://github.com/langchain-ai/docagent/issues/1815)) ([89d39de](https://github.com/langchain-ai/docagent/commit/89d39ded171bf300e9b17972f18063e9157f298f))
47
+ * Persist `models.recent` on every session start ([#1802](https://github.com/langchain-ai/docagent/issues/1802)) ([32aa371](https://github.com/langchain-ai/docagent/commit/32aa371a371208146cc093c4e5eb7a752a74b3c9))
48
+ * Prevent reentrant model switching ([#1824](https://github.com/langchain-ai/docagent/issues/1824)) ([09d16a8](https://github.com/langchain-ai/docagent/commit/09d16a8151466fd2d82976d44d7b4e957255bcd9))
49
+ * Remove double slash in skills path template ([#1808](https://github.com/langchain-ai/docagent/issues/1808)) ([2bc9620](https://github.com/langchain-ai/docagent/commit/2bc962075146548f2ef4c8851bd502df9d6a1fa5))
50
+ * Show checkmark for `class_path` providers in model selector ([#1899](https://github.com/langchain-ai/docagent/issues/1899)) ([4adb712](https://github.com/langchain-ai/docagent/commit/4adb712c8eacbcfbc06801c31bfd74fc0705bed3))
51
+ * Sort prefetched threads by user preference on initial render ([#1806](https://github.com/langchain-ai/docagent/issues/1806)) ([6f71153](https://github.com/langchain-ai/docagent/commit/6f711532976821a92e3396fe458ec7874b1237ef))
52
+ * Use `max-height` for `tool-info-scroll` to shrink-wrap content ([#1835](https://github.com/langchain-ai/docagent/issues/1835)) ([a4e1908](https://github.com/langchain-ai/docagent/commit/a4e1908527c3a30a6f967dd1d989739d540ddd2a))
53
+ * Use ASCII-safe glyphs in tool status restore path ([#1895](https://github.com/langchain-ai/docagent/issues/1895)) ([2a9cbc8](https://github.com/langchain-ai/docagent/commit/2a9cbc8540b2ab77362cbb00764a3533e234891f))
54
+ * Use counter to close history-recall autocomplete race ([#1901](https://github.com/langchain-ai/docagent/issues/1901)) ([bfd08af](https://github.com/langchain-ai/docagent/commit/bfd08afbc0eca844e565842dff50eddb067e4750))
55
+ * Use UUID7 for thread IDs instead of 8-char hex ([#1826](https://github.com/langchain-ai/docagent/issues/1826)) ([821885b](https://github.com/langchain-ai/docagent/commit/821885bab8ae2eef873a33fdaa6dc427a473d764))
56
+
57
+ ### Performance Improvements
58
+
59
+ * Add `textual-speedups` for Rust-based layout primitives ([#1910](https://github.com/langchain-ai/docagent/issues/1910)) ([45b58a1](https://github.com/langchain-ai/docagent/commit/45b58a13e14abfb58ef3688cee51a5819d8ca52d))
60
+ * Use stream layout for messages container ([#1896](https://github.com/langchain-ai/docagent/issues/1896)) ([b35401b](https://github.com/langchain-ai/docagent/commit/b35401b885a7651db548f1826ddb24476ecde5b7))
61
+ * Offload blocking path ops from textual event loop ([#1894](https://github.com/langchain-ai/docagent/issues/1894)) ([d3eedcc](https://github.com/langchain-ai/docagent/commit/d3eedccc7edd21103ca1e586fc365d721f674099))
62
+ * Speed up `/model` selector with cache pre-warming and async saves ([#1813](https://github.com/langchain-ai/docagent/issues/1813)) ([2aec75c](https://github.com/langchain-ai/docagent/commit/2aec75c8dca6c0510671cf1288a924c4ca9bce1c))
63
+ * Speed up `/threads` modal startup ([#1811](https://github.com/langchain-ai/docagent/issues/1811)) ([5758df1](https://github.com/langchain-ai/docagent/commit/5758df1b663cd09726b8cd08d86897351142ed5e))
64
+
65
+ ## [0.0.32](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.31...docagent-cli==0.0.32) (2026-03-11)
66
+
67
+ ### Features
68
+
69
+ * Add token breakdown to `/tokens` and simplify `/compact` messages ([#1782](https://github.com/langchain-ai/docagent/issues/1782)) ([2f37bff](https://github.com/langchain-ai/docagent/commit/2f37bffa9d7a9ced6945abe4ab6bc3409bfb97b1))
70
+ * `--json` flag for machine-readable output ([#1768](https://github.com/langchain-ai/docagent/issues/1768)) ([6f62496](https://github.com/langchain-ai/docagent/commit/6f62496bb699dfa6086ee1850b83f38d3b1242fa))
71
+
72
+ ### Bug Fixes
73
+
74
+ * Work around VS Code 1.110 space key regression ([#1748](https://github.com/langchain-ai/docagent/issues/1748)) ([f5fe431](https://github.com/langchain-ai/docagent/commit/f5fe4315143bf5b636cf42fc98cbfe3d99918cfc))
75
+
76
+ ## [0.0.31](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.30...docagent-cli==0.0.31) (2026-03-09)
77
+
78
+ ### Features
79
+
80
+ * Opt-in `ask_user` tool for interactive agent questions ([#1377](https://github.com/langchain-ai/docagent/issues/1377)) ([de7068d](https://github.com/langchain-ai/docagent/commit/de7068d21fd4b932c6e53f500b0ea3b02a04c0aa))
81
+ * Big thread improvements!
82
+ * Rework `/thread` switcher with search, columns, delete, and sort toggle ([#1723](https://github.com/langchain-ai/docagent/issues/1723)) ([8b21ddb](https://github.com/langchain-ai/docagent/commit/8b21ddb2ff7f13d6b3ffcbf2fe605bfbadbc3d38))
83
+ * Track and display working directory per thread ([#1735](https://github.com/langchain-ai/docagent/issues/1735)) ([0e4f25d](https://github.com/langchain-ai/docagent/commit/0e4f25dfbc3e15653bc3f8a6d32a0a61ead4ba82))
84
+ * Add `-n` short flag for `threads list --limit` ([#1731](https://github.com/langchain-ai/docagent/issues/1731)) ([8bbace9](https://github.com/langchain-ai/docagent/commit/8bbace9facd1e33757521e835dcb291accd2fa91))
85
+ * Add sort, branch filter, and verbose flags to threads list ([#1732](https://github.com/langchain-ai/docagent/issues/1732)) ([11dc8e3](https://github.com/langchain-ai/docagent/commit/11dc8e3397ef9e9dbe8b15578e9258544ed6b452))
86
+ * Tailor system prompt for non-interactive mode ([#1727](https://github.com/langchain-ai/docagent/issues/1727)) ([871e5cf](https://github.com/langchain-ai/docagent/commit/871e5cf76b1a7e7cf7175b4415bb8e2206da39ec))
87
+ * `/reload` command for in-session config refresh ([#1722](https://github.com/langchain-ai/docagent/issues/1722)) ([381aee6](https://github.com/langchain-ai/docagent/commit/381aee6d223fe3d866bedfe3a534916f419a4435))
88
+ * Rearrange HITL option order in approval menu ([#1726](https://github.com/langchain-ai/docagent/issues/1726)) ([0ca6cb2](https://github.com/langchain-ai/docagent/commit/0ca6cb237b6da538bad2b4bf292942c8db72ec1f))
89
+
90
+ ### Bug Fixes
91
+
92
+ * Localize newline shortcut labels by platform ([#1721](https://github.com/langchain-ai/docagent/issues/1721)) ([f35576b](https://github.com/langchain-ai/docagent/commit/f35576bafac711d6c04f1f9dd40ec97a90e30060))
93
+ * Prevent `shift+enter` from sending `backslash+enter` ([#1728](https://github.com/langchain-ai/docagent/issues/1728)) ([81dceb0](https://github.com/langchain-ai/docagent/commit/81dceb043097a47702bb5a0227a8f12e9055bd05))
94
+ * Write files with langsmith sandbox ([#1714](https://github.com/langchain-ai/docagent/issues/1714)) ([5933c9e](https://github.com/langchain-ai/docagent/commit/5933c9e2995c422e43649c61981e086ac1eaf725))
95
+
96
+ ## [0.0.30](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.29...docagent-cli==0.0.30) (2026-03-07)
97
+
98
+ ### Features
99
+
100
+ * `--acp` mode to run CLI agent as ACP server ([#1297](https://github.com/langchain-ai/docagent/issues/1297)) ([c9ba00a](https://github.com/langchain-ai/docagent/commit/c9ba00a56b7ee5e48b56b13f9f093bb8bf639700))
101
+ * Model detail footer + persist `--profile-override` on hot-swap ([#1700](https://github.com/langchain-ai/docagent/issues/1700)) ([f2c8b54](https://github.com/langchain-ai/docagent/commit/f2c8b54e9b4c541bf6f91139bfb9b6a2f20c8de0))
102
+ * Show message timestamp toast on click ([#1702](https://github.com/langchain-ai/docagent/issues/1702)) ([4f403ec](https://github.com/langchain-ai/docagent/commit/4f403ecb3332010062158ec30fd55f349654a533))
103
+
104
+ ### Bug Fixes
105
+
106
+ * Expire `ctrl+c` quit window when toast disappears ([#1701](https://github.com/langchain-ai/docagent/issues/1701)) ([38b5ea9](https://github.com/langchain-ai/docagent/commit/38b5ea9484ab121c9b2919dd74469e82fce19b82))
107
+ * Preserve input text when escaping shell/command mode ([#1706](https://github.com/langchain-ai/docagent/issues/1706)) ([3c00edb](https://github.com/langchain-ai/docagent/commit/3c00edb93eddf74e87d58526a02be72577ed65b1))
108
+ * Right-align token count next to model name in status bar ([#1705](https://github.com/langchain-ai/docagent/issues/1705)) ([311c919](https://github.com/langchain-ai/docagent/commit/311c9191cf663540e1b62eb9452abecda5bc7b4f))
109
+
110
+ ## [0.0.29](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.28...docagent-cli==0.0.29) (2026-03-06)
111
+
112
+ ### Features
113
+
114
+ * `--model-params` flag on `/model` command ([#1679](https://github.com/langchain-ai/docagent/issues/1679)) ([9b6433d](https://github.com/langchain-ai/docagent/commit/9b6433d557e6e8b3d39c10577595b0ef6d741c94))
115
+ * `--shell-allow-list all` ([#1695](https://github.com/langchain-ai/docagent/issues/1695)) ([4aec7b3](https://github.com/langchain-ai/docagent/commit/4aec7b35caa7723b8bbda189c9ca1d213e0a9a6d))
116
+ * Hook dispatch for external tool integration ([#1553](https://github.com/langchain-ai/docagent/issues/1553)) ([cdb2230](https://github.com/langchain-ai/docagent/commit/cdb2230f04ce7a2b7ef0837cbbc223dcbf04b78e))
117
+ * Detect deceptive unicode in tool args and URLs ([#1694](https://github.com/langchain-ai/docagent/issues/1694)) ([d4c8544](https://github.com/langchain-ai/docagent/commit/d4c8544bd6bf3b6df50b99f8a0c7208c20f86bd9))
118
+ * MCP tool loading with auto-discovery ([#801](https://github.com/langchain-ai/docagent/issues/801)) ([df0908e](https://github.com/langchain-ai/docagent/commit/df0908ebed4e17f0fd904d83e9d4ea38dfc1207d))
119
+ * Surface mcp server/tool info in system prompt ([#1693](https://github.com/langchain-ai/docagent/issues/1693)) ([068e075](https://github.com/langchain-ai/docagent/commit/068e075ecd4a7f3e35219ae6b87707bd9dc3f785))
120
+
121
+ ### Bug Fixes
122
+
123
+ * Anchor `ChatInput` below scrollable area ([#1671](https://github.com/langchain-ai/docagent/issues/1671)) ([11105d9](https://github.com/langchain-ai/docagent/commit/11105d93f593d802d5e120c095f16d771c674bef))
124
+ * Remove dead chat-spacer widget and resize handler ([#1686](https://github.com/langchain-ai/docagent/issues/1686)) ([b6ecec5](https://github.com/langchain-ai/docagent/commit/b6ecec5bd14677a878c92a1b51e950f61fabf8d3))
125
+
126
+ ## [0.0.28](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.27...docagent-cli==0.0.28) (2026-03-05)
127
+
128
+ ### Features
129
+
130
+ * Video support to multimodal inputs ([#1521](https://github.com/langchain-ai/docagent/issues/1521)) ([f9b49b7](https://github.com/langchain-ai/docagent/commit/f9b49b7341bd42b5278a03496743e4709689598e))
131
+ * NVIDIA API key support and default model ([#1577](https://github.com/langchain-ai/docagent/issues/1577)) ([9ce2660](https://github.com/langchain-ai/docagent/commit/9ce2660a67c3497cff18d27131fb7ef49e85b310))
132
+ * Fuzzy search for slash command autocomplete ([#1660](https://github.com/langchain-ai/docagent/issues/1660)) ([5f6e9c0](https://github.com/langchain-ai/docagent/commit/5f6e9c014e6a99783b3113184cc12f0179a902f0))
133
+ * Tab autocomplete in model selector ([#1669](https://github.com/langchain-ai/docagent/issues/1669)) ([28bd0aa](https://github.com/langchain-ai/docagent/commit/28bd0aaca737b8bb194ecb9f6612989b9aacec02))
134
+
135
+ ### Bug Fixes
136
+
137
+ * Backspace at cursor position 0 exits mode even with text ([#1666](https://github.com/langchain-ai/docagent/issues/1666)) ([dfa4c1f](https://github.com/langchain-ai/docagent/commit/dfa4c1fedcecf2bb17d8ffef01cf50efe6c80fb0))
138
+ * Skip auto-approve toggle when modal screen is open ([#1668](https://github.com/langchain-ai/docagent/issues/1668)) ([6597f0b](https://github.com/langchain-ai/docagent/commit/6597f0b8da3c3bd701a42e228660d459cefe3f64))
139
+ * Truncate model name in status bar on narrow terminals ([#1665](https://github.com/langchain-ai/docagent/issues/1665)) ([0e24a04](https://github.com/langchain-ai/docagent/commit/0e24a04aa9e5894735522ce23295bb27fd2b8190))
140
+
141
+ ## [0.0.27](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.26...docagent-cli==0.0.27) (2026-03-04)
142
+
143
+ ### Features
144
+
145
+ * Background PyPI update check ([#1648](https://github.com/langchain-ai/docagent/issues/1648)) ([2e7a5e7](https://github.com/langchain-ai/docagent/commit/2e7a5e7d97f64147ab2d000fae833fe681f1d6b2))
146
+ * Install script ([#1649](https://github.com/langchain-ai/docagent/issues/1649)) ([68f6ef9](https://github.com/langchain-ai/docagent/commit/68f6ef96e7d66b2c98d1371e91e5d25f107b80fe))
147
+ * Fuzzy search for model switcher ([#1266](https://github.com/langchain-ai/docagent/issues/1266)) ([a6bbb18](https://github.com/langchain-ai/docagent/commit/a6bbb182a2336ba748d93a06b9fcf27966321e20))
148
+ * Model usage stats display ([#1587](https://github.com/langchain-ai/docagent/issues/1587)) ([a1208db](https://github.com/langchain-ai/docagent/commit/a1208db096761eb54e0fe712a5aa922502575cb6))
149
+ * Substring matching in command history navigation ([#1301](https://github.com/langchain-ai/docagent/issues/1301)) ([e276d5a](https://github.com/langchain-ai/docagent/commit/e276d5a64bee9394f53ab993b01447023bcd4c7d))
150
+
151
+ ### Bug Fixes
152
+
153
+ * Allow Esc to exit command/bash input mode ([#1644](https://github.com/langchain-ai/docagent/issues/1644)) ([906da72](https://github.com/langchain-ai/docagent/commit/906da72ea40e16492f8e7f3c35758af486c92b3c))
154
+ * Make `!` bash commands interruptible via `Esc`/`Ctrl+C` ([#1638](https://github.com/langchain-ai/docagent/issues/1638)) ([0c414d1](https://github.com/langchain-ai/docagent/commit/0c414d154a74cfabebfae8fc2dbb6d7e39da3857))
155
+ * Make escape reject pending HITL approval first ([#1645](https://github.com/langchain-ai/docagent/issues/1645)) ([5d7be0c](https://github.com/langchain-ai/docagent/commit/5d7be0c1a2fbe54f7fe062c5a43a7591aecb00e4))
156
+ * Show cwd on startup ([#1209](https://github.com/langchain-ai/docagent/issues/1209)) ([23032dd](https://github.com/langchain-ai/docagent/commit/23032ddd80b0ec8bf58c91776e62b834f6e03b5e))
157
+ * Terminate active subprocesses on app quit ([#1646](https://github.com/langchain-ai/docagent/issues/1646)) ([5f2e614](https://github.com/langchain-ai/docagent/commit/5f2e614f05912d3278a988cb7366612099105acf))
158
+ * Use first-class OpenRouter attribution kwargs ([#1635](https://github.com/langchain-ai/docagent/issues/1635)) ([9c1ed93](https://github.com/langchain-ai/docagent/commit/9c1ed93861a52b9ced2c1426131d542f50afa623))
159
+
160
+ ## [0.0.26](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.25...docagent-cli==0.0.26) (2026-03-03)
161
+
162
+ ### Features
163
+
164
+ * Compaction hook ([#1420](https://github.com/langchain-ai/docagent/issues/1420)) ([e87cdad](https://github.com/langchain-ai/docagent/commit/e87cdaddb9a984c4fd189b4f71303881edb32cb2))
165
+ * `/compact` command ([#1579](https://github.com/langchain-ai/docagent/issues/1579)) ([46e9e95](https://github.com/langchain-ai/docagent/commit/46e9e950087e973175d49d6a863cfa9d2f241528))
166
+ * `--profile-override` CLI flag ([#1605](https://github.com/langchain-ai/docagent/issues/1605)) ([1984099](https://github.com/langchain-ai/docagent/commit/1984099ae9ac4b0c13dc08722abb9d56055da7b7))
167
+ * Model profile overrides in config ([#1603](https://github.com/langchain-ai/docagent/issues/1603)) ([d3d6899](https://github.com/langchain-ai/docagent/commit/d3d6899209b7cf97447da0eee642b3f55261ffbc))
168
+ * Show summarization status and notification ([#919](https://github.com/langchain-ai/docagent/issues/919)) ([2e3cb74](https://github.com/langchain-ai/docagent/commit/2e3cb743eff8e0a33b215359132cee13a673a4df))
169
+
170
+ ### Bug Fixes
171
+
172
+ * Fix image path pasting qualms ([#1560](https://github.com/langchain-ai/docagent/issues/1560)) ([8caaf3e](https://github.com/langchain-ai/docagent/commit/8caaf3e71ae7f5a26c20ca86700cc51f3c6f37ed))
173
+ * Load `.agents` skill alias directories at interactive startup ([#1556](https://github.com/langchain-ai/docagent/issues/1556)) ([af0a759](https://github.com/langchain-ai/docagent/commit/af0a759ee231cfe8860da34fe39dbcff38726102))
174
+ * Coerce execute timeout to int before formatting tool display ([#1588](https://github.com/langchain-ai/docagent/issues/1588)) ([04b8c72](https://github.com/langchain-ai/docagent/commit/04b8c72361f7eb60b86fa560ef3f6283912c3395)), closes [#1586](https://github.com/langchain-ai/docagent/issues/1586)
175
+ * Add missing flags to help screen ([#1619](https://github.com/langchain-ai/docagent/issues/1619)) ([6067749](https://github.com/langchain-ai/docagent/commit/60677492b3f49adc8535b34156029271a0728923))
176
+ * Align compaction messaging across `/compact` and `compact_conversation` ([#1583](https://github.com/langchain-ai/docagent/issues/1583)) ([d455a6b](https://github.com/langchain-ai/docagent/commit/d455a6b117dbca2dfb5156050273a84946adc247))
177
+ * Apply profile overrides in `/compact` ([#1612](https://github.com/langchain-ai/docagent/issues/1612)) ([a9dc2c5](https://github.com/langchain-ai/docagent/commit/a9dc2c5a1ad6d37f3f682491664b3f709cad8552))
178
+ * Disambiguate `/tokens` vs `/compact` token reporting ([#1618](https://github.com/langchain-ai/docagent/issues/1618)) ([51c3347](https://github.com/langchain-ai/docagent/commit/51c3347e5a402115d4ecbb09f0074c607270f992))
179
+ * Make LangSmith URL lookups non-blocking ([#1595](https://github.com/langchain-ai/docagent/issues/1595)) ([572eaee](https://github.com/langchain-ai/docagent/commit/572eaeefbe2f9318555733977e4771815879273c))
180
+ * Only exit input mode on backspace, not text clear ([#1479](https://github.com/langchain-ai/docagent/issues/1479)) ([da0965e](https://github.com/langchain-ai/docagent/commit/da0965ee33e6bdf7aec30865bed44a1bd38a7d12))
181
+ * Retry langsmith project url lookup until project exists ([#1562](https://github.com/langchain-ai/docagent/issues/1562)) ([e137a63](https://github.com/langchain-ai/docagent/commit/e137a633fdadda205b8e05a9fdabc4b978726a37))
182
+ * Show model info in `/tokens` before first usage ([#1607](https://github.com/langchain-ai/docagent/issues/1607)) ([7b01ae7](https://github.com/langchain-ai/docagent/commit/7b01ae7258ed079046262d1c174f1c406101294c))
183
+ * Support `timeout=0` for sandbox `execute()` ([#1558](https://github.com/langchain-ai/docagent/issues/1558)) ([ed14443](https://github.com/langchain-ai/docagent/commit/ed14443b5aec8afde1f74bb2e12a17cb7d1829b6))
184
+ * Unreachable `except` block ([#1535](https://github.com/langchain-ai/docagent/issues/1535)) ([0e17e35](https://github.com/langchain-ai/docagent/commit/0e17e352fa2ae4e34320a27d272586a10a0a7aec))
185
+
186
+ ### Performance Improvements
187
+
188
+ * Optimize thread resume path with prefetch and batched hydration ([#1561](https://github.com/langchain-ai/docagent/issues/1561)) ([068d112](https://github.com/langchain-ai/docagent/commit/068d1128177de0f0a01f533a01184039c2a2f09f))
189
+ * Parallelize detection scripts for faster first-turn ([#1541](https://github.com/langchain-ai/docagent/issues/1541)) ([dad8b6e](https://github.com/langchain-ai/docagent/commit/dad8b6e15a78d26921c0cb831579648927caa551))
190
+ * Speed up `/threads` first-open ([#1481](https://github.com/langchain-ai/docagent/issues/1481)) ([b248b15](https://github.com/langchain-ai/docagent/commit/b248b15fd70de3c4d055b68a0dae04f00e41ea9e))
191
+
192
+ ## [0.0.25](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.24...docagent-cli==0.0.25) (2026-02-20)
193
+
194
+ ### Features
195
+
196
+ * Set OpenRouter headers, default to `gemini-3.1-pro-preview` ([#1455](https://github.com/langchain-ai/docagent/issues/1455)) ([95c0b71](https://github.com/langchain-ai/docagent/commit/95c0b71c2fafbec8424d92e7698563045a787866)), closes [#1454](https://github.com/langchain-ai/docagent/issues/1454)
197
+
198
+ ### Bug Fixes
199
+
200
+ * Duplicate paste issue ([#1460](https://github.com/langchain-ai/docagent/issues/1460)) ([9177515](https://github.com/langchain-ai/docagent/commit/9177515c8a968882e980d229fb546c9753475de7)), closes [#1425](https://github.com/langchain-ai/docagent/issues/1425)
201
+ * Remove model fallback to env variables ([#1458](https://github.com/langchain-ai/docagent/issues/1458)) ([c9b4275](https://github.com/langchain-ai/docagent/commit/c9b4275e22fda5aa35b3ddce924277ec8aaa9e1f))
202
+
203
+ ## [0.0.24](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.23...docagent-cli==0.0.24) (2026-02-20)
204
+
205
+ ### Features
206
+
207
+ * Add single-click link opening for rich-style hyperlinks ([#1433](https://github.com/langchain-ai/docagent/issues/1433)) ([ef1fd31](https://github.com/langchain-ai/docagent/commit/ef1fd3115d77cd769e664d2ad0345623f9ce4019))
208
+ * Display model name and context window size using `/tokens` ([#1441](https://github.com/langchain-ai/docagent/issues/1441)) ([ff7ef0f](https://github.com/langchain-ai/docagent/commit/ff7ef0f87e6dfc6c581edb34b1a57be7ff6e059c))
209
+ * Refresh local context after summarization events ([#1384](https://github.com/langchain-ai/docagent/issues/1384)) ([dcb9583](https://github.com/langchain-ai/docagent/commit/dcb95839de360f03d2fc30c9144096874b24006f))
210
+ * Windowed thread hydration and configurable thread limit ([#1435](https://github.com/langchain-ai/docagent/issues/1435)) ([9da8d0b](https://github.com/langchain-ai/docagent/commit/9da8d0b5c86441e87b85ee6f8db1d23848a823ed))
211
+ * Per-command `timeout` override to `execute()` ([#1154](https://github.com/langchain-ai/docagent/issues/1154)) ([49277d4](https://github.com/langchain-ai/docagent/commit/49277d45a026c86b5bf176142dcb1dfc2c7643ae))
212
+
213
+ ### Bug Fixes
214
+
215
+ * Escape `Rich` markup in shell command display ([#1413](https://github.com/langchain-ai/docagent/issues/1413)) ([c330290](https://github.com/langchain-ai/docagent/commit/c33029032a1e2072dab2d06e93953f2acaa6d400))
216
+ * Load root-level `AGENTS.md` into agent system prompt ([#1445](https://github.com/langchain-ai/docagent/issues/1445)) ([047fa2c](https://github.com/langchain-ai/docagent/commit/047fa2cadfb9f005410c21a6e1e3b3d59eadda7d))
217
+ * Prevent crash when quitting with queued messages ([#1421](https://github.com/langchain-ai/docagent/issues/1421)) ([a3c9ae6](https://github.com/langchain-ai/docagent/commit/a3c9ae681501cd3efca82573a8d20a0dc8c9b338))
218
+
219
+ ## [0.0.23](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.22...docagent-cli==0.0.23) (2026-02-18)
220
+
221
+ ### Features
222
+
223
+ * Add drag-and-drop image attachment to chat input ([#1386](https://github.com/langchain-ai/docagent/issues/1386)) ([cd3d89b](https://github.com/langchain-ai/docagent/commit/cd3d89b4419b4c164915ff745afff99cb11b55a5))
224
+ * Skill deletion command ([#580](https://github.com/langchain-ai/docagent/issues/580)) ([40a8d86](https://github.com/langchain-ai/docagent/commit/40a8d866f952e0cf8d856e2fa360de771721b99a))
225
+ * Add visual mode indicators to chat input ([#1371](https://github.com/langchain-ai/docagent/issues/1371)) ([1ea6159](https://github.com/langchain-ai/docagent/commit/1ea6159b068b8c7d721d90a5c196e2eb9877c1c5))
226
+ * Dismiss completion dropdown on `esc` ([#1362](https://github.com/langchain-ai/docagent/issues/1362)) ([961b7fc](https://github.com/langchain-ai/docagent/commit/961b7fc764a7fbf63466d78c1d80b154b5d1692b))
227
+ * Expand local context & implement via bash for sandbox support ([#1295](https://github.com/langchain-ai/docagent/issues/1295)) ([de8bc7c](https://github.com/langchain-ai/docagent/commit/de8bc7cbbd7780ef250b3838f61ace85d4465c0a))
228
+ * Show sdk version alongside cli version ([#1378](https://github.com/langchain-ai/docagent/issues/1378)) ([e99b4c8](https://github.com/langchain-ai/docagent/commit/e99b4c864afd01d68c3829304fb93cc0530eedee))
229
+ * Strip mode-trigger prefix from chat input text ([#1373](https://github.com/langchain-ai/docagent/issues/1373)) ([6879eff](https://github.com/langchain-ai/docagent/commit/6879effb37c2160ef3835cd2d058b79f9d3a5a99))
230
+
231
+ ### Bug Fixes
232
+
233
+ * Path hardening ([#918](https://github.com/langchain-ai/docagent/issues/918)) ([fc34a14](https://github.com/langchain-ai/docagent/commit/fc34a144a2791c75f8b4c11f67dd1adbc029c81e))
234
+ * Only navigate prompt history at input boundaries ([#1385](https://github.com/langchain-ai/docagent/issues/1385)) ([6d82d6d](https://github.com/langchain-ai/docagent/commit/6d82d6de290e73b897a58d724f3dfc7a32a06cba))
235
+ * Substitute image base64 for placeholder in result block ([#1381](https://github.com/langchain-ai/docagent/issues/1381)) ([54f4d8e](https://github.com/langchain-ai/docagent/commit/54f4d8e834c4aad672d78b4130cd43f2454424fa))
236
+
237
+ ### Performance Improvements
238
+
239
+ * Defer more heavy imports to speed up startup ([#1389](https://github.com/langchain-ai/docagent/issues/1389)) ([4dd10d5](https://github.com/langchain-ai/docagent/commit/4dd10d5c9f3cfe13cd7b9ac18a1799c0832976ff))
240
+
241
+ ## [0.0.22](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.21...docagent-cli==0.0.22) (2026-02-17)
242
+
243
+ ### Features
244
+
245
+ * Add `langchain-openrouter` ([#1340](https://github.com/langchain-ai/docagent/issues/1340)) ([5b35247](https://github.com/langchain-ai/docagent/commit/5b35247b126ed328e9562ac3a3c2acd184b39011))
246
+ * Update system & default prompt ([#1293](https://github.com/langchain-ai/docagent/issues/1293)) ([2aeb092](https://github.com/langchain-ai/docagent/commit/2aeb092e027affd9eaa8a78b33101e1fd930d444))
247
+ * Warn when ripgrep is not installed ([#1337](https://github.com/langchain-ai/docagent/issues/1337)) ([0367efa](https://github.com/langchain-ai/docagent/commit/0367efa323b7a29c015d6a3fbb5af8894dc724b8))
248
+ * Ensure dep group version match for CLI ([#1316](https://github.com/langchain-ai/docagent/issues/1316)) ([db05de1](https://github.com/langchain-ai/docagent/commit/db05de1b0c92208b9752f3f03fa5fa54813ab4ef))
249
+ * Enable type checking in `docagent` and resolve most linting issues ([#991](https://github.com/langchain-ai/docagent/issues/991)) ([5c90376](https://github.com/langchain-ai/docagent/commit/5c90376c02754c67d448908e55d1e953f54b8acd))
250
+
251
+ ### Bug Fixes
252
+
253
+ * Handle `None` selection endpoint, `IndexError` in clipboard copy ([#1342](https://github.com/langchain-ai/docagent/issues/1342)) ([5754031](https://github.com/langchain-ai/docagent/commit/57540316cf928da3dcf4401fb54a5d0102045d67))
254
+
255
+ ### Performance Improvements
256
+
257
+ * Defer heavy imports ([#1361](https://github.com/langchain-ai/docagent/issues/1361)) ([dd992e4](https://github.com/langchain-ai/docagent/commit/dd992e48feb3e3a9fc6fd93f56e9d8a9cb51c7bf))
258
+
259
+ ## [0.0.21](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.20...docagent-cli==0.0.21) (2026-02-11)
260
+
261
+ ### Features
262
+
263
+ * Support piped stdin as prompt input ([#1254](https://github.com/langchain-ai/docagent/issues/1254)) ([cca61ff](https://github.com/langchain-ai/docagent/commit/cca61ff5edb5e2424bfc54b2ac33b59a520fdd6a))
264
+ * `/threads` command switcher ([#1262](https://github.com/langchain-ai/docagent/issues/1262)) ([45bf38d](https://github.com/langchain-ai/docagent/commit/45bf38d7c5ca7ca05ec58c320494a692e419b632)), closes [#1111](https://github.com/langchain-ai/docagent/issues/1111)
265
+ * Make thread link clickable when switching ([#1296](https://github.com/langchain-ai/docagent/issues/1296)) ([9409520](https://github.com/langchain-ai/docagent/commit/9409520d524c576c3b0b9686c96a1749ee9dcbbb)), closes [#1291](https://github.com/langchain-ai/docagent/issues/1291)
266
+ * `/trace` command to open LangSmith thread, link in switcher ([#1291](https://github.com/langchain-ai/docagent/issues/1291)) ([fbbd45b](https://github.com/langchain-ai/docagent/commit/fbbd45b51be2cf09726a3cd0adfcb09cb2b1ff46))
267
+ * `/changelog`, `/feedback`, `/docs` ([#1261](https://github.com/langchain-ai/docagent/issues/1261)) ([4561afb](https://github.com/langchain-ai/docagent/commit/4561afbea17bb11f7fc02ae9f19db15229656280))
268
+ * Show langsmith thread url on session teardown ([#1285](https://github.com/langchain-ai/docagent/issues/1285)) ([899fd1c](https://github.com/langchain-ai/docagent/commit/899fd1cdea6f7b2003992abd3f6173d630849a90))
269
+
270
+ ### Bug Fixes
271
+
272
+ * Fix stale model settings during model hot-swap ([#1257](https://github.com/langchain-ai/docagent/issues/1257)) ([55c119c](https://github.com/langchain-ai/docagent/commit/55c119cb6ce73db7cae0865172f00ab8fc9f8fc1))
273
+
274
+ ## [0.0.20](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.19...docagent-cli==0.0.20) (2026-02-10)
275
+
276
+ ### Features
277
+
278
+ * `--quiet` flag to suppress non-agent output w/ `-n` ([#1201](https://github.com/langchain-ai/docagent/issues/1201)) ([3e96792](https://github.com/langchain-ai/docagent/commit/3e967926655cf5249a1bc5ca3edd48da9dd3061b))
279
+ * Add docs link to `/help` ([#1098](https://github.com/langchain-ai/docagent/issues/1098)) ([8f8fc98](https://github.com/langchain-ai/docagent/commit/8f8fc98bd403d96d6ed95fce8906d9c881236613))
280
+ * Built-in skills, ship `skill-creator` as first ([#1191](https://github.com/langchain-ai/docagent/issues/1191)) ([42823a8](https://github.com/langchain-ai/docagent/commit/42823a88d1eb7242a5d9b3eba981f24b3ea9e274))
281
+ * Enrich built-in skill metadata with license and compatibility info ([#1193](https://github.com/langchain-ai/docagent/issues/1193)) ([b8179c2](https://github.com/langchain-ai/docagent/commit/b8179c23f9130c92cb1fb7c6b34d98cc32ec092a))
282
+ * Implement message queue for CLI ([#1197](https://github.com/langchain-ai/docagent/issues/1197)) ([c4678d7](https://github.com/langchain-ai/docagent/commit/c4678d7641785ac4f17045eb75d55f9dc44f37fe))
283
+ * Model switcher & arbitrary chat model support ([#1127](https://github.com/langchain-ai/docagent/issues/1127)) ([28fc311](https://github.com/langchain-ai/docagent/commit/28fc311da37881257e409149022f0717f78013ef))
284
+ * Non-interactive mode w/ shell allow-listing ([#909](https://github.com/langchain-ai/docagent/issues/909)) ([433bd2c](https://github.com/langchain-ai/docagent/commit/433bd2cb493d6c4b59f2833e4304eead0304195a))
285
+ * Support custom working directories and LangSmith sandbox templates ([#1099](https://github.com/langchain-ai/docagent/issues/1099)) ([21e7150](https://github.com/langchain-ai/docagent/commit/21e715054ea5cf48cab05319b2116509fbacd899))
286
+
287
+ ### Bug Fixes
288
+
289
+ * `-m` initial prompt submission ([#1184](https://github.com/langchain-ai/docagent/issues/1184)) ([a702e82](https://github.com/langchain-ai/docagent/commit/a702e82a0f61edbadd78eff6906ecde20b601798))
290
+ * Align skill-creator example scripts with agent skills spec ([#1177](https://github.com/langchain-ai/docagent/issues/1177)) ([199d176](https://github.com/langchain-ai/docagent/commit/199d17676ac1bfee645908a6c58193291e522890))
291
+ * Harden dictionary iteration and HITL fallback handling ([#1151](https://github.com/langchain-ai/docagent/issues/1151)) ([8b21fc6](https://github.com/langchain-ai/docagent/commit/8b21fc6105d808ad25c53de96f339ab21efb4474))
292
+ * Per-subcommand help screens, short flags, and skills enhancements ([#1190](https://github.com/langchain-ai/docagent/issues/1190)) ([3da1e8b](https://github.com/langchain-ai/docagent/commit/3da1e8bc20bf39aba80f6507b9abc2352de38484))
293
+ * Port skills behavior from SDK ([#1192](https://github.com/langchain-ai/docagent/issues/1192)) ([ad9241d](https://github.com/langchain-ai/docagent/commit/ad9241da6e7e23e4430756a1d5a3afb6c6bfebcc)), closes [#1189](https://github.com/langchain-ai/docagent/issues/1189)
294
+ * Rewrite skills create template to match spec guidance ([#1178](https://github.com/langchain-ai/docagent/issues/1178)) ([f08ad52](https://github.com/langchain-ai/docagent/commit/f08ad520172bd114e4cebf69138a10cbf98e157a))
295
+ * Terminal virtualize scrolling to stop perf issues ([#965](https://github.com/langchain-ai/docagent/issues/965)) ([5633c82](https://github.com/langchain-ai/docagent/commit/5633c825832a0e8bd645681db23e97af31879b65))
296
+ * Update splash thread ID on `/clear` ([#1204](https://github.com/langchain-ai/docagent/issues/1204)) ([23651ed](https://github.com/langchain-ai/docagent/commit/23651edbc236e4a68fb0d9496506e6293b836cd9))
297
+ * Refactor summarization middleware ([#1138](https://github.com/langchain-ai/docagent/issues/1138)) ([e87001e](https://github.com/langchain-ai/docagent/commit/e87001eace2852c2df47095ffd2611f09fdda2f5))
298
+
299
+ ## [0.0.19](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.18...docagent-cli==0.0.19) (2026-02-06)
300
+
301
+ ### Features
302
+
303
+ * Add click support and hover styling to autocomplete popup ([#1130](https://github.com/langchain-ai/docagent/issues/1130)) ([b1cc83d](https://github.com/langchain-ai/docagent/commit/b1cc83d277e01614b0cc4141993cde40ce68d632))
304
+ * Per-command `timeout` override to `execute` tool ([#1158](https://github.com/langchain-ai/docagent/issues/1158)) ([cb390ef](https://github.com/langchain-ai/docagent/commit/cb390ef7a89966760f08c5aceb2211220e8653b8))
305
+ * Highlight file mentions and support CJK parsing ([#558](https://github.com/langchain-ai/docagent/issues/558)) ([cebe333](https://github.com/langchain-ai/docagent/commit/cebe333246f8bea6b04d6283985e102c2ed5d744))
306
+ * Make thread id in splash clickable ([#1159](https://github.com/langchain-ai/docagent/issues/1159)) ([6087fb2](https://github.com/langchain-ai/docagent/commit/6087fb276f39ed9a388d722ff1be88d94debf49f))
307
+ * Use LocalShellBackend, gives shell to subagents ([#1107](https://github.com/langchain-ai/docagent/issues/1107)) ([b57ea39](https://github.com/langchain-ai/docagent/commit/b57ea3906680818b94ecca88b92082d4dea63694))
308
+
309
+ ### Bug Fixes
310
+
311
+ * Disable iTerm2 cursor guide during execution ([#1123](https://github.com/langchain-ai/docagent/issues/1123)) ([4eb7d42](https://github.com/langchain-ai/docagent/commit/4eb7d426eaefa41f74cc6056ae076f475a0a400d))
312
+ * Dismiss modal screens on escape key ([#1128](https://github.com/langchain-ai/docagent/issues/1128)) ([27047a0](https://github.com/langchain-ai/docagent/commit/27047a085de99fcb9977816663e61114c2b008ac))
313
+ * Hide resume hint on app error and improve startup message ([#1135](https://github.com/langchain-ai/docagent/issues/1135)) ([4e25843](https://github.com/langchain-ai/docagent/commit/4e258430468b56c3e79499f6b7c5ab7b9cd6f45b))
314
+ * Propagate app errors instead of masking ([#1126](https://github.com/langchain-ai/docagent/issues/1126)) ([79a1984](https://github.com/langchain-ai/docagent/commit/79a1984629847ce067b6ce78ad14797889724244))
315
+ * Remove Interactive Features from --help output ([#1161](https://github.com/langchain-ai/docagent/issues/1161)) ([a296789](https://github.com/langchain-ai/docagent/commit/a2967898933b77dd8da6458553f49e717fa732e6))
316
+ * Rename `SystemMessage` -> `AppMessage` ([#1113](https://github.com/langchain-ai/docagent/issues/1113)) ([f576262](https://github.com/langchain-ai/docagent/commit/f576262aeee54499e9970acf76af93553fccfefd))
317
+ * Unify spinner API to support dynamic status text ([#1124](https://github.com/langchain-ai/docagent/issues/1124)) ([bb55608](https://github.com/langchain-ai/docagent/commit/bb55608b7172f55df38fef88918b2fded894e3ce))
318
+ * Update help text to include `Esc` key for rejection ([#1122](https://github.com/langchain-ai/docagent/issues/1122)) ([8f4bcf5](https://github.com/langchain-ai/docagent/commit/8f4bcf52547dcd3e38d4d75ce395eb973a7ee2c0))
319
+
320
+ ## [0.0.18](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.17...docagent-cli==0.0.18) (2026-02-05)
321
+
322
+ ### Features
323
+
324
+ * LangSmith sandbox integration ([#1077](https://github.com/langchain-ai/docagent/issues/1077)) ([7d17be0](https://github.com/langchain-ai/docagent/commit/7d17be00b59e586c55517eaca281342e1a6559ff))
325
+ * Resume thread enhancements ([#1065](https://github.com/langchain-ai/docagent/issues/1065)) ([e6663b0](https://github.com/langchain-ai/docagent/commit/e6663b0b314582583afd32cb906a6d502cd8f16b))
326
+ * Support .`agents/skills` dir alias ([#1059](https://github.com/langchain-ai/docagent/issues/1059)) ([ec1db17](https://github.com/langchain-ai/docagent/commit/ec1db172c12bc8b8f85bb03138e442353d4b1013))
327
+
328
+ ### Bug Fixes
329
+
330
+ * `Ctrl+E` for tool output toggle ([#1100](https://github.com/langchain-ai/docagent/issues/1100)) ([9fa9d72](https://github.com/langchain-ai/docagent/commit/9fa9d727dbf6b8996a61f2f764675dbc2e23c1b6))
331
+ * Consolidate tool output expand/collapse hint placement ([#1102](https://github.com/langchain-ai/docagent/issues/1102)) ([70db34b](https://github.com/langchain-ai/docagent/commit/70db34b5f15a7e81ff586dd0adb2bdfd9ac5d4e9))
332
+ * Delete `/exit` ([#1052](https://github.com/langchain-ai/docagent/issues/1052)) ([8331b77](https://github.com/langchain-ai/docagent/commit/8331b7790fcf0474e109c3c29f810f4ced0f1745)), closes [#836](https://github.com/langchain-ai/docagent/issues/836) [#651](https://github.com/langchain-ai/docagent/issues/651)
333
+ * Installed default prompt not updated following upgrade ([#1082](https://github.com/langchain-ai/docagent/issues/1082)) ([bffd956](https://github.com/langchain-ai/docagent/commit/bffd95610730c668406c485ad941835a5307c226))
334
+ * Replace silent exception handling with proper logging ([#708](https://github.com/langchain-ai/docagent/issues/708)) ([20faf7a](https://github.com/langchain-ai/docagent/commit/20faf7ac244d97e688f1cc4121d480ed212fe97c))
335
+ * Show full shell command in error output ([#1097](https://github.com/langchain-ai/docagent/issues/1097)) ([23bb1d8](https://github.com/langchain-ai/docagent/commit/23bb1d8af85eec8739aea17c3bb3616afb22072a)), closes [#1080](https://github.com/langchain-ai/docagent/issues/1080)
336
+ * Support `-h`/`--help` flags ([#1106](https://github.com/langchain-ai/docagent/issues/1106)) ([26bebf5](https://github.com/langchain-ai/docagent/commit/26bebf592ab56ffdc5eeff55bb7c2e542ef8f706))
337
+
338
+ ## [0.0.17](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.16...docagent-cli==0.0.17) (2026-02-03)
339
+
340
+ ### Features
341
+
342
+ * Add expandable shell command display in HITL approval ([#976](https://github.com/langchain-ai/docagent/issues/976)) ([fb8a007](https://github.com/langchain-ai/docagent/commit/fb8a007123d18025beb1a011f2050e1085dcf69b))
343
+ * Model identity ([#770](https://github.com/langchain-ai/docagent/issues/770)) ([e54a0ee](https://github.com/langchain-ai/docagent/commit/e54a0ee43c7dfc7fd14c3f43d37cc0ee5e85c5a8))
344
+ * Sandbox provider interface ([#900](https://github.com/langchain-ai/docagent/issues/900)) ([d431cfd](https://github.com/langchain-ai/docagent/commit/d431cfd4a56713434e84f4fa1cdf4a160b43db95))
345
+
346
+ ## [0.0.16](https://github.com/langchain-ai/docagent/compare/docagent-cli==0.0.15...docagent-cli==0.0.16) (2026-02-02)
347
+
348
+ ### Features
349
+
350
+ * Add configurable timeout to `ShellMiddleware` ([#961](https://github.com/langchain-ai/docagent/issues/961)) ([bc5e417](https://github.com/langchain-ai/docagent/commit/bc5e4178a76d795922beab93b87e90ccaf99fba6))
351
+ * Add timeout formatting to enhance `shell` command display ([#987](https://github.com/langchain-ai/docagent/issues/987)) ([cbbfd49](https://github.com/langchain-ai/docagent/commit/cbbfd49011c9cf93741a024f6efeceeca830820e))
352
+ * Display thread ID at splash ([#988](https://github.com/langchain-ai/docagent/issues/988)) ([e61b9e8](https://github.com/langchain-ai/docagent/commit/e61b9e8e7af417bf5f636180631dbd47a5bb31bb))
353
+
354
+ ### Bug Fixes
355
+
356
+ * Improve clipboard copy/paste on macOS ([#960](https://github.com/langchain-ai/docagent/issues/960)) ([3e1c604](https://github.com/langchain-ai/docagent/commit/3e1c604474bd98ce1e0ac802df6fb049dd049682))
357
+ * Make `pyperclip` hard dep ([#985](https://github.com/langchain-ai/docagent/issues/985)) ([0f5d4ad](https://github.com/langchain-ai/docagent/commit/0f5d4ad9e63d415c9b80cd15fa0f89fc2f91357b)), closes [#960](https://github.com/langchain-ai/docagent/issues/960)
358
+ * Revert, improve clipboard copy/paste on macOS ([#964](https://github.com/langchain-ai/docagent/issues/964)) ([4991992](https://github.com/langchain-ai/docagent/commit/4991992a5a60fd9588e2110b46440337affc80da))
359
+ * Update timeout message for long-running commands in `ShellMiddleware` ([#986](https://github.com/langchain-ai/docagent/issues/986)) ([dcbe128](https://github.com/langchain-ai/docagent/commit/dcbe12805a3650e63da89df0774dd7e0181dbaa6))
360
+
361
+ ---
362
+
363
+ ## Prior Releases
364
+
365
+ Versions prior to 0.0.16 were released without release-please and do not have changelog entries. Refer to the [releases page](https://github.com/langchain-ai/docagent/releases?q=docagent-cli) for details on previous versions.