arka-agent 0.1.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 (797) hide show
  1. arka_agent-0.1.0/LICENSE +339 -0
  2. arka_agent-0.1.0/PKG-INFO +229 -0
  3. arka_agent-0.1.0/README.md +148 -0
  4. arka_agent-0.1.0/pyproject.toml +144 -0
  5. arka_agent-0.1.0/setup.cfg +4 -0
  6. arka_agent-0.1.0/src/arka/__init__.py +3 -0
  7. arka_agent-0.1.0/src/arka/__main__.py +6 -0
  8. arka_agent-0.1.0/src/arka/_bootstrap.py +183 -0
  9. arka_agent-0.1.0/src/arka/agent/__init__.py +1 -0
  10. arka_agent-0.1.0/src/arka/agent/app_check.py +52 -0
  11. arka_agent-0.1.0/src/arka/agent/ascii_art.py +315 -0
  12. arka_agent-0.1.0/src/arka/agent/assemblyai_stt.py +210 -0
  13. arka_agent-0.1.0/src/arka/agent/astronomy.py +182 -0
  14. arka_agent-0.1.0/src/arka/agent/automation.py +118 -0
  15. arka_agent-0.1.0/src/arka/agent/background.py +221 -0
  16. arka_agent-0.1.0/src/arka/agent/background_remove.py +28 -0
  17. arka_agent-0.1.0/src/arka/agent/batch.py +244 -0
  18. arka_agent-0.1.0/src/arka/agent/blocks.py +128 -0
  19. arka_agent-0.1.0/src/arka/agent/bookmarks.py +387 -0
  20. arka_agent-0.1.0/src/arka/agent/browser_check.py +48 -0
  21. arka_agent-0.1.0/src/arka/agent/change_guards.py +16 -0
  22. arka_agent-0.1.0/src/arka/agent/chat.py +2396 -0
  23. arka_agent-0.1.0/src/arka/agent/code_convert.py +41 -0
  24. arka_agent-0.1.0/src/arka/agent/coding_tui.py +1396 -0
  25. arka_agent-0.1.0/src/arka/agent/coding_workflows.py +49 -0
  26. arka_agent-0.1.0/src/arka/agent/competitions.py +361 -0
  27. arka_agent-0.1.0/src/arka/agent/cool_build.py +45 -0
  28. arka_agent-0.1.0/src/arka/agent/core.py +1667 -0
  29. arka_agent-0.1.0/src/arka/agent/council.py +327 -0
  30. arka_agent-0.1.0/src/arka/agent/daily_brief.py +737 -0
  31. arka_agent-0.1.0/src/arka/agent/data_ask.py +1011 -0
  32. arka_agent-0.1.0/src/arka/agent/data_collect.py +153 -0
  33. arka_agent-0.1.0/src/arka/agent/deploy.py +60 -0
  34. arka_agent-0.1.0/src/arka/agent/design_flow.py +51 -0
  35. arka_agent-0.1.0/src/arka/agent/design_from_screenshot.py +157 -0
  36. arka_agent-0.1.0/src/arka/agent/design_memory.py +52 -0
  37. arka_agent-0.1.0/src/arka/agent/design_resources.py +22 -0
  38. arka_agent-0.1.0/src/arka/agent/dev_tools.py +664 -0
  39. arka_agent-0.1.0/src/arka/agent/dev_workflows.py +59 -0
  40. arka_agent-0.1.0/src/arka/agent/env_bridge.py +41 -0
  41. arka_agent-0.1.0/src/arka/agent/env_setup.py +49 -0
  42. arka_agent-0.1.0/src/arka/agent/exercise_dataset.py +280 -0
  43. arka_agent-0.1.0/src/arka/agent/fact_check.py +329 -0
  44. arka_agent-0.1.0/src/arka/agent/flow.py +336 -0
  45. arka_agent-0.1.0/src/arka/agent/free_credits.py +240 -0
  46. arka_agent-0.1.0/src/arka/agent/frontend_loop.py +271 -0
  47. arka_agent-0.1.0/src/arka/agent/game_control.py +318 -0
  48. arka_agent-0.1.0/src/arka/agent/game_studio.py +54 -0
  49. arka_agent-0.1.0/src/arka/agent/generate_data.py +998 -0
  50. arka_agent-0.1.0/src/arka/agent/geo_seo.py +29 -0
  51. arka_agent-0.1.0/src/arka/agent/git_changes.py +122 -0
  52. arka_agent-0.1.0/src/arka/agent/github_actions.py +55 -0
  53. arka_agent-0.1.0/src/arka/agent/github_dataset.py +466 -0
  54. arka_agent-0.1.0/src/arka/agent/github_repo.py +609 -0
  55. arka_agent-0.1.0/src/arka/agent/goal.py +1158 -0
  56. arka_agent-0.1.0/src/arka/agent/graphify.py +40 -0
  57. arka_agent-0.1.0/src/arka/agent/hackathon.py +58 -0
  58. arka_agent-0.1.0/src/arka/agent/hallmark.py +41 -0
  59. arka_agent-0.1.0/src/arka/agent/ideate.py +19 -0
  60. arka_agent-0.1.0/src/arka/agent/integration_setup.py +267 -0
  61. arka_agent-0.1.0/src/arka/agent/interesting_fact.py +56 -0
  62. arka_agent-0.1.0/src/arka/agent/iterate.py +53 -0
  63. arka_agent-0.1.0/src/arka/agent/judge_demo.py +32 -0
  64. arka_agent-0.1.0/src/arka/agent/lint_project.py +147 -0
  65. arka_agent-0.1.0/src/arka/agent/local_image_gen.py +137 -0
  66. arka_agent-0.1.0/src/arka/agent/loop_engineering.py +73 -0
  67. arka_agent-0.1.0/src/arka/agent/media_quiz.py +40 -0
  68. arka_agent-0.1.0/src/arka/agent/metallurgy.py +153 -0
  69. arka_agent-0.1.0/src/arka/agent/model_to_image.py +117 -0
  70. arka_agent-0.1.0/src/arka/agent/move_file.py +63 -0
  71. arka_agent-0.1.0/src/arka/agent/multi_llm.py +39 -0
  72. arka_agent-0.1.0/src/arka/agent/optimize.py +42 -0
  73. arka_agent-0.1.0/src/arka/agent/parallax_2d.py +43 -0
  74. arka_agent-0.1.0/src/arka/agent/parallel.py +40 -0
  75. arka_agent-0.1.0/src/arka/agent/pdf_interactive.py +35 -0
  76. arka_agent-0.1.0/src/arka/agent/personas/__init__.py +12 -0
  77. arka_agent-0.1.0/src/arka/agent/personas/base.py +320 -0
  78. arka_agent-0.1.0/src/arka/agent/personas/cli.py +296 -0
  79. arka_agent-0.1.0/src/arka/agent/personas/elon.py +129 -0
  80. arka_agent-0.1.0/src/arka/agent/personas/format.py +148 -0
  81. arka_agent-0.1.0/src/arka/agent/personas/io.py +270 -0
  82. arka_agent-0.1.0/src/arka/agent/personas/schema.py +111 -0
  83. arka_agent-0.1.0/src/arka/agent/personas/templates/blank.yaml +17 -0
  84. arka_agent-0.1.0/src/arka/agent/personas/templates/elon.yaml +27 -0
  85. arka_agent-0.1.0/src/arka/agent/personas/templates/feynman.yaml +19 -0
  86. arka_agent-0.1.0/src/arka/agent/personas/templates/socrates.yaml +19 -0
  87. arka_agent-0.1.0/src/arka/agent/platform_howto.py +62 -0
  88. arka_agent-0.1.0/src/arka/agent/play.py +151 -0
  89. arka_agent-0.1.0/src/arka/agent/post_scaffold.py +211 -0
  90. arka_agent-0.1.0/src/arka/agent/pr_check.py +558 -0
  91. arka_agent-0.1.0/src/arka/agent/price_sources.py +1274 -0
  92. arka_agent-0.1.0/src/arka/agent/product_sources.py +153 -0
  93. arka_agent-0.1.0/src/arka/agent/profession_plugins.py +485 -0
  94. arka_agent-0.1.0/src/arka/agent/profession_projects.py +311 -0
  95. arka_agent-0.1.0/src/arka/agent/profession_sources.py +580 -0
  96. arka_agent-0.1.0/src/arka/agent/professions.py +758 -0
  97. arka_agent-0.1.0/src/arka/agent/prompt_optimize.py +76 -0
  98. arka_agent-0.1.0/src/arka/agent/quiz_practice.py +477 -0
  99. arka_agent-0.1.0/src/arka/agent/race.py +58 -0
  100. arka_agent-0.1.0/src/arka/agent/repo_context.py +586 -0
  101. arka_agent-0.1.0/src/arka/agent/repo_graph.py +94 -0
  102. arka_agent-0.1.0/src/arka/agent/repo_health.py +333 -0
  103. arka_agent-0.1.0/src/arka/agent/repo_map.py +297 -0
  104. arka_agent-0.1.0/src/arka/agent/repo_reverse.py +23 -0
  105. arka_agent-0.1.0/src/arka/agent/research_math.py +34 -0
  106. arka_agent-0.1.0/src/arka/agent/rig_3d.py +43 -0
  107. arka_agent-0.1.0/src/arka/agent/route_learn.py +163 -0
  108. arka_agent-0.1.0/src/arka/agent/sandbox.py +135 -0
  109. arka_agent-0.1.0/src/arka/agent/scaffold_3d.py +319 -0
  110. arka_agent-0.1.0/src/arka/agent/scene_3d.py +137 -0
  111. arka_agent-0.1.0/src/arka/agent/script_understanding.py +56 -0
  112. arka_agent-0.1.0/src/arka/agent/search_setup.py +75 -0
  113. arka_agent-0.1.0/src/arka/agent/self_improve.py +1192 -0
  114. arka_agent-0.1.0/src/arka/agent/semantic_alert.py +32 -0
  115. arka_agent-0.1.0/src/arka/agent/skill_hints.py +33 -0
  116. arka_agent-0.1.0/src/arka/agent/skills.py +706 -0
  117. arka_agent-0.1.0/src/arka/agent/society.py +103 -0
  118. arka_agent-0.1.0/src/arka/agent/space_visual.py +26 -0
  119. arka_agent-0.1.0/src/arka/agent/spline_guide.py +65 -0
  120. arka_agent-0.1.0/src/arka/agent/structure.py +42 -0
  121. arka_agent-0.1.0/src/arka/agent/stt_install.py +155 -0
  122. arka_agent-0.1.0/src/arka/agent/stt_map.py +245 -0
  123. arka_agent-0.1.0/src/arka/agent/super_replica.py +48 -0
  124. arka_agent-0.1.0/src/arka/agent/surgical_edit.py +57 -0
  125. arka_agent-0.1.0/src/arka/agent/survival_lang.py +386 -0
  126. arka_agent-0.1.0/src/arka/agent/symbolic_image.py +78 -0
  127. arka_agent-0.1.0/src/arka/agent/talents.py +541 -0
  128. arka_agent-0.1.0/src/arka/agent/teammate_review.py +86 -0
  129. arka_agent-0.1.0/src/arka/agent/text_edit.py +56 -0
  130. arka_agent-0.1.0/src/arka/agent/text_to_3d.py +79 -0
  131. arka_agent-0.1.0/src/arka/agent/three_d.py +12 -0
  132. arka_agent-0.1.0/src/arka/agent/three_js_model.py +242 -0
  133. arka_agent-0.1.0/src/arka/agent/ui_copy_audit.py +50 -0
  134. arka_agent-0.1.0/src/arka/agent/ultra_fast.py +89 -0
  135. arka_agent-0.1.0/src/arka/agent/url_app_analyzer.py +55 -0
  136. arka_agent-0.1.0/src/arka/agent/usage_dashboard.py +28 -0
  137. arka_agent-0.1.0/src/arka/agent/video_evidence.py +176 -0
  138. arka_agent-0.1.0/src/arka/agent/view_data.py +528 -0
  139. arka_agent-0.1.0/src/arka/agent/vision_evidence.py +54 -0
  140. arka_agent-0.1.0/src/arka/agent/visual_diagnose.py +40 -0
  141. arka_agent-0.1.0/src/arka/agent/voice.py +467 -0
  142. arka_agent-0.1.0/src/arka/agent/wake.py +1130 -0
  143. arka_agent-0.1.0/src/arka/agent/web_answer.py +64 -0
  144. arka_agent-0.1.0/src/arka/agent/web_screenshot.py +95 -0
  145. arka_agent-0.1.0/src/arka/agent/word_counter.py +32 -0
  146. arka_agent-0.1.0/src/arka/agent/workflow_templates.py +65 -0
  147. arka_agent-0.1.0/src/arka/agent/workspace.py +64 -0
  148. arka_agent-0.1.0/src/arka/aie/__init__.py +1 -0
  149. arka_agent-0.1.0/src/arka/aie/_common.py +54 -0
  150. arka_agent-0.1.0/src/arka/aie/auto_click.py +73 -0
  151. arka_agent-0.1.0/src/arka/aie/auto_copy_selection.py +79 -0
  152. arka_agent-0.1.0/src/arka/aie/classifier.py +76 -0
  153. arka_agent-0.1.0/src/arka/aie/cli.py +396 -0
  154. arka_agent-0.1.0/src/arka/aie/delete_useless.py +53 -0
  155. arka_agent-0.1.0/src/arka/aie/zip_open.py +55 -0
  156. arka_agent-0.1.0/src/arka/bundled/_shim_path.py +21 -0
  157. arka_agent-0.1.0/src/arka/bundled/aie/__init__.py +1 -0
  158. arka_agent-0.1.0/src/arka/bundled/aie/_common.py +54 -0
  159. arka_agent-0.1.0/src/arka/bundled/aie/auto_click.py +73 -0
  160. arka_agent-0.1.0/src/arka/bundled/aie/auto_copy_selection.py +79 -0
  161. arka_agent-0.1.0/src/arka/bundled/aie/classifier.py +76 -0
  162. arka_agent-0.1.0/src/arka/bundled/aie/cli.py +396 -0
  163. arka_agent-0.1.0/src/arka/bundled/aie/delete_useless.py +53 -0
  164. arka_agent-0.1.0/src/arka/bundled/aie/zip_open.py +55 -0
  165. arka_agent-0.1.0/src/arka/bundled/arka_agent.py +15 -0
  166. arka_agent-0.1.0/src/arka/bundled/arka_agent_hub.py +15 -0
  167. arka_agent-0.1.0/src/arka/bundled/arka_aie.py +15 -0
  168. arka_agent-0.1.0/src/arka/bundled/arka_ascii_art.py +15 -0
  169. arka_agent-0.1.0/src/arka/bundled/arka_assemblyai_stt.py +15 -0
  170. arka_agent-0.1.0/src/arka/bundled/arka_astronomy.py +15 -0
  171. arka_agent-0.1.0/src/arka/bundled/arka_batch_summarize.py +15 -0
  172. arka_agent-0.1.0/src/arka/bundled/arka_benchmark.py +15 -0
  173. arka_agent-0.1.0/src/arka/bundled/arka_bookmarks.py +15 -0
  174. arka_agent-0.1.0/src/arka/bundled/arka_boot.sh +137 -0
  175. arka_agent-0.1.0/src/arka/bundled/arka_chart.py +15 -0
  176. arka_agent-0.1.0/src/arka/bundled/arka_chat.py +15 -0
  177. arka_agent-0.1.0/src/arka/bundled/arka_chat_requirements.txt +10 -0
  178. arka_agent-0.1.0/src/arka/bundled/arka_clipboard_history.py +15 -0
  179. arka_agent-0.1.0/src/arka/bundled/arka_competition_funding.py +15 -0
  180. arka_agent-0.1.0/src/arka/bundled/arka_competitions.py +15 -0
  181. arka_agent-0.1.0/src/arka/bundled/arka_compose_3d.py +15 -0
  182. arka_agent-0.1.0/src/arka/bundled/arka_compose_slides.py +15 -0
  183. arka_agent-0.1.0/src/arka/bundled/arka_compose_video.py +15 -0
  184. arka_agent-0.1.0/src/arka/bundled/arka_compute.py +15 -0
  185. arka_agent-0.1.0/src/arka/bundled/arka_config.py +15 -0
  186. arka_agent-0.1.0/src/arka/bundled/arka_convert_media.py +15 -0
  187. arka_agent-0.1.0/src/arka/bundled/arka_council.py +15 -0
  188. arka_agent-0.1.0/src/arka/bundled/arka_currency.py +15 -0
  189. arka_agent-0.1.0/src/arka/bundled/arka_daily_brief.py +15 -0
  190. arka_agent-0.1.0/src/arka/bundled/arka_data_ask.py +15 -0
  191. arka_agent-0.1.0/src/arka/bundled/arka_describe_image.py +15 -0
  192. arka_agent-0.1.0/src/arka/bundled/arka_describe_video.py +15 -0
  193. arka_agent-0.1.0/src/arka/bundled/arka_disk.py +15 -0
  194. arka_agent-0.1.0/src/arka/bundled/arka_docker_status.py +15 -0
  195. arka_agent-0.1.0/src/arka/bundled/arka_drawing.py +15 -0
  196. arka_agent-0.1.0/src/arka/bundled/arka_elon.py +15 -0
  197. arka_agent-0.1.0/src/arka/bundled/arka_fact_check.py +15 -0
  198. arka_agent-0.1.0/src/arka/bundled/arka_flow.py +15 -0
  199. arka_agent-0.1.0/src/arka/bundled/arka_free_credits.py +15 -0
  200. arka_agent-0.1.0/src/arka/bundled/arka_fugu.py +15 -0
  201. arka_agent-0.1.0/src/arka/bundled/arka_gemini.py +15 -0
  202. arka_agent-0.1.0/src/arka/bundled/arka_generate_data.py +15 -0
  203. arka_agent-0.1.0/src/arka/bundled/arka_generate_image.py +15 -0
  204. arka_agent-0.1.0/src/arka/bundled/arka_generate_thumbnail.py +15 -0
  205. arka_agent-0.1.0/src/arka/bundled/arka_generate_video.py +15 -0
  206. arka_agent-0.1.0/src/arka/bundled/arka_github_repo.py +15 -0
  207. arka_agent-0.1.0/src/arka/bundled/arka_google.py +15 -0
  208. arka_agent-0.1.0/src/arka/bundled/arka_harvard_ark.py +15 -0
  209. arka_agent-0.1.0/src/arka/bundled/arka_heartbeat.py +15 -0
  210. arka_agent-0.1.0/src/arka/bundled/arka_hf_bridge.py +15 -0
  211. arka_agent-0.1.0/src/arka/bundled/arka_jsonkit.py +15 -0
  212. arka_agent-0.1.0/src/arka/bundled/arka_kaggle.py +15 -0
  213. arka_agent-0.1.0/src/arka/bundled/arka_kalshi.py +15 -0
  214. arka_agent-0.1.0/src/arka/bundled/arka_llm.py +15 -0
  215. arka_agent-0.1.0/src/arka/bundled/arka_llm_fallback.py +15 -0
  216. arka_agent-0.1.0/src/arka/bundled/arka_llm_servers.py +15 -0
  217. arka_agent-0.1.0/src/arka/bundled/arka_mac_mic.py +15 -0
  218. arka_agent-0.1.0/src/arka/bundled/arka_macro_events.py +15 -0
  219. arka_agent-0.1.0/src/arka/bundled/arka_market_emotion.py +15 -0
  220. arka_agent-0.1.0/src/arka/bundled/arka_mcp.py +15 -0
  221. arka_agent-0.1.0/src/arka/bundled/arka_mcp_server.py +15 -0
  222. arka_agent-0.1.0/src/arka/bundled/arka_media.py +15 -0
  223. arka_agent-0.1.0/src/arka/bundled/arka_media_qa.py +15 -0
  224. arka_agent-0.1.0/src/arka/bundled/arka_memory.py +15 -0
  225. arka_agent-0.1.0/src/arka/bundled/arka_memory_detect.py +15 -0
  226. arka_agent-0.1.0/src/arka/bundled/arka_message_sessions.py +15 -0
  227. arka_agent-0.1.0/src/arka/bundled/arka_metallurgy.py +15 -0
  228. arka_agent-0.1.0/src/arka/bundled/arka_model_advisor.py +15 -0
  229. arka_agent-0.1.0/src/arka/bundled/arka_open_url.py +15 -0
  230. arka_agent-0.1.0/src/arka/bundled/arka_password_vault.py +15 -0
  231. arka_agent-0.1.0/src/arka/bundled/arka_paths.py +15 -0
  232. arka_agent-0.1.0/src/arka/bundled/arka_pdf_rag.py +15 -0
  233. arka_agent-0.1.0/src/arka/bundled/arka_pdf_tools.py +15 -0
  234. arka_agent-0.1.0/src/arka/bundled/arka_persona.py +15 -0
  235. arka_agent-0.1.0/src/arka/bundled/arka_personalize.py +15 -0
  236. arka_agent-0.1.0/src/arka/bundled/arka_phone.py +15 -0
  237. arka_agent-0.1.0/src/arka/bundled/arka_platform.py +15 -0
  238. arka_agent-0.1.0/src/arka/bundled/arka_pr_check.py +15 -0
  239. arka_agent-0.1.0/src/arka/bundled/arka_predictions.py +15 -0
  240. arka_agent-0.1.0/src/arka/bundled/arka_profession_plugins.py +15 -0
  241. arka_agent-0.1.0/src/arka/bundled/arka_profession_projects.py +15 -0
  242. arka_agent-0.1.0/src/arka/bundled/arka_professions.py +15 -0
  243. arka_agent-0.1.0/src/arka/bundled/arka_progress.py +15 -0
  244. arka_agent-0.1.0/src/arka/bundled/arka_qr.py +15 -0
  245. arka_agent-0.1.0/src/arka/bundled/arka_quiz_practice.py +15 -0
  246. arka_agent-0.1.0/src/arka/bundled/arka_remind.py +15 -0
  247. arka_agent-0.1.0/src/arka/bundled/arka_remote_server.py +15 -0
  248. arka_agent-0.1.0/src/arka/bundled/arka_repo_context.py +15 -0
  249. arka_agent-0.1.0/src/arka/bundled/arka_repo_health.py +15 -0
  250. arka_agent-0.1.0/src/arka/bundled/arka_repo_map.py +15 -0
  251. arka_agent-0.1.0/src/arka/bundled/arka_route_learn.py +15 -0
  252. arka_agent-0.1.0/src/arka/bundled/arka_routines.py +15 -0
  253. arka_agent-0.1.0/src/arka/bundled/arka_screen.py +15 -0
  254. arka_agent-0.1.0/src/arka/bundled/arka_security.py +15 -0
  255. arka_agent-0.1.0/src/arka/bundled/arka_self_improve.py +15 -0
  256. arka_agent-0.1.0/src/arka/bundled/arka_session_memory.py +15 -0
  257. arka_agent-0.1.0/src/arka/bundled/arka_signoz.py +15 -0
  258. arka_agent-0.1.0/src/arka/bundled/arka_skills.py +15 -0
  259. arka_agent-0.1.0/src/arka/bundled/arka_sports.py +15 -0
  260. arka_agent-0.1.0/src/arka/bundled/arka_spotify.py +15 -0
  261. arka_agent-0.1.0/src/arka/bundled/arka_stock_bridge.py +15 -0
  262. arka_agent-0.1.0/src/arka/bundled/arka_stock_context_worker.py +15 -0
  263. arka_agent-0.1.0/src/arka/bundled/arka_stock_fundamentals.py +15 -0
  264. arka_agent-0.1.0/src/arka/bundled/arka_stock_ui.py +15 -0
  265. arka_agent-0.1.0/src/arka/bundled/arka_stt_install.py +15 -0
  266. arka_agent-0.1.0/src/arka/bundled/arka_stt_map.py +15 -0
  267. arka_agent-0.1.0/src/arka/bundled/arka_subagent.py +15 -0
  268. arka_agent-0.1.0/src/arka/bundled/arka_summarize.py +15 -0
  269. arka_agent-0.1.0/src/arka/bundled/arka_supermemory.py +15 -0
  270. arka_agent-0.1.0/src/arka/bundled/arka_survival_lang.py +15 -0
  271. arka_agent-0.1.0/src/arka/bundled/arka_talents.py +15 -0
  272. arka_agent-0.1.0/src/arka/bundled/arka_teams.py +15 -0
  273. arka_agent-0.1.0/src/arka/bundled/arka_text_to_3d.py +8 -0
  274. arka_agent-0.1.0/src/arka/bundled/arka_textkit.py +15 -0
  275. arka_agent-0.1.0/src/arka/bundled/arka_three_d.py +15 -0
  276. arka_agent-0.1.0/src/arka/bundled/arka_timekit.py +15 -0
  277. arka_agent-0.1.0/src/arka/bundled/arka_timezone_convert.py +15 -0
  278. arka_agent-0.1.0/src/arka/bundled/arka_turboquant_install.py +15 -0
  279. arka_agent-0.1.0/src/arka/bundled/arka_turboquant_rag.py +15 -0
  280. arka_agent-0.1.0/src/arka/bundled/arka_turboquant_requirements.txt +11 -0
  281. arka_agent-0.1.0/src/arka/bundled/arka_unified_memory.py +15 -0
  282. arka_agent-0.1.0/src/arka/bundled/arka_urlkit.py +15 -0
  283. arka_agent-0.1.0/src/arka/bundled/arka_usage.py +15 -0
  284. arka_agent-0.1.0/src/arka/bundled/arka_view_data.py +15 -0
  285. arka_agent-0.1.0/src/arka/bundled/arka_voice.py +15 -0
  286. arka_agent-0.1.0/src/arka/bundled/arka_voice_hf.sh +172 -0
  287. arka_agent-0.1.0/src/arka/bundled/arka_wake.py +15 -0
  288. arka_agent-0.1.0/src/arka/bundled/arka_webhook.py +15 -0
  289. arka_agent-0.1.0/src/arka/bundled/arka_whatsapp_inbox.py +15 -0
  290. arka_agent-0.1.0/src/arka/bundled/arka_x_post.py +15 -0
  291. arka_agent-0.1.0/src/arka/bundled/arka_youtube.py +15 -0
  292. arka_agent-0.1.0/src/arka/bundled/arka_youtube_bulk.py +15 -0
  293. arka_agent-0.1.0/src/arka/bundled/arka_youtube_research.py +15 -0
  294. arka_agent-0.1.0/src/arka/bundled/arka_ytdlp_progress.py +15 -0
  295. arka_agent-0.1.0/src/arka/bundled/config.fish +20314 -0
  296. arka_agent-0.1.0/src/arka/bundled/edge_speak.py +15 -0
  297. arka_agent-0.1.0/src/arka/bundled/indic_tts.py +15 -0
  298. arka_agent-0.1.0/src/arka/bundled/privategpt/settings.override.yaml +5 -0
  299. arka_agent-0.1.0/src/arka/bundled/sarvam_speak.py +15 -0
  300. arka_agent-0.1.0/src/arka/bundled/sarvam_stt.py +15 -0
  301. arka_agent-0.1.0/src/arka/bundled/spotify_dom.py +15 -0
  302. arka_agent-0.1.0/src/arka/bundled/termux-boot-arka.sh +16 -0
  303. arka_agent-0.1.0/src/arka/bundled/web_answer.py +15 -0
  304. arka_agent-0.1.0/src/arka/charts/__init__.py +1 -0
  305. arka_agent-0.1.0/src/arka/charts/data.py +1842 -0
  306. arka_agent-0.1.0/src/arka/charts/defaults.py +217 -0
  307. arka_agent-0.1.0/src/arka/charts/plot.py +2010 -0
  308. arka_agent-0.1.0/src/arka/cli.py +1270 -0
  309. arka_agent-0.1.0/src/arka/core/__init__.py +1 -0
  310. arka_agent-0.1.0/src/arka/core/auto_refetch.py +143 -0
  311. arka_agent-0.1.0/src/arka/core/code_project.py +452 -0
  312. arka_agent-0.1.0/src/arka/core/compute.py +147 -0
  313. arka_agent-0.1.0/src/arka/core/config_backup.py +544 -0
  314. arka_agent-0.1.0/src/arka/core/default_config.py +300 -0
  315. arka_agent-0.1.0/src/arka/core/disk.py +413 -0
  316. arka_agent-0.1.0/src/arka/core/jsonkit.py +209 -0
  317. arka_agent-0.1.0/src/arka/core/memory_detect.py +468 -0
  318. arka_agent-0.1.0/src/arka/core/memory_scope.py +492 -0
  319. arka_agent-0.1.0/src/arka/core/mode.py +372 -0
  320. arka_agent-0.1.0/src/arka/core/notifications.py +23 -0
  321. arka_agent-0.1.0/src/arka/core/object_orientation.py +69 -0
  322. arka_agent-0.1.0/src/arka/core/output.py +96 -0
  323. arka_agent-0.1.0/src/arka/core/personalize.py +798 -0
  324. arka_agent-0.1.0/src/arka/core/platform.py +274 -0
  325. arka_agent-0.1.0/src/arka/core/progress.py +132 -0
  326. arka_agent-0.1.0/src/arka/core/project_rules.py +165 -0
  327. arka_agent-0.1.0/src/arka/core/security.py +425 -0
  328. arka_agent-0.1.0/src/arka/core/session_memory.py +319 -0
  329. arka_agent-0.1.0/src/arka/core/skill_settings.py +121 -0
  330. arka_agent-0.1.0/src/arka/core/skill_usage.py +36 -0
  331. arka_agent-0.1.0/src/arka/core/textkit.py +115 -0
  332. arka_agent-0.1.0/src/arka/core/timekit.py +158 -0
  333. arka_agent-0.1.0/src/arka/core/unified_memory.py +488 -0
  334. arka_agent-0.1.0/src/arka/core/urlkit.py +162 -0
  335. arka_agent-0.1.0/src/arka/core/usage.py +845 -0
  336. arka_agent-0.1.0/src/arka/dispatch.py +660 -0
  337. arka_agent-0.1.0/src/arka/documents/__init__.py +5 -0
  338. arka_agent-0.1.0/src/arka/documents/drawing.py +437 -0
  339. arka_agent-0.1.0/src/arka/env.example +695 -0
  340. arka_agent-0.1.0/src/arka/env.py +102 -0
  341. arka_agent-0.1.0/src/arka/fish/config.fish +20314 -0
  342. arka_agent-0.1.0/src/arka/fish/scripts/arka_boot.sh +137 -0
  343. arka_agent-0.1.0/src/arka/fish/scripts/arka_voice_hf.sh +172 -0
  344. arka_agent-0.1.0/src/arka/fish/scripts/termux-boot-arka.sh +16 -0
  345. arka_agent-0.1.0/src/arka/fish_bridge.py +177 -0
  346. arka_agent-0.1.0/src/arka/generate/__init__.py +1 -0
  347. arka_agent-0.1.0/src/arka/generate/image.py +389 -0
  348. arka_agent-0.1.0/src/arka/generate/video.py +268 -0
  349. arka_agent-0.1.0/src/arka/integrations/__init__.py +1 -0
  350. arka_agent-0.1.0/src/arka/integrations/agent_hub.py +1407 -0
  351. arka_agent-0.1.0/src/arka/integrations/agent_hub_cli.py +281 -0
  352. arka_agent-0.1.0/src/arka/integrations/backend_client.py +185 -0
  353. arka_agent-0.1.0/src/arka/integrations/benchmark_cli.py +138 -0
  354. arka_agent-0.1.0/src/arka/integrations/butterfish.py +129 -0
  355. arka_agent-0.1.0/src/arka/integrations/clipboard_history.py +497 -0
  356. arka_agent-0.1.0/src/arka/integrations/context7_mcp.py +341 -0
  357. arka_agent-0.1.0/src/arka/integrations/currency.py +538 -0
  358. arka_agent-0.1.0/src/arka/integrations/docker_status.py +293 -0
  359. arka_agent-0.1.0/src/arka/integrations/fugu.py +216 -0
  360. arka_agent-0.1.0/src/arka/integrations/gemini_cli.py +200 -0
  361. arka_agent-0.1.0/src/arka/integrations/google_oauth.py +456 -0
  362. arka_agent-0.1.0/src/arka/integrations/google_workspace.py +1510 -0
  363. arka_agent-0.1.0/src/arka/integrations/greeting.py +40 -0
  364. arka_agent-0.1.0/src/arka/integrations/harvard_ark.py +582 -0
  365. arka_agent-0.1.0/src/arka/integrations/heartbeat.py +294 -0
  366. arka_agent-0.1.0/src/arka/integrations/hf_bridge.py +282 -0
  367. arka_agent-0.1.0/src/arka/integrations/kaggle.py +580 -0
  368. arka_agent-0.1.0/src/arka/integrations/kalshi.py +433 -0
  369. arka_agent-0.1.0/src/arka/integrations/mac_mic.py +277 -0
  370. arka_agent-0.1.0/src/arka/integrations/macos_calendar.py +155 -0
  371. arka_agent-0.1.0/src/arka/integrations/mcp_autoconfig.py +69 -0
  372. arka_agent-0.1.0/src/arka/integrations/mcp_cli.py +379 -0
  373. arka_agent-0.1.0/src/arka/integrations/mcp_client.py +379 -0
  374. arka_agent-0.1.0/src/arka/integrations/mcp_logs.py +95 -0
  375. arka_agent-0.1.0/src/arka/integrations/mcp_manager.py +746 -0
  376. arka_agent-0.1.0/src/arka/integrations/mcp_server.py +2647 -0
  377. arka_agent-0.1.0/src/arka/integrations/memory_cli.py +59 -0
  378. arka_agent-0.1.0/src/arka/integrations/message_sessions.py +432 -0
  379. arka_agent-0.1.0/src/arka/integrations/open_url.py +368 -0
  380. arka_agent-0.1.0/src/arka/integrations/password_vault.py +304 -0
  381. arka_agent-0.1.0/src/arka/integrations/phone.py +231 -0
  382. arka_agent-0.1.0/src/arka/integrations/qr_code.py +88 -0
  383. arka_agent-0.1.0/src/arka/integrations/remind.py +666 -0
  384. arka_agent-0.1.0/src/arka/integrations/remote_server.py +1105 -0
  385. arka_agent-0.1.0/src/arka/integrations/routines.py +692 -0
  386. arka_agent-0.1.0/src/arka/integrations/signoz_mcp.py +97 -0
  387. arka_agent-0.1.0/src/arka/integrations/site_summary.py +303 -0
  388. arka_agent-0.1.0/src/arka/integrations/sports.py +399 -0
  389. arka_agent-0.1.0/src/arka/integrations/spotify.py +603 -0
  390. arka_agent-0.1.0/src/arka/integrations/spotify_dom.py +471 -0
  391. arka_agent-0.1.0/src/arka/integrations/subagent.py +438 -0
  392. arka_agent-0.1.0/src/arka/integrations/supermemory.py +783 -0
  393. arka_agent-0.1.0/src/arka/integrations/teams_cli.py +266 -0
  394. arka_agent-0.1.0/src/arka/integrations/timezone_convert.py +379 -0
  395. arka_agent-0.1.0/src/arka/integrations/webhook.py +251 -0
  396. arka_agent-0.1.0/src/arka/integrations/whatsapp_inbox.py +297 -0
  397. arka_agent-0.1.0/src/arka/integrations/x_post.py +1387 -0
  398. arka_agent-0.1.0/src/arka/llm/__init__.py +1 -0
  399. arka_agent-0.1.0/src/arka/llm/api_keys.py +238 -0
  400. arka_agent-0.1.0/src/arka/llm/backend.py +57 -0
  401. arka_agent-0.1.0/src/arka/llm/benchmarks.py +470 -0
  402. arka_agent-0.1.0/src/arka/llm/chunking.py +54 -0
  403. arka_agent-0.1.0/src/arka/llm/cli.py +764 -0
  404. arka_agent-0.1.0/src/arka/llm/edge.py +29 -0
  405. arka_agent-0.1.0/src/arka/llm/fallback.py +2339 -0
  406. arka_agent-0.1.0/src/arka/llm/free_models.py +83 -0
  407. arka_agent-0.1.0/src/arka/llm/grounding.py +55 -0
  408. arka_agent-0.1.0/src/arka/llm/guardrails.py +71 -0
  409. arka_agent-0.1.0/src/arka/llm/hybrid.py +153 -0
  410. arka_agent-0.1.0/src/arka/llm/model_advisor.py +759 -0
  411. arka_agent-0.1.0/src/arka/llm/model_host_setup.py +74 -0
  412. arka_agent-0.1.0/src/arka/llm/model_optimizer.py +63 -0
  413. arka_agent-0.1.0/src/arka/llm/prompt_compact.py +134 -0
  414. arka_agent-0.1.0/src/arka/llm/provider_select.py +571 -0
  415. arka_agent-0.1.0/src/arka/llm/providers.py +428 -0
  416. arka_agent-0.1.0/src/arka/llm/quantize.py +32 -0
  417. arka_agent-0.1.0/src/arka/llm/servers.py +620 -0
  418. arka_agent-0.1.0/src/arka/llm/skill_models.py +155 -0
  419. arka_agent-0.1.0/src/arka/llm/skill_profiles.py +188 -0
  420. arka_agent-0.1.0/src/arka/llm/speculative.py +33 -0
  421. arka_agent-0.1.0/src/arka/llm/thinking.py +27 -0
  422. arka_agent-0.1.0/src/arka/llm/train_plan.py +47 -0
  423. arka_agent-0.1.0/src/arka/media/__init__.py +1 -0
  424. arka_agent-0.1.0/src/arka/media/batch.py +321 -0
  425. arka_agent-0.1.0/src/arka/media/chart_slide.py +730 -0
  426. arka_agent-0.1.0/src/arka/media/compose_3d.py +1456 -0
  427. arka_agent-0.1.0/src/arka/media/compose_3d_backends.py +560 -0
  428. arka_agent-0.1.0/src/arka/media/compose_slides.py +2422 -0
  429. arka_agent-0.1.0/src/arka/media/compose_video.py +2295 -0
  430. arka_agent-0.1.0/src/arka/media/convert_media.py +842 -0
  431. arka_agent-0.1.0/src/arka/media/media_transform.py +92 -0
  432. arka_agent-0.1.0/src/arka/media/qa.py +69 -0
  433. arka_agent-0.1.0/src/arka/media/slide_design.py +232 -0
  434. arka_agent-0.1.0/src/arka/media/stock_photos.py +944 -0
  435. arka_agent-0.1.0/src/arka/media/summarize.py +69 -0
  436. arka_agent-0.1.0/src/arka/media/thumbnail.py +422 -0
  437. arka_agent-0.1.0/src/arka/media/transcript.py +1215 -0
  438. arka_agent-0.1.0/src/arka/media/unsplash.py +129 -0
  439. arka_agent-0.1.0/src/arka/output.py +87 -0
  440. arka_agent-0.1.0/src/arka/paths.py +293 -0
  441. arka_agent-0.1.0/src/arka/pdf/__init__.py +1 -0
  442. arka_agent-0.1.0/src/arka/pdf/privategpt/settings.override.yaml +5 -0
  443. arka_agent-0.1.0/src/arka/pdf/rag.py +1243 -0
  444. arka_agent-0.1.0/src/arka/pdf/tools.py +1385 -0
  445. arka_agent-0.1.0/src/arka/platform_info.py +89 -0
  446. arka_agent-0.1.0/src/arka/professions/examples/architect/README.md +18 -0
  447. arka_agent-0.1.0/src/arka/professions/examples/architect/profession.json +28 -0
  448. arka_agent-0.1.0/src/arka/professions/life_sciences/profession.json +47 -0
  449. arka_agent-0.1.0/src/arka/requirements/chat.txt +10 -0
  450. arka_agent-0.1.0/src/arka/requirements/observability.txt +3 -0
  451. arka_agent-0.1.0/src/arka/requirements/turboquant.txt +11 -0
  452. arka_agent-0.1.0/src/arka/router.py +922 -0
  453. arka_agent-0.1.0/src/arka/routing/__init__.py +5 -0
  454. arka_agent-0.1.0/src/arka/routing/council.py +60 -0
  455. arka_agent-0.1.0/src/arka/routing/file_size.py +40 -0
  456. arka_agent-0.1.0/src/arka/routing/interesting_fact.py +68 -0
  457. arka_agent-0.1.0/src/arka/routing/learned.py +317 -0
  458. arka_agent-0.1.0/src/arka/routing/platform_howto.py +91 -0
  459. arka_agent-0.1.0/src/arka/routing/symbolic.py +1826 -0
  460. arka_agent-0.1.0/src/arka/setup_runtime.py +128 -0
  461. arka_agent-0.1.0/src/arka/skills/astronomy/__pycache__/lib.cpython-313.pyc +0 -0
  462. arka_agent-0.1.0/src/arka/skills/astronomy/lib.py +321 -0
  463. arka_agent-0.1.0/src/arka/skills/astronomy/objects.json +266 -0
  464. arka_agent-0.1.0/src/arka/skills/astronomy/run.py +96 -0
  465. arka_agent-0.1.0/src/arka/skills/astronomy/skill.json +23 -0
  466. arka_agent-0.1.0/src/arka/skills/describe_video/run.py +4 -0
  467. arka_agent-0.1.0/src/arka/skills/describe_video/skill.json +18 -0
  468. arka_agent-0.1.0/src/arka/skills/examples/demo_echo/__pycache__/run.cpython-313.pyc +0 -0
  469. arka_agent-0.1.0/src/arka/skills/examples/demo_echo/run.py +18 -0
  470. arka_agent-0.1.0/src/arka/skills/examples/demo_echo/skill.json +24 -0
  471. arka_agent-0.1.0/src/arka/skills/exercise_dataset/skill.json +17 -0
  472. arka_agent-0.1.0/src/arka/skills/game_control/run.py +6 -0
  473. arka_agent-0.1.0/src/arka/skills/game_control/skill.json +18 -0
  474. arka_agent-0.1.0/src/arka/skills/github_dataset/skill.json +17 -0
  475. arka_agent-0.1.0/src/arka/skills/life_sciences/__pycache__/lib.cpython-313.pyc +0 -0
  476. arka_agent-0.1.0/src/arka/skills/life_sciences/__pycache__/protocol_sources.cpython-313.pyc +0 -0
  477. arka_agent-0.1.0/src/arka/skills/life_sciences/lib.py +627 -0
  478. arka_agent-0.1.0/src/arka/skills/life_sciences/marketplace.json +181 -0
  479. arka_agent-0.1.0/src/arka/skills/life_sciences/protocol_sources.py +307 -0
  480. arka_agent-0.1.0/src/arka/skills/life_sciences/protocols.json +123 -0
  481. arka_agent-0.1.0/src/arka/skills/life_sciences/run.py +58 -0
  482. arka_agent-0.1.0/src/arka/skills/life_sciences/skill.json +22 -0
  483. arka_agent-0.1.0/src/arka/skills/local_image_gen/run.py +4 -0
  484. arka_agent-0.1.0/src/arka/skills/local_image_gen/skill.json +10 -0
  485. arka_agent-0.1.0/src/arka/skills/metallurgy/__pycache__/lib.cpython-313.pyc +0 -0
  486. arka_agent-0.1.0/src/arka/skills/metallurgy/alloys.json +126 -0
  487. arka_agent-0.1.0/src/arka/skills/metallurgy/heat_treatments.json +139 -0
  488. arka_agent-0.1.0/src/arka/skills/metallurgy/lib.py +271 -0
  489. arka_agent-0.1.0/src/arka/skills/metallurgy/metallurgy_sources.py +37 -0
  490. arka_agent-0.1.0/src/arka/skills/metallurgy/run.py +88 -0
  491. arka_agent-0.1.0/src/arka/skills/metallurgy/skill.json +21 -0
  492. arka_agent-0.1.0/src/arka/skills/parallax_2d/run.py +4 -0
  493. arka_agent-0.1.0/src/arka/skills/parallax_2d/skill.json +10 -0
  494. arka_agent-0.1.0/src/arka/skills/rig_3d/run.py +4 -0
  495. arka_agent-0.1.0/src/arka/skills/rig_3d/skill.json +10 -0
  496. arka_agent-0.1.0/src/arka/skills/scene_3d/run.py +4 -0
  497. arka_agent-0.1.0/src/arka/skills/scene_3d/skill.json +10 -0
  498. arka_agent-0.1.0/src/arka/skills/semantic_alert/run.py +4 -0
  499. arka_agent-0.1.0/src/arka/skills/semantic_alert/skill.json +10 -0
  500. arka_agent-0.1.0/src/arka/skills/symbolic_image/run.py +4 -0
  501. arka_agent-0.1.0/src/arka/skills/symbolic_image/skill.json +10 -0
  502. arka_agent-0.1.0/src/arka/skills/text_to_3d/run.py +3 -0
  503. arka_agent-0.1.0/src/arka/skills/text_to_3d/skill.json +15 -0
  504. arka_agent-0.1.0/src/arka/skills/three_d/__pycache__/lib.cpython-313.pyc +0 -0
  505. arka_agent-0.1.0/src/arka/skills/three_d/lib.py +307 -0
  506. arka_agent-0.1.0/src/arka/skills/three_d/run.py +216 -0
  507. arka_agent-0.1.0/src/arka/skills/three_d/skill.json +25 -0
  508. arka_agent-0.1.0/src/arka/skills/video_evidence/skill.json +19 -0
  509. arka_agent-0.1.0/src/arka/skills/visual_diagnose/run.py +4 -0
  510. arka_agent-0.1.0/src/arka/skills/visual_diagnose/skill.json +10 -0
  511. arka_agent-0.1.0/src/arka/skills/word_counter/run.py +4 -0
  512. arka_agent-0.1.0/src/arka/skills/word_counter/skill.json +10 -0
  513. arka_agent-0.1.0/src/arka/skills.py +76 -0
  514. arka_agent-0.1.0/src/arka/stock/__init__.py +1 -0
  515. arka_agent-0.1.0/src/arka/stock/analyzer.py +29 -0
  516. arka_agent-0.1.0/src/arka/stock/bridge.py +200 -0
  517. arka_agent-0.1.0/src/arka/stock/competition_funding.py +590 -0
  518. arka_agent-0.1.0/src/arka/stock/context_worker.py +102 -0
  519. arka_agent-0.1.0/src/arka/stock/emotion.py +511 -0
  520. arka_agent-0.1.0/src/arka/stock/fundamentals.py +388 -0
  521. arka_agent-0.1.0/src/arka/stock/macro_events.py +532 -0
  522. arka_agent-0.1.0/src/arka/stock/predictions.py +1002 -0
  523. arka_agent-0.1.0/src/arka/stock/turboquant_install.py +190 -0
  524. arka_agent-0.1.0/src/arka/stock/turboquant_rag.py +677 -0
  525. arka_agent-0.1.0/src/arka/stock/ui.py +179 -0
  526. arka_agent-0.1.0/src/arka/teams/__init__.py +19 -0
  527. arka_agent-0.1.0/src/arka/teams/doctor.py +187 -0
  528. arka_agent-0.1.0/src/arka/teams/executor.py +710 -0
  529. arka_agent-0.1.0/src/arka/teams/io.py +252 -0
  530. arka_agent-0.1.0/src/arka/teams/mcp_context.py +95 -0
  531. arka_agent-0.1.0/src/arka/teams/resolve.py +104 -0
  532. arka_agent-0.1.0/src/arka/teams/schema.py +282 -0
  533. arka_agent-0.1.0/src/arka/teams/templates/team-clawbox-edge.yaml +19 -0
  534. arka_agent-0.1.0/src/arka/teams/templates/team-code-review.yaml +16 -0
  535. arka_agent-0.1.0/src/arka/teams/templates/team-research.yaml +22 -0
  536. arka_agent-0.1.0/src/arka/teams/templates/workflow-brainstorm.yaml +22 -0
  537. arka_agent-0.1.0/src/arka/teams/templates/workflow-code-review.yaml +16 -0
  538. arka_agent-0.1.0/src/arka/teams/templates/workflow-review-and-ship.yaml +16 -0
  539. arka_agent-0.1.0/src/arka/telemetry/__init__.py +41 -0
  540. arka_agent-0.1.0/src/arka/telemetry/_otlp.py +218 -0
  541. arka_agent-0.1.0/src/arka/telemetry/codebase_connectors.py +74 -0
  542. arka_agent-0.1.0/src/arka/telemetry/llm_obs.py +178 -0
  543. arka_agent-0.1.0/src/arka/telemetry/logs.py +162 -0
  544. arka_agent-0.1.0/src/arka/telemetry/mcp_obs.py +112 -0
  545. arka_agent-0.1.0/src/arka/telemetry/metrics.py +275 -0
  546. arka_agent-0.1.0/src/arka/telemetry/observability_doctor.py +60 -0
  547. arka_agent-0.1.0/src/arka/telemetry/signoz_alerts.py +191 -0
  548. arka_agent-0.1.0/src/arka/telemetry/signoz_cli.py +575 -0
  549. arka_agent-0.1.0/src/arka/telemetry/signoz_cursor_setup.py +92 -0
  550. arka_agent-0.1.0/src/arka/telemetry/signoz_demo.py +577 -0
  551. arka_agent-0.1.0/src/arka/telemetry/signoz_setup.py +409 -0
  552. arka_agent-0.1.0/src/arka/telemetry/supermemory_obs.py +117 -0
  553. arka_agent-0.1.0/src/arka/telemetry/tracing.py +490 -0
  554. arka_agent-0.1.0/src/arka/vision/__init__.py +5 -0
  555. arka_agent-0.1.0/src/arka/vision/chart_visual.py +351 -0
  556. arka_agent-0.1.0/src/arka/vision/describe.py +1479 -0
  557. arka_agent-0.1.0/src/arka/vision/ocr.py +393 -0
  558. arka_agent-0.1.0/src/arka/vision/screen.py +310 -0
  559. arka_agent-0.1.0/src/arka/vision/video.py +409 -0
  560. arka_agent-0.1.0/src/arka/voice/__init__.py +1 -0
  561. arka_agent-0.1.0/src/arka/voice/edge_speak.py +385 -0
  562. arka_agent-0.1.0/src/arka/voice/indic_tts.py +406 -0
  563. arka_agent-0.1.0/src/arka/voice/sarvam_speak.py +138 -0
  564. arka_agent-0.1.0/src/arka/voice/sarvam_stt.py +129 -0
  565. arka_agent-0.1.0/src/arka/youtube/__init__.py +1 -0
  566. arka_agent-0.1.0/src/arka/youtube/bulk.py +507 -0
  567. arka_agent-0.1.0/src/arka/youtube/research.py +502 -0
  568. arka_agent-0.1.0/src/arka/youtube/transcript.py +877 -0
  569. arka_agent-0.1.0/src/arka/youtube/ytdlp_progress.py +278 -0
  570. arka_agent-0.1.0/src/arka_agent.egg-info/PKG-INFO +229 -0
  571. arka_agent-0.1.0/src/arka_agent.egg-info/SOURCES.txt +795 -0
  572. arka_agent-0.1.0/src/arka_agent.egg-info/dependency_links.txt +1 -0
  573. arka_agent-0.1.0/src/arka_agent.egg-info/entry_points.txt +2 -0
  574. arka_agent-0.1.0/src/arka_agent.egg-info/requires.txt +71 -0
  575. arka_agent-0.1.0/src/arka_agent.egg-info/top_level.txt +1 -0
  576. arka_agent-0.1.0/tests/test_agent_hub.py +469 -0
  577. arka_agent-0.1.0/tests/test_app_check.py +11 -0
  578. arka_agent-0.1.0/tests/test_ascii_art.py +92 -0
  579. arka_agent-0.1.0/tests/test_astronomy.py +78 -0
  580. arka_agent-0.1.0/tests/test_auto_refetch.py +60 -0
  581. arka_agent-0.1.0/tests/test_automation.py +18 -0
  582. arka_agent-0.1.0/tests/test_backend_client.py +127 -0
  583. arka_agent-0.1.0/tests/test_background_agents_cli.py +76 -0
  584. arka_agent-0.1.0/tests/test_background_remove.py +14 -0
  585. arka_agent-0.1.0/tests/test_batch.py +42 -0
  586. arka_agent-0.1.0/tests/test_benchmarks.py +130 -0
  587. arka_agent-0.1.0/tests/test_blocks.py +33 -0
  588. arka_agent-0.1.0/tests/test_bookmarks.py +86 -0
  589. arka_agent-0.1.0/tests/test_browser_check.py +4 -0
  590. arka_agent-0.1.0/tests/test_bundled_sync.py +13 -0
  591. arka_agent-0.1.0/tests/test_calendar_payload.py +42 -0
  592. arka_agent-0.1.0/tests/test_change_guards.py +14 -0
  593. arka_agent-0.1.0/tests/test_chart_fetch.py +978 -0
  594. arka_agent-0.1.0/tests/test_cli_setup_index.py +49 -0
  595. arka_agent-0.1.0/tests/test_cli_smoke.py +435 -0
  596. arka_agent-0.1.0/tests/test_clipboard_history.py +130 -0
  597. arka_agent-0.1.0/tests/test_code_project.py +220 -0
  598. arka_agent-0.1.0/tests/test_coding_summary.py +15 -0
  599. arka_agent-0.1.0/tests/test_coding_tui.py +868 -0
  600. arka_agent-0.1.0/tests/test_competitions.py +80 -0
  601. arka_agent-0.1.0/tests/test_compose_3d.py +171 -0
  602. arka_agent-0.1.0/tests/test_compose_3d_backends.py +205 -0
  603. arka_agent-0.1.0/tests/test_compose_slides.py +652 -0
  604. arka_agent-0.1.0/tests/test_compose_video_captions.py +162 -0
  605. arka_agent-0.1.0/tests/test_config_backup.py +155 -0
  606. arka_agent-0.1.0/tests/test_config_payload.py +20 -0
  607. arka_agent-0.1.0/tests/test_context7_mcp.py +228 -0
  608. arka_agent-0.1.0/tests/test_convert_media.py +139 -0
  609. arka_agent-0.1.0/tests/test_cool_build.py +11 -0
  610. arka_agent-0.1.0/tests/test_council.py +209 -0
  611. arka_agent-0.1.0/tests/test_currency_convert.py +385 -0
  612. arka_agent-0.1.0/tests/test_currency_payload.py +16 -0
  613. arka_agent-0.1.0/tests/test_daily_brief.py +553 -0
  614. arka_agent-0.1.0/tests/test_data_ask.py +143 -0
  615. arka_agent-0.1.0/tests/test_data_collect.py +67 -0
  616. arka_agent-0.1.0/tests/test_debug_traces.py +124 -0
  617. arka_agent-0.1.0/tests/test_default_config.py +80 -0
  618. arka_agent-0.1.0/tests/test_deploy.py +24 -0
  619. arka_agent-0.1.0/tests/test_describe_image_ocr_output.py +63 -0
  620. arka_agent-0.1.0/tests/test_describe_image_person.py +99 -0
  621. arka_agent-0.1.0/tests/test_describe_image_resize.py +125 -0
  622. arka_agent-0.1.0/tests/test_describe_screen.py +150 -0
  623. arka_agent-0.1.0/tests/test_describe_video.py +152 -0
  624. arka_agent-0.1.0/tests/test_design_flow.py +6 -0
  625. arka_agent-0.1.0/tests/test_design_from_screenshot.py +46 -0
  626. arka_agent-0.1.0/tests/test_design_memory.py +9 -0
  627. arka_agent-0.1.0/tests/test_dev_security.py +17 -0
  628. arka_agent-0.1.0/tests/test_dev_tools.py +128 -0
  629. arka_agent-0.1.0/tests/test_disk_payload.py +22 -0
  630. arka_agent-0.1.0/tests/test_docker_status.py +57 -0
  631. arka_agent-0.1.0/tests/test_docs_reliability.py +23 -0
  632. arka_agent-0.1.0/tests/test_elon_persona.py +74 -0
  633. arka_agent-0.1.0/tests/test_env_setup.py +11 -0
  634. arka_agent-0.1.0/tests/test_exercise_dataset.py +84 -0
  635. arka_agent-0.1.0/tests/test_fact_check.py +100 -0
  636. arka_agent-0.1.0/tests/test_flow.py +162 -0
  637. arka_agent-0.1.0/tests/test_flow_protocol_sources.py +171 -0
  638. arka_agent-0.1.0/tests/test_free_credits.py +86 -0
  639. arka_agent-0.1.0/tests/test_free_models.py +39 -0
  640. arka_agent-0.1.0/tests/test_frontend_loop.py +73 -0
  641. arka_agent-0.1.0/tests/test_fugu.py +159 -0
  642. arka_agent-0.1.0/tests/test_game_control.py +235 -0
  643. arka_agent-0.1.0/tests/test_gemini_cli.py +62 -0
  644. arka_agent-0.1.0/tests/test_generate_data.py +188 -0
  645. arka_agent-0.1.0/tests/test_geo_seo.py +6 -0
  646. arka_agent-0.1.0/tests/test_git_changes.py +70 -0
  647. arka_agent-0.1.0/tests/test_github_actions.py +13 -0
  648. arka_agent-0.1.0/tests/test_github_dataset.py +112 -0
  649. arka_agent-0.1.0/tests/test_github_payload.py +17 -0
  650. arka_agent-0.1.0/tests/test_github_repo.py +175 -0
  651. arka_agent-0.1.0/tests/test_gmail_draft.py +193 -0
  652. arka_agent-0.1.0/tests/test_goal_agent.py +537 -0
  653. arka_agent-0.1.0/tests/test_greeting.py +30 -0
  654. arka_agent-0.1.0/tests/test_hackathon.py +14 -0
  655. arka_agent-0.1.0/tests/test_hallmark.py +12 -0
  656. arka_agent-0.1.0/tests/test_harvard_ark.py +159 -0
  657. arka_agent-0.1.0/tests/test_heartbeat_routing.py +38 -0
  658. arka_agent-0.1.0/tests/test_hermes_features.py +204 -0
  659. arka_agent-0.1.0/tests/test_hybrid_models.py +33 -0
  660. arka_agent-0.1.0/tests/test_ideate.py +5 -0
  661. arka_agent-0.1.0/tests/test_install_app_platform.py +159 -0
  662. arka_agent-0.1.0/tests/test_integration_env.py +11 -0
  663. arka_agent-0.1.0/tests/test_integration_routing.py +20 -0
  664. arka_agent-0.1.0/tests/test_integration_setup.py +284 -0
  665. arka_agent-0.1.0/tests/test_interesting_fact.py +97 -0
  666. arka_agent-0.1.0/tests/test_iterate.py +13 -0
  667. arka_agent-0.1.0/tests/test_jsonkit.py +29 -0
  668. arka_agent-0.1.0/tests/test_jsonkit_routing.py +46 -0
  669. arka_agent-0.1.0/tests/test_kaggle.py +299 -0
  670. arka_agent-0.1.0/tests/test_kalshi.py +161 -0
  671. arka_agent-0.1.0/tests/test_life_sciences.py +126 -0
  672. arka_agent-0.1.0/tests/test_lint_project.py +45 -0
  673. arka_agent-0.1.0/tests/test_llm_fallback.py +376 -0
  674. arka_agent-0.1.0/tests/test_llm_prompt_compact.py +111 -0
  675. arka_agent-0.1.0/tests/test_local_image_gen.py +21 -0
  676. arka_agent-0.1.0/tests/test_local_model_selection.py +29 -0
  677. arka_agent-0.1.0/tests/test_loop_engineering.py +28 -0
  678. arka_agent-0.1.0/tests/test_mcp_manager.py +311 -0
  679. arka_agent-0.1.0/tests/test_mcp_obs.py +73 -0
  680. arka_agent-0.1.0/tests/test_mcp_server.py +1362 -0
  681. arka_agent-0.1.0/tests/test_media_quiz.py +14 -0
  682. arka_agent-0.1.0/tests/test_media_transform.py +18 -0
  683. arka_agent-0.1.0/tests/test_memory_cli.py +55 -0
  684. arka_agent-0.1.0/tests/test_memory_scope.py +278 -0
  685. arka_agent-0.1.0/tests/test_memory_search_fallback.py +75 -0
  686. arka_agent-0.1.0/tests/test_metallurgy.py +97 -0
  687. arka_agent-0.1.0/tests/test_mode.py +230 -0
  688. arka_agent-0.1.0/tests/test_model_advisor.py +151 -0
  689. arka_agent-0.1.0/tests/test_model_host_setup.py +14 -0
  690. arka_agent-0.1.0/tests/test_model_to_image.py +37 -0
  691. arka_agent-0.1.0/tests/test_move_file.py +19 -0
  692. arka_agent-0.1.0/tests/test_multi_llm.py +13 -0
  693. arka_agent-0.1.0/tests/test_nl_routing_coverage.py +145 -0
  694. arka_agent-0.1.0/tests/test_notifications.py +7 -0
  695. arka_agent-0.1.0/tests/test_object_orientation.py +15 -0
  696. arka_agent-0.1.0/tests/test_observability_doctor.py +21 -0
  697. arka_agent-0.1.0/tests/test_open_url.py +143 -0
  698. arka_agent-0.1.0/tests/test_openclaw_features.py +243 -0
  699. arka_agent-0.1.0/tests/test_openrouter.py +366 -0
  700. arka_agent-0.1.0/tests/test_optimize.py +4 -0
  701. arka_agent-0.1.0/tests/test_output.py +236 -0
  702. arka_agent-0.1.0/tests/test_parallax_2d.py +19 -0
  703. arka_agent-0.1.0/tests/test_parallel.py +13 -0
  704. arka_agent-0.1.0/tests/test_password_payload.py +21 -0
  705. arka_agent-0.1.0/tests/test_paths_state.py +85 -0
  706. arka_agent-0.1.0/tests/test_pdf_interactive.py +21 -0
  707. arka_agent-0.1.0/tests/test_pdf_tools.py +326 -0
  708. arka_agent-0.1.0/tests/test_persona_payload.py +28 -0
  709. arka_agent-0.1.0/tests/test_personalize.py +343 -0
  710. arka_agent-0.1.0/tests/test_personalize_payload.py +26 -0
  711. arka_agent-0.1.0/tests/test_personas.py +255 -0
  712. arka_agent-0.1.0/tests/test_platform_payload.py +30 -0
  713. arka_agent-0.1.0/tests/test_play.py +60 -0
  714. arka_agent-0.1.0/tests/test_plugin_cli.py +9 -0
  715. arka_agent-0.1.0/tests/test_post_scaffold.py +164 -0
  716. arka_agent-0.1.0/tests/test_pr_check_routing.py +7 -0
  717. arka_agent-0.1.0/tests/test_price_check.py +733 -0
  718. arka_agent-0.1.0/tests/test_price_payload.py +25 -0
  719. arka_agent-0.1.0/tests/test_product_reviewer.py +158 -0
  720. arka_agent-0.1.0/tests/test_project_rules.py +71 -0
  721. arka_agent-0.1.0/tests/test_prompt_chunking.py +27 -0
  722. arka_agent-0.1.0/tests/test_prompt_compact.py +53 -0
  723. arka_agent-0.1.0/tests/test_prompt_optimize.py +23 -0
  724. arka_agent-0.1.0/tests/test_provider_select.py +351 -0
  725. arka_agent-0.1.0/tests/test_qr_payload.py +21 -0
  726. arka_agent-0.1.0/tests/test_quiz_practice.py +159 -0
  727. arka_agent-0.1.0/tests/test_race.py +16 -0
  728. arka_agent-0.1.0/tests/test_remote_server_coding_profile.py +199 -0
  729. arka_agent-0.1.0/tests/test_repo_context.py +111 -0
  730. arka_agent-0.1.0/tests/test_repo_graph.py +17 -0
  731. arka_agent-0.1.0/tests/test_repo_health.py +71 -0
  732. arka_agent-0.1.0/tests/test_repo_map.py +77 -0
  733. arka_agent-0.1.0/tests/test_repo_reverse.py +8 -0
  734. arka_agent-0.1.0/tests/test_research_math.py +12 -0
  735. arka_agent-0.1.0/tests/test_rig_3d.py +19 -0
  736. arka_agent-0.1.0/tests/test_route_learned.py +78 -0
  737. arka_agent-0.1.0/tests/test_router_conceptual_compare.py +118 -0
  738. arka_agent-0.1.0/tests/test_router_daily_brief.py +69 -0
  739. arka_agent-0.1.0/tests/test_router_find_files_by_size.py +171 -0
  740. arka_agent-0.1.0/tests/test_router_gift_advice.py +43 -0
  741. arka_agent-0.1.0/tests/test_router_github_repo.py +45 -0
  742. arka_agent-0.1.0/tests/test_router_platform_howto.py +73 -0
  743. arka_agent-0.1.0/tests/test_router_show_me.py +71 -0
  744. arka_agent-0.1.0/tests/test_routing_strength.py +7 -0
  745. arka_agent-0.1.0/tests/test_sandbox.py +31 -0
  746. arka_agent-0.1.0/tests/test_scene_3d.py +37 -0
  747. arka_agent-0.1.0/tests/test_script_understanding.py +15 -0
  748. arka_agent-0.1.0/tests/test_search_setup.py +14 -0
  749. arka_agent-0.1.0/tests/test_self_improve.py +410 -0
  750. arka_agent-0.1.0/tests/test_semantic_alert.py +20 -0
  751. arka_agent-0.1.0/tests/test_sessions_cli.py +19 -0
  752. arka_agent-0.1.0/tests/test_signoz_setup.py +131 -0
  753. arka_agent-0.1.0/tests/test_site_summary.py +88 -0
  754. arka_agent-0.1.0/tests/test_skill_hints.py +11 -0
  755. arka_agent-0.1.0/tests/test_skill_settings.py +48 -0
  756. arka_agent-0.1.0/tests/test_skill_usage.py +7 -0
  757. arka_agent-0.1.0/tests/test_slide_design.py +48 -0
  758. arka_agent-0.1.0/tests/test_space_visual.py +7 -0
  759. arka_agent-0.1.0/tests/test_spline_guide.py +25 -0
  760. arka_agent-0.1.0/tests/test_sports_payload.py +21 -0
  761. arka_agent-0.1.0/tests/test_spotify_payload.py +40 -0
  762. arka_agent-0.1.0/tests/test_stt_install.py +95 -0
  763. arka_agent-0.1.0/tests/test_super_replica.py +17 -0
  764. arka_agent-0.1.0/tests/test_supermemory_code.py +11 -0
  765. arka_agent-0.1.0/tests/test_supermemory_obs.py +50 -0
  766. arka_agent-0.1.0/tests/test_surgical_edit.py +15 -0
  767. arka_agent-0.1.0/tests/test_symbolic_image.py +19 -0
  768. arka_agent-0.1.0/tests/test_teams.py +298 -0
  769. arka_agent-0.1.0/tests/test_teams_v2.py +279 -0
  770. arka_agent-0.1.0/tests/test_telemetry.py +355 -0
  771. arka_agent-0.1.0/tests/test_text_edit.py +12 -0
  772. arka_agent-0.1.0/tests/test_text_to_3d.py +41 -0
  773. arka_agent-0.1.0/tests/test_textkit.py +39 -0
  774. arka_agent-0.1.0/tests/test_thinking.py +8 -0
  775. arka_agent-0.1.0/tests/test_three_js_model.py +104 -0
  776. arka_agent-0.1.0/tests/test_timekit.py +35 -0
  777. arka_agent-0.1.0/tests/test_timezone_convert.py +186 -0
  778. arka_agent-0.1.0/tests/test_ui_copy_audit.py +13 -0
  779. arka_agent-0.1.0/tests/test_ultra_fast.py +29 -0
  780. arka_agent-0.1.0/tests/test_unified_memory.py +208 -0
  781. arka_agent-0.1.0/tests/test_universal_plugins.py +53 -0
  782. arka_agent-0.1.0/tests/test_url_app_analyzer.py +11 -0
  783. arka_agent-0.1.0/tests/test_urlkit.py +38 -0
  784. arka_agent-0.1.0/tests/test_usage_dashboard.py +12 -0
  785. arka_agent-0.1.0/tests/test_video_evidence.py +56 -0
  786. arka_agent-0.1.0/tests/test_view_data.py +91 -0
  787. arka_agent-0.1.0/tests/test_vision_evidence.py +16 -0
  788. arka_agent-0.1.0/tests/test_visual_diagnose.py +16 -0
  789. arka_agent-0.1.0/tests/test_vllm_cloud.py +106 -0
  790. arka_agent-0.1.0/tests/test_vllm_cross_platform.py +149 -0
  791. arka_agent-0.1.0/tests/test_vllm_fallback.py +10 -0
  792. arka_agent-0.1.0/tests/test_voice_languages.py +6 -0
  793. arka_agent-0.1.0/tests/test_web_screenshot.py +46 -0
  794. arka_agent-0.1.0/tests/test_word_counter.py +22 -0
  795. arka_agent-0.1.0/tests/test_word_limit.py +100 -0
  796. arka_agent-0.1.0/tests/test_workflow_templates.py +25 -0
  797. arka_agent-0.1.0/tests/test_x_post.py +865 -0
