bareagent-cli 0.1.0__py3-none-any.whl

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 (121) hide show
  1. bareagent/__init__.py +10 -0
  2. bareagent/concurrency/__init__.py +6 -0
  3. bareagent/concurrency/background.py +97 -0
  4. bareagent/concurrency/notification.py +61 -0
  5. bareagent/concurrency/scheduler.py +136 -0
  6. bareagent/config.toml +299 -0
  7. bareagent/core/__init__.py +1 -0
  8. bareagent/core/config_paths.py +49 -0
  9. bareagent/core/context.py +127 -0
  10. bareagent/core/fileutil.py +103 -0
  11. bareagent/core/goal.py +214 -0
  12. bareagent/core/handlers/__init__.py +1 -0
  13. bareagent/core/handlers/bash.py +79 -0
  14. bareagent/core/handlers/file_edit.py +47 -0
  15. bareagent/core/handlers/file_read.py +270 -0
  16. bareagent/core/handlers/file_write.py +34 -0
  17. bareagent/core/handlers/glob_search.py +30 -0
  18. bareagent/core/handlers/goal.py +60 -0
  19. bareagent/core/handlers/grep_search.py +52 -0
  20. bareagent/core/handlers/memory.py +71 -0
  21. bareagent/core/handlers/plan.py +106 -0
  22. bareagent/core/handlers/search_utils.py +77 -0
  23. bareagent/core/handlers/skill.py +87 -0
  24. bareagent/core/handlers/subagent_send.py +70 -0
  25. bareagent/core/handlers/web_fetch.py +126 -0
  26. bareagent/core/handlers/web_search.py +165 -0
  27. bareagent/core/handlers/workflow.py +190 -0
  28. bareagent/core/loop.py +535 -0
  29. bareagent/core/retry.py +131 -0
  30. bareagent/core/sandbox.py +27 -0
  31. bareagent/core/schema.py +21 -0
  32. bareagent/core/tools.py +779 -0
  33. bareagent/core/workflow.py +517 -0
  34. bareagent/core/workflow_registry.py +219 -0
  35. bareagent/debug/__init__.py +0 -0
  36. bareagent/debug/interaction_log.py +263 -0
  37. bareagent/debug/viewer.html +1750 -0
  38. bareagent/debug/web_viewer.py +157 -0
  39. bareagent/hooks/__init__.py +32 -0
  40. bareagent/hooks/config.py +118 -0
  41. bareagent/hooks/engine.py +197 -0
  42. bareagent/hooks/errors.py +14 -0
  43. bareagent/hooks/events.py +22 -0
  44. bareagent/lsp/__init__.py +63 -0
  45. bareagent/lsp/config.py +134 -0
  46. bareagent/lsp/coord.py +118 -0
  47. bareagent/lsp/diagnostics.py +240 -0
  48. bareagent/lsp/errors.py +24 -0
  49. bareagent/lsp/manager.py +866 -0
  50. bareagent/lsp/tools.py +629 -0
  51. bareagent/lsp/workspace_edit.py +305 -0
  52. bareagent/main.py +4205 -0
  53. bareagent/mcp/__init__.py +69 -0
  54. bareagent/mcp/_sse.py +69 -0
  55. bareagent/mcp/client.py +341 -0
  56. bareagent/mcp/config.py +169 -0
  57. bareagent/mcp/errors.py +32 -0
  58. bareagent/mcp/manager.py +318 -0
  59. bareagent/mcp/protocol.py +187 -0
  60. bareagent/mcp/registry.py +557 -0
  61. bareagent/mcp/transport/__init__.py +15 -0
  62. bareagent/mcp/transport/base.py +149 -0
  63. bareagent/mcp/transport/http_legacy.py +192 -0
  64. bareagent/mcp/transport/http_streamable.py +217 -0
  65. bareagent/mcp/transport/stdio.py +202 -0
  66. bareagent/memory/__init__.py +1 -0
  67. bareagent/memory/compact.py +203 -0
  68. bareagent/memory/conversation_io.py +226 -0
  69. bareagent/memory/embedding.py +194 -0
  70. bareagent/memory/persistent.py +515 -0
  71. bareagent/memory/token_counter.py +67 -0
  72. bareagent/memory/token_tracker.py +262 -0
  73. bareagent/memory/transcript.py +100 -0
  74. bareagent/permission/__init__.py +1 -0
  75. bareagent/permission/guard.py +329 -0
  76. bareagent/permission/rules.py +19 -0
  77. bareagent/planning/__init__.py +19 -0
  78. bareagent/planning/agent_types.py +169 -0
  79. bareagent/planning/skill_gen.py +141 -0
  80. bareagent/planning/skill_store.py +173 -0
  81. bareagent/planning/skills.py +146 -0
  82. bareagent/planning/subagent.py +355 -0
  83. bareagent/planning/subagent_registry.py +77 -0
  84. bareagent/planning/tasks.py +348 -0
  85. bareagent/planning/todo.py +153 -0
  86. bareagent/planning/worktree.py +122 -0
  87. bareagent/provider/__init__.py +1 -0
  88. bareagent/provider/anthropic.py +348 -0
  89. bareagent/provider/base.py +136 -0
  90. bareagent/provider/factory.py +130 -0
  91. bareagent/provider/openai.py +881 -0
  92. bareagent/provider/presets.py +72 -0
  93. bareagent/provider/setup.py +356 -0
  94. bareagent/skills/.gitkeep +1 -0
  95. bareagent/skills/code-review/SKILL.md +68 -0
  96. bareagent/skills/git/SKILL.md +68 -0
  97. bareagent/skills/test/SKILL.md +70 -0
  98. bareagent/team/__init__.py +17 -0
  99. bareagent/team/autonomous.py +193 -0
  100. bareagent/team/mailbox.py +239 -0
  101. bareagent/team/manager.py +155 -0
  102. bareagent/team/protocols.py +129 -0
  103. bareagent/tracing/__init__.py +12 -0
  104. bareagent/tracing/_api.py +92 -0
  105. bareagent/tracing/_proxy.py +60 -0
  106. bareagent/tracing/composite.py +115 -0
  107. bareagent/tracing/json_file.py +115 -0
  108. bareagent/tracing/langfuse.py +139 -0
  109. bareagent/tracing/otel.py +107 -0
  110. bareagent/tracing/setup.py +85 -0
  111. bareagent/ui/__init__.py +24 -0
  112. bareagent/ui/console.py +167 -0
  113. bareagent/ui/prompt.py +78 -0
  114. bareagent/ui/protocol.py +24 -0
  115. bareagent/ui/stream.py +66 -0
  116. bareagent/ui/theme.py +240 -0
  117. bareagent_cli-0.1.0.dist-info/METADATA +331 -0
  118. bareagent_cli-0.1.0.dist-info/RECORD +121 -0
  119. bareagent_cli-0.1.0.dist-info/WHEEL +4 -0
  120. bareagent_cli-0.1.0.dist-info/entry_points.txt +2 -0
  121. bareagent_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,121 @@
