ciaobot 0.3.0__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 (589) hide show
  1. ciaobot-0.3.0/LICENSE +158 -0
  2. ciaobot-0.3.0/PKG-INFO +115 -0
  3. ciaobot-0.3.0/README.md +84 -0
  4. ciaobot-0.3.0/ciao/__init__.py +5 -0
  5. ciaobot-0.3.0/ciao/app_settings.py +147 -0
  6. ciaobot-0.3.0/ciao/cleanup_sdk_blobs.py +105 -0
  7. ciaobot-0.3.0/ciao/cli.py +1137 -0
  8. ciaobot-0.3.0/ciao/config.py +802 -0
  9. ciaobot-0.3.0/ciao/context/__init__.py +1 -0
  10. ciaobot-0.3.0/ciao/context/entity_tagger.py +225 -0
  11. ciaobot-0.3.0/ciao/critique.py +310 -0
  12. ciaobot-0.3.0/ciao/dag.py +389 -0
  13. ciaobot-0.3.0/ciao/debug_report.py +90 -0
  14. ciaobot-0.3.0/ciao/dependency_review.py +632 -0
  15. ciaobot-0.3.0/ciao/dev.py +179 -0
  16. ciaobot-0.3.0/ciao/error_log.py +61 -0
  17. ciaobot-0.3.0/ciao/execution_modes.py +36 -0
  18. ciaobot-0.3.0/ciao/fts_search.py +294 -0
  19. ciaobot-0.3.0/ciao/git_sync.py +101 -0
  20. ciaobot-0.3.0/ciao/insights.py +438 -0
  21. ciaobot-0.3.0/ciao/job_runs.py +478 -0
  22. ciaobot-0.3.0/ciao/local_session.py +393 -0
  23. ciaobot-0.3.0/ciao/main.py +593 -0
  24. ciaobot-0.3.0/ciao/memory_injector.py +148 -0
  25. ciaobot-0.3.0/ciao/memory_proposals.py +247 -0
  26. ciaobot-0.3.0/ciao/memory_tool.py +363 -0
  27. ciaobot-0.3.0/ciao/menubar.py +412 -0
  28. ciaobot-0.3.0/ciao/models.py +197 -0
  29. ciaobot-0.3.0/ciao/observability/__init__.py +1 -0
  30. ciaobot-0.3.0/ciao/observability/hooks.py +406 -0
  31. ciaobot-0.3.0/ciao/package_smoke.py +148 -0
  32. ciaobot-0.3.0/ciao/package_version.py +266 -0
  33. ciaobot-0.3.0/ciao/provider_service.py +77 -0
  34. ciaobot-0.3.0/ciao/providers/__init__.py +5 -0
  35. ciaobot-0.3.0/ciao/providers/base.py +211 -0
  36. ciaobot-0.3.0/ciao/providers/claude.py +861 -0
  37. ciaobot-0.3.0/ciao/providers/ollama.py +284 -0
  38. ciaobot-0.3.0/ciao/providers/oneshot.py +65 -0
  39. ciaobot-0.3.0/ciao/providers/openrouter.py +189 -0
  40. ciaobot-0.3.0/ciao/providers/permission_gate.py +160 -0
  41. ciaobot-0.3.0/ciao/providers/routing.py +90 -0
  42. ciaobot-0.3.0/ciao/public_release.py +256 -0
  43. ciaobot-0.3.0/ciao/rate_limits.py +121 -0
  44. ciaobot-0.3.0/ciao/release.py +546 -0
  45. ciaobot-0.3.0/ciao/schedules.py +769 -0
  46. ciaobot-0.3.0/ciao/sessions.py +227 -0
  47. ciaobot-0.3.0/ciao/setup_status.py +262 -0
  48. ciaobot-0.3.0/ciao/signals.py +5 -0
  49. ciaobot-0.3.0/ciao/skill_evolution.py +1023 -0
  50. ciaobot-0.3.0/ciao/skills_inventory.py +139 -0
  51. ciaobot-0.3.0/ciao/skills_sync.py +158 -0
  52. ciaobot-0.3.0/ciao/stock/__init__.py +1 -0
  53. ciaobot-0.3.0/ciao/stock/agents/comment-analyzer.md +16 -0
  54. ciaobot-0.3.0/ciao/stock/agents/doc-updater.md +16 -0
  55. ciaobot-0.3.0/ciao/stock/agents/memory.md +19 -0
  56. ciaobot-0.3.0/ciao/stock/agents/pr-test-analyzer.md +16 -0
  57. ciaobot-0.3.0/ciao/stock/agents/researcher.md +16 -0
  58. ciaobot-0.3.0/ciao/stock/agents/secretary.md +15 -0
  59. ciaobot-0.3.0/ciao/stock/agents/silent-failure-hunter.md +17 -0
  60. ciaobot-0.3.0/ciao/stock/commands/critique.md +17 -0
  61. ciaobot-0.3.0/ciao/stock/commands/interrogation.md +18 -0
  62. ciaobot-0.3.0/ciao/stock/commands/remember.md +15 -0
  63. ciaobot-0.3.0/ciao/stock/deploy/Ciaobot.icns +0 -0
  64. ciaobot-0.3.0/ciao/stock/deploy/com.ciao.menubar.plist.tmpl +39 -0
  65. ciaobot-0.3.0/ciao/stock/deploy/com.ciao.server.plist.tmpl +39 -0
  66. ciaobot-0.3.0/ciao/stock/public/CLAUDE.md +22 -0
  67. ciaobot-0.3.0/ciao/stock/schedules/weekly-review-template.md +34 -0
  68. ciaobot-0.3.0/ciao/stock/schedules.json +109 -0
  69. ciaobot-0.3.0/ciao/stock/skills/.gitkeep +1 -0
  70. ciaobot-0.3.0/ciao/stock/skills/adversarial-review/SKILL.md +122 -0
  71. ciaobot-0.3.0/ciao/stock/skills/adversarial-review/scripts/review.py +16 -0
  72. ciaobot-0.3.0/ciao/stock/skills/ciao-capabilities/SKILL.md +85 -0
  73. ciaobot-0.3.0/ciao/stock/skills/ciao-schedules/SKILL.md +204 -0
  74. ciaobot-0.3.0/ciao/stock/skills/create-chat/SKILL.md +58 -0
  75. ciaobot-0.3.0/ciao/stock/skills/vault-read/SKILL.md +27 -0
  76. ciaobot-0.3.0/ciao/stock/skills/web-research/SKILL.md +57 -0
  77. ciaobot-0.3.0/ciao/stock/skills/workspace-authoring/SKILL.md +33 -0
  78. ciaobot-0.3.0/ciao/stock/workspace/CIAO_CUSTOMIZATION.md +164 -0
  79. ciaobot-0.3.0/ciao/stock/workspace/CLAUDE.md +20 -0
  80. ciaobot-0.3.0/ciao/sync_skills.py +329 -0
  81. ciaobot-0.3.0/ciao/trajectory_builder.py +569 -0
  82. ciaobot-0.3.0/ciao/transcripts.py +764 -0
  83. ciaobot-0.3.0/ciao/upgrade.py +352 -0
  84. ciaobot-0.3.0/ciao/vault_index.py +576 -0
  85. ciaobot-0.3.0/ciao/vault_lint.py +104 -0
  86. ciaobot-0.3.0/ciao/voice.py +83 -0
  87. ciaobot-0.3.0/ciao/web/__init__.py +1 -0
  88. ciaobot-0.3.0/ciao/web/agent_assets.py +857 -0
  89. ciaobot-0.3.0/ciao/web/app.py +259 -0
  90. ciaobot-0.3.0/ciao/web/auth.py +185 -0
  91. ciaobot-0.3.0/ciao/web/chat_broker.py +351 -0
  92. ciaobot-0.3.0/ciao/web/commands.py +117 -0
  93. ciaobot-0.3.0/ciao/web/file_snapshots.py +302 -0
  94. ciaobot-0.3.0/ciao/web/project_chats.py +4392 -0
  95. ciaobot-0.3.0/ciao/web/push.py +196 -0
  96. ciaobot-0.3.0/ciao/web/routes_api.py +3732 -0
  97. ciaobot-0.3.0/ciao/web/routes_chat.py +252 -0
  98. ciaobot-0.3.0/ciao/web/routes_helpers.py +261 -0
  99. ciaobot-0.3.0/ciao/web/routes_push.py +51 -0
  100. ciaobot-0.3.0/ciao/web/security.py +36 -0
  101. ciaobot-0.3.0/ciao/web/static/assets/Assistant-Bold-gm-uSS1B.woff2 +0 -0
  102. ciaobot-0.3.0/ciao/web/static/assets/Assistant-Medium-DrcxCXg3.woff2 +0 -0
  103. ciaobot-0.3.0/ciao/web/static/assets/Assistant-Regular-DVxZuzxb.woff2 +0 -0
  104. ciaobot-0.3.0/ciao/web/static/assets/Assistant-SemiBold-SCI4bEL9.woff2 +0 -0
  105. ciaobot-0.3.0/ciao/web/static/assets/ChatLayout-C_0mTrHt.css +1 -0
  106. ciaobot-0.3.0/ciao/web/static/assets/ChatLayout-C_vbVbBT.js +111 -0
  107. ciaobot-0.3.0/ciao/web/static/assets/LoginView-RZt2E1Dn.js +1 -0
  108. ciaobot-0.3.0/ciao/web/static/assets/LoginView-vTyKUHpb.css +1 -0
  109. ciaobot-0.3.0/ciao/web/static/assets/abnfDiagram-VRR7QNED-Cycf5s7T.js +1 -0
  110. ciaobot-0.3.0/ciao/web/static/assets/ar-SA-G6X2FPQ2-CcFH4_8X.js +10 -0
  111. ciaobot-0.3.0/ciao/web/static/assets/arc-Bk0XvG7V.js +1 -0
  112. ciaobot-0.3.0/ciao/web/static/assets/architectureDiagram-ZJ3FMSHR-U9Zo6qEB.js +36 -0
  113. ciaobot-0.3.0/ciao/web/static/assets/auth-DdifiQ3e.js +2 -0
  114. ciaobot-0.3.0/ciao/web/static/assets/az-AZ-76LH7QW2-B69kzp0M.js +1 -0
  115. ciaobot-0.3.0/ciao/web/static/assets/bg-BG-XCXSNQG7-uri-SYYv.js +5 -0
  116. ciaobot-0.3.0/ciao/web/static/assets/blockDiagram-677ZJIJ3-CgujZXbV.js +132 -0
  117. ciaobot-0.3.0/ciao/web/static/assets/bn-BD-2XOGV67Q-CYbVc7lm.js +5 -0
  118. ciaobot-0.3.0/ciao/web/static/assets/c4Diagram-LMCZKHZV-Dov5tTEe.js +10 -0
  119. ciaobot-0.3.0/ciao/web/static/assets/ca-ES-6MX7JW3Y-BT24jl3D.js +8 -0
  120. ciaobot-0.3.0/ciao/web/static/assets/channel-D-evA0sc.js +1 -0
  121. ciaobot-0.3.0/ciao/web/static/assets/chunk-2Q5K7J3B-ENtQgw2m.js +1 -0
  122. ciaobot-0.3.0/ciao/web/static/assets/chunk-32BRIVSS-uC31TC8L.js +1 -0
  123. ciaobot-0.3.0/ciao/web/static/assets/chunk-5VM5RSS4-CQ8-s3vr.js +15 -0
  124. ciaobot-0.3.0/ciao/web/static/assets/chunk-EX3LRPZG-BiXYxe4Y.js +231 -0
  125. ciaobot-0.3.0/ciao/web/static/assets/chunk-JWPE2WC7-BJMSaKFF.js +1 -0
  126. ciaobot-0.3.0/ciao/web/static/assets/chunk-MOJQB5TN-BSBu9VgD.js +88 -0
  127. ciaobot-0.3.0/ciao/web/static/assets/chunk-RYQCIY6F-CmKDKgsB.js +1 -0
  128. ciaobot-0.3.0/ciao/web/static/assets/chunk-V7JOEXUC-DheZZqxj.js +206 -0
  129. ciaobot-0.3.0/ciao/web/static/assets/chunk-VR4S4FIN-Q_1QjcGy.js +1 -0
  130. ciaobot-0.3.0/ciao/web/static/assets/chunk-XXDRQBXY-DHPnsW7u.js +1 -0
  131. ciaobot-0.3.0/ciao/web/static/assets/classDiagram-OUVF2IWQ-96-r0Bsl.js +1 -0
  132. ciaobot-0.3.0/ciao/web/static/assets/classDiagram-v2-EOCWNBFH-96-r0Bsl.js +1 -0
  133. ciaobot-0.3.0/ciao/web/static/assets/cose-bilkent-JH36ORCC-CLxKr4r6.js +1 -0
  134. ciaobot-0.3.0/ciao/web/static/assets/cs-CZ-2BRQDIVT-BE2vfGzw.js +11 -0
  135. ciaobot-0.3.0/ciao/web/static/assets/cynefin-VYW2F7L2-o6mVH9qX.js +178 -0
  136. ciaobot-0.3.0/ciao/web/static/assets/cynefinDiagram-TSTJHNR4-6f3E1Knp.js +62 -0
  137. ciaobot-0.3.0/ciao/web/static/assets/cytoscape.esm-DTSO7Bv0.js +331 -0
  138. ciaobot-0.3.0/ciao/web/static/assets/da-DK-5WZEPLOC-1dOIvmDy.js +5 -0
  139. ciaobot-0.3.0/ciao/web/static/assets/dagre-VKFMJZFB-BVBnnWY6.js +4 -0
  140. ciaobot-0.3.0/ciao/web/static/assets/de-DE-XR44H4JA-D6vcWfBJ.js +8 -0
  141. ciaobot-0.3.0/ciao/web/static/assets/defaultLocale-DX6XiGOO.js +1 -0
  142. ciaobot-0.3.0/ciao/web/static/assets/diagram-FQU43EPY-DZMx0HYn.js +3 -0
  143. ciaobot-0.3.0/ciao/web/static/assets/diagram-G47NLZAW-BLDckliA.js +24 -0
  144. ciaobot-0.3.0/ciao/web/static/assets/diagram-NH7WQ7WH-DM5jsQvy.js +24 -0
  145. ciaobot-0.3.0/ciao/web/static/assets/diagram-OA4YK3LP-EcEvqVfY.js +30 -0
  146. ciaobot-0.3.0/ciao/web/static/assets/diagram-WEI45ONY-D06WAj4k.js +41 -0
  147. ciaobot-0.3.0/ciao/web/static/assets/directory-open-01563666-DWU9wJ6I.js +1 -0
  148. ciaobot-0.3.0/ciao/web/static/assets/directory-open-4ed118d0-CunoC1EB.js +1 -0
  149. ciaobot-0.3.0/ciao/web/static/assets/ebnfDiagram-CCIWWBDH-4Y0-BP4S.js +1 -0
  150. ciaobot-0.3.0/ciao/web/static/assets/el-GR-BZB4AONW-DxHgAXEZ.js +10 -0
  151. ciaobot-0.3.0/ciao/web/static/assets/erDiagram-Q63AITRT-D88D_dXS.js +85 -0
  152. ciaobot-0.3.0/ciao/web/static/assets/es-ES-U4NZUMDT-DskDIWIG.js +9 -0
  153. ciaobot-0.3.0/ciao/web/static/assets/eu-ES-A7QVB2H4-D9eyWslj.js +11 -0
  154. ciaobot-0.3.0/ciao/web/static/assets/fa-IR-HGAKTJCU-VaHd0a_B.js +8 -0
  155. ciaobot-0.3.0/ciao/web/static/assets/fi-FI-Z5N7JZ37-CQfubbaU.js +6 -0
  156. ciaobot-0.3.0/ciao/web/static/assets/file-open-002ab408-DIuFHtCF.js +1 -0
  157. ciaobot-0.3.0/ciao/web/static/assets/file-open-7c801643-684qeFg4.js +1 -0
  158. ciaobot-0.3.0/ciao/web/static/assets/file-save-3189631c-C1wFhQhH.js +1 -0
  159. ciaobot-0.3.0/ciao/web/static/assets/file-save-745eba88-Bb9F9Kg7.js +1 -0
  160. ciaobot-0.3.0/ciao/web/static/assets/flowDiagram-23GEKE2U-ty5_mmxi.js +156 -0
  161. ciaobot-0.3.0/ciao/web/static/assets/fr-FR-RHASNOE6-WR2oDeAZ.js +9 -0
  162. ciaobot-0.3.0/ciao/web/static/assets/ganttDiagram-NO4QXBWP-C5RWDuoj.js +292 -0
  163. ciaobot-0.3.0/ciao/web/static/assets/gitGraphDiagram-IHSO6WYX-CXyLJXZP.js +106 -0
  164. ciaobot-0.3.0/ciao/web/static/assets/gl-ES-HMX3MZ6V-BB_6eRup.js +10 -0
  165. ciaobot-0.3.0/ciao/web/static/assets/graph-C9eacEi8.js +1 -0
  166. ciaobot-0.3.0/ciao/web/static/assets/he-IL-6SHJWFNN-CvHPdb0z.js +10 -0
  167. ciaobot-0.3.0/ciao/web/static/assets/hi-IN-IWLTKZ5I-CrpRszix.js +4 -0
  168. ciaobot-0.3.0/ciao/web/static/assets/hu-HU-A5ZG7DT2-DRxna7Kb.js +7 -0
  169. ciaobot-0.3.0/ciao/web/static/assets/id-ID-SAP4L64H-BBgX14fO.js +10 -0
  170. ciaobot-0.3.0/ciao/web/static/assets/image-blob-reduce.esm-HwCm7IZ0.js +7 -0
  171. ciaobot-0.3.0/ciao/web/static/assets/index-BuPeRjw_.js +56 -0
  172. ciaobot-0.3.0/ciao/web/static/assets/index-C9SpWc5R.js +330 -0
  173. ciaobot-0.3.0/ciao/web/static/assets/index-D7rCIRej.css +1 -0
  174. ciaobot-0.3.0/ciao/web/static/assets/infoDiagram-FWYZ7A6U-Se-KAYhC.js +2 -0
  175. ciaobot-0.3.0/ciao/web/static/assets/init-Gi6I4Gst.js +1 -0
  176. ciaobot-0.3.0/ciao/web/static/assets/ishikawaDiagram-FXEZZL3T-B-z_HBTt.js +70 -0
  177. ciaobot-0.3.0/ciao/web/static/assets/it-IT-JPQ66NNP-yWx7mjZ4.js +11 -0
  178. ciaobot-0.3.0/ciao/web/static/assets/ja-JP-DBVTYXUO-D5YEEqne.js +8 -0
  179. ciaobot-0.3.0/ciao/web/static/assets/journeyDiagram-5HDEW3XC-DJC-GJ3m.js +139 -0
  180. ciaobot-0.3.0/ciao/web/static/assets/kaa-6HZHGXH3-CJr4lmNH.js +1 -0
  181. ciaobot-0.3.0/ciao/web/static/assets/kab-KAB-ZGHBKWFO-BKCnBuoZ.js +8 -0
  182. ciaobot-0.3.0/ciao/web/static/assets/kanban-definition-HUTT4EX6-BQCGFycN.js +89 -0
  183. ciaobot-0.3.0/ciao/web/static/assets/katex-C5jXJg4s.js +257 -0
  184. ciaobot-0.3.0/ciao/web/static/assets/kk-KZ-P5N5QNE5-DeErtq1j.js +1 -0
  185. ciaobot-0.3.0/ciao/web/static/assets/km-KH-HSX4SM5Z-HwrREg7B.js +11 -0
  186. ciaobot-0.3.0/ciao/web/static/assets/ko-KR-MTYHY66A-CQWgmWv4.js +9 -0
  187. ciaobot-0.3.0/ciao/web/static/assets/ku-TR-6OUDTVRD-C661s-D9.js +9 -0
  188. ciaobot-0.3.0/ciao/web/static/assets/layout-DEXfKzaS.js +1 -0
  189. ciaobot-0.3.0/ciao/web/static/assets/linear-fNmJyYhJ.js +1 -0
  190. ciaobot-0.3.0/ciao/web/static/assets/lt-LT-XHIRWOB4-DjlyqzE0.js +3 -0
  191. ciaobot-0.3.0/ciao/web/static/assets/lv-LV-5QDEKY6T-BM5xaZ_a.js +7 -0
  192. ciaobot-0.3.0/ciao/web/static/assets/map-Czzmt4hB.js +1 -0
  193. ciaobot-0.3.0/ciao/web/static/assets/mindmap-definition-LN4V7U3C-q755yAyY.js +96 -0
  194. ciaobot-0.3.0/ciao/web/static/assets/mr-IN-CRQNXWMA-kcyMfVdK.js +13 -0
  195. ciaobot-0.3.0/ciao/web/static/assets/my-MM-5M5IBNSE-Bo-o-pwp.js +1 -0
  196. ciaobot-0.3.0/ciao/web/static/assets/nb-NO-T6EIAALU-eURL3JCb.js +10 -0
  197. ciaobot-0.3.0/ciao/web/static/assets/nl-NL-IS3SIHDZ-BzS8F8fP.js +8 -0
  198. ciaobot-0.3.0/ciao/web/static/assets/nn-NO-6E72VCQL-YD_6FXGg.js +8 -0
  199. ciaobot-0.3.0/ciao/web/static/assets/oc-FR-POXYY2M6-maszfKtW.js +8 -0
  200. ciaobot-0.3.0/ciao/web/static/assets/ordinal-Cboi1Yqb.js +1 -0
  201. ciaobot-0.3.0/ciao/web/static/assets/pa-IN-N4M65BXN-ByUAL7E5.js +4 -0
  202. ciaobot-0.3.0/ciao/web/static/assets/pegDiagram-2B236MQR-CPOQ0JJq.js +1 -0
  203. ciaobot-0.3.0/ciao/web/static/assets/percentages-BXMCSKIN-BsNj-qHj.js +254 -0
  204. ciaobot-0.3.0/ciao/web/static/assets/percentages-BXMCSKIN-Cu2sIt0E.css +1 -0
  205. ciaobot-0.3.0/ciao/web/static/assets/pica-Depeayeg.js +7 -0
  206. ciaobot-0.3.0/ciao/web/static/assets/pieDiagram-ENE6RG2P-DY5jpr2T.js +39 -0
  207. ciaobot-0.3.0/ciao/web/static/assets/pl-PL-T2D74RX3-BhuBVqIt.js +9 -0
  208. ciaobot-0.3.0/ciao/web/static/assets/pt-BR-5N22H2LF-CPPN3J_m.js +9 -0
  209. ciaobot-0.3.0/ciao/web/static/assets/pt-PT-UZXXM6DQ-DPfqxpvx.js +9 -0
  210. ciaobot-0.3.0/ciao/web/static/assets/quadrantDiagram-ABIIQ3AL-DqyXXV4C.js +7 -0
  211. ciaobot-0.3.0/ciao/web/static/assets/railroadDiagram-RFXS5EU6-DILVAjwX.js +1 -0
  212. ciaobot-0.3.0/ciao/web/static/assets/requirementDiagram-TGXJPOKE-CTDRyJHs.js +84 -0
  213. ciaobot-0.3.0/ciao/web/static/assets/ro-RO-JPDTUUEW-Dab2RTSi.js +11 -0
  214. ciaobot-0.3.0/ciao/web/static/assets/roundRect-0PYZxl1G.js +1 -0
  215. ciaobot-0.3.0/ciao/web/static/assets/ru-RU-B4JR7IUQ-ykshxpr3.js +9 -0
  216. ciaobot-0.3.0/ciao/web/static/assets/sankeyDiagram-HTMAVEWB-C2YtJ2RL.js +40 -0
  217. ciaobot-0.3.0/ciao/web/static/assets/sequenceDiagram-DBY2YBRQ-ITq5hKa4.js +162 -0
  218. ciaobot-0.3.0/ciao/web/static/assets/si-LK-N5RQ5JYF-DZkd8qkB.js +1 -0
  219. ciaobot-0.3.0/ciao/web/static/assets/sizeCapture-X5ZJPWSS-Bgwn-co7.js +1 -0
  220. ciaobot-0.3.0/ciao/web/static/assets/sk-SK-C5VTKIMK-Cr0z5hp9.js +6 -0
  221. ciaobot-0.3.0/ciao/web/static/assets/sl-SI-NN7IZMDC-DuUwon82.js +6 -0
  222. ciaobot-0.3.0/ciao/web/static/assets/stateDiagram-2N3HPSRC-LgYHXVgo.js +1 -0
  223. ciaobot-0.3.0/ciao/web/static/assets/stateDiagram-v2-6OUMAXLB-8Whf0-tH.js +1 -0
  224. ciaobot-0.3.0/ciao/web/static/assets/subset-shared.chunk-c3dj_eea.js +84 -0
  225. ciaobot-0.3.0/ciao/web/static/assets/subset-worker.chunk-JYNiVFwk.js +1 -0
  226. ciaobot-0.3.0/ciao/web/static/assets/sv-SE-XGPEYMSR-CgyJLbGR.js +10 -0
  227. ciaobot-0.3.0/ciao/web/static/assets/swimlanes-5IMT3BWC-eBYC06L9.js +2 -0
  228. ciaobot-0.3.0/ciao/web/static/assets/swimlanesDiagram-G3AALYLV-CBTNJFa1.js +8 -0
  229. ciaobot-0.3.0/ciao/web/static/assets/ta-IN-2NMHFXQM-BDhKUQjk.js +9 -0
  230. ciaobot-0.3.0/ciao/web/static/assets/th-TH-HPSO5L25-CUAmOqKk.js +2 -0
  231. ciaobot-0.3.0/ciao/web/static/assets/timeline-definition-FHXFAJF6-DAAk4tYo.js +120 -0
  232. ciaobot-0.3.0/ciao/web/static/assets/tr-TR-DEFEU3FU-CQNBIGSS.js +7 -0
  233. ciaobot-0.3.0/ciao/web/static/assets/uk-UA-QMV73CPH-DSJ-auhG.js +6 -0
  234. ciaobot-0.3.0/ciao/web/static/assets/vennDiagram-L72KCM5P-QHXKm18P.js +34 -0
  235. ciaobot-0.3.0/ciao/web/static/assets/vi-VN-M7AON7JQ-BMcsybPu.js +5 -0
  236. ciaobot-0.3.0/ciao/web/static/assets/wardleyDiagram-EHGQE667-nqZs6U6u.js +78 -0
  237. ciaobot-0.3.0/ciao/web/static/assets/xychartDiagram-FW5EYKEG-CGthT1GY.js +7 -0
  238. ciaobot-0.3.0/ciao/web/static/assets/zh-CN-LNUGB5OW-B9y3z1Jc.js +10 -0
  239. ciaobot-0.3.0/ciao/web/static/assets/zh-HK-E62DVLB3-CkcYR8z1.js +1 -0
  240. ciaobot-0.3.0/ciao/web/static/assets/zh-TW-RAJ6MFWO-DE5-IfiU.js +9 -0
  241. ciaobot-0.3.0/ciao/web/static/face.png +0 -0
  242. ciaobot-0.3.0/ciao/web/static/face_scared.png +0 -0
  243. ciaobot-0.3.0/ciao/web/static/face_scared_template.png +0 -0
  244. ciaobot-0.3.0/ciao/web/static/face_template.png +0 -0
  245. ciaobot-0.3.0/ciao/web/static/favicon.png +0 -0
  246. ciaobot-0.3.0/ciao/web/static/fonts/Assistant/Assistant-Bold.woff2 +0 -0
  247. ciaobot-0.3.0/ciao/web/static/fonts/Assistant/Assistant-Medium.woff2 +0 -0
  248. ciaobot-0.3.0/ciao/web/static/fonts/Assistant/Assistant-Regular.woff2 +0 -0
  249. ciaobot-0.3.0/ciao/web/static/fonts/Assistant/Assistant-SemiBold.woff2 +0 -0
  250. ciaobot-0.3.0/ciao/web/static/fonts/Cascadia/CascadiaCode-Regular.woff2 +0 -0
  251. ciaobot-0.3.0/ciao/web/static/fonts/ComicShanns/ComicShanns-Regular-279a7b317d12eb88de06167bd672b4b4.woff2 +0 -0
  252. ciaobot-0.3.0/ciao/web/static/fonts/ComicShanns/ComicShanns-Regular-6e066e8de2ac57ea9283adb9c24d7f0c.woff2 +0 -0
  253. ciaobot-0.3.0/ciao/web/static/fonts/ComicShanns/ComicShanns-Regular-dc6a8806fa96795d7b3be5026f989a17.woff2 +0 -0
  254. ciaobot-0.3.0/ciao/web/static/fonts/ComicShanns/ComicShanns-Regular-fcb0fc02dcbee4c9846b3e2508668039.woff2 +0 -0
  255. ciaobot-0.3.0/ciao/web/static/fonts/Excalifont/Excalifont-Regular-349fac6ca4700ffec595a7150a0d1e1d.woff2 +0 -0
  256. ciaobot-0.3.0/ciao/web/static/fonts/Excalifont/Excalifont-Regular-3f2c5db56cc93c5a6873b1361d730c16.woff2 +0 -0
  257. ciaobot-0.3.0/ciao/web/static/fonts/Excalifont/Excalifont-Regular-41b173a47b57366892116a575a43e2b6.woff2 +0 -0
  258. ciaobot-0.3.0/ciao/web/static/fonts/Excalifont/Excalifont-Regular-623ccf21b21ef6b3a0d87738f77eb071.woff2 +0 -0
  259. ciaobot-0.3.0/ciao/web/static/fonts/Excalifont/Excalifont-Regular-a88b72a24fb54c9f94e3b5fdaa7481c9.woff2 +0 -0
  260. ciaobot-0.3.0/ciao/web/static/fonts/Excalifont/Excalifont-Regular-b9dcf9d2e50a1eaf42fc664b50a3fd0d.woff2 +0 -0
  261. ciaobot-0.3.0/ciao/web/static/fonts/Excalifont/Excalifont-Regular-be310b9bcd4f1a43f571c46df7809174.woff2 +0 -0
  262. ciaobot-0.3.0/ciao/web/static/fonts/Liberation/LiberationSans-Regular.woff2 +0 -0
  263. ciaobot-0.3.0/ciao/web/static/fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2 +0 -0
  264. ciaobot-0.3.0/ciao/web/static/fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2 +0 -0
  265. ciaobot-0.3.0/ciao/web/static/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2 +0 -0
  266. ciaobot-0.3.0/ciao/web/static/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2 +0 -0
  267. ciaobot-0.3.0/ciao/web/static/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2 +0 -0
  268. ciaobot-0.3.0/ciao/web/static/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2 +0 -0
  269. ciaobot-0.3.0/ciao/web/static/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2 +0 -0
  270. ciaobot-0.3.0/ciao/web/static/fonts/Virgil/Virgil-Regular.woff2 +0 -0
  271. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-019d66dcad46dc156b162d267f981c20.woff2 +0 -0
  272. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-04b718e5623574919c8b0dea5f301444.woff2 +0 -0
  273. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-069e77aac84590e2e991d0a0176d34f2.woff2 +0 -0
  274. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-06c77b8c66e51ed6c63ccb502dd8b8af.woff2 +0 -0
  275. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-08e0dc436ad0ad61ba5558db0674d762.woff2 +0 -0
  276. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-093b9ef39a46ceae95a1df18a0a3a326.woff2 +0 -0
  277. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-095c169f3314805276f603a362766abd.woff2 +0 -0
  278. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-09850c4077f3fffe707905872e0e2460.woff2 +0 -0
  279. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-0986d134c05864f5025962eef9f994a0.woff2 +0 -0
  280. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-0b5d723fdc4e249c140f0909e87d03b4.woff2 +0 -0
  281. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-0f626226ba1272e832aea87bafd9720e.woff2 +0 -0
  282. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-0f7fb1e0d5015bb1371343153ecf7ce3.woff2 +0 -0
  283. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-0fa55a080fcd0f9dc2e0b0058b793df8.woff2 +0 -0
  284. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-0facdf1ea213ba40261022f5d5ed4493.woff2 +0 -0
  285. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-10a7ae9a371830a80c3d844acf1c02d7.woff2 +0 -0
  286. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-112c051027b2d766c19a519f6ee1f4f7.woff2 +0 -0
  287. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-11c345711937f0ba4b8f7b6b919c8440.woff2 +0 -0
  288. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-12b52b58eb3df36804b9a654ec9ee194.woff2 +0 -0
  289. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-13ae07ed2e272d26d59bc0691cd7117a.woff2 +0 -0
  290. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-13d2887ec8ee73c43acdabc52a05af7b.woff2 +0 -0
  291. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-145aa02cdd91946e67dc934e1acffe75.woff2 +0 -0
  292. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-15dc6d811c9cd078f9086a740d5a1038.woff2 +0 -0
  293. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-173945821411c09f70c95f98d590e697.woff2 +0 -0
  294. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-1b611157cd46bb184d4fa4dae2d6a2b8.woff2 +0 -0
  295. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-1e6fd68f1f3902ce48ce8c69df385622.woff2 +0 -0
  296. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-1ee544f0f1dac422545c505baa788992.woff2 +0 -0
  297. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-1fdc0c67ed57263a80fd108c1f6ccf24.woff2 +0 -0
  298. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-203b0e569e3b14aac86a003dc3fa523e.woff2 +0 -0
  299. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-20cc1bbf50e7efb442756cb605672c1f.woff2 +0 -0
  300. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-20e7bf72fa05de9adf7dbcc7bf51dde6.woff2 +0 -0
  301. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-21430ee05a1248901da8d0de08744d47.woff2 +0 -0
  302. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-23686f7f29da6e8008c36dd3a80c83d6.woff2 +0 -0
  303. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-23ad2d71b280f00b1363b95b7bea94eb.woff2 +0 -0
  304. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-23f228f3999c01983860012330e4be08.woff2 +0 -0
  305. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-24476a126f129212beb33f66853ea151.woff2 +0 -0
  306. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-24a21c1e4449222e8d1898d69ff3a404.woff2 +0 -0
  307. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-25b7f38e18f035f96cb5e547bd2bd08c.woff2 +0 -0
  308. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-29cec36cd205b211da97acabaa62f055.woff2 +0 -0
  309. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-2a26d20a23b00898ce82f09d2ee47c3f.woff2 +0 -0
  310. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-2adbc89c11e65905393d3dfc468b9d5b.woff2 +0 -0
  311. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-2b7441d46298788ac94e610ffcc709b6.woff2 +0 -0
  312. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-2b77e8ebfb2367ab2662396a60e7d320.woff2 +0 -0
  313. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-2cf96d082d35ea3d8106851223ad0d16.woff2 +0 -0
  314. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-2d43040e86ff03ba677f6f9c04cd0805.woff2 +0 -0
  315. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-2e33e8dc771ef5e1d9127d60a6b73679.woff2 +0 -0
  316. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-33432927cd87d40cfe393c7482bf221f.woff2 +0 -0
  317. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-353f33792a8f60dc69323ddf635a269e.woff2 +0 -0
  318. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-36925dfe329a45086cbb7fc5c20d45ac.woff2 +0 -0
  319. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-3717077e38f98d89eae729b6c14e56dc.woff2 +0 -0
  320. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-3756e81d3e149cf6099163ee79944fec.woff2 +0 -0
  321. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-395c35dd584b56b0789f58a0559beaf1.woff2 +0 -0
  322. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-3c9de2ae0ea4bc91a510942dfa4be8d2.woff2 +0 -0
  323. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-3cc70dbb64df5b21f1326cc24dee2195.woff2 +0 -0
  324. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-3e1f8f654357353bf0e04ba5c34b5f7f.woff2 +0 -0
  325. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-3e63ed8162808a9e425ed80a8bc79114.woff2 +0 -0
  326. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-3eaa538115d76932653c21d8dc28f207.woff2 +0 -0
  327. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4095eb84ef3874e2600247bee0b04026.woff2 +0 -0
  328. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-41521fade99856108931b4768b1b2648.woff2 +0 -0
  329. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-450da755d5bcb70906e1295e559b9602.woff2 +0 -0
  330. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-452225341522a7942f0f6aab1a5c91a3.woff2 +0 -0
  331. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4535823663ad81405188a528d8f2b1a2.woff2 +0 -0
  332. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4806e761d750087c2d734fc64596eaff.woff2 +0 -0
  333. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4a0fdb40036e87b40aa08dd30584cb85.woff2 +0 -0
  334. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4a38cc3e9cf104e69ba246d37f8cf135.woff2 +0 -0
  335. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4aca6a43e59aceee2166b0c7e4e85ef1.woff2 +0 -0
  336. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4bfaa8ffa64c5ee560aa2daba7c9cbd3.woff2 +0 -0
  337. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4dc6d5f188d5c96d44815cd1e81aa885.woff2 +0 -0
  338. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4ddc14ed3eb0c3e46364317dfc0144a3.woff2 +0 -0
  339. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4ee10ae43505e2e0bc62656ced49c0fa.woff2 +0 -0
  340. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-4f50e5136e136527280bc902c5817561.woff2 +0 -0
  341. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-51502f1206be09c565f1547c406e9558.woff2 +0 -0
  342. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-51a0e808bbc8361236ac521a119758a3.woff2 +0 -0
  343. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-52a84a22fd1369bffeaf21da2d6158dc.woff2 +0 -0
  344. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5330a2119a716e4e7224ed108b085dac.woff2 +0 -0
  345. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-543fa46ace099a7099dad69123399400.woff2 +0 -0
  346. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-544fc28abe2c5c30e62383fd4dac255f.woff2 +0 -0
  347. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-54acdfc2166ad7fcbd074f75fd4a56ba.woff2 +0 -0
  348. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5572b3513ba8df57a3d5d7303ee6b11b.woff2 +0 -0
  349. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-56467a5c8840c4d23a60b2f935114848.woff2 +0 -0
  350. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-56a32a7689abd0326e57c10c6c069bb4.woff2 +0 -0
  351. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-57862b464a55b18c7bf234ce22907d73.woff2 +0 -0
  352. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-583d166e56ba0de4b77eabb47ef67839.woff2 +0 -0
  353. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5882ffa04f32584d26109137e2da4352.woff2 +0 -0
  354. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-58fd02350d0bc52cf1ca3bb32ce9766e.woff2 +0 -0
  355. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5935a5775af3d5c6307ac667bd9ae74e.woff2 +0 -0
  356. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-59e9ff77b0efaf684bc09274fb6908c9.woff2 +0 -0
  357. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5a1ce3117cfe90c48e8fb4a9a00f694d.woff2 +0 -0
  358. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5a45d991244d4c7140217e1e5f5ca4f4.woff2 +0 -0
  359. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5a7fac4b8b23a6e4e5ba0c9bf1756c91.woff2 +0 -0
  360. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5b0ed6971aaab9c8ad563230bd5471a7.woff2 +0 -0
  361. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-5d2898fbc097a7e24c6f38d80587621e.woff2 +0 -0
  362. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-603aefd23e350ba7eb124273e3c9bcf1.woff2 +0 -0
  363. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-60a3089806700d379f11827ee9843b6b.woff2 +0 -0
  364. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-60a41c7e1c68f22424e6d22df544bc82.woff2 +0 -0
  365. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-642b26e2e5f5fb780b51b593dbc8c851.woff2 +0 -0
  366. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-66493ba5a8367f2928812f446f47b56a.woff2 +0 -0
  367. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-670ba603758d94268e8606f240a42e12.woff2 +0 -0
  368. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-671a2c20b1eb9e4ef8a192833940e319.woff2 +0 -0
  369. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-684d65f1793cac449dde5d59cb3c47fb.woff2 +0 -0
  370. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-69c09cc5fa3e55c74fc4821f76909cc3.woff2 +0 -0
  371. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-6ae5b42180ad70b971c91e7eefb8eba2.woff2 +0 -0
  372. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-6e092f71c1e634059ada0e52abadce67.woff2 +0 -0
  373. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-6f3256af8454371776bc46670d33cc65.woff2 +0 -0
  374. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-6fe5c5973cc06f74b2387a631ea36b88.woff2 +0 -0
  375. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-70c2eb8d64e71a42a834eb857ea9df51.woff2 +0 -0
  376. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-70e811fd7994e61f408c923de6ddd078.woff2 +0 -0
  377. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7197d6fda6cba7c3874c53d6381ca239.woff2 +0 -0
  378. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-72252d73220fa3cd856677888cee1635.woff2 +0 -0
  379. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-72536a3d71b694a0d53dd90ddceae41e.woff2 +0 -0
  380. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-726303e0774b4e678bff8c2deb6ca603.woff2 +0 -0
  381. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-733171b4ffcd17ea1fe1c0ba627173bf.woff2 +0 -0
  382. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-739bc1a567439c7cffcd1614644593d2.woff2 +0 -0
  383. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-73e309718fd16cea44b4d54a33581811.woff2 +0 -0
  384. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7494dc504ae00ee9cd0505f990f88c5d.woff2 +0 -0
  385. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-74e2263a91439c25b91d5132ce9f4d62.woff2 +0 -0
  386. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-761d05e3cd968cf574166867998ef06a.woff2 +0 -0
  387. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7718fe60986d8b42b1be9c5ace5ccf25.woff2 +0 -0
  388. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-774d4f764a1299da5d28ec2f2ffe0d69.woff2 +0 -0
  389. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-79d494361ae093b69e74ee9dbe65bfd4.woff2 +0 -0
  390. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-79f007c1c6d07557120982951ea67998.woff2 +0 -0
  391. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7a07ddc0f0c0f5f4a9bad6ee3dda66b5.woff2 +0 -0
  392. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7ab2bed91166a9dca83a5ebfbe2a7f38.woff2 +0 -0
  393. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7ccce86603f80a099ddb0cb21d4ae3e3.woff2 +0 -0
  394. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7e4bde7e9c7f84cd34d8a845e384c746.woff2 +0 -0
  395. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7e929f262f30c8ee78bf398150b1a7cd.woff2 +0 -0
  396. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7eb9fffd1aa890d07d0f88cc82e6cfe4.woff2 +0 -0
  397. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-7f855356ab893b0d2b9c1c83b8116f0e.woff2 +0 -0
  398. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-829615148e6357d826b9242eb7fbbd1e.woff2 +0 -0
  399. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-866fa7613df6b3fd272bcfd4530c0bb9.woff2 +0 -0
  400. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-87599f94b6cc129d505b375798d0d751.woff2 +0 -0
  401. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-8c2f33cee3993174f7e87c28e4bf42ee.woff2 +0 -0
  402. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-8d3bcabb847b56243b16afe62adaaf21.woff2 +0 -0
  403. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-8de5b863cb50dfefdd07cb11c774d579.woff2 +0 -0
  404. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-8e9f97f01034820170065b2921b4fb5e.woff2 +0 -0
  405. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-8f476c4c99813d57cbe6eca4727388ad.woff2 +0 -0
  406. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-903bb6865f3452e2fda42e3a25547bc5.woff2 +0 -0
  407. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-91ddb2969bf2d31ba02ad82998d1314c.woff2 +0 -0
  408. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-938d90c10ff8c20386af7f242c05d6b0.woff2 +0 -0
  409. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-93fc8f28a33234bcadf1527cafabd502.woff2 +0 -0
  410. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-95429962233afd82db1c27df1500a28c.woff2 +0 -0
  411. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-9544732d2e62d1a429674f8ee41b5d3a.woff2 +0 -0
  412. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-9592bfc861f07bcb8d75c196b370e548.woff2 +0 -0
  413. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-95bfd249da4902577b4b7d76ebdd0b44.woff2 +0 -0
  414. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-968cffdc8ee679da094e77ebf50f58ef.woff2 +0 -0
  415. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-97f7f48ce90c9429bf32ae51469db74d.woff2 +0 -0
  416. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-982b630266d87db93d2539affb1275c6.woff2 +0 -0
  417. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-98f2ad84457de7f3740d9920b8fa8667.woff2 +0 -0
  418. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-99a16ef6a64934d5781933dbd9c46b2e.woff2 +0 -0
  419. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-9cfb2a77a4e45025105ad29a1748b90d.woff2 +0 -0
  420. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-9d81066dd2b337c938df6e90380a00dc.woff2 +0 -0
  421. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-9eb5a99df4e76ac3363453ac9ca288b1.woff2 +0 -0
  422. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-a004ddfcb26e67bd6e678c8ed19e25ce.woff2 +0 -0
  423. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-a0ca5df4258213d7fc9fce80f65ce760.woff2 +0 -0
  424. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-a1f916d6039285c4ffb900cd654e418f.woff2 +0 -0
  425. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-a203b91dad570bf05a58c3c3ddb529bf.woff2 +0 -0
  426. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-a365e82ed54697a52f27adcea1315fe8.woff2 +0 -0
  427. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-a4c34be6d42152e64b0df90bc4607f64.woff2 +0 -0
  428. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-a7accba310e821da5505f71c03b76bdb.woff2 +0 -0
  429. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-aa0d470430e6391eca720c7cfa44446f.woff2 +0 -0
  430. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-aa5c9ca6cf4fba00433b7aa3fa10671a.woff2 +0 -0
  431. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-ac9ceb44437becc3e9c4dbfebab7fc2d.woff2 +0 -0
  432. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b1220a3c61f85cc0408deedb4c5f57a2.woff2 +0 -0
  433. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b358f7a51ece39a3247942b1feabdb29.woff2 +0 -0
  434. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b57aaedfd8ebdf3931f25119dc6a5eb2.woff2 +0 -0
  435. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b5c1596551c256e0e9cf02028595b092.woff2 +0 -0
  436. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b6d128682ee29e471486354d486a1b90.woff2 +0 -0
  437. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b6fd38ca30869792244804b04bc058da.woff2 +0 -0
  438. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b7d203b051eff504ff59ddca7576b6a9.woff2 +0 -0
  439. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-b96d9226ce77ec94ceca043d712182e6.woff2 +0 -0
  440. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-ba3de316d63c7e339987b16f41a0b879.woff2 +0 -0
  441. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-bafff7a14c27403dcc6cf1432e8ea836.woff2 +0 -0
  442. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-bd77e3c7f9e0b072d96af37f73d1aa32.woff2 +0 -0
  443. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-be549ab72f0719d606a5c01e2c0219b6.woff2 +0 -0
  444. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-c16ed9740b85badf16e86ea782a3062f.woff2 +0 -0
  445. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-c1f94158256bb1f3bf665b053d895af9.woff2 +0 -0
  446. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-c40533fdf4cc57177b12803598af7e59.woff2 +0 -0
  447. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-c4a687ac4f0c2766eefc9f77ed99cddf.woff2 +0 -0
  448. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-c69f61a4ab18d0488c8d1fc12e7028e8.woff2 +0 -0
  449. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-c8b71798409ccc126ee264a00aadcf21.woff2 +0 -0
  450. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-c99eda15fc26a2941579560f76c3a5cf.woff2 +0 -0
  451. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-cb17fc3db95f6d139afc9d31a8e93293.woff2 +0 -0
  452. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-cbaaefaaf326668277aa24dfa93c4d28.woff2 +0 -0
  453. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-cd145ce4a0ea18469358df53c207bc1b.woff2 +0 -0
  454. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-cdbce89e82cc1ab53a2decbf5819278f.woff2 +0 -0
  455. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-ce4884f96f11589608b76b726a755803.woff2 +0 -0
  456. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-cf2cc71752631e579e35b0e423bf2638.woff2 +0 -0
  457. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-cf6ff4e0f491ca0cf3038187a997b9b4.woff2 +0 -0
  458. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-cfb211578629b7e8153b37240de6a9d5.woff2 +0 -0
  459. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-d0cf73942fea1c74edbdf0b3011f4656.woff2 +0 -0
  460. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-d2666cbed13462c5dc36fa2f15c202ca.woff2 +0 -0
  461. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-d3716376641d615e2995605b29bca7b6.woff2 +0 -0
  462. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-dac48066b5883d8b4551fc584f0c2a3e.woff2 +0 -0
  463. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-dbea1af6dcd9860be40c3d18254338f5.woff2 +0 -0
  464. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e11567fd2accf9957cd0d3c2be937d87.woff2 +0 -0
  465. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e2ead7ea7da0437f085f42ffc05f8d13.woff2 +0 -0
  466. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e3fcf5180fd466c8915c4e8069491054.woff2 +0 -0
  467. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e480d9c614742d05f0e78f274f1e69e6.woff2 +0 -0
  468. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e4bca6cfa53e499cae0a6be4894a90e9.woff2 +0 -0
  469. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e51ef413167c6e14e0c0fdcc585f2fc9.woff2 +0 -0
  470. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e5f453bb04da18eed01675eeebd88bf8.woff2 +0 -0
  471. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-e656f091b9dc4709722c9f4b84d3c797.woff2 +0 -0
  472. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-ec181b795ac1fb5a50d700b6e996d745.woff2 +0 -0
  473. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-ee8bae97908d5147b423f77ad0d3c1bb.woff2 +0 -0
  474. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-f0f13b5c60e0af5553bd359f5513be1b.woff2 +0 -0
  475. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-f2b54d4e7be0eaefe1c2c56836fa5368.woff2 +0 -0
  476. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-f56414bf9bced67990def8660e306759.woff2 +0 -0
  477. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-f5d079153c99a25b9be5b8583c4cc8a7.woff2 +0 -0
  478. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-f6032fc06eb20480f096199713f70885.woff2 +0 -0
  479. ciaobot-0.3.0/ciao/web/static/fonts/Xiaolai/Xiaolai-Regular-f8ee5d36068a42b51d0e4a1116cfcec1.woff2 +0 -0
  480. ciaobot-0.3.0/ciao/web/static/icons/icon-16.png +0 -0
  481. ciaobot-0.3.0/ciao/web/static/icons/icon-180.png +0 -0
  482. ciaobot-0.3.0/ciao/web/static/icons/icon-192-maskable.png +0 -0
  483. ciaobot-0.3.0/ciao/web/static/icons/icon-192.png +0 -0
  484. ciaobot-0.3.0/ciao/web/static/icons/icon-32.png +0 -0
  485. ciaobot-0.3.0/ciao/web/static/icons/icon-512-maskable.png +0 -0
  486. ciaobot-0.3.0/ciao/web/static/icons/icon-512.png +0 -0
  487. ciaobot-0.3.0/ciao/web/static/index.html +22 -0
  488. ciaobot-0.3.0/ciao/web/static/manifest.json +16 -0
  489. ciaobot-0.3.0/ciao/web/static/sw.js +249 -0
  490. ciaobot-0.3.0/ciaobot.egg-info/PKG-INFO +115 -0
  491. ciaobot-0.3.0/ciaobot.egg-info/SOURCES.txt +587 -0
  492. ciaobot-0.3.0/ciaobot.egg-info/dependency_links.txt +1 -0
  493. ciaobot-0.3.0/ciaobot.egg-info/entry_points.txt +6 -0
  494. ciaobot-0.3.0/ciaobot.egg-info/requires.txt +26 -0
  495. ciaobot-0.3.0/ciaobot.egg-info/top_level.txt +1 -0
  496. ciaobot-0.3.0/pyproject.toml +74 -0
  497. ciaobot-0.3.0/setup.cfg +4 -0
  498. ciaobot-0.3.0/tests/test_agent_assets.py +242 -0
  499. ciaobot-0.3.0/tests/test_app_security_headers.py +29 -0
  500. ciaobot-0.3.0/tests/test_app_settings.py +136 -0
  501. ciaobot-0.3.0/tests/test_auth_security.py +162 -0
  502. ciaobot-0.3.0/tests/test_auto_mode_defaults.py +63 -0
  503. ciaobot-0.3.0/tests/test_auto_title.py +71 -0
  504. ciaobot-0.3.0/tests/test_chat_broker.py +356 -0
  505. ciaobot-0.3.0/tests/test_chat_continue_route.py +105 -0
  506. ciaobot-0.3.0/tests/test_chat_handover.py +102 -0
  507. ciaobot-0.3.0/tests/test_chat_messages_archived.py +170 -0
  508. ciaobot-0.3.0/tests/test_chat_messages_interrupted.py +83 -0
  509. ciaobot-0.3.0/tests/test_chat_prompt_route.py +111 -0
  510. ciaobot-0.3.0/tests/test_chat_retry.py +153 -0
  511. ciaobot-0.3.0/tests/test_chat_subagents.py +161 -0
  512. ciaobot-0.3.0/tests/test_ci_workflow.py +16 -0
  513. ciaobot-0.3.0/tests/test_cli.py +426 -0
  514. ciaobot-0.3.0/tests/test_commands_api.py +73 -0
  515. ciaobot-0.3.0/tests/test_config_role.py +164 -0
  516. ciaobot-0.3.0/tests/test_critique.py +108 -0
  517. ciaobot-0.3.0/tests/test_dag.py +331 -0
  518. ciaobot-0.3.0/tests/test_debug_issues_route.py +62 -0
  519. ciaobot-0.3.0/tests/test_debug_report.py +72 -0
  520. ciaobot-0.3.0/tests/test_dependency_review.py +142 -0
  521. ciaobot-0.3.0/tests/test_deploy_cleanup.py +83 -0
  522. ciaobot-0.3.0/tests/test_dev_cli.py +37 -0
  523. ciaobot-0.3.0/tests/test_entity_tagger.py +104 -0
  524. ciaobot-0.3.0/tests/test_env_vars_documented.py +75 -0
  525. ciaobot-0.3.0/tests/test_file_history_routes.py +236 -0
  526. ciaobot-0.3.0/tests/test_file_snapshots.py +172 -0
  527. ciaobot-0.3.0/tests/test_fts_search.py +173 -0
  528. ciaobot-0.3.0/tests/test_insights.py +409 -0
  529. ciaobot-0.3.0/tests/test_is_session_local.py +90 -0
  530. ciaobot-0.3.0/tests/test_job_runs.py +195 -0
  531. ciaobot-0.3.0/tests/test_local_routes.py +308 -0
  532. ciaobot-0.3.0/tests/test_local_session.py +313 -0
  533. ciaobot-0.3.0/tests/test_memory_cli.py +112 -0
  534. ciaobot-0.3.0/tests/test_memory_injector.py +86 -0
  535. ciaobot-0.3.0/tests/test_memory_proposals.py +114 -0
  536. ciaobot-0.3.0/tests/test_memory_tool.py +216 -0
  537. ciaobot-0.3.0/tests/test_menubar.py +258 -0
  538. ciaobot-0.3.0/tests/test_model_bucket.py +358 -0
  539. ciaobot-0.3.0/tests/test_ollama_local.py +255 -0
  540. ciaobot-0.3.0/tests/test_openrouter.py +176 -0
  541. ciaobot-0.3.0/tests/test_package_smoke.py +70 -0
  542. ciaobot-0.3.0/tests/test_package_update.py +149 -0
  543. ciaobot-0.3.0/tests/test_package_version.py +177 -0
  544. ciaobot-0.3.0/tests/test_permission_gate.py +166 -0
  545. ciaobot-0.3.0/tests/test_permission_push.py +105 -0
  546. ciaobot-0.3.0/tests/test_permission_response.py +135 -0
  547. ciaobot-0.3.0/tests/test_preflight.py +123 -0
  548. ciaobot-0.3.0/tests/test_project_chat_moves.py +283 -0
  549. ciaobot-0.3.0/tests/test_project_chats_queue.py +335 -0
  550. ciaobot-0.3.0/tests/test_project_complete.py +693 -0
  551. ciaobot-0.3.0/tests/test_project_files.py +303 -0
  552. ciaobot-0.3.0/tests/test_providers.py +436 -0
  553. ciaobot-0.3.0/tests/test_providers_fallback.py +46 -0
  554. ciaobot-0.3.0/tests/test_providers_ollama.py +930 -0
  555. ciaobot-0.3.0/tests/test_public_package_metadata.py +64 -0
  556. ciaobot-0.3.0/tests/test_public_release_preflight.py +155 -0
  557. ciaobot-0.3.0/tests/test_push_notification_log.py +50 -0
  558. ciaobot-0.3.0/tests/test_pwa_api_docs.py +125 -0
  559. ciaobot-0.3.0/tests/test_rate_limits.py +58 -0
  560. ciaobot-0.3.0/tests/test_release.py +111 -0
  561. ciaobot-0.3.0/tests/test_runtime_hook_workspace.py +92 -0
  562. ciaobot-0.3.0/tests/test_schedule_api_delivery_modes.py +129 -0
  563. ciaobot-0.3.0/tests/test_schedule_delivery_modes.py +80 -0
  564. ciaobot-0.3.0/tests/test_schedule_workspace_routing.py +105 -0
  565. ciaobot-0.3.0/tests/test_schedules.py +750 -0
  566. ciaobot-0.3.0/tests/test_settings_routines_route.py +158 -0
  567. ciaobot-0.3.0/tests/test_setup_status.py +406 -0
  568. ciaobot-0.3.0/tests/test_skill_evolution.py +505 -0
  569. ciaobot-0.3.0/tests/test_skills_add.py +102 -0
  570. ciaobot-0.3.0/tests/test_skills_inventory.py +109 -0
  571. ciaobot-0.3.0/tests/test_skills_sync.py +106 -0
  572. ciaobot-0.3.0/tests/test_startup_vault_index.py +36 -0
  573. ciaobot-0.3.0/tests/test_state.py +134 -0
  574. ciaobot-0.3.0/tests/test_stock_package.py +100 -0
  575. ciaobot-0.3.0/tests/test_sync_skills.py +109 -0
  576. ciaobot-0.3.0/tests/test_thinking_level.py +152 -0
  577. ciaobot-0.3.0/tests/test_trajectory_builder.py +418 -0
  578. ciaobot-0.3.0/tests/test_transcript_discovery.py +274 -0
  579. ciaobot-0.3.0/tests/test_transcription_engine.py +147 -0
  580. ciaobot-0.3.0/tests/test_transcripts.py +320 -0
  581. ciaobot-0.3.0/tests/test_upgrade.py +254 -0
  582. ciaobot-0.3.0/tests/test_vault_index.py +197 -0
  583. ciaobot-0.3.0/tests/test_vault_lint.py +44 -0
  584. ciaobot-0.3.0/tests/test_websearch_hook.py +321 -0
  585. ciaobot-0.3.0/tests/test_workspace_binary.py +187 -0
  586. ciaobot-0.3.0/tests/test_workspace_file.py +369 -0
  587. ciaobot-0.3.0/tests/test_workspace_git.py +111 -0
  588. ciaobot-0.3.0/tests/test_workspace_image.py +126 -0
  589. ciaobot-0.3.0/tests/test_workspace_settings_routes.py +443 -0