@@ -0,0 +1,339 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ Preamble
10
+
11
+ The licenses for most software are designed to take away your
12
+ freedom to share and change it. By contrast, the GNU General Public
13
+ License is intended to guarantee your freedom to share and change free
14
+ software--to make sure the software is free for all its users. This
15
+ General Public License applies to most of the Free Software
16
+ Foundation's software and to any other program whose authors commit to
17
+ using it. (Some other Free Software Foundation software is covered by
18
+ the GNU Lesser General Public License instead.) You can apply it to
19
+ your programs, too.
20
+
21
+ When we speak of free software, we are referring to freedom, not
22
+ price. Our General Public Licenses are designed to make sure that you
23
+ have the freedom to distribute copies of free software (and charge for
24
+ this service if you wish), that you receive source code or can get it
25
+ if you want it, that you can change the software or use pieces of it
26
+ in new free programs; and that you know you can do these things.
27
+
28
+ To protect your rights, we need to make restrictions that forbid
29
+ anyone to deny you these rights or to ask you to surrender the rights.
30
+ These restrictions translate to certain responsibilities for you if you
31
+ distribute copies of the software, or if you modify it.
32
+
33
+ For example, if you distribute copies of such a program, whether
34
+ gratis or for a fee, you must give the recipients all the rights that
35
+ you have. You must make sure that they, too, receive or can get the
36
+ source code. And you must show them these terms so they know their
37
+ rights.
38
+
39
+ We protect your rights with two steps: (1) copyright the software, and
40
+ (2) offer you this license which gives you legal permission to copy,
41
+ distribute and/or modify the software.
42
+
43
+ Also, for each author's protection and ours, we want to make certain
44
+ that everyone understands that there is no warranty for this free
45
+ software. If the software is modified by someone else and passed on, we
46
+ want its recipients to know that what they have is not the original, so
47
+ that any problems introduced by others will not reflect on the original
48
+ authors' reputations.
49
+
50
+ Finally, any free program is threatened constantly by software
51
+ patents. We wish to avoid the danger that redistributors of a free
52
+ program will individually obtain patent licenses, in effect making the
53
+ program proprietary. To prevent this, we have made it clear that any
54
+ patent must be licensed for everyone's free use or not licensed at all.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ GNU GENERAL PUBLIC LICENSE
60
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
+
62
+ 0. This License applies to any program or other work which contains
63
+ a notice placed by the copyright holder saying it may be distributed
64
+ under the terms of this General Public License. The "Program", below,
65
+ refers to any such program or work, and a "work based on the Program"
66
+ means either the Program or any derivative work under copyright law:
67
+ that is to say, a work containing the Program or a portion of it,
68
+ either verbatim or with modifications and/or translated into another
69
+ language. (Hereinafter, translation is included without limitation in
70
+ the term "modification".) Each licensee is addressed as "you".
71
+
72
+ Activities other than copying, distribution and modification are not
73
+ covered by this License; they are outside its scope. The act of
74
+ running the Program is not restricted, and the output from the Program
75
+ is covered only if its contents constitute a work based on the
76
+ Program (independent of having been made by running the Program).
77
+ Whether that is true depends on what the Program does.
78
+
79
+ 1. You may copy and distribute verbatim copies of the Program's
80
+ source code as you receive it, in any medium, provided that you
81
+ conspicuously and appropriately publish on each copy an appropriate
82
+ copyright notice and disclaimer of warranty; keep intact all the
83
+ notices that refer to this License and to the absence of any warranty;
84
+ and give any other recipients of the Program a copy of this License
85
+ along with the Program.
86
+
87
+ You may charge a fee for the physical act of transferring a copy, and
88
+ you may at your option offer warranty protection in exchange for a fee.
89
+
90
+ 2. You may modify your copy or copies of the Program or any portion
91
+ of it, thus forming a work based on the Program, and copy and
92
+ distribute such modifications or work under the terms of Section 1
93
+ above, provided that you also meet all of these conditions:
94
+
95
+ a) You must cause the modified files to carry prominent notices
96
+ stating that you changed the files and the date of any change.
97
+
98
+ b) You must cause any work that you distribute or publish, that in
99
+ whole or in part contains or is derived from the Program or any
100
+ part thereof, to be licensed as a whole at no charge to all third
101
+ parties under the terms of this License.
102
+
103
+ c) If the modified program normally reads commands interactively
104
+ when run, you must cause it, when started running for such
105
+ interactive use in the most ordinary way, to print or display an
106
+ announcement including an appropriate copyright notice and a
107
+ notice that there is no warranty (or else, saying that you provide
108
+ a warranty) and that users may redistribute the program under
109
+ these conditions, and telling the user how to view a copy of this
110
+ License. (Exception: if the Program itself is interactive but
111
+ does not normally print such an announcement, your work based on
112
+ the Program is not required to print an announcement.)
113
+
114
+ These requirements apply to the modified work as a whole. If
115
+ identifiable sections of that work are not derived from the Program,
116
+ and can be reasonably considered independent and separate works in
117
+ themselves, then this License, and its terms, do not apply to those
118
+ sections when you distribute them as separate works. But when you
119
+ distribute the same sections as part of a whole which is a work based
120
+ on the Program, the distribution of the whole must be on the terms of
121
+ this License, whose permissions for other licensees extend to the
122
+ entire whole, and thus to each and every part regardless of who wrote it.
123
+
124
+ Thus, it is not the intent of this section to claim rights or contest
125
+ your rights to work written entirely by you; rather, the intent is to
126
+ exercise the right to control the distribution of derivative or
127
+ collective works based on the Program.
128
+
129
+ In addition, mere aggregation of another work not based on the Program
130
+ with the Program (or with a work based on the Program) on a volume of
131
+ a storage or distribution medium does not bring the other work under
132
+ the scope of this License.
133
+
134
+ 3. You may copy and distribute the Program (or a work based on it,
135
+ under Section 2) in object code or executable form under the terms of
136
+ Sections 1 and 2 above provided that you also do one of the following:
137
+
138
+ a) Accompany it with the complete corresponding machine-readable
139
+ source code, which must be distributed under the terms of Sections
140
+ 1 and 2 above on a medium customarily used for software interchange; or,
141
+
142
+ b) Accompany it with a written offer, valid for at least three
143
+ years, to give any third party, for a charge no more than your
144
+ cost of physically performing source distribution, a complete
145
+ machine-readable copy of the corresponding source code, to be
146
+ distributed under the terms of Sections 1 and 2 above on a medium
147
+ customarily used for software interchange; or,
148
+
149
+ c) Accompany it with the information you received as to the offer
150
+ to distribute corresponding source code. (This alternative is
151
+ allowed only for noncommercial distribution and only if you
152
+ received the program in object code or executable form with such
153
+ an offer, in accord with Subsection b above.)
154
+
155
+ The source code for a work means the preferred form of the work for
156
+ making modifications to it. For an executable work, complete source
157
+ code means all the source code for all modules it contains, plus any
158
+ associated interface definition files, plus the scripts used to
159
+ control compilation and installation of the executable. However, as a
160
+ special exception, the source code distributed need not include
161
+ anything that is normally distributed (in either source or binary
162
+ form) with the major components (compiler, kernel, and so on) of the
163
+ operating system on which the executable runs, unless that component
164
+ itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering
167
+ access to copy from a designated place, then offering equivalent
168
+ access to copy the source code from the same place counts as
169
+ distribution of the source code, even though third parties are not
170
+ compelled to copy the source along with the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program
173
+ except as expressly provided under this License. Any attempt
174
+ otherwise to copy, modify, sublicense or distribute the Program is
175
+ void, and will automatically terminate your rights under this License.
176
+ However, parties who have received copies, or rights, from you under
177
+ this License will not have their licenses terminated so long as such
178
+ parties remain in full compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not
181
+ signed it. However, nothing else grants you permission to modify or
182
+ distribute the Program or its derivative works. These actions are
183
+ prohibited by law if you do not accept this License. Therefore, by
184
+ modifying or distributing the Program (or any work based on the
185
+ Program), you indicate your acceptance of this License to do so, and
186
+ all its terms and conditions for copying, distributing or modifying
187
+ the Program or works based on it.
188
+
189
+ 6. Each time you redistribute the Program (or any work based on the
190
+ Program), the recipient automatically receives a license from the
191
+ original licensor to copy, distribute or modify the Program subject to
192
+ these terms and conditions. You may not impose any further
193
+ restrictions on the recipients' exercise of the rights granted herein.
194
+ You are not responsible for enforcing compliance by third parties to
195
+ this License.
196
+
197
+ 7. If, as a consequence of a court judgment or allegation of patent
198
+ infringement or for any other reason (not limited to patent issues),
199
+ conditions are imposed on you (whether by court order, agreement or
200
+ otherwise) that contradict the conditions of this License, they do not
201
+ excuse you from the conditions of this License. If you cannot
202
+ distribute so as to satisfy simultaneously your obligations under this
203
+ License and any other pertinent obligations, then as a consequence you
204
+ may not distribute the Program at all. For example, if a patent
205
+ license would not permit royalty-free redistribution of the Program by
206
+ all those who receive copies directly or indirectly through you, then
207
+ the only way you could satisfy both it and this License would be to
208
+ refrain entirely from distribution of the Program.
209
+
210
+ If any portion of this section is held invalid or unenforceable under
211
+ any particular circumstance, the balance of the section is intended to
212
+ apply and the section as a whole is intended to apply in other
213
+ circumstances.
214
+
215
+ It is not the purpose of this section to induce you to infringe any
216
+ patents or other property right claims or to contest validity of any
217
+ such claims; this section has the sole purpose of protecting the
218
+ integrity of the free software distribution system, which is
219
+ implemented by public license practices. Many people have made
220
+ generous contributions to the wide range of software distributed
221
+ through that system in reliance on consistent application of that
222
+ system; it is up to the author/donor to decide if he or she is willing
223
+ to distribute software through any other system and a licensee cannot
224
+ impose that choice.
225
+
226
+ This section is intended to make thoroughly clear what is believed to
227
+ be a consequence of the rest of this License.
228
+
229
+ 8. If the distribution and/or use of the Program is restricted in
230
+ certain countries either by patents or by copyrighted interfaces, the
231
+ original copyright holder who places the Program under this License
232
+ may add an explicit geographical distribution limitation excluding
233
+ those countries, so that distribution is permitted only in or among
234
+ countries not thus excluded. In such case, this License incorporates
235
+ the limitation as if written in the body of this License.
236
+
237
+ 9. The Free Software Foundation may publish revised and/or new versions
238
+ of the General Public License from time to time. Such new versions will
239
+ be similar in spirit to the present version, but may differ in detail to
240
+ address new problems or concerns.
241
+
242
+ Each version is given a distinguishing version number. If the Program
243
+ specifies a version number of this License which applies to it and "any
244
+ later version", you have the option of following the terms and conditions
245
+ either of that version or of any later version published by the Free
246
+ Software Foundation. If the Program does not specify a version number of
247
+ this License, you may choose any version ever published by the Free Software
248
+ Foundation.
249
+
250
+ 10. If you wish to incorporate parts of the Program into other free
251
+ programs whose distribution conditions are different, write to the author
252
+ to ask for permission. For software which is copyrighted by the Free
253
+ Software Foundation, write to the Free Software Foundation; we sometimes
254
+ make exceptions for this. Our decision will be guided by the two goals
255
+ of preserving the free status of all derivatives of our free software and
256
+ of promoting the sharing and reuse of software generally.
257
+
258
+ NO WARRANTY
259
+
260
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
+ REPAIR OR CORRECTION.
269
+
270
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
+ POSSIBILITY OF SUCH DAMAGES.
279
+
280
+ END OF TERMS AND CONDITIONS
281
+
282
+ How to Apply These Terms to Your New Programs
283
+
284
+ If you develop a new program, and you want it to be of the greatest
285
+ possible use to the public, the best way to achieve this is to make it
286
+ free software which everyone can redistribute and change under these terms.
287
+
288
+ To do so, attach the following notices to the program. It is safest
289
+ to attach them to the start of each source file to most effectively
290
+ convey the exclusion of warranty; and each file should have at least
291
+ the "copyright" line and a pointer to where the full notice is found.
292
+
293
+ <one line to give the program's name and a brief idea of what it does.>
294
+ Copyright (C) <year> <name of author>
295
+
296
+ This program is free software; you can redistribute it and/or modify
297
+ it under the terms of the GNU General Public License as published by
298
+ the Free Software Foundation; either version 2 of the License, or
299
+ (at your option) any later version.
300
+
301
+ This program is distributed in the hope that it will be useful,
302
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
303
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
+ GNU General Public License for more details.
305
+
306
+ You should have received a copy of the GNU General Public License along
307
+ with this program; if not, write to the Free Software Foundation, Inc.,
308
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309
+
310
+ Also add information on how to contact you by electronic and paper mail.
311
+
312
+ If the program is interactive, make it output a short notice like this
313
+ when it starts in an interactive mode:
314
+
315
+ Gnomovision version 69, Copyright (C) year name of author
316
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317
+ This is free software, and you are welcome to redistribute it
318
+ under certain conditions; type `show c' for details.
319
+
320
+ The hypothetical commands `show w' and `show c' should show the appropriate
321
+ parts of the General Public License. Of course, the commands you use may
322
+ be called something other than `show w' and `show c'; they could even be
323
+ mouse-clicks or menu items--whatever suits your program.
324
+
325
+ You should also get your employer (if you work as a programmer) or your
326
+ school, if any, to sign a "copyright disclaimer" for the program, if
327
+ necessary. Here is a sample; alter the names:
328
+
329
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
331
+
332
+ <signature of Ty Coon>, 1 April 1989
333
+ Ty Coon, President of Vice
334
+
335
+ This General Public License does not permit incorporating your program into
336
+ proprietary programs. If your program is a subroutine library, you may
337
+ consider it more useful to permit linking proprietary applications with the
338
+ library. If this is what you want to do, use the GNU Lesser General
339
+ Public License instead of this License.
@@ -0,0 +1,229 @@
1
+ Metadata-Version: 2.4
2
+ Name: arka-agent
3
+ Version: 0.1.0
4
+ Summary: Cross-platform AI agent — chat, web answers, password vault, and skill routing
5
+ Author: Sumit Mishra
6
+ License: GPL-2.0-only
7
+ Project-URL: Homepage, https://github.com/Sumit884-byte/arka
8
+ Project-URL: Repository, https://github.com/Sumit884-byte/arka
9
+ Project-URL: Documentation, https://arka-agent.mintlify.site
10
+ Project-URL: Issues, https://github.com/Sumit884-byte/arka/issues
11
+ Keywords: ai,agent,cli,assistant,llm
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Utilities
22
+ Requires-Python: >=3.11
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ Requires-Dist: platformdirs>=4.0
26
+ Requires-Dist: cryptography>=42.0
27
+ Requires-Dist: qrcode>=7.4
28
+ Requires-Dist: feedparser>=6.0
29
+ Provides-Extra: chat
30
+ Requires-Dist: agno[google,groq,ollama]>=2.5.0; extra == "chat"
31
+ Requires-Dist: openai>=1.0.0; extra == "chat"
32
+ Requires-Dist: ddgs; extra == "chat"
33
+ Requires-Dist: trafilatura; extra == "chat"
34
+ Requires-Dist: beautifulsoup4; extra == "chat"
35
+ Requires-Dist: sympy; extra == "chat"
36
+ Requires-Dist: geopy; extra == "chat"
37
+ Provides-Extra: voice
38
+ Requires-Dist: vosk; extra == "voice"
39
+ Requires-Dist: sounddevice; extra == "voice"
40
+ Provides-Extra: pdf
41
+ Requires-Dist: requests; extra == "pdf"
42
+ Provides-Extra: pdf-tools
43
+ Requires-Dist: pypdf>=4.0; extra == "pdf-tools"
44
+ Requires-Dist: Pillow>=10.0; extra == "pdf-tools"
45
+ Requires-Dist: reportlab>=4.0; extra == "pdf-tools"
46
+ Requires-Dist: pymupdf>=1.24; extra == "pdf-tools"
47
+ Provides-Extra: charts
48
+ Requires-Dist: matplotlib>=3.8; extra == "charts"
49
+ Provides-Extra: ascii
50
+ Requires-Dist: pyfiglet>=1.0.0; extra == "ascii"
51
+ Provides-Extra: data
52
+ Requires-Dist: faker>=24.0; extra == "data"
53
+ Requires-Dist: openpyxl>=3.1; extra == "data"
54
+ Provides-Extra: drawings
55
+ Requires-Dist: Pillow>=10.0; extra == "drawings"
56
+ Requires-Dist: pymupdf>=1.24; extra == "drawings"
57
+ Provides-Extra: video
58
+ Requires-Dist: Pillow>=10.0; extra == "video"
59
+ Requires-Dist: edge-tts>=6.1; extra == "video"
60
+ Requires-Dist: python-pptx>=1.0; extra == "video"
61
+ Provides-Extra: 3d
62
+ Requires-Dist: numpy>=1.26; extra == "3d"
63
+ Requires-Dist: trimesh>=4.0; extra == "3d"
64
+ Provides-Extra: 3d-ai
65
+ Requires-Dist: gradio_client>=1.0; extra == "3d-ai"
66
+ Provides-Extra: vision
67
+ Requires-Dist: Pillow>=10.0; extra == "vision"
68
+ Provides-Extra: whatsapp
69
+ Requires-Dist: selenium>=4.0; extra == "whatsapp"
70
+ Requires-Dist: pywhatkit>=5.4; extra == "whatsapp"
71
+ Provides-Extra: dev
72
+ Requires-Dist: build>=1.2; extra == "dev"
73
+ Requires-Dist: ruff; extra == "dev"
74
+ Requires-Dist: pytest; extra == "dev"
75
+ Requires-Dist: twine>=5.0; extra == "dev"
76
+ Provides-Extra: mcp-server
77
+ Requires-Dist: mcp>=1.0; extra == "mcp-server"
78
+ Provides-Extra: all
79
+ Requires-Dist: arka-agent[3d,3d-ai,charts,chat,drawings,pdf,pdf-tools,video,voice,whatsapp]; extra == "all"
80
+ Dynamic: license-file
81
+
82
+ # Arka
83
+
84
+ **Your terminal, upgraded.** Route plain English to **70+ local skills** — deterministic offline routing, voice, 24-provider LLM failover, and security gates on by default.
85
+
86
+ [![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
87
+ [![Python](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org/downloads/)
88
+ [![PyPI](https://img.shields.io/badge/PyPI-coming%20soon-lightgrey)](https://pypi.org/project/arka-agent/)
89
+ [![Docs](https://img.shields.io/badge/docs-Mintlify-6366F1)](https://arka-agent.mintlify.site)
90
+
91
+ **Documentation:** [arka-agent.mintlify.site](https://arka-agent.mintlify.site)
92
+
93
+ ## Why Arka?
94
+
95
+ - **Deterministic routing:** 120+ symbolic rules handle most requests with zero LLM tokens before any model is called.
96
+ - **Extensible:** Add third-party skills via `skill.json` plugins — no fork required.
97
+ - **Secure by default:** Prompt-injection checks, risky-action prompts, and hard blocks on destructive shell patterns.
98
+ - **Local-first:** Skills run on your machine; LLM calls failover across Gemini, Groq, Ollama, and 20+ other providers.
99
+
100
+ ## Supported platforms
101
+
102
+ | Platform | Support |
103
+ | --- | --- |
104
+ | **macOS** | Full support — recommended for daily use |
105
+ | **Linux** | Full support |
106
+ | **Windows** | Python CLI and `arka` subcommands work; the full 70+ skill router needs [fish shell](https://fishshell.com) (`scoop install fish` or `winget install fishshell`). Without fish, Arka runs in **portable** mode with Python fallbacks. Some fish-oriented skills target macOS/Linux. |
107
+
108
+ **Requirements:** Python **3.11+**. Optional: fish shell for natural-language routing and voice integration.
109
+
110
+ Config paths: `~/.config/arka/` (Linux), `~/Library/Application Support/arka/` (macOS), `%APPDATA%\arka\` (Windows).
111
+
112
+ ## Installation
113
+
114
+ PyPI package name is **`arka-agent`**. Publishing is in progress — if `pipx install` returns 404, use the git install paths below.
115
+
116
+ **Recommended (standalone, no clone, no build):**
117
+
118
+ ```bash
119
+ pipx install "arka-agent[chat]"
120
+ arka setup
121
+ arka doctor
122
+ ```
123
+
124
+ If PyPI returns 404, install from GitHub without cloning or building locally:
125
+
126
+ ```bash
127
+ pipx install "arka-agent[chat] @ git+https://github.com/Sumit884-byte/arka.git"
128
+ arka setup
129
+ arka doctor
130
+ ```
131
+
132
+ Or with pip in a venv:
133
+
134
+ ```bash
135
+ pip install "arka-agent[chat]"
136
+ arka setup
137
+ arka doctor
138
+ ```
139
+
140
+ When PyPI is live:
141
+
142
+ ```bash
143
+ pipx install "arka-agent[chat]"
144
+ arka setup
145
+ arka doctor
146
+ ```
147
+
148
+ **From a git clone** (best for contributors or tracking `main`):
149
+
150
+ ```bash
151
+ git clone https://github.com/Sumit884-byte/arka.git
152
+ cd arka
153
+ ./scripts/refetch.sh --install
154
+ arka setup
155
+ arka doctor
156
+ ```
157
+
158
+ **Configure API keys** (at least one cloud key or local Ollama):
159
+
160
+ ```bash
161
+ cp .env.example ~/.config/arka/.env # macOS/Linux; see Supported platforms for Windows path
162
+ ```
163
+
164
+ Add a free-tier key from [Google AI Studio](https://aistudio.google.com/apikey) or [Groq Console](https://console.groq.com/keys), then run `arka free tier setup` for recommended `.env` settings.
165
+
166
+ **Optional one-liners:**
167
+
168
+ ```bash
169
+ brew install fish # macOS — unlocks full skill router
170
+ arka mcp doctor && arka mcp install # verify MCP server; print Cursor snippet
171
+ ```
172
+
173
+ See the [Quickstart guide](https://arka-agent.mintlify.site/quickstart) and [MCP integration](https://arka-agent.mintlify.site/guides/mcp) for fish setup, Cursor merge steps, and optional extras (`[voice]`, `[pdf]`, `[all]`).
174
+
175
+ ## Try Arka without building from source
176
+
177
+ There is no hosted demo instance or shared test account. The fastest path to evaluate Arka:
178
+
179
+ 1. **Browse the live docs** — [arka-agent.mintlify.site](https://arka-agent.mintlify.site) (skills catalog, routing concepts, CLI reference).
180
+ 2. **Install in one command** — use the pip/pipx git install above (no manual build step).
181
+ 3. **Use free-tier LLM keys** — Gemini and Groq both offer free tiers; Ollama is local and costs nothing:
182
+
183
+ ```bash
184
+ arka free tier setup
185
+ arka doctor
186
+ ```
187
+
188
+ 4. **Run sample commands** that exercise routing and LLM failover:
189
+
190
+ ```bash
191
+ arka ask "what is Rust?"
192
+ arka "convert 100 USD to INR"
193
+ arka council "should I learn Rust?"
194
+ arka quiz python
195
+ arka coding-tui .
196
+ ```
197
+
198
+ 5. **Try MCP in Cursor** — after install, `arka mcp doctor` then `arka mcp install`; merge the printed snippet into **Cursor Settings → MCP** and restart Cursor.
199
+
200
+ Full walkthrough: [Quickstart](https://arka-agent.mintlify.site/quickstart) · [Free credits guide](https://arka-agent.mintlify.site/guides/free-credits)
201
+
202
+ ## Quick Start
203
+
204
+ Get to a working answer in under a minute:
205
+
206
+ ```bash
207
+ arka doctor # verify install + keys
208
+ arka ask "what is Rust?" # web + AI answer
209
+ arka "convert 100 USD to INR" # natural language routing
210
+ arka council "should I learn Rust?" # multi-persona deliberation
211
+ ```
212
+
213
+ Voice (optional):
214
+
215
+ ```bash
216
+ arka listen # then say: "hey arka, what's the weather"
217
+ ```
218
+
219
+ More guides — skills, stocks, PDF RAG, Google Workspace, goal agent, testing — live on the [documentation site](https://arka-agent.mintlify.site).
220
+
221
+ ## Contributing
222
+
223
+ We welcome contributions of all sizes! Please read our [Contribution Guidelines](CONTRIBUTING.md) to get started with the local development workflow.
224
+
225
+ Look for the **good first issue** label on [GitHub Issues](https://github.com/Sumit884-byte/arka/issues?q=label%3A%22good+first+issue%22) to find a welcoming entry point.
226
+
227
+ ## License
228
+
229
+ Distributed under the **GNU General Public License v2.0**. See [LICENSE](LICENSE) for more information.