1
+ bareagent/__init__.py,sha256=dcPIsuRZL0VnIkWqQe-YV8BclRQfk8hQ7hM2X_01ZXU,281
2
+ bareagent/config.toml,sha256=71fYEJE0wkCyz3qbNEwvCycek0tWy64JUbEzxLEak-U,17883
3
+ bareagent/main.py,sha256=oaZNPzqlhLrBdjVYW5eprkxor3OfR9KZ00stawjUCMQ,161415
4
+ bareagent/concurrency/__init__.py,sha256=qFPH8y7gIE5UObKHBMyKmQr6GP9TL19CUWua_kfB94M,230
5
+ bareagent/concurrency/background.py,sha256=eRVY0jOqEICXajYWLYGQQ33dyB4zFFWB6emi0zV6TJw,3443
6
+ bareagent/concurrency/notification.py,sha256=ksW_xSN2hr3qv8de1qRgzJelouCSXv8etvN3b550bIw,2049
7
+ bareagent/concurrency/scheduler.py,sha256=WcAHdX9d-UugGNNJkn01RSde63I72eFKEDc-ZdR-IMM,5231
8
+ bareagent/core/__init__.py,sha256=qX0hX0X90FkHpNxV9D8nSZC_fzYMRyNq7uEdbTfHPlE,45
9
+ bareagent/core/config_paths.py,sha256=b4AbwBWu1tTiSpEMz5qed8jgC3ir5uoaFfozJ0HfzL0,1933
10
+ bareagent/core/context.py,sha256=lnCXde7LTx1z0uUnB3M2LaDutUsqAJEAQ1Pge6jynOg,4272
11
+ bareagent/core/fileutil.py,sha256=Gh-WPZaYm5wJC-dhWDs6dkiQGX5Se5zuyWv7w___5ik,3448
12
+ bareagent/core/goal.py,sha256=z3BOHg3RkUrFJ6jpU_wakKHbqppTSMDIkDeBVoUHLEI,8693
13
+ bareagent/core/loop.py,sha256=lyBFZrMn0LbvCvgd99w-qNUXOFd424rCpFmTWHGawlo,18053
14
+ bareagent/core/retry.py,sha256=HVXcDLWnmpu9rVbYjWjFw3nFANQPkdZpp3xtYFENIKg,4610
15
+ bareagent/core/sandbox.py,sha256=U0dxALVuwAlZuqnIrql2TO9PEonUKq40WcV2I6WAqBc,1119
16
+ bareagent/core/schema.py,sha256=bhxnooIIpP0N79IQzGrpi-VnvIHEOZCDYGxOrf1dxhE,423
17
+ bareagent/core/tools.py,sha256=D6QeJTT3MnhFe9cfE_m7tQVuIgBLrOdD4eKp4AoNLU0,27185
18
+ bareagent/core/workflow.py,sha256=-n4n_L_uVce1QnnY1pacCv2dahL59qVf679ie-rE2-o,21047
19
+ bareagent/core/workflow_registry.py,sha256=MPqOKHCMtMPJLCWb2_3Mw0GaaVzV6cSVdJONb8ZAeNE,8034
20
+ bareagent/core/handlers/__init__.py,sha256=3MYIVRk4Eb7YnnnD_5AZCIQvrQV3bX0dEyiEexyPpBQ,35
21
+ bareagent/core/handlers/bash.py,sha256=v_ICt32HQ3pgDpNDW0G5x7mWcWLz6xKx5FNG9A6A210,2592
22
+ bareagent/core/handlers/file_edit.py,sha256=vqlpoBOKjfHHUbmMiGaklJyWOPryrOcUxCgyU0z1ZhU,1787
23
+ bareagent/core/handlers/file_read.py,sha256=2bvn4EOFdxxUWU6_ymQHPMR2utWU7ZAJTcfQNsgfG5U,9594
24
+ bareagent/core/handlers/file_write.py,sha256=dpBalxm5EJ_6dcwrcSswQI6O-HF9eDLn9XmHWAh5IVA,1237
25
+ bareagent/core/handlers/glob_search.py,sha256=azaOXNiONZegKr86pE-b2HAw441R9I_ObYbUp7w3Szc,989
26
+ bareagent/core/handlers/goal.py,sha256=rdJK_pWMIEl-kcr5FLEGzfkcptzg7RcYwCAlcANsltU,2263
27
+ bareagent/core/handlers/grep_search.py,sha256=gS7h5sUit8xJgxvJbwnbdZcHZSmfI5A1nUZpAHgKeOA,1539
28
+ bareagent/core/handlers/memory.py,sha256=PB8JaRHDROjBbyoiwBthQrNYsqNKggWopF0Q0_ZZvak,2611
29
+ bareagent/core/handlers/plan.py,sha256=3GNqnnxjTmYeoJ1p__QdiAPlDWBPAJswBv__LV2CrmY,4153
30
+ bareagent/core/handlers/search_utils.py,sha256=f6XGIbImQTT66jNPNw1M05k5ZIR-Qwj30XC1UQyjRfc,2440
31
+ bareagent/core/handlers/skill.py,sha256=4XfcK-YZLSqXbjHLk_KcGRCPEqY4ZzGJiLM5OqtJTa8,3225
32
+ bareagent/core/handlers/subagent_send.py,sha256=KboLLA-oB1wcPYs6cdFIeWk0n7CtqYv9fDGLT8jzbKA,2706
33
+ bareagent/core/handlers/web_fetch.py,sha256=slaWdEwavgE2EY6vENg9MlYocEbUsM6QcxkKnkZOt1E,3877
34
+ bareagent/core/handlers/web_search.py,sha256=BDro80LqtKLKBJMdc635MTO2Buw_MzEQaMbBFUFvNEA,5932
35
+ bareagent/core/handlers/workflow.py,sha256=-9-BFP1DX_2U1K2e4E0X70TSt791IpbymblkhfgMThw,8142
36
+ bareagent/debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ bareagent/debug/interaction_log.py,sha256=fLPpAC19o5Id_5FZPRHIVNXJjKt765xmbLC_s8WwOg4,8951
38
+ bareagent/debug/viewer.html,sha256=QYrMRU8u7AcXw7m7EW2XLIOIm9TpQ1S3ppruSOvhi4M,58160
39
+ bareagent/debug/web_viewer.py,sha256=YzMTAuPEMMlLKghFAvxHf-Ln75IxEYnw7BaQt3t79rI,5285
40
+ bareagent/hooks/__init__.py,sha256=3ReYEP4QDbRaH6SdMEZCiYs4-oyKi4hrUzIxQfloo7c,1145
41
+ bareagent/hooks/config.py,sha256=FwDSMid6STldefAn87F5DE75GyC7n0Bb_XZeb1FjbM4,4244
42
+ bareagent/hooks/engine.py,sha256=L8-1DR0yqqsJeG7QyvPAzuXBgN08dXmC8x3BGc98NxM,6758
43
+ bareagent/hooks/errors.py,sha256=YOTF-cIMewGXOUXhgDT9chOT7N-Me_1j66hWWwVKuTs,538
44
+ bareagent/hooks/events.py,sha256=Xm6GKfb4tJzOdyOmwEAB_FgU3tnH7ZAnOIkKBsdpMkU,688
45
+ bareagent/lsp/__init__.py,sha256=3iNaLjEccwRxtGi-2XpjZQg2xSa3xA_gOqR0yaqaJ0E,1973
46
+ bareagent/lsp/config.py,sha256=pxVZ53gtPnRXns26xEklpagZe7A2zLO14K6-fH_jpZo,5151
47
+ bareagent/lsp/coord.py,sha256=CInidvWpFgcc7cyWNvJJ_zyLfzqKQABaOMY5s5heYu8,4358
48
+ bareagent/lsp/diagnostics.py,sha256=DMg5XGQpaOwdMNgJNin2hmakGZdynOBTHjYVWST4KSI,8779
49
+ bareagent/lsp/errors.py,sha256=bFcvaJCOGD6fkIsBQqosudvBe__RtvTOeKshoLr9IF8,839
50
+ bareagent/lsp/manager.py,sha256=AbmVQU9vnV9VAvs8uNz3MLtUOHo-3gzBUeKlMHRqiyQ,37228
51
+ bareagent/lsp/tools.py,sha256=K-wYc8GBvjkjKETTYfjMssUzgM7MS5D7yX8DZLR-VcA,22507
52
+ bareagent/lsp/workspace_edit.py,sha256=fCVExrse_aZmkvwqBxrDu0QhmOiMsPpxBuVsQZnOYKk,12169
53
+ bareagent/mcp/__init__.py,sha256=xHbRRih7C6HTvYRoxKqMRmQuD_VPoao4zHTiojcSIqM,1614
54
+ bareagent/mcp/_sse.py,sha256=uZLP0E4pzyQtiFJmhdO829802eo1xyphxQoW3HT2oNo,2007
55
+ bareagent/mcp/client.py,sha256=b-mm_cGTfiTU0YUZMGOnV7bIdaKSjc_YXrCQsBe1F4I,13832
56
+ bareagent/mcp/config.py,sha256=QiklZFK5ImJXv1hlMt3TSksBGOsC_vlqh3mSYO4evZU,6117
57
+ bareagent/mcp/errors.py,sha256=716BLH7skCqepdQfwdAfOg1iXhDyHjhMNbMEM7l_VIY,1130
58
+ bareagent/mcp/manager.py,sha256=afgvHH9HxdbhoaXA8ck1TYohMCuplHzUXo0Aj9sNTKA,12785
59
+ bareagent/mcp/protocol.py,sha256=Koq3J8FQCD69fegLTLx-XBf80bhWToD9WwBx2K_ndq4,5997
60
+ bareagent/mcp/registry.py,sha256=h0cdDfMfFEk_ZBvheXJpjAN4TqritLBza0Z-tBTZwxo,22448
61
+ bareagent/mcp/transport/__init__.py,sha256=9gyHh_IUMKTb6XM4znWwvC7bZBnhfPknNnI7pPRAfS0,383
62
+ bareagent/mcp/transport/base.py,sha256=nZZKRJ_Mg9bdEZND7SeEZOEtXQ1Ol7WPwb9OQiPO_z4,5963
63
+ bareagent/mcp/transport/http_legacy.py,sha256=8V7tBqaWrd1w2uSXkK7D-RoSBoFvGggKIQpAwNvCsAU,7033
64
+ bareagent/mcp/transport/http_streamable.py,sha256=MECBXSktrWVJM9XNOovsWe-5m83z3bOfRdtn8i2Oa9Q,8592
65
+ bareagent/mcp/transport/stdio.py,sha256=VmrPzZCbMOxndHR4dO5nfgdb-aXq0zJLJh_bwQLypaI,7459
66
+ bareagent/memory/__init__.py,sha256=JckdmB_318rOCps5fItC0wO_zObyeEeNYwwhFENYbmE,36
67
+ bareagent/memory/compact.py,sha256=sZrABTZ3A4i8pbERttk_cXQyEo-IIJXWPm1dLb3lsuc,6918
68
+ bareagent/memory/conversation_io.py,sha256=gY8fCwqVgTQepwZLN4DO18P97StuzKbG3O4hpOBjku4,8088
69
+ bareagent/memory/embedding.py,sha256=MARFUaxC6hoW_eQsnZfZZMydVF0mNNkxHcEc2Xkjeb0,6709
70
+ bareagent/memory/persistent.py,sha256=5E5OH2062q2D0QzILOYXhIf1BR9UkH2-x6XBvcXDkY0,20850
71
+ bareagent/memory/token_counter.py,sha256=EGsVjMkace2aXPzEOoINHpscA7DFBdDKCWbHzl0Au3w,2011
72
+ bareagent/memory/token_tracker.py,sha256=hTHxjEgW34iFOH3ni2CSJEgcZ9Z9WMojWcqg3fS4Osw,10665
73
+ bareagent/memory/transcript.py,sha256=vX6GwhxamNhPYNCnJJrnVwA7a99FJbppoGbMLX7_1i8,3558
74
+ bareagent/permission/__init__.py,sha256=ukhvHCtzXkUmvnjID4jxBRyIaqjevhL9EZfx9pEztJ8,48
75
+ bareagent/permission/guard.py,sha256=ZOwD7N27LeQ8ddJ2EaOVC-vtFM_IKGxdk0YfTiNlHYw,12604
76
+ bareagent/permission/rules.py,sha256=4YTXGuHZEPonAXR6zArd7umNlqz_i7rsM10xKeaG4dM,601
77
+ bareagent/planning/__init__.py,sha256=rapKVxj-gHOGjRItu912p2KDn8PXPFEVn3RmHoAzsrY,541
78
+ bareagent/planning/agent_types.py,sha256=xU3rVNQCEYU3_5XYHT9q00Gp_WyNedZZpisGqgJFw-Y,6626
79
+ bareagent/planning/skill_gen.py,sha256=vx0PpA8sRYwr7XGz16QEadnOdkmPxByGjjju369ttMs,5965
80
+ bareagent/planning/skill_store.py,sha256=-9HaOEpZO_544W9o77ytSWGgMP_lhjXkITPnFUlHuP8,6670
81
+ bareagent/planning/skills.py,sha256=iBx1qGJaVeU0vQeBfgQGz-CQLHfSGQVamMDUsz5LEmg,4948
82
+ bareagent/planning/subagent.py,sha256=XOoUZvv_eS7QIAVH2ZIlmH4zp9aiRJpJ3UO9t3NmeaM,12936
83
+ bareagent/planning/subagent_registry.py,sha256=uBJqRZWn37X3HM5m8eDQrjIGNcWmSPcbLHZM4cZg8AU,2845
84
+ bareagent/planning/tasks.py,sha256=-pWA2ED6qJe4zh5S38WPk8rzEVy8ybYtf4ZqK5pD1wM,11165
85
+ bareagent/planning/todo.py,sha256=6gxPXtfkQ-534W-uJTJKo9Va8JhbNu03-IMKydxhTtY,4968
86
+ bareagent/planning/worktree.py,sha256=WgBwhPTYhjV75rFo-kAOYSZrPc1fXhI5YjULrdjPP3A,4389
87
+ bareagent/provider/__init__.py,sha256=uCk2ZPpw1KwRekEcR2h_Pq8oR2U7GxM2sEVnf0xp738,43
88
+ bareagent/provider/anthropic.py,sha256=LIjYO9ApDUrzMwKgzk2dTw4oN5vKit8JYd6HhfTFzKU,14001
89
+ bareagent/provider/base.py,sha256=wufRZcPrKLnVZ7IF20YfUmuQO7XyUnFly_JFuWpe430,4374
90
+ bareagent/provider/factory.py,sha256=Y_3DMTCc3ncLDeDnU9MG2B8VPp7DjCJafOl3gnuDcMs,4759
91
+ bareagent/provider/openai.py,sha256=cmjp3Zyp9BTymS-vdrx2XHaYw8WXZtWc5wIinFyOSZQ,34737
92
+ bareagent/provider/presets.py,sha256=4R8gZqzO4m6okdkNrz3_jqEViUJuBytbGH07JRFdP40,2387
93
+ bareagent/provider/setup.py,sha256=IUbxGU5SnGB3mRLwWBn6b9XcsjCgfs4e10KZLHC0IKI,11866
94
+ bareagent/skills/.gitkeep,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
95
+ bareagent/skills/code-review/SKILL.md,sha256=icZ59cYJ5ayWK6bJrBBhSEvwE2Rl7XLCXpooP0_9HgA,2210
96
+ bareagent/skills/git/SKILL.md,sha256=If4T5TcXAVJNkUcKxqH4xuodKxJCs1UrbHfXqvkmwO0,2168
97
+ bareagent/skills/test/SKILL.md,sha256=6ZREjLGRiZwjC-7u9N0EzRjI0mzuRR_bqwVGS1f0YuA,2071
98
+ bareagent/team/__init__.py,sha256=-IBLxktpfkanI4JDgk-oCn06O5wTASahza7GocsVptg,459
99
+ bareagent/team/autonomous.py,sha256=fzAKoy0ITYylzzJjTraDCpxHPifjAEUybwL_LUCVibg,7606
100
+ bareagent/team/mailbox.py,sha256=82Oe_Dwh1zeVv8RqEjXrtYCOsdutE-uO7PZfReSEGKA,9148
101
+ bareagent/team/manager.py,sha256=qDKW4qwaSXz0o4eSdmEEEK4eZqJm9CDIjr9hmhSSfMI,5367
102
+ bareagent/team/protocols.py,sha256=bNGzUdGpE2xSD4BiayPBMrV3YhaS6Na7qjcDB5Yg_B0,3989
103
+ bareagent/tracing/__init__.py,sha256=YRdHIiPn0v-ATqZgkqO_IVn50mzJZyNK8Inry2cfMDo,273
104
+ bareagent/tracing/_api.py,sha256=eC_fVCisOaTACdQ2D52hE3_rk2R_2tjJL90QrSqXyKw,2281
105
+ bareagent/tracing/_proxy.py,sha256=lAfI24Dxk0srXjmpUz2nxcpTMheWZj7jv5qOGFK3aRM,1657
106
+ bareagent/tracing/composite.py,sha256=YQ2Q5wgihFdTBJK_ScmsJgN1VQkkY4QsMuRoazx6x0I,3287
107
+ bareagent/tracing/json_file.py,sha256=RfuxMm9bXAZ5B0Zir-BwTPmlxf0InHKTjaJxGtmbtyE,3616
108
+ bareagent/tracing/langfuse.py,sha256=dxkoZCfxrX54aT4tb-XUvcn8goTId2qMrfhaAXNFdaE,4076
109
+ bareagent/tracing/otel.py,sha256=ZS4gZX2MFWlGOmqakhGqVyGkegIHN0Lf41YgoijZ6cQ,3314
110
+ bareagent/tracing/setup.py,sha256=JDvpjprRKv7ILVSMVVSAWkfXrPH2B28k24yhakZFKxM,2643
111
+ bareagent/ui/__init__.py,sha256=bk2mFliKRyuLB3jBUxBxFa8SJuZ2CQYWglR3KnmKqLg,523
112
+ bareagent/ui/console.py,sha256=K1r7AfpX9vn5zH0WD1j6e_j_SgKmJ-Z1HKG-7yWeWyQ,5324
113
+ bareagent/ui/prompt.py,sha256=kH_MraeKleCrCcqeY1zu3uVUKEezfPHevoRb-2xbKig,2416
114
+ bareagent/ui/protocol.py,sha256=G2fGnHW4Pn0Ch8QWSYYMaKPGS3ipmHv8vkRVlBBgnPM,744
115
+ bareagent/ui/stream.py,sha256=rgmUMVmCz66q3c18V4Iaj309goxU2wJXWREqpeOvm18,1873
116
+ bareagent/ui/theme.py,sha256=2OvuXKDy-nHSgTgFIm7BDtQWX7I7nxf0736pHkNHWzo,6180
117
+ bareagent_cli-0.1.0.dist-info/METADATA,sha256=bAU9AIf3gS4cyTeODLY9xzWXroArq0PYokt-UUb6Qnw,12148
118
+ bareagent_cli-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
119
+ bareagent_cli-0.1.0.dist-info/entry_points.txt,sha256=J26FfNipB8S2TwCSYZR_9K8ETujOUiPwhVY8AjP2wZg,50
120
+ bareagent_cli-0.1.0.dist-info/licenses/LICENSE,sha256=k_prZ_7bT4B9UR1b5xwuxHsIrjCgwzeICzk1MUtAqro,1062
121
+ bareagent_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ bareagent = bareagent.main:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ducat
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.