marustorm 0.1.3__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 (292) hide show
  1. marustorm-0.1.3/.github/ISSUE_TEMPLATE/bug_report.yml +72 -0
  2. marustorm-0.1.3/.github/ISSUE_TEMPLATE/feature_request.yml +53 -0
  3. marustorm-0.1.3/.github/workflows/ci.yml +91 -0
  4. marustorm-0.1.3/.github/workflows/pages.yml +41 -0
  5. marustorm-0.1.3/.gitignore +51 -0
  6. marustorm-0.1.3/CHANGELOG.md +1262 -0
  7. marustorm-0.1.3/CONTRIBUTING.md +89 -0
  8. marustorm-0.1.3/LICENSE +202 -0
  9. marustorm-0.1.3/PKG-INFO +348 -0
  10. marustorm-0.1.3/README.md +285 -0
  11. marustorm-0.1.3/SECURITY.md +37 -0
  12. marustorm-0.1.3/docs/_config.yml +18 -0
  13. marustorm-0.1.3/docs/configuration.md +58 -0
  14. marustorm-0.1.3/docs/index.md +61 -0
  15. marustorm-0.1.3/docs/installation.md +41 -0
  16. marustorm-0.1.3/docs/shortcuts.md +29 -0
  17. marustorm-0.1.3/pyproject.toml +126 -0
  18. marustorm-0.1.3/pytest.ini +2 -0
  19. marustorm-0.1.3/src/kaos/__init__.py +346 -0
  20. marustorm-0.1.3/src/kaos/_current.py +6 -0
  21. marustorm-0.1.3/src/kaos/local.py +180 -0
  22. marustorm-0.1.3/src/kaos/path.py +217 -0
  23. marustorm-0.1.3/src/kaos/py.typed +0 -0
  24. marustorm-0.1.3/src/kaos/ssh.py +296 -0
  25. marustorm-0.1.3/src/kosong/__init__.py +216 -0
  26. marustorm-0.1.3/src/kosong/__main__.py +164 -0
  27. marustorm-0.1.3/src/kosong/_generate.py +120 -0
  28. marustorm-0.1.3/src/kosong/chat_provider/__init__.py +186 -0
  29. marustorm-0.1.3/src/kosong/chat_provider/chaos.py +292 -0
  30. marustorm-0.1.3/src/kosong/chat_provider/echo/__init__.py +9 -0
  31. marustorm-0.1.3/src/kosong/chat_provider/echo/dsl.py +234 -0
  32. marustorm-0.1.3/src/kosong/chat_provider/echo/echo.py +125 -0
  33. marustorm-0.1.3/src/kosong/chat_provider/echo/scripted_echo.py +103 -0
  34. marustorm-0.1.3/src/kosong/chat_provider/kimi.py +522 -0
  35. marustorm-0.1.3/src/kosong/chat_provider/mock.py +80 -0
  36. marustorm-0.1.3/src/kosong/chat_provider/openai_common.py +162 -0
  37. marustorm-0.1.3/src/kosong/contrib/__init__.py +0 -0
  38. marustorm-0.1.3/src/kosong/contrib/chat_provider/__init__.py +0 -0
  39. marustorm-0.1.3/src/kosong/contrib/chat_provider/anthropic.py +723 -0
  40. marustorm-0.1.3/src/kosong/contrib/chat_provider/common.py +5 -0
  41. marustorm-0.1.3/src/kosong/contrib/chat_provider/google_genai.py +769 -0
  42. marustorm-0.1.3/src/kosong/contrib/chat_provider/openai_legacy.py +370 -0
  43. marustorm-0.1.3/src/kosong/contrib/chat_provider/openai_responses.py +602 -0
  44. marustorm-0.1.3/src/kosong/contrib/context/__init__.py +0 -0
  45. marustorm-0.1.3/src/kosong/contrib/context/linear.py +145 -0
  46. marustorm-0.1.3/src/kosong/message.py +303 -0
  47. marustorm-0.1.3/src/kosong/py.typed +0 -0
  48. marustorm-0.1.3/src/kosong/tooling/__init__.py +354 -0
  49. marustorm-0.1.3/src/kosong/tooling/empty.py +24 -0
  50. marustorm-0.1.3/src/kosong/tooling/error.py +41 -0
  51. marustorm-0.1.3/src/kosong/tooling/mcp.py +72 -0
  52. marustorm-0.1.3/src/kosong/tooling/simple.py +133 -0
  53. marustorm-0.1.3/src/kosong/utils/__init__.py +0 -0
  54. marustorm-0.1.3/src/kosong/utils/aio.py +14 -0
  55. marustorm-0.1.3/src/kosong/utils/jsonschema.py +250 -0
  56. marustorm-0.1.3/src/kosong/utils/typing.py +3 -0
  57. marustorm-0.1.3/src/marustorm/CHANGELOG.md +1 -0
  58. marustorm-0.1.3/src/marustorm/__init__.py +29 -0
  59. marustorm-0.1.3/src/marustorm/__main__.py +268 -0
  60. marustorm-0.1.3/src/marustorm/acp/AGENTS.md +92 -0
  61. marustorm-0.1.3/src/marustorm/acp/__init__.py +13 -0
  62. marustorm-0.1.3/src/marustorm/acp/convert.py +128 -0
  63. marustorm-0.1.3/src/marustorm/acp/kaos.py +291 -0
  64. marustorm-0.1.3/src/marustorm/acp/mcp.py +46 -0
  65. marustorm-0.1.3/src/marustorm/acp/server.py +468 -0
  66. marustorm-0.1.3/src/marustorm/acp/session.py +499 -0
  67. marustorm-0.1.3/src/marustorm/acp/tools.py +167 -0
  68. marustorm-0.1.3/src/marustorm/acp/types.py +13 -0
  69. marustorm-0.1.3/src/marustorm/acp/version.py +45 -0
  70. marustorm-0.1.3/src/marustorm/agents/default/agent.yaml +36 -0
  71. marustorm-0.1.3/src/marustorm/agents/default/coder.yaml +25 -0
  72. marustorm-0.1.3/src/marustorm/agents/default/explore.yaml +46 -0
  73. marustorm-0.1.3/src/marustorm/agents/default/plan.yaml +30 -0
  74. marustorm-0.1.3/src/marustorm/agents/default/system.md +160 -0
  75. marustorm-0.1.3/src/marustorm/agents/okabe/agent.yaml +22 -0
  76. marustorm-0.1.3/src/marustorm/agentspec.py +160 -0
  77. marustorm-0.1.3/src/marustorm/app.py +807 -0
  78. marustorm-0.1.3/src/marustorm/approval_runtime/__init__.py +29 -0
  79. marustorm-0.1.3/src/marustorm/approval_runtime/models.py +42 -0
  80. marustorm-0.1.3/src/marustorm/approval_runtime/runtime.py +235 -0
  81. marustorm-0.1.3/src/marustorm/auth/__init__.py +5 -0
  82. marustorm-0.1.3/src/marustorm/auth/oauth.py +1092 -0
  83. marustorm-0.1.3/src/marustorm/auth/platforms.py +374 -0
  84. marustorm-0.1.3/src/marustorm/background/__init__.py +36 -0
  85. marustorm-0.1.3/src/marustorm/background/agent_runner.py +231 -0
  86. marustorm-0.1.3/src/marustorm/background/ids.py +19 -0
  87. marustorm-0.1.3/src/marustorm/background/manager.py +725 -0
  88. marustorm-0.1.3/src/marustorm/background/models.py +105 -0
  89. marustorm-0.1.3/src/marustorm/background/store.py +237 -0
  90. marustorm-0.1.3/src/marustorm/background/summary.py +66 -0
  91. marustorm-0.1.3/src/marustorm/background/worker.py +209 -0
  92. marustorm-0.1.3/src/marustorm/brain/__init__.py +0 -0
  93. marustorm-0.1.3/src/marustorm/brain/engine.py +271 -0
  94. marustorm-0.1.3/src/marustorm/brain/swarm.py +213 -0
  95. marustorm-0.1.3/src/marustorm/cli/__init__.py +1081 -0
  96. marustorm-0.1.3/src/marustorm/cli/__main__.py +34 -0
  97. marustorm-0.1.3/src/marustorm/cli/_lazy_group.py +238 -0
  98. marustorm-0.1.3/src/marustorm/cli/export.py +322 -0
  99. marustorm-0.1.3/src/marustorm/cli/info.py +62 -0
  100. marustorm-0.1.3/src/marustorm/cli/mcp.py +349 -0
  101. marustorm-0.1.3/src/marustorm/cli/plugin.py +347 -0
  102. marustorm-0.1.3/src/marustorm/cli/toad.py +73 -0
  103. marustorm-0.1.3/src/marustorm/cli/vis.py +38 -0
  104. marustorm-0.1.3/src/marustorm/cli/web.py +80 -0
  105. marustorm-0.1.3/src/marustorm/config.py +467 -0
  106. marustorm-0.1.3/src/marustorm/constant.py +116 -0
  107. marustorm-0.1.3/src/marustorm/deps/Makefile +84 -0
  108. marustorm-0.1.3/src/marustorm/exception.py +43 -0
  109. marustorm-0.1.3/src/marustorm/hooks/__init__.py +4 -0
  110. marustorm-0.1.3/src/marustorm/hooks/config.py +34 -0
  111. marustorm-0.1.3/src/marustorm/hooks/engine.py +371 -0
  112. marustorm-0.1.3/src/marustorm/hooks/events.py +190 -0
  113. marustorm-0.1.3/src/marustorm/hooks/runner.py +89 -0
  114. marustorm-0.1.3/src/marustorm/llm.py +333 -0
  115. marustorm-0.1.3/src/marustorm/metadata.py +79 -0
  116. marustorm-0.1.3/src/marustorm/notes/__init__.py +0 -0
  117. marustorm-0.1.3/src/marustorm/notes/graph.py +123 -0
  118. marustorm-0.1.3/src/marustorm/notes/manager.py +80 -0
  119. marustorm-0.1.3/src/marustorm/notes/parser.py +113 -0
  120. marustorm-0.1.3/src/marustorm/notes/templates.py +62 -0
  121. marustorm-0.1.3/src/marustorm/notifications/__init__.py +40 -0
  122. marustorm-0.1.3/src/marustorm/notifications/llm/__init__.py +5 -0
  123. marustorm-0.1.3/src/marustorm/plugin/__init__.py +124 -0
  124. marustorm-0.1.3/src/marustorm/plugin/manager.py +153 -0
  125. marustorm-0.1.3/src/marustorm/plugin/tool.py +173 -0
  126. marustorm-0.1.3/src/marustorm/prompts/__init__.py +6 -0
  127. marustorm-0.1.3/src/marustorm/prompts/compact.md +73 -0
  128. marustorm-0.1.3/src/marustorm/prompts/init.md +21 -0
  129. marustorm-0.1.3/src/marustorm/py.typed +0 -0
  130. marustorm-0.1.3/src/marustorm/research/__init__.py +0 -0
  131. marustorm-0.1.3/src/marustorm/research/engine.py +122 -0
  132. marustorm-0.1.3/src/marustorm/search/__init__.py +0 -0
  133. marustorm-0.1.3/src/marustorm/search/index.py +99 -0
  134. marustorm-0.1.3/src/marustorm/session.py +319 -0
  135. marustorm-0.1.3/src/marustorm/session_fork.py +325 -0
  136. marustorm-0.1.3/src/marustorm/session_state.py +132 -0
  137. marustorm-0.1.3/src/marustorm/share.py +14 -0
  138. marustorm-0.1.3/src/marustorm/skill/__init__.py +727 -0
  139. marustorm-0.1.3/src/marustorm/skill/flow/__init__.py +99 -0
  140. marustorm-0.1.3/src/marustorm/skill/flow/d2.py +482 -0
  141. marustorm-0.1.3/src/marustorm/skill/flow/mermaid.py +266 -0
  142. marustorm-0.1.3/src/marustorm/skills/brainstorm/SKILL.md +27 -0
  143. marustorm-0.1.3/src/marustorm/skills/daily_memo/SKILL.md +27 -0
  144. marustorm-0.1.3/src/marustorm/skills/kimi-cli-help/SKILL.md +55 -0
  145. marustorm-0.1.3/src/marustorm/skills/market_research/SKILL.md +32 -0
  146. marustorm-0.1.3/src/marustorm/skills/prd/SKILL.md +33 -0
  147. marustorm-0.1.3/src/marustorm/skills/skill-creator/SKILL.md +367 -0
  148. marustorm-0.1.3/src/marustorm/soul/__init__.py +304 -0
  149. marustorm-0.1.3/src/marustorm/soul/agent.py +519 -0
  150. marustorm-0.1.3/src/marustorm/soul/approval.py +267 -0
  151. marustorm-0.1.3/src/marustorm/soul/btw.py +212 -0
  152. marustorm-0.1.3/src/marustorm/soul/compaction.py +189 -0
  153. marustorm-0.1.3/src/marustorm/soul/context.py +339 -0
  154. marustorm-0.1.3/src/marustorm/soul/denwarenji.py +39 -0
  155. marustorm-0.1.3/src/marustorm/soul/dynamic_injection.py +84 -0
  156. marustorm-0.1.3/src/marustorm/soul/dynamic_injections/__init__.py +0 -0
  157. marustorm-0.1.3/src/marustorm/soul/dynamic_injections/afk_mode.py +74 -0
  158. marustorm-0.1.3/src/marustorm/soul/dynamic_injections/plan_mode.py +245 -0
  159. marustorm-0.1.3/src/marustorm/soul/kimisoul.py +1614 -0
  160. marustorm-0.1.3/src/marustorm/soul/message.py +92 -0
  161. marustorm-0.1.3/src/marustorm/soul/slash.py +341 -0
  162. marustorm-0.1.3/src/marustorm/soul/toolset.py +762 -0
  163. marustorm-0.1.3/src/marustorm/storage/__init__.py +0 -0
  164. marustorm-0.1.3/src/marustorm/storage/cache.py +47 -0
  165. marustorm-0.1.3/src/marustorm/storage/github.py +140 -0
  166. marustorm-0.1.3/src/marustorm/storage/sync.py +141 -0
  167. marustorm-0.1.3/src/marustorm/subagents/__init__.py +21 -0
  168. marustorm-0.1.3/src/marustorm/subagents/builder.py +42 -0
  169. marustorm-0.1.3/src/marustorm/subagents/core.py +86 -0
  170. marustorm-0.1.3/src/marustorm/subagents/git_context.py +170 -0
  171. marustorm-0.1.3/src/marustorm/subagents/models.py +54 -0
  172. marustorm-0.1.3/src/marustorm/subagents/output.py +71 -0
  173. marustorm-0.1.3/src/marustorm/subagents/registry.py +28 -0
  174. marustorm-0.1.3/src/marustorm/subagents/runner.py +428 -0
  175. marustorm-0.1.3/src/marustorm/subagents/store.py +196 -0
  176. marustorm-0.1.3/src/marustorm/tools/AGENTS.md +5 -0
  177. marustorm-0.1.3/src/marustorm/tools/__init__.py +105 -0
  178. marustorm-0.1.3/src/marustorm/tools/agent/__init__.py +277 -0
  179. marustorm-0.1.3/src/marustorm/tools/agent/description.md +41 -0
  180. marustorm-0.1.3/src/marustorm/tools/ask_user/__init__.py +154 -0
  181. marustorm-0.1.3/src/marustorm/tools/ask_user/description.md +19 -0
  182. marustorm-0.1.3/src/marustorm/tools/background/__init__.py +318 -0
  183. marustorm-0.1.3/src/marustorm/tools/background/list.md +10 -0
  184. marustorm-0.1.3/src/marustorm/tools/background/output.md +11 -0
  185. marustorm-0.1.3/src/marustorm/tools/background/stop.md +8 -0
  186. marustorm-0.1.3/src/marustorm/tools/display.py +46 -0
  187. marustorm-0.1.3/src/marustorm/tools/dmail/__init__.py +38 -0
  188. marustorm-0.1.3/src/marustorm/tools/dmail/dmail.md +17 -0
  189. marustorm-0.1.3/src/marustorm/tools/file/__init__.py +30 -0
  190. marustorm-0.1.3/src/marustorm/tools/file/glob.md +21 -0
  191. marustorm-0.1.3/src/marustorm/tools/file/glob.py +178 -0
  192. marustorm-0.1.3/src/marustorm/tools/file/grep.md +6 -0
  193. marustorm-0.1.3/src/marustorm/tools/file/grep_local.py +590 -0
  194. marustorm-0.1.3/src/marustorm/tools/file/plan_mode.py +45 -0
  195. marustorm-0.1.3/src/marustorm/tools/file/read.md +16 -0
  196. marustorm-0.1.3/src/marustorm/tools/file/read.py +300 -0
  197. marustorm-0.1.3/src/marustorm/tools/file/read_media.md +24 -0
  198. marustorm-0.1.3/src/marustorm/tools/file/read_media.py +217 -0
  199. marustorm-0.1.3/src/marustorm/tools/file/replace.md +7 -0
  200. marustorm-0.1.3/src/marustorm/tools/file/replace.py +195 -0
  201. marustorm-0.1.3/src/marustorm/tools/file/utils.py +257 -0
  202. marustorm-0.1.3/src/marustorm/tools/file/write.md +5 -0
  203. marustorm-0.1.3/src/marustorm/tools/file/write.py +177 -0
  204. marustorm-0.1.3/src/marustorm/tools/shell/__init__.py +260 -0
  205. marustorm-0.1.3/src/marustorm/tools/shell/bash.md +35 -0
  206. marustorm-0.1.3/src/marustorm/tools/test.py +55 -0
  207. marustorm-0.1.3/src/marustorm/tools/think/__init__.py +21 -0
  208. marustorm-0.1.3/src/marustorm/tools/think/think.md +1 -0
  209. marustorm-0.1.3/src/marustorm/tools/todo/__init__.py +168 -0
  210. marustorm-0.1.3/src/marustorm/tools/todo/set_todo_list.md +23 -0
  211. marustorm-0.1.3/src/marustorm/tools/utils.py +199 -0
  212. marustorm-0.1.3/src/marustorm/tools/web/__init__.py +4 -0
  213. marustorm-0.1.3/src/marustorm/tools/web/fetch.md +1 -0
  214. marustorm-0.1.3/src/marustorm/tools/web/fetch.py +189 -0
  215. marustorm-0.1.3/src/marustorm/tools/web/search.md +1 -0
  216. marustorm-0.1.3/src/marustorm/tools/web/search.py +163 -0
  217. marustorm-0.1.3/src/marustorm/tui/__init__.py +0 -0
  218. marustorm-0.1.3/src/marustorm/tui/app.py +237 -0
  219. marustorm-0.1.3/src/marustorm/tui/app.tcss +167 -0
  220. marustorm-0.1.3/src/marustorm/tui/widgets/ai_panel.py +60 -0
  221. marustorm-0.1.3/src/marustorm/tui/widgets/editor.py +61 -0
  222. marustorm-0.1.3/src/marustorm/tui/widgets/graph.py +58 -0
  223. marustorm-0.1.3/src/marustorm/tui/widgets/nav.py +23 -0
  224. marustorm-0.1.3/src/marustorm/tui/widgets/research_panel.py +42 -0
  225. marustorm-0.1.3/src/marustorm/tui/widgets/thinking_panel.py +41 -0
  226. marustorm-0.1.3/src/marustorm/utils/__init__.py +0 -0
  227. marustorm-0.1.3/src/marustorm/utils/aiohttp.py +24 -0
  228. marustorm-0.1.3/src/marustorm/utils/aioqueue.py +72 -0
  229. marustorm-0.1.3/src/marustorm/utils/broadcast.py +37 -0
  230. marustorm-0.1.3/src/marustorm/utils/changelog.py +108 -0
  231. marustorm-0.1.3/src/marustorm/utils/clipboard.py +246 -0
  232. marustorm-0.1.3/src/marustorm/utils/datetime.py +64 -0
  233. marustorm-0.1.3/src/marustorm/utils/diff.py +135 -0
  234. marustorm-0.1.3/src/marustorm/utils/editor.py +91 -0
  235. marustorm-0.1.3/src/marustorm/utils/environment.py +225 -0
  236. marustorm-0.1.3/src/marustorm/utils/envvar.py +22 -0
  237. marustorm-0.1.3/src/marustorm/utils/export.py +696 -0
  238. marustorm-0.1.3/src/marustorm/utils/file_filter.py +367 -0
  239. marustorm-0.1.3/src/marustorm/utils/frontmatter.py +70 -0
  240. marustorm-0.1.3/src/marustorm/utils/io.py +27 -0
  241. marustorm-0.1.3/src/marustorm/utils/logging.py +124 -0
  242. marustorm-0.1.3/src/marustorm/utils/media_tags.py +29 -0
  243. marustorm-0.1.3/src/marustorm/utils/message.py +24 -0
  244. marustorm-0.1.3/src/marustorm/utils/path.py +245 -0
  245. marustorm-0.1.3/src/marustorm/utils/proctitle.py +33 -0
  246. marustorm-0.1.3/src/marustorm/utils/proxy.py +31 -0
  247. marustorm-0.1.3/src/marustorm/utils/pyinstaller.py +43 -0
  248. marustorm-0.1.3/src/marustorm/utils/rich/__init__.py +33 -0
  249. marustorm-0.1.3/src/marustorm/utils/rich/columns.py +99 -0
  250. marustorm-0.1.3/src/marustorm/utils/rich/diff_render.py +481 -0
  251. marustorm-0.1.3/src/marustorm/utils/rich/markdown.py +898 -0
  252. marustorm-0.1.3/src/marustorm/utils/rich/markdown_sample.md +108 -0
  253. marustorm-0.1.3/src/marustorm/utils/rich/markdown_sample_short.md +2 -0
  254. marustorm-0.1.3/src/marustorm/utils/rich/syntax.py +114 -0
  255. marustorm-0.1.3/src/marustorm/utils/sensitive.py +54 -0
  256. marustorm-0.1.3/src/marustorm/utils/server.py +121 -0
  257. marustorm-0.1.3/src/marustorm/utils/shell_quoting.py +38 -0
  258. marustorm-0.1.3/src/marustorm/utils/signals.py +43 -0
  259. marustorm-0.1.3/src/marustorm/utils/slashcmd.py +124 -0
  260. marustorm-0.1.3/src/marustorm/utils/string.py +41 -0
  261. marustorm-0.1.3/src/marustorm/utils/subprocess_env.py +73 -0
  262. marustorm-0.1.3/src/marustorm/utils/term.py +168 -0
  263. marustorm-0.1.3/src/marustorm/utils/typing.py +20 -0
  264. marustorm-0.1.3/src/marustorm/utils/windows_paths.py +48 -0
  265. marustorm-0.1.3/src/marustorm/web/__init__.py +5 -0
  266. marustorm-0.1.3/src/marustorm/web/api/__init__.py +15 -0
  267. marustorm-0.1.3/src/marustorm/web/api/config.py +208 -0
  268. marustorm-0.1.3/src/marustorm/web/api/open_in.py +197 -0
  269. marustorm-0.1.3/src/marustorm/web/api/sessions.py +1223 -0
  270. marustorm-0.1.3/src/marustorm/web/app.py +451 -0
  271. marustorm-0.1.3/src/marustorm/web/auth.py +191 -0
  272. marustorm-0.1.3/src/marustorm/web/models.py +98 -0
  273. marustorm-0.1.3/src/marustorm/web/runner/__init__.py +5 -0
  274. marustorm-0.1.3/src/marustorm/web/runner/messages.py +57 -0
  275. marustorm-0.1.3/src/marustorm/web/runner/process.py +754 -0
  276. marustorm-0.1.3/src/marustorm/web/runner/worker.py +95 -0
  277. marustorm-0.1.3/src/marustorm/web/store/__init__.py +1 -0
  278. marustorm-0.1.3/src/marustorm/web/store/sessions.py +432 -0
  279. marustorm-0.1.3/src/marustorm/wire/__init__.py +148 -0
  280. marustorm-0.1.3/src/marustorm/wire/file.py +151 -0
  281. marustorm-0.1.3/src/marustorm/wire/jsonrpc.py +263 -0
  282. marustorm-0.1.3/src/marustorm/wire/protocol.py +2 -0
  283. marustorm-0.1.3/src/marustorm/wire/root_hub.py +27 -0
  284. marustorm-0.1.3/src/marustorm/wire/serde.py +26 -0
  285. marustorm-0.1.3/src/marustorm/wire/server.py +1060 -0
  286. marustorm-0.1.3/src/marustorm/wire/types.py +717 -0
  287. marustorm-0.1.3/tests/__init__.py +1 -0
  288. marustorm-0.1.3/tests/conftest.py +24 -0
  289. marustorm-0.1.3/tests/test_brain.py +42 -0
  290. marustorm-0.1.3/tests/test_config.py +33 -0
  291. marustorm-0.1.3/tests/test_notes.py +83 -0
  292. marustorm-0.1.3/uv.lock +3795 -0