ciaobot-0.3.0/LICENSE ADDED
@@ -0,0 +1,158 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the
13
+ copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other
16
+ entities that control, are controlled by, or are under common control with
17
+ that entity. For the purposes of this definition, "control" means (i) the
18
+ power, direct or indirect, to cause the direction or management of such
19
+ entity, whether by contract or otherwise, or (ii) ownership of fifty percent
20
+ (50%) or more of the outstanding shares, or (iii) beneficial ownership of
21
+ such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
24
+ permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation source,
28
+ and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical transformation
31
+ or translation of a Source form, including but not limited to compiled
32
+ object code, generated documentation, and conversions to other media types.
33
+
34
+ "Work" shall mean the work of authorship, whether in Source or Object form,
35
+ made available under the License, as indicated by a copyright notice that is
36
+ included in or attached to the work.
37
+
38
+ "Derivative Works" shall mean any work, whether in Source or Object form,
39
+ that is based on or derived from the Work and for which the editorial
40
+ revisions, annotations, elaborations, or other modifications represent, as a
41
+ whole, an original work of authorship. For the purposes of this License,
42
+ Derivative Works shall not include works that remain separable from, or
43
+ merely link (or bind by name) to the interfaces of, the Work.
44
+
45
+ "Contribution" shall mean any work of authorship, including the original
46
+ version of the Work and any modifications or additions to that Work or
47
+ Derivative Works thereof, that is intentionally submitted to Licensor for
48
+ inclusion in the Work by the copyright owner or by an individual or Legal
49
+ Entity authorized to submit on behalf of the copyright owner. For the
50
+ purposes of this definition, "submitted" means any form of electronic,
51
+ verbal, or written communication sent to the Licensor or its representatives,
52
+ including but not limited to communication on electronic mailing lists,
53
+ source code control systems, and issue tracking systems that are managed by,
54
+ or on behalf of, the Licensor for the purpose of discussing and improving the
55
+ Work, but excluding communication that is conspicuously marked or otherwise
56
+ designated in writing by the copyright owner as "Not a Contribution."
57
+
58
+ "Contributor" shall mean Licensor and any individual or Legal Entity on
59
+ behalf of whom a Contribution has been received by Licensor and subsequently
60
+ incorporated within the Work.
61
+
62
+ 2. Grant of Copyright License. Subject to the terms and conditions of this
63
+ License, each Contributor hereby grants to You a perpetual, worldwide,
64
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to
65
+ reproduce, prepare Derivative Works of, publicly display, publicly perform,
66
+ sublicense, and distribute the Work and such Derivative Works in Source or
67
+ Object form.
68
+
69
+ 3. Grant of Patent License. Subject to the terms and conditions of this
70
+ License, each Contributor hereby grants to You a perpetual, worldwide,
71
+ non-exclusive, no-charge, royalty-free, irrevocable patent license to make,
72
+ have made, use, offer to sell, sell, import, and otherwise transfer the Work,
73
+ where such license applies only to those patent claims licensable by such
74
+ Contributor that are necessarily infringed by their Contribution alone or by
75
+ combination of their Contribution with the Work to which such Contribution
76
+ was submitted. If You institute patent litigation against any entity alleging
77
+ that the Work or a Contribution incorporated within the Work constitutes
78
+ direct or contributory patent infringement, then any patent licenses granted
79
+ to You under this License for that Work shall terminate as of the date such
80
+ litigation is filed.
81
+
82
+ 4. Redistribution. You may reproduce and distribute copies of the Work or
83
+ Derivative Works thereof in any medium, with or without modifications, and in
84
+ Source or Object form, provided that You meet the following conditions:
85
+
86
+ (a) You must give any other recipients of the Work or Derivative Works a copy
87
+ of this License; and
88
+
89
+ (b) You must cause any modified files to carry prominent notices stating that
90
+ You changed the files; and
91
+
92
+ (c) You must retain, in the Source form of any Derivative Works that You
93
+ distribute, all copyright, patent, trademark, and attribution notices from
94
+ the Source form of the Work, excluding those notices that do not pertain to
95
+ any part of the Derivative Works; and
96
+
97
+ (d) If the Work includes a "NOTICE" text file as part of its distribution,
98
+ then any Derivative Works that You distribute must include a readable copy of
99
+ the attribution notices contained within such NOTICE file, excluding those
100
+ notices that do not pertain to any part of the Derivative Works, in at least
101
+ one of the following places: within a NOTICE text file distributed as part of
102
+ the Derivative Works; within the Source form or documentation, if provided
103
+ along with the Derivative Works; or within a display generated by the
104
+ Derivative Works, if and wherever such third-party notices normally appear.
105
+ The contents of the NOTICE file are for informational purposes only and do
106
+ not modify the License. You may add Your own attribution notices within
107
+ Derivative Works that You distribute, alongside or as an addendum to the
108
+ NOTICE text from the Work, provided that such additional attribution notices
109
+ cannot be construed as modifying the License.
110
+
111
+ You may add Your own copyright statement to Your modifications and may
112
+ provide additional or different license terms and conditions for use,
113
+ reproduction, or distribution of Your modifications, or for any such
114
+ Derivative Works as a whole, provided Your use, reproduction, and
115
+ distribution of the Work otherwise complies with the conditions stated in
116
+ this License.
117
+
118
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any
119
+ Contribution intentionally submitted for inclusion in the Work by You to the
120
+ Licensor shall be under the terms and conditions of this License, without any
121
+ additional terms or conditions. Notwithstanding the above, nothing herein
122
+ shall supersede or modify the terms of any separate license agreement you may
123
+ have executed with Licensor regarding such Contributions.
124
+
125
+ 6. Trademarks. This License does not grant permission to use the trade names,
126
+ trademarks, service marks, or product names of the Licensor, except as
127
+ required for reasonable and customary use in describing the origin of the
128
+ Work and reproducing the content of the NOTICE file.
129
+
130
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
131
+ writing, Licensor provides the Work on an "AS IS" BASIS, WITHOUT WARRANTIES
132
+ OR CONDITIONS OF ANY KIND, either express or implied, including, without
133
+ limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT,
134
+ MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely
135
+ responsible for determining the appropriateness of using or redistributing
136
+ the Work and assume any risks associated with Your exercise of permissions
137
+ under this License.
138
+
139
+ 8. Limitation of Liability. In no event and under no legal theory, whether
140
+ in tort (including negligence), contract, or otherwise, unless required by
141
+ applicable law (such as deliberate and grossly negligent acts) or agreed to
142
+ in writing, shall any Contributor be liable to You for damages, including
143
+ any direct, indirect, special, incidental, or consequential damages of any
144
+ character arising as a result of this License or out of the use or inability
145
+ to use the Work, even if such Contributor has been advised of the possibility
146
+ of such damages.
147
+
148
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work
149
+ or Derivative Works thereof, You may choose to offer, and charge a fee for,
150
+ acceptance of support, warranty, indemnity, or other liability obligations
151
+ and/or rights consistent with this License. However, in accepting such
152
+ obligations, You may act only on Your own behalf and on Your sole
153
+ responsibility, not on behalf of any other Contributor, and only if You agree
154
+ to indemnify, defend, and hold each Contributor harmless for any liability
155
+ incurred by, or claims asserted against, such Contributor by reason of your
156
+ accepting any such warranty or additional liability.
157
+
158
+ END OF TERMS AND CONDITIONS
ciaobot-0.3.0/PKG-INFO ADDED
@@ -0,0 +1,115 @@
1
+ Metadata-Version: 2.4
2
+ Name: ciaobot
3
+ Version: 0.3.0
4
+ Summary: Ciaobot personal assistant server.
5
+ License-Expression: Apache-2.0
6
+ Requires-Python: >=3.12
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Requires-Dist: claude-agent-sdk==0.2.110
10
+ Requires-Dist: openai==2.44.0
11
+ Requires-Dist: starlette==0.52.1
12
+ Requires-Dist: uvicorn[standard]==0.50.2
13
+ Requires-Dist: itsdangerous==2.2.0
14
+ Requires-Dist: pyyaml==6.0.3
15
+ Requires-Dist: pywebpush==2.3.0
16
+ Requires-Dist: cryptography==49.0.0
17
+ Requires-Dist: httpx==0.28.1
18
+ Requires-Dist: python-pptx==1.0.2
19
+ Requires-Dist: notebooklm-py==0.7.3
20
+ Requires-Dist: playwright==1.61.0
21
+ Requires-Dist: rumps==0.4.0; platform_system == "Darwin"
22
+ Provides-Extra: test
23
+ Requires-Dist: build==1.5.0; extra == "test"
24
+ Requires-Dist: pytest==8.4.2; extra == "test"
25
+ Requires-Dist: pytest-asyncio==0.26.0; extra == "test"
26
+ Provides-Extra: voice-local
27
+ Requires-Dist: mlx-whisper==0.4.3; extra == "voice-local"
28
+ Provides-Extra: menubar
29
+ Requires-Dist: rumps==0.4.0; extra == "menubar"
30
+ Dynamic: license-file
31
+
32
+ # Ciaobot
33
+
34
+ Ciaobot is an opinionated UI and UX layer for using Claude Code as a personal assistant and second brain. It is a local web app around agentic work: chats, projects, files, schedules, memory, and archived knowledge all live in one interface instead of being scattered across terminal sessions.
35
+
36
+ ## A personal project, shared
37
+
38
+ Ciaobot is my personal idea of how an AI assistant should work day to day. I built it for my own use, run it on my own machines, and the defaults reflect that: project-first navigation, a plain-markdown vault as memory, explicit model routing, and self-improvement loops that propose changes instead of applying them blindly.
39
+
40
+ I'm sharing it because the patterns may be useful to you, and because I'm happy to receive contributions: ideas, bug reports, disagreements with my defaults, and pull requests are all welcome. See [CONTRIBUTING.md](CONTRIBUTING.md).
41
+
42
+ ## What it does
43
+
44
+ - Runs Claude Code-backed chats in a PWA with project and workspace navigation.
45
+ - Lets you create, preview, edit, and restore workspace files from the UI.
46
+ - Lets you schedule project or workspace routines to run when you choose.
47
+ - Archives chats into a markdown vault, then extracts session insights and drafts memory proposals for review.
48
+ - Keeps durable project context separate from short-lived chat state.
49
+ - Supports voice transcription, push notifications, model/provider settings, and local package updates from the UI.
50
+ - Shows a macOS menu bar icon (`ciao menubar`) with server status and open/restart/logs actions — the Ciaobot face turns scared when the server is down.
51
+
52
+ What it does **not** do automatically: it never promotes memory proposals into your long-term memory files without review, never discards or rewrites an existing notes folder during onboarding, and never locks you into one provider; chats and routines can route through any configured backend.
53
+
54
+ **Agent-agnostic, standalone vault.** The vault structure, project folders, markdown notes, and configuration files (such as `CLAUDE.md` and `MEMORY.md`) created in your workspace are standard, open files. They work with any other AI agent, IDE assistant, or bare terminal tool even if Ciaobot is not running. Ciaobot is the opinionated local web interface on top.
55
+
56
+ ## Providers
57
+
58
+ Use the access you already have:
59
+
60
+ - Claude Code through your Claude subscription or Anthropic API key.
61
+ - Ollama Cloud, a local Ollama daemon, or compatible Ollama model routing.
62
+ - OpenRouter through an `OPENROUTER_API_KEY`.
63
+
64
+ The model is project-first: a workspace represents a life area (personal, work, a client), each workspace contains projects, and each project carries files, notes, decisions, and context that Ciaobot injects when you work inside it, so the agent does not rediscover what you are talking about every time.
65
+
66
+ ## Install
67
+
68
+ Install from [PyPI](https://pypi.org/project/ciaobot/) — the wheel ships with the pre-built PWA (the same wheel is attached to each [GitHub release](https://github.com/raffaelefarinaro/ciaobot/releases/latest)):
69
+
70
+ Requires Python 3.12 or newer (use whichever `python3.X` you have, e.g. `brew install python@3.13`):
71
+
72
+ ```bash
73
+ python3.13 -m venv ~/.ciaobot-venv
74
+ ~/.ciaobot-venv/bin/pip install ciaobot
75
+ ~/.ciaobot-venv/bin/ciao run
76
+ ```
77
+
78
+ Then open `http://localhost:8443`: with no configured workspace the server starts in bootstrap mode and the setup wizard walks you through choosing the workspace folder, the vault folder (fresh scaffold or an existing notes folder), and the rest of the local config before anything is created. When you finish, it writes the config, scaffolds the vault where you chose, and (on macOS) renders the LaunchAgents and `Ciaobot.app`. Setup also makes sure the workspace folder is a git repository (running `git init` with a `.gitignore` that keeps `.env` and runtime state out of commits) so snapshots and sync work from the start.
79
+
80
+ For scripted or headless setups, `ciao setup --workspace <dir>` pre-creates a workspace with defaults and skips the wizard.
81
+
82
+ ## Quickstart (from source)
83
+
84
+ A git checkout does not include the built PWA bundle, so build it once before running:
85
+
86
+ ```bash
87
+ python3.12 -m venv .venv
88
+ source .venv/bin/activate
89
+ python -m pip install -e '.[test]'
90
+ (cd web && npm ci && npm run build)
91
+ ciao setup --workspace ~/ciao-workspace
92
+ ciao run
93
+ ```
94
+
95
+ `ciao setup` is idempotent: it writes the initial `.env`, seeds the workspace docs and vault, and (on macOS) renders LaunchAgents for the server and the menu bar companion plus a `Ciaobot.app` shortcut that opens the local PWA. The menu bar companion is included automatically on macOS installs (no extra needed). Full setup details and optional Node tooling: [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md).
96
+
97
+ Optional capabilities (Google Workspace, Apple Intelligence titles, MCP connectors) each have their own setup in [INTEGRATIONS.md](INTEGRATIONS.md).
98
+
99
+ ## Documentation
100
+
101
+ | Doc | What's in it |
102
+ |---|---|
103
+ | [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) | System design: repo and workspace layout, chat pipeline, memory and insights, schedules, providers, frontend, device branches. |
104
+ | [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) | Setup, dev workflow, testing, change guidelines. |
105
+ | [INTEGRATIONS.md](INTEGRATIONS.md) | Operator config: env vars, OAuth, MCP connectors, server runtime knobs. |
106
+ | [PWA_API.md](PWA_API.md) | API endpoints, auth flow, state paths, agent recipes. |
107
+ | [web/README.md](web/README.md) | PWA frontend workflow, iOS Safari gotchas, design tokens. |
108
+ | [SECURITY.md](SECURITY.md) | Security policy. |
109
+ | [CONTRIBUTING.md](CONTRIBUTING.md) | How to contribute. |
110
+
111
+ Naming note: the user-facing product is **Ciaobot**. The CLI is installed as both `ciaobot` and `ciao` (same command); the Python package, import path, and many environment variables are still named `ciao`/`CIAO_*` for compatibility.
112
+
113
+ ## For coding agents
114
+
115
+ `CLAUDE.md` (loaded every prompt) is the contributor guide; `docs/ARCHITECTURE.md` is the canonical orientation doc, read on demand. After changes that affect layout, capabilities, env vars, endpoints, or commands, dispatch the `doc-updater` agent to keep the docs truthful.
@@ -0,0 +1,84 @@
1
+ # Ciaobot
2
+
3
+ Ciaobot is an opinionated UI and UX layer for using Claude Code as a personal assistant and second brain. It is a local web app around agentic work: chats, projects, files, schedules, memory, and archived knowledge all live in one interface instead of being scattered across terminal sessions.
4
+
5
+ ## A personal project, shared
6
+
7
+ Ciaobot is my personal idea of how an AI assistant should work day to day. I built it for my own use, run it on my own machines, and the defaults reflect that: project-first navigation, a plain-markdown vault as memory, explicit model routing, and self-improvement loops that propose changes instead of applying them blindly.
8
+
9
+ I'm sharing it because the patterns may be useful to you, and because I'm happy to receive contributions: ideas, bug reports, disagreements with my defaults, and pull requests are all welcome. See [CONTRIBUTING.md](CONTRIBUTING.md).
10
+
11
+ ## What it does
12
+
13
+ - Runs Claude Code-backed chats in a PWA with project and workspace navigation.
14
+ - Lets you create, preview, edit, and restore workspace files from the UI.
15
+ - Lets you schedule project or workspace routines to run when you choose.
16
+ - Archives chats into a markdown vault, then extracts session insights and drafts memory proposals for review.
17
+ - Keeps durable project context separate from short-lived chat state.
18
+ - Supports voice transcription, push notifications, model/provider settings, and local package updates from the UI.
19
+ - Shows a macOS menu bar icon (`ciao menubar`) with server status and open/restart/logs actions — the Ciaobot face turns scared when the server is down.
20
+
21
+ What it does **not** do automatically: it never promotes memory proposals into your long-term memory files without review, never discards or rewrites an existing notes folder during onboarding, and never locks you into one provider; chats and routines can route through any configured backend.
22
+
23
+ **Agent-agnostic, standalone vault.** The vault structure, project folders, markdown notes, and configuration files (such as `CLAUDE.md` and `MEMORY.md`) created in your workspace are standard, open files. They work with any other AI agent, IDE assistant, or bare terminal tool even if Ciaobot is not running. Ciaobot is the opinionated local web interface on top.
24
+
25
+ ## Providers
26
+
27
+ Use the access you already have:
28
+
29
+ - Claude Code through your Claude subscription or Anthropic API key.
30
+ - Ollama Cloud, a local Ollama daemon, or compatible Ollama model routing.
31
+ - OpenRouter through an `OPENROUTER_API_KEY`.
32
+
33
+ The model is project-first: a workspace represents a life area (personal, work, a client), each workspace contains projects, and each project carries files, notes, decisions, and context that Ciaobot injects when you work inside it, so the agent does not rediscover what you are talking about every time.
34
+
35
+ ## Install
36
+
37
+ Install from [PyPI](https://pypi.org/project/ciaobot/) — the wheel ships with the pre-built PWA (the same wheel is attached to each [GitHub release](https://github.com/raffaelefarinaro/ciaobot/releases/latest)):
38
+
39
+ Requires Python 3.12 or newer (use whichever `python3.X` you have, e.g. `brew install python@3.13`):
40
+
41
+ ```bash
42
+ python3.13 -m venv ~/.ciaobot-venv
43
+ ~/.ciaobot-venv/bin/pip install ciaobot
44
+ ~/.ciaobot-venv/bin/ciao run
45
+ ```
46
+
47
+ Then open `http://localhost:8443`: with no configured workspace the server starts in bootstrap mode and the setup wizard walks you through choosing the workspace folder, the vault folder (fresh scaffold or an existing notes folder), and the rest of the local config before anything is created. When you finish, it writes the config, scaffolds the vault where you chose, and (on macOS) renders the LaunchAgents and `Ciaobot.app`. Setup also makes sure the workspace folder is a git repository (running `git init` with a `.gitignore` that keeps `.env` and runtime state out of commits) so snapshots and sync work from the start.
48
+
49
+ For scripted or headless setups, `ciao setup --workspace <dir>` pre-creates a workspace with defaults and skips the wizard.
50
+
51
+ ## Quickstart (from source)
52
+
53
+ A git checkout does not include the built PWA bundle, so build it once before running:
54
+
55
+ ```bash
56
+ python3.12 -m venv .venv
57
+ source .venv/bin/activate
58
+ python -m pip install -e '.[test]'
59
+ (cd web && npm ci && npm run build)
60
+ ciao setup --workspace ~/ciao-workspace
61
+ ciao run
62
+ ```
63
+
64
+ `ciao setup` is idempotent: it writes the initial `.env`, seeds the workspace docs and vault, and (on macOS) renders LaunchAgents for the server and the menu bar companion plus a `Ciaobot.app` shortcut that opens the local PWA. The menu bar companion is included automatically on macOS installs (no extra needed). Full setup details and optional Node tooling: [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md).
65
+
66
+ Optional capabilities (Google Workspace, Apple Intelligence titles, MCP connectors) each have their own setup in [INTEGRATIONS.md](INTEGRATIONS.md).
67
+
68
+ ## Documentation
69
+
70
+ | Doc | What's in it |
71
+ |---|---|
72
+ | [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) | System design: repo and workspace layout, chat pipeline, memory and insights, schedules, providers, frontend, device branches. |
73
+ | [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) | Setup, dev workflow, testing, change guidelines. |
74
+ | [INTEGRATIONS.md](INTEGRATIONS.md) | Operator config: env vars, OAuth, MCP connectors, server runtime knobs. |
75
+ | [PWA_API.md](PWA_API.md) | API endpoints, auth flow, state paths, agent recipes. |
76
+ | [web/README.md](web/README.md) | PWA frontend workflow, iOS Safari gotchas, design tokens. |
77
+ | [SECURITY.md](SECURITY.md) | Security policy. |
78
+ | [CONTRIBUTING.md](CONTRIBUTING.md) | How to contribute. |
79
+
80
+ Naming note: the user-facing product is **Ciaobot**. The CLI is installed as both `ciaobot` and `ciao` (same command); the Python package, import path, and many environment variables are still named `ciao`/`CIAO_*` for compatibility.
81
+
82
+ ## For coding agents
83
+
84
+ `CLAUDE.md` (loaded every prompt) is the contributor guide; `docs/ARCHITECTURE.md` is the canonical orientation doc, read on demand. After changes that affect layout, capabilities, env vars, endpoints, or commands, dispatch the `doc-updater` agent to keep the docs truthful.
@@ -0,0 +1,5 @@
1
+ """Ciaobot personal assistant server."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.3.0"
@@ -0,0 +1,147 @@
1
+ """Runtime-mutable app settings persisted under the runtime root.
2
+
3
+ The env-backed :class:`ciao.config.CiaoConfig` stays the source of
4
+ defaults; this store holds the small set of knobs the PWA Settings →
5
+ Models tab can change at runtime (internal-routine models and the voice
6
+ transcription engine). Values are applied as an overlay onto the live
7
+ config object so call sites keep reading ``config.*`` and PATCHes take
8
+ effect without a restart. Empty string means "no override, use the
9
+ config/env default".
10
+ """
11
+
12
+ from __future__ import annotations
13
+
14
+ import json
15
+ import logging
16
+ from dataclasses import asdict, dataclass, fields, replace
17
+ from pathlib import Path
18
+
19
+ logger = logging.getLogger(__name__)
20
+
21
+ _VALID_ENGINES = {"", "cloud", "local"}
22
+
23
+
24
+ @dataclass(slots=True)
25
+ class AppSettings:
26
+ """One value per overridable knob; empty string = use config default."""
27
+
28
+ # Model used by the chat title generator. Overrides both the Ollama
29
+ # free-tier title model and the Anthropic fallback when set.
30
+ title_model: str = ""
31
+ # Model used by post-archive session-insights extraction.
32
+ insights_model: str = ""
33
+
34
+ # Voice transcription engine: "cloud" (OpenAI) or "local" (mlx-whisper).
35
+ transcription_engine: str = ""
36
+ # Whisper checkpoint for the local engine (HF repo id).
37
+ transcription_local_model: str = ""
38
+ # Comma-separated list of models for the critique / adversarial-review skill.
39
+ critique_models: str = ""
40
+ # Per-backend tier aliases used when a chat asks for haiku/sonnet/opus
41
+ # while the workspace routes through Ollama or OpenRouter.
42
+ ollama_haiku_model: str = ""
43
+ ollama_sonnet_model: str = ""
44
+ ollama_opus_model: str = ""
45
+ openrouter_haiku_model: str = ""
46
+ openrouter_sonnet_model: str = ""
47
+ openrouter_opus_model: str = ""
48
+
49
+
50
+ class AppSettingsStore:
51
+ """JSON-file-backed store for :class:`AppSettings`."""
52
+
53
+ def __init__(self, path: Path) -> None:
54
+ self._path = path
55
+ self.settings = self._load()
56
+ # Env-backed defaults captured on the first apply_to_config() call,
57
+ # so clearing an override restores the original value.
58
+ self._defaults: dict[str, str] | None = None
59
+
60
+ def _load(self) -> AppSettings:
61
+ try:
62
+ raw = json.loads(self._path.read_text(encoding="utf-8"))
63
+ except FileNotFoundError:
64
+ return AppSettings()
65
+ except (OSError, ValueError):
66
+ logger.warning("Unreadable app settings at %s; using defaults", self._path)
67
+ return AppSettings()
68
+ known = {f.name for f in fields(AppSettings)}
69
+ cleaned = {
70
+ k: v.strip()
71
+ for k, v in raw.items()
72
+ if k in known and isinstance(v, str)
73
+ }
74
+ return AppSettings(**cleaned)
75
+
76
+ def _save(self) -> None:
77
+ payload = {k: v for k, v in asdict(self.settings).items() if v}
78
+ self._path.parent.mkdir(parents=True, exist_ok=True)
79
+ self._path.write_text(
80
+ json.dumps(payload, indent=2) + "\n", encoding="utf-8"
81
+ )
82
+
83
+ def update(self, changes: dict[str, str]) -> AppSettings:
84
+ """Validate and persist a partial update; returns the new settings.
85
+
86
+ Unknown keys are ignored. Raises ``ValueError`` on a bad engine
87
+ value so the API route can 400 instead of persisting garbage.
88
+ """
89
+ known = {f.name for f in fields(AppSettings)}
90
+ for key, value in changes.items():
91
+ if key not in known:
92
+ continue
93
+ if not isinstance(value, str):
94
+ raise ValueError(f"{key} must be a string")
95
+ value = value.strip()
96
+ if key == "transcription_engine" and value not in _VALID_ENGINES:
97
+ raise ValueError("transcription_engine must be 'cloud' or 'local'")
98
+ setattr(self.settings, key, value)
99
+ self._save()
100
+ return self.settings
101
+
102
+ def apply_to_config(self, config) -> None:
103
+ """Overlay settings onto the live ``CiaoConfig`` object.
104
+
105
+ The first call snapshots the env-backed values so a later call
106
+ with a cleared (empty) setting restores the original default
107
+ instead of keeping a stale override.
108
+ """
109
+ if self._defaults is None:
110
+ self._defaults = {
111
+ "title_model_override": config.title_model_override,
112
+ "insights_model": config.insights_model,
113
+
114
+ "transcription_engine": config.transcription_engine,
115
+ "transcription_local_model": config.transcription_local_model,
116
+ "critique_models": config.critique_models,
117
+ "ollama_haiku_model": config.ollama.haiku_model,
118
+ "ollama_sonnet_model": config.ollama.sonnet_model,
119
+ "ollama_opus_model": config.ollama.opus_model,
120
+ "openrouter_haiku_model": config.openrouter.haiku_model,
121
+ "openrouter_sonnet_model": config.openrouter.sonnet_model,
122
+ "openrouter_opus_model": config.openrouter.opus_model,
123
+ }
124
+ d = self._defaults
125
+ s = self.settings
126
+ config.title_model_override = s.title_model or d["title_model_override"]
127
+ config.insights_model = s.insights_model or d["insights_model"]
128
+
129
+ config.transcription_engine = (
130
+ s.transcription_engine or d["transcription_engine"]
131
+ )
132
+ config.transcription_local_model = (
133
+ s.transcription_local_model or d["transcription_local_model"]
134
+ )
135
+ config.critique_models = s.critique_models or d["critique_models"]
136
+ config.ollama = replace(
137
+ config.ollama,
138
+ haiku_model=s.ollama_haiku_model or d["ollama_haiku_model"],
139
+ sonnet_model=s.ollama_sonnet_model or d["ollama_sonnet_model"],
140
+ opus_model=s.ollama_opus_model or d["ollama_opus_model"],
141
+ )
142
+ config.openrouter = replace(
143
+ config.openrouter,
144
+ haiku_model=s.openrouter_haiku_model or d["openrouter_haiku_model"],
145
+ sonnet_model=s.openrouter_sonnet_model or d["openrouter_sonnet_model"],
146
+ opus_model=s.openrouter_opus_model or d["openrouter_opus_model"],
147
+ )
@@ -0,0 +1,105 @@
1
+ """Reclaim disk by deleting SDK session JSONL blobs for already-archived chats.
2
+
3
+ Scans ``memory-vault/Logs/Chats/**/*.md`` for session UUIDs embedded in the
4
+ filename, then removes matching ``~/.claude/projects/-<slug>/<uuid>.jsonl``
5
+ blobs. Dry-run by default; pass ``--apply`` to actually delete.
6
+
7
+ Only blobs whose UUID appears in an archived markdown filename are removed.
8
+ Anything else (including the SDK blob for live, non-archived chats) is left
9
+ alone.
10
+ """
11
+
12
+ from __future__ import annotations
13
+
14
+ import argparse
15
+ import re
16
+ import sys
17
+ from pathlib import Path
18
+
19
+ UUID_RE = re.compile(
20
+ r"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
21
+ )
22
+
23
+
24
+ def claude_projects_dir(workspace_root: Path) -> Path:
25
+ slug = str(workspace_root.resolve()).replace("/", "-").lstrip("-")
26
+ return Path.home() / ".claude" / "projects" / f"-{slug}"
27
+
28
+
29
+ def archived_session_ids(vault_chats_root: Path) -> set[str]:
30
+ ids: set[str] = set()
31
+ if not vault_chats_root.exists():
32
+ return ids
33
+ for md in vault_chats_root.rglob("*.md"):
34
+ m = UUID_RE.search(md.name)
35
+ if m:
36
+ ids.add(m.group(0))
37
+ return ids
38
+
39
+
40
+ def main(argv: list[str] | None = None) -> int:
41
+ parser = argparse.ArgumentParser(description=__doc__)
42
+ parser.add_argument(
43
+ "--workspace",
44
+ type=Path,
45
+ default=Path("."),
46
+ help="Workspace root (defaults to current directory)",
47
+ )
48
+ parser.add_argument(
49
+ "--apply",
50
+ action="store_true",
51
+ help="Actually delete blobs (default is dry-run)",
52
+ )
53
+ args = parser.parse_args(argv)
54
+
55
+ workspace = args.workspace.resolve()
56
+ vault_chats = workspace / "memory-vault" / "Logs" / "Chats"
57
+ projects_dir = claude_projects_dir(workspace)
58
+
59
+ print(f"Workspace: {workspace}")
60
+ print(f"Vault chats: {vault_chats}")
61
+ print(f"SDK projects: {projects_dir}")
62
+ print()
63
+
64
+ archived = archived_session_ids(vault_chats)
65
+ print(f"Archived session IDs found: {len(archived)}")
66
+
67
+ if not projects_dir.exists():
68
+ print(f"No SDK projects dir at {projects_dir}; nothing to do.")
69
+ return 0
70
+
71
+ blobs = sorted(projects_dir.glob("*.jsonl"))
72
+ print(f"SDK blobs present: {len(blobs)}")
73
+
74
+ targets = [b for b in blobs if b.stem in archived]
75
+ total_bytes = sum(b.stat().st_size for b in targets if b.exists())
76
+ print(
77
+ f"Matches (archived + blob): {len(targets)} "
78
+ f"({total_bytes / 1_048_576:.2f} MB)"
79
+ )
80
+ print()
81
+
82
+ if not targets:
83
+ print("Nothing to delete.")
84
+ return 0
85
+
86
+ for blob in targets:
87
+ size_mb = blob.stat().st_size / 1_048_576
88
+ action = "DELETE" if args.apply else "would delete"
89
+ print(f" {action}: {blob.name} ({size_mb:.2f} MB)")
90
+ if args.apply:
91
+ try:
92
+ blob.unlink()
93
+ except OSError as exc:
94
+ print(f" ! failed: {exc}")
95
+
96
+ print()
97
+ if args.apply:
98
+ print(f"Done. Reclaimed {total_bytes / 1_048_576:.2f} MB.")
99
+ else:
100
+ print("Dry-run. Re-run with --apply to delete.")
101
+ return 0
102
+
103
+
104
+ if __name__ == "__main__":
105
+ sys.exit(main())