@@ -0,0 +1,72 @@
1
+ name: 🐛 Bug Report / 버그 리포트
2
+ description: Report a bug / 버그를 신고해주세요
3
+ title: "[BUG] "
4
+ labels: ["bug"]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ ## 🐛 Bug Report
10
+ Thanks for taking the time to report a bug!
11
+
12
+ ## 🐛 버그 리포트
13
+ 버그를 신고해 주셔서 감사합니다!
14
+
15
+ - type: textarea
16
+ id: description
17
+ attributes:
18
+ label: Description / 설명
19
+ description: |
20
+ A clear description of the bug.
21
+ 버그에 대한 명확한 설명을 적어주세요.
22
+ placeholder: |
23
+ When I run `marustorm init`, it crashes with...
24
+ `marustorm init`를 실행하면 다음과 같은 에러가 발생합니다...
25
+ validations:
26
+ required: true
27
+
28
+ - type: textarea
29
+ id: reproduction
30
+ attributes:
31
+ label: Reproduction Steps / 재현 방법
32
+ description: |
33
+ Steps to reproduce the bug.
34
+ 버그를 재현하는 단계를 적어주세요.
35
+ placeholder: |
36
+ 1. Run `marustorm init`
37
+ 2. Run `marustorm new "Test"`
38
+ 3. See error
39
+ validations:
40
+ required: true
41
+
42
+ - type: textarea
43
+ id: expected
44
+ attributes:
45
+ label: Expected Behavior / 기대 동작
46
+ description: What did you expect to happen? / 어떤 결과가 나와야 했나요?
47
+ placeholder: The note should be created successfully. / 노트가 정상적으로 생성되어야 합니다.
48
+
49
+ - type: textarea
50
+ id: actual
51
+ attributes:
52
+ label: Actual Behavior / 실제 동작
53
+ description: What actually happened? / 실제로 어떤 결과가 나왔나요?
54
+ placeholder: Error message... / 에러 메시지...
55
+
56
+ - type: textarea
57
+ id: environment
58
+ attributes:
59
+ label: Environment / 환경
60
+ description: |
61
+ - OS:
62
+ - Python version (`python --version`):
63
+ - MaruStorm version (`marustorm --version`):
64
+ - Terminal:
65
+ render: markdown
66
+
67
+ - type: textarea
68
+ id: logs
69
+ attributes:
70
+ label: Logs / 로그
71
+ description: If applicable, add logs. / 해당된다면 로그를 첨부해주세요.
72
+ render: shell
@@ -0,0 +1,53 @@
1
+ name: ✨ Feature Request / 기능 제안
2
+ description: Suggest a new feature / 새로운 기능을 제안해주세요
3
+ title: "[FEATURE] "
4
+ labels: ["enhancement"]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ ## ✨ Feature Request
10
+ Thanks for suggesting a new feature!
11
+
12
+ ## ✨ 기능 제안
13
+ 새로운 기능을 제안해 주셔서 감사합니다!
14
+
15
+ - type: textarea
16
+ id: problem
17
+ attributes:
18
+ label: Problem / 문제
19
+ description: |
20
+ What problem are you trying to solve?
21
+ 해결하려는 문제가 무엇인가요?
22
+ placeholder: |
23
+ I want to sync notes across multiple machines...
24
+ 여러 기기에서 노트를 동기화하고 싶습니다...
25
+ validations:
26
+ required: true
27
+
28
+ - type: textarea
29
+ id: solution
30
+ attributes:
31
+ label: Proposed Solution / 제안하는 해결책
32
+ description: |
33
+ How should this feature work?
34
+ 이 기능은 어떻게 동작해야 하나요?
35
+ placeholder: |
36
+ Add a `marustorm sync --watch` command that monitors file changes...
37
+ 파일 변경을 감시하는 `marustorm sync --watch` 명령어를 추가합니다...
38
+ validations:
39
+ required: true
40
+
41
+ - type: textarea
42
+ id: alternatives
43
+ attributes:
44
+ label: Alternatives / 대안
45
+ description: |
46
+ Have you considered any alternatives?
47
+ 고려핳 다른 대안이 있나요?
48
+
49
+ - type: textarea
50
+ id: context
51
+ attributes:
52
+ label: Additional Context / 추가 정보
53
+ description: Any other context or screenshots. / 기타 참고할 정보가 있나요?
@@ -0,0 +1,91 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ tags: ["v*"]
7
+ pull_request:
8
+ branches: [main]
9
+
10
+ jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ python-version: ["3.12", "3.13", "3.14"]
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+
19
+ - name: Install uv
20
+ uses: astral-sh/setup-uv@v5
21
+ with:
22
+ version: "latest"
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: ${{ matrix.python-version }}
28
+
29
+ - name: Create venv and install dependencies
30
+ run: |
31
+ uv venv
32
+ uv pip install -e ".[dev]"
33
+
34
+ - name: Run tests
35
+ run: uv run pytest tests/test_*.py -v
36
+
37
+ # Skip ruff check — legacy code has many formatting issues to fix later
38
+ # - name: Check formatting
39
+ # run: uv run ruff check src/marustorm tests
40
+
41
+ build:
42
+ runs-on: ubuntu-latest
43
+ steps:
44
+ - uses: actions/checkout@v4
45
+
46
+ - name: Install uv
47
+ uses: astral-sh/setup-uv@v5
48
+ with:
49
+ version: "latest"
50
+
51
+ - name: Set up Python
52
+ uses: actions/setup-python@v5
53
+ with:
54
+ python-version: "3.12"
55
+
56
+ - name: Build package
57
+ run: uv build
58
+
59
+ - name: Upload artifacts
60
+ uses: actions/upload-artifact@v4
61
+ with:
62
+ name: dist
63
+ path: dist/
64
+
65
+ publish:
66
+ needs: [test, build]
67
+ runs-on: ubuntu-latest
68
+ if: startsWith(github.ref, 'refs/tags/v')
69
+ environment: pypi
70
+ permissions:
71
+ id-token: write
72
+ steps:
73
+ - uses: actions/checkout@v4
74
+
75
+ - name: Install uv
76
+ uses: astral-sh/setup-uv@v5
77
+ with:
78
+ version: "latest"
79
+
80
+ - name: Set up Python
81
+ uses: actions/setup-python@v5
82
+ with:
83
+ python-version: "3.12"
84
+
85
+ - name: Build package
86
+ run: uv build
87
+
88
+ - name: Publish to PyPI
89
+ uses: pypa/gh-action-pypi-publish@release/v1
90
+ with:
91
+ packages-dir: dist/
@@ -0,0 +1,41 @@
1
+ name: GitHub Pages
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ workflow_dispatch:
7
+
8
+ permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
+
13
+ concurrency:
14
+ group: "pages"
15
+ cancel-in-progress: false
16
+
17
+ jobs:
18
+ build:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - name: Setup Pages
23
+ uses: actions/configure-pages@v5
24
+ - name: Build with Jekyll
25
+ uses: actions/jekyll-build-pages@v1
26
+ with:
27
+ source: ./docs
28
+ destination: ./_site
29
+ - name: Upload artifact
30
+ uses: actions/upload-pages-artifact@v3
31
+
32
+ deploy:
33
+ environment:
34
+ name: github-pages
35
+ url: ${{ steps.deployment.outputs.page_url }}
36
+ runs-on: ubuntu-latest
37
+ needs: build
38
+ steps:
39
+ - name: Deploy to GitHub Pages
40
+ id: deployment
41
+ uses: actions/deploy-pages@v4
@@ -0,0 +1,51 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+
12
+ # Project files
13
+ .vscode
14
+ .env
15
+ .env.local
16
+ /tests_local
17
+ uv.toml
18
+ .idea/*
19
+
20
+ # Build dependencies
21
+ src/kimi_cli/deps/bin
22
+ src/kimi_cli/deps/tmp
23
+ src/kimi_cli/_build_info.py
24
+
25
+ # Web build artifacts
26
+ src/kimi_cli/web/static/assets/
27
+
28
+ # Vis build artifacts
29
+ src/kimi_cli/vis/static/
30
+
31
+ # Generated reports
32
+ tests_ai/report.json
33
+ tests_ai/terminal_bench_2_cache/
34
+ jobs/
35
+ tests_ai/accuracy_smoke/*.tsv
36
+
37
+ # nix build result
38
+ result
39
+ result-*
40
+
41
+ # macOS files
42
+ .DS_Store
43
+
44
+ # Rust files
45
+ target/
46
+
47
+ node_modules/
48
+ static/
49
+ .memo/
50
+ .entire
51
+ .claude