alysis-code 0.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (458) hide show
  1. alysis_code/__init__.py +3 -0
  2. alysis_code/__main__.py +4 -0
  3. alysis_code/_build_info.py +14 -0
  4. alysis_code/account_login.py +468 -0
  5. alysis_code/agent/README.md +35 -0
  6. alysis_code/agent/__init__.py +11 -0
  7. alysis_code/agent/acceptance_contract.py +2217 -0
  8. alysis_code/agent/blast_radius.py +1403 -0
  9. alysis_code/agent/cache_keepalive.py +227 -0
  10. alysis_code/agent/completion_certificate.py +366 -0
  11. alysis_code/agent/completion_gate.py +306 -0
  12. alysis_code/agent/empty_response_stall.py +403 -0
  13. alysis_code/agent/errors.py +28 -0
  14. alysis_code/agent/llm_calls.py +475 -0
  15. alysis_code/agent/mutation_classification.py +227 -0
  16. alysis_code/agent/prompt_context.py +2508 -0
  17. alysis_code/agent/read_ledger.py +253 -0
  18. alysis_code/agent/regression_baseline.py +642 -0
  19. alysis_code/agent/reproduction_first.py +610 -0
  20. alysis_code/agent/sensitive_output.py +629 -0
  21. alysis_code/agent/session.py +3218 -0
  22. alysis_code/agent/steering.py +191 -0
  23. alysis_code/agent/subagent_execution.py +5177 -0
  24. alysis_code/agent/subagent_workspace.py +666 -0
  25. alysis_code/agent/tools_assembly.py +4728 -0
  26. alysis_code/agent/turn/__init__.py +101 -0
  27. alysis_code/agent/turn/core.py +8483 -0
  28. alysis_code/agent/turn/events.py +113 -0
  29. alysis_code/agent/turn/exploration.py +590 -0
  30. alysis_code/agent/turn/interventions.py +65 -0
  31. alysis_code/agent/turn/read_cache.py +420 -0
  32. alysis_code/agent/turn/snapshot.py +179 -0
  33. alysis_code/agent/turn_contract.py +661 -0
  34. alysis_code/agent/turn_path.py +129 -0
  35. alysis_code/agent/verification.py +2885 -0
  36. alysis_code/agent/verification_commands.py +512 -0
  37. alysis_code/agent/verification_evidence.py +738 -0
  38. alysis_code/agent_loop.py +693 -0
  39. alysis_code/agent_runtimes/__init__.py +51 -0
  40. alysis_code/agent_runtimes/base.py +114 -0
  41. alysis_code/agent_runtimes/builtins.py +129 -0
  42. alysis_code/agent_runtimes/codex_cli.py +664 -0
  43. alysis_code/agent_runtimes/host.py +263 -0
  44. alysis_code/agent_runtimes/registry.py +64 -0
  45. alysis_code/agent_runtimes/service.py +150 -0
  46. alysis_code/agentbox_client.py +416 -0
  47. alysis_code/agentbox_integration.py +310 -0
  48. alysis_code/alysis_cloud.py +152 -0
  49. alysis_code/approval_scope.py +276 -0
  50. alysis_code/assets/README.md +33 -0
  51. alysis_code/assets/__init__.py +126 -0
  52. alysis_code/assets/asset_read_core.py +281 -0
  53. alysis_code/assets/budget_allocator.py +456 -0
  54. alysis_code/assets/comprehender.py +759 -0
  55. alysis_code/assets/index.py +654 -0
  56. alysis_code/assets/ingestion.py +275 -0
  57. alysis_code/assets/legacy_migration.py +413 -0
  58. alysis_code/assets/models.py +263 -0
  59. alysis_code/assets/ocr.py +239 -0
  60. alysis_code/assets/owl/ascii/f-000.txt +13 -0
  61. alysis_code/assets/owl/ascii/f-001.txt +13 -0
  62. alysis_code/assets/owl/ascii/f-002.txt +13 -0
  63. alysis_code/assets/owl/ascii/f-003.txt +13 -0
  64. alysis_code/assets/owl/ascii/f-004.txt +13 -0
  65. alysis_code/assets/owl/ascii/f-005.txt +13 -0
  66. alysis_code/assets/owl/ascii/f-006.txt +13 -0
  67. alysis_code/assets/owl/ascii/f-007.txt +13 -0
  68. alysis_code/assets/owl/ascii/f-008.txt +13 -0
  69. alysis_code/assets/owl/ascii/f-009.txt +13 -0
  70. alysis_code/assets/owl/ascii/f-010.txt +13 -0
  71. alysis_code/assets/owl/ascii/f-011.txt +13 -0
  72. alysis_code/assets/owl/ascii/f-012.txt +13 -0
  73. alysis_code/assets/owl/ascii/f-013.txt +13 -0
  74. alysis_code/assets/owl/ascii/f-014.txt +13 -0
  75. alysis_code/assets/owl/ascii/f-015.txt +13 -0
  76. alysis_code/assets/owl/ascii/f-016.txt +13 -0
  77. alysis_code/assets/owl/ascii/f-017.txt +13 -0
  78. alysis_code/assets/owl/ascii/f-018.txt +13 -0
  79. alysis_code/assets/owl/ascii/f-019.txt +13 -0
  80. alysis_code/assets/owl/ascii/f-020.txt +13 -0
  81. alysis_code/assets/owl/index.html +98 -0
  82. alysis_code/assets/owl/show-owl.sh +761 -0
  83. alysis_code/assets/paths.py +49 -0
  84. alysis_code/assets/plan_binding.py +326 -0
  85. alysis_code/assets/planner_context.py +466 -0
  86. alysis_code/assets/planner_tools.py +184 -0
  87. alysis_code/assets/prompts.py +101 -0
  88. alysis_code/assets/replanner_context.py +239 -0
  89. alysis_code/assets/surface.py +521 -0
  90. alysis_code/assets/untrusted_content.py +48 -0
  91. alysis_code/assets/usage_logger.py +94 -0
  92. alysis_code/assets/worker_mirror.py +428 -0
  93. alysis_code/assets/worker_section.py +303 -0
  94. alysis_code/assets/worker_tools.py +468 -0
  95. alysis_code/atomic_io.py +83 -0
  96. alysis_code/auth_diagnostics.py +272 -0
  97. alysis_code/background_runner.py +366 -0
  98. alysis_code/branding.py +270 -0
  99. alysis_code/budget_policy.py +390 -0
  100. alysis_code/build_identity.py +465 -0
  101. alysis_code/builtin_hooks/__init__.py +7 -0
  102. alysis_code/builtin_hooks/notify_done_windows.py +65 -0
  103. alysis_code/bwrap_etc.py +76 -0
  104. alysis_code/cancellation.py +41 -0
  105. alysis_code/capabilities.py +137 -0
  106. alysis_code/chatgpt_codex_static_provider.py +133 -0
  107. alysis_code/cli.py +51 -0
  108. alysis_code/cli_impl/__init__.py +1 -0
  109. alysis_code/cli_impl/assets_cli.py +537 -0
  110. alysis_code/cli_impl/assets_modal.py +412 -0
  111. alysis_code/cli_impl/chat/__init__.py +156 -0
  112. alysis_code/cli_impl/chat/commands.py +2616 -0
  113. alysis_code/cli_impl/chat/loop.py +4508 -0
  114. alysis_code/cli_impl/chat/mid_turn_policy.py +125 -0
  115. alysis_code/cli_impl/chat/rendering.py +444 -0
  116. alysis_code/cli_impl/chat/state.py +124 -0
  117. alysis_code/cli_impl/chat_resume.py +830 -0
  118. alysis_code/cli_impl/chat_slash_completer.py +258 -0
  119. alysis_code/cli_impl/commands/__init__.py +11 -0
  120. alysis_code/cli_impl/commands/_shared.py +89 -0
  121. alysis_code/cli_impl/commands/auth.py +623 -0
  122. alysis_code/cli_impl/commands/chat_resume_helpers.py +1531 -0
  123. alysis_code/cli_impl/commands/chat_state.py +158 -0
  124. alysis_code/cli_impl/commands/chat_status.py +1248 -0
  125. alysis_code/cli_impl/commands/chat_terminal.py +942 -0
  126. alysis_code/cli_impl/commands/chat_tui_panels.py +1018 -0
  127. alysis_code/cli_impl/commands/cli_common.py +1223 -0
  128. alysis_code/cli_impl/commands/cli_surface.py +77 -0
  129. alysis_code/cli_impl/commands/config.py +131 -0
  130. alysis_code/cli_impl/commands/conventions.py +85 -0
  131. alysis_code/cli_impl/commands/execution_helpers.py +350 -0
  132. alysis_code/cli_impl/commands/extensions.py +401 -0
  133. alysis_code/cli_impl/commands/forge.py +1282 -0
  134. alysis_code/cli_impl/commands/forge_asset_view.py +121 -0
  135. alysis_code/cli_impl/commands/forge_helpers.py +1215 -0
  136. alysis_code/cli_impl/commands/hooks.py +737 -0
  137. alysis_code/cli_impl/commands/ide_bridge.py +31 -0
  138. alysis_code/cli_impl/commands/mcp.py +700 -0
  139. alysis_code/cli_impl/commands/profile.py +453 -0
  140. alysis_code/cli_impl/commands/prompt_helpers.py +307 -0
  141. alysis_code/cli_impl/commands/report.py +88 -0
  142. alysis_code/cli_impl/commands/root.py +1118 -0
  143. alysis_code/cli_impl/commands/sandbox.py +184 -0
  144. alysis_code/cli_impl/commands/server.py +54 -0
  145. alysis_code/cli_impl/commands/sessions.py +252 -0
  146. alysis_code/cli_impl/commands/skills.py +404 -0
  147. alysis_code/cli_impl/commands/startup.py +946 -0
  148. alysis_code/cli_impl/commands/tools.py +335 -0
  149. alysis_code/cli_impl/commands/update.py +364 -0
  150. alysis_code/cli_impl/commands/welcome.py +972 -0
  151. alysis_code/cli_impl/config_menu.py +3882 -0
  152. alysis_code/cli_impl/forge.py +4509 -0
  153. alysis_code/cli_impl/forge_recovery.py +485 -0
  154. alysis_code/cli_impl/setup_wizard.py +2409 -0
  155. alysis_code/cli_impl/tui/__init__.py +58 -0
  156. alysis_code/cli_impl/tui/app.py +4551 -0
  157. alysis_code/cli_impl/tui/config.py +32 -0
  158. alysis_code/cli_impl/tui/config_flow.py +2754 -0
  159. alysis_code/cli_impl/tui/config_overlay.py +566 -0
  160. alysis_code/cli_impl/tui/content.py +78 -0
  161. alysis_code/cli_impl/tui/footer.py +218 -0
  162. alysis_code/cli_impl/tui/forge_status.py +136 -0
  163. alysis_code/cli_impl/tui/markdown.py +244 -0
  164. alysis_code/cli_impl/tui/owl.py +109 -0
  165. alysis_code/cli_impl/tui/plan_meta.py +477 -0
  166. alysis_code/cli_impl/tui/setup_app.py +519 -0
  167. alysis_code/cli_impl/tui/setup_flow.py +1622 -0
  168. alysis_code/cli_impl/tui/state.py +101 -0
  169. alysis_code/cli_impl/tui/subagent_identity.py +66 -0
  170. alysis_code/cli_impl/tui/subagent_panel.py +186 -0
  171. alysis_code/cli_impl/tui/surface.py +796 -0
  172. alysis_code/cli_impl/tui/transcript.py +514 -0
  173. alysis_code/cli_impl/tui/update_prompt.py +79 -0
  174. alysis_code/cli_impl/tui/workspace_guard.py +384 -0
  175. alysis_code/clipboard.py +172 -0
  176. alysis_code/code_review.py +1211 -0
  177. alysis_code/compaction/__init__.py +28 -0
  178. alysis_code/compaction/conversation_compactor.py +2932 -0
  179. alysis_code/compaction/importance.py +177 -0
  180. alysis_code/compaction/settings.py +297 -0
  181. alysis_code/compaction/tool_output_offload.py +447 -0
  182. alysis_code/config.py +3509 -0
  183. alysis_code/conflict_auto_resolver.py +895 -0
  184. alysis_code/context/__init__.py +1 -0
  185. alysis_code/context/tool_schema_budgeter.py +220 -0
  186. alysis_code/crash_diagnostics.py +282 -0
  187. alysis_code/custom_tools/README.md +34 -0
  188. alysis_code/custom_tools/__init__.py +43 -0
  189. alysis_code/custom_tools/discovery.py +903 -0
  190. alysis_code/custom_tools/runtime.py +1516 -0
  191. alysis_code/custom_tools/session.py +227 -0
  192. alysis_code/custom_tools/trust.py +232 -0
  193. alysis_code/diff_paths.py +113 -0
  194. alysis_code/direction_change.py +293 -0
  195. alysis_code/dispatch_timing.py +306 -0
  196. alysis_code/durable_service_manager.py +1236 -0
  197. alysis_code/edit_discipline.py +659 -0
  198. alysis_code/error_text.py +73 -0
  199. alysis_code/execution_budget.py +411 -0
  200. alysis_code/execution_context.py +915 -0
  201. alysis_code/execution_deadline.py +1065 -0
  202. alysis_code/execution_shared.py +1904 -0
  203. alysis_code/extensions/README.md +30 -0
  204. alysis_code/extensions/__init__.py +93 -0
  205. alysis_code/extensions/activation.py +138 -0
  206. alysis_code/extensions/install.py +1436 -0
  207. alysis_code/extensions/manifest.py +487 -0
  208. alysis_code/extensions/models.py +74 -0
  209. alysis_code/extensions/paths.py +56 -0
  210. alysis_code/extensions/registry.json +4 -0
  211. alysis_code/extensions/registry.py +52 -0
  212. alysis_code/extensions/state.py +83 -0
  213. alysis_code/extensions/workspace_trust.py +101 -0
  214. alysis_code/failed_task_evidence.py +369 -0
  215. alysis_code/failure_category.py +315 -0
  216. alysis_code/feedback_report.py +1647 -0
  217. alysis_code/file_classification.py +485 -0
  218. alysis_code/forge.py +2064 -0
  219. alysis_code/forge_completion.py +362 -0
  220. alysis_code/forge_events.py +475 -0
  221. alysis_code/frontmatter_utils.py +95 -0
  222. alysis_code/git_evidence.py +1181 -0
  223. alysis_code/git_ops.py +560 -0
  224. alysis_code/git_safe.py +62 -0
  225. alysis_code/git_worktrees.py +190 -0
  226. alysis_code/hooks/README.md +33 -0
  227. alysis_code/hooks/__init__.py +67 -0
  228. alysis_code/hooks/audit.py +171 -0
  229. alysis_code/hooks/config.py +225 -0
  230. alysis_code/hooks/dispatcher.py +1110 -0
  231. alysis_code/hooks/models.py +447 -0
  232. alysis_code/hooks/trust.py +202 -0
  233. alysis_code/host_actions.py +543 -0
  234. alysis_code/host_browser.py +103 -0
  235. alysis_code/ide/__init__.py +5 -0
  236. alysis_code/ide/activity_events.py +399 -0
  237. alysis_code/ide/approvals.py +337 -0
  238. alysis_code/ide/artifacts.py +153 -0
  239. alysis_code/ide/browser_egress_proxy.py +1076 -0
  240. alysis_code/ide/cdp_websocket_transport.py +1192 -0
  241. alysis_code/ide/change_ledger.py +1721 -0
  242. alysis_code/ide/context_blocks.py +979 -0
  243. alysis_code/ide/event_stream.py +531 -0
  244. alysis_code/ide/forge_protocol.py +3112 -0
  245. alysis_code/ide/forge_request_ledger.py +737 -0
  246. alysis_code/ide/health.py +965 -0
  247. alysis_code/ide/managed_browser.py +2251 -0
  248. alysis_code/ide/management_protocol.py +3414 -0
  249. alysis_code/ide/mcp_oauth_coordinator.py +744 -0
  250. alysis_code/ide/mcp_oauth_lifecycle.py +1504 -0
  251. alysis_code/ide/prompt_queue.py +1070 -0
  252. alysis_code/ide/protocol.py +191 -0
  253. alysis_code/ide/resumable_swarm.py +1543 -0
  254. alysis_code/ide/session_search.py +295 -0
  255. alysis_code/ide/stdio_bridge.py +9935 -0
  256. alysis_code/ide/structured_state.py +1579 -0
  257. alysis_code/ide/swarm_protocol.py +816 -0
  258. alysis_code/integration_gate.py +506 -0
  259. alysis_code/interactive_input_guard.py +39 -0
  260. alysis_code/interactive_plan_mode.py +26 -0
  261. alysis_code/internal_artifacts.py +179 -0
  262. alysis_code/knowledge_base.py +1409 -0
  263. alysis_code/knowledge_capture.py +1190 -0
  264. alysis_code/knowledge_librarian.py +605 -0
  265. alysis_code/language_policy.py +34 -0
  266. alysis_code/litellm_static_provider.py +535 -0
  267. alysis_code/llm/__init__.py +1 -0
  268. alysis_code/llm/anthropic_messages.py +2288 -0
  269. alysis_code/llm/base.py +71 -0
  270. alysis_code/llm/cache_capabilities.py +985 -0
  271. alysis_code/llm/cache_control_blocks.py +244 -0
  272. alysis_code/llm/cache_policy.py +388 -0
  273. alysis_code/llm/factory.py +373 -0
  274. alysis_code/llm/gemini_generate_content.py +2652 -0
  275. alysis_code/llm/gemini_interactions.py +739 -0
  276. alysis_code/llm/metadata.py +450 -0
  277. alysis_code/llm/openai_compat.py +2947 -0
  278. alysis_code/llm/openai_responses.py +2604 -0
  279. alysis_code/llm/protocols.py +609 -0
  280. alysis_code/llm/provider_limits.py +525 -0
  281. alysis_code/llm/request_plan.py +389 -0
  282. alysis_code/llm/request_shape.py +238 -0
  283. alysis_code/llm/streaming.py +108 -0
  284. alysis_code/llm/temperature_compat.py +78 -0
  285. alysis_code/llm/types.py +195 -0
  286. alysis_code/llm/usage_normalization.py +222 -0
  287. alysis_code/llm_error_display.py +315 -0
  288. alysis_code/logging_redaction.py +326 -0
  289. alysis_code/managed_host_deadline.py +196 -0
  290. alysis_code/mcp/README.md +33 -0
  291. alysis_code/mcp/__init__.py +24 -0
  292. alysis_code/mcp/client.py +1137 -0
  293. alysis_code/mcp/config.py +597 -0
  294. alysis_code/mcp/errors.py +113 -0
  295. alysis_code/mcp/forge_scope.py +154 -0
  296. alysis_code/mcp/jsonrpc.py +214 -0
  297. alysis_code/mcp/manager.py +2308 -0
  298. alysis_code/mcp/models.py +666 -0
  299. alysis_code/mcp/oauth.py +972 -0
  300. alysis_code/mcp/oauth_runtime.py +310 -0
  301. alysis_code/mcp/oauth_store.py +276 -0
  302. alysis_code/mcp/prompts.py +329 -0
  303. alysis_code/mcp/resources.py +295 -0
  304. alysis_code/mcp/roots.py +106 -0
  305. alysis_code/mcp/server_requests.py +75 -0
  306. alysis_code/mcp/token_store.py +859 -0
  307. alysis_code/mcp/transport_http.py +1338 -0
  308. alysis_code/mcp/transport_stdio.py +1267 -0
  309. alysis_code/mcp/untrusted_content.py +119 -0
  310. alysis_code/merge_conflict_reviewer.py +729 -0
  311. alysis_code/model_catalog/__init__.py +1 -0
  312. alysis_code/model_catalog/chatgpt_codex_subscription_snapshot.json +186 -0
  313. alysis_code/model_catalog/litellm_model_prices_snapshot.json +44715 -0
  314. alysis_code/model_catalog/litellm_model_prices_snapshot.meta.json +17 -0
  315. alysis_code/model_metadata_policy.py +223 -0
  316. alysis_code/model_metadata_utils.py +103 -0
  317. alysis_code/model_registry.py +1420 -0
  318. alysis_code/model_router.py +147 -0
  319. alysis_code/permission_policy.py +1016 -0
  320. alysis_code/personas.py +451 -0
  321. alysis_code/pipeline_facts.py +233 -0
  322. alysis_code/plan_assistant.py +4763 -0
  323. alysis_code/plan_mode.py +393 -0
  324. alysis_code/plan_reconciliation.py +1228 -0
  325. alysis_code/plan_repair.py +652 -0
  326. alysis_code/plan_validation.py +1099 -0
  327. alysis_code/planning_constraints.py +904 -0
  328. alysis_code/policy.py +95 -0
  329. alysis_code/preview_server.py +457 -0
  330. alysis_code/process_reaping.py +566 -0
  331. alysis_code/profile_presets.py +1834 -0
  332. alysis_code/profiles.py +666 -0
  333. alysis_code/provider_auth/__init__.py +29 -0
  334. alysis_code/provider_auth/base.py +99 -0
  335. alysis_code/provider_auth/openai_codex.py +951 -0
  336. alysis_code/provider_auth/registry.py +76 -0
  337. alysis_code/provider_auth/store.py +125 -0
  338. alysis_code/provider_diagnostics.py +1209 -0
  339. alysis_code/provider_model_catalog.py +685 -0
  340. alysis_code/provider_telemetry.py +1699 -0
  341. alysis_code/provider_url.py +75 -0
  342. alysis_code/reasoning_contracts.py +911 -0
  343. alysis_code/remote_sync.py +350 -0
  344. alysis_code/replanning.py +1195 -0
  345. alysis_code/repo_scan.py +1152 -0
  346. alysis_code/request_estimation.py +296 -0
  347. alysis_code/review_gate.py +617 -0
  348. alysis_code/run_lock.py +1141 -0
  349. alysis_code/run_outcome.py +58 -0
  350. alysis_code/run_provenance.py +774 -0
  351. alysis_code/run_state.py +445 -0
  352. alysis_code/runtime_artifacts.py +116 -0
  353. alysis_code/runtime_context_features.py +78 -0
  354. alysis_code/runtime_kind.py +52 -0
  355. alysis_code/safety/__init__.py +11 -0
  356. alysis_code/safety/mcp_sanitize.py +29 -0
  357. alysis_code/safety/safe_http.py +297 -0
  358. alysis_code/safety/subagent_report.py +184 -0
  359. alysis_code/sandbox_doctor.py +682 -0
  360. alysis_code/sandbox_runner.py +1025 -0
  361. alysis_code/sandbox_settings.py +423 -0
  362. alysis_code/serialized_paths.py +355 -0
  363. alysis_code/server/__init__.py +3 -0
  364. alysis_code/server/app.py +367 -0
  365. alysis_code/server/auth.py +34 -0
  366. alysis_code/server/job_config.py +30 -0
  367. alysis_code/server/settings.py +215 -0
  368. alysis_code/server/store.py +193 -0
  369. alysis_code/server/worker_runner.py +657 -0
  370. alysis_code/service_persistence.py +355 -0
  371. alysis_code/session_artifacts.py +108 -0
  372. alysis_code/session_metrics.py +331 -0
  373. alysis_code/session_store.py +624 -0
  374. alysis_code/skills/README.md +34 -0
  375. alysis_code/skills/__init__.py +104 -0
  376. alysis_code/skills/conventions.py +84 -0
  377. alysis_code/skills/discovery.py +176 -0
  378. alysis_code/skills/eval_models.py +232 -0
  379. alysis_code/skills/eval_runner.py +372 -0
  380. alysis_code/skills/evals.py +1344 -0
  381. alysis_code/skills/install.py +293 -0
  382. alysis_code/skills/loader.py +118 -0
  383. alysis_code/skills/matching.py +103 -0
  384. alysis_code/skills/models.py +71 -0
  385. alysis_code/skills/paths.py +56 -0
  386. alysis_code/skills/prompting.py +500 -0
  387. alysis_code/skills/scaffold.py +142 -0
  388. alysis_code/skills/state.py +441 -0
  389. alysis_code/skills/transactions.py +125 -0
  390. alysis_code/skills/validation.py +304 -0
  391. alysis_code/step_budget.py +238 -0
  392. alysis_code/subagent_labels.py +49 -0
  393. alysis_code/subagents.py +1072 -0
  394. alysis_code/surface/__init__.py +80 -0
  395. alysis_code/surface/base.py +305 -0
  396. alysis_code/surface/console.py +387 -0
  397. alysis_code/surface/events.py +372 -0
  398. alysis_code/surface/hidden_surface.py +529 -0
  399. alysis_code/surface/noop_surface.py +219 -0
  400. alysis_code/surface/rich_surface.py +1555 -0
  401. alysis_code/surface/styles.py +67 -0
  402. alysis_code/surface/theme.py +455 -0
  403. alysis_code/surface/types.py +100 -0
  404. alysis_code/swarm_backend.py +926 -0
  405. alysis_code/swarm_orchestrator.py +4020 -0
  406. alysis_code/swarm_scheduler.py +441 -0
  407. alysis_code/swarm_trace.py +429 -0
  408. alysis_code/swarm_worker.py +2119 -0
  409. alysis_code/swarm_write_guard.py +348 -0
  410. alysis_code/task_dependencies.py +170 -0
  411. alysis_code/task_readiness.py +992 -0
  412. alysis_code/task_scope.py +2148 -0
  413. alysis_code/terminal_manager.py +762 -0
  414. alysis_code/terminal_ownership.py +460 -0
  415. alysis_code/text_normalization.py +30 -0
  416. alysis_code/token_budget.py +97 -0
  417. alysis_code/tools/README.md +34 -0
  418. alysis_code/tools/__init__.py +1 -0
  419. alysis_code/tools/artifacts.py +127 -0
  420. alysis_code/tools/availability.py +188 -0
  421. alysis_code/tools/fs.py +1456 -0
  422. alysis_code/tools/git.py +461 -0
  423. alysis_code/tools/history.py +229 -0
  424. alysis_code/tools/http_timeout.py +78 -0
  425. alysis_code/tools/image_generation.py +552 -0
  426. alysis_code/tools/registry.py +2936 -0
  427. alysis_code/tools/repo_map.py +476 -0
  428. alysis_code/tools/search.py +563 -0
  429. alysis_code/tools/shell.py +135 -0
  430. alysis_code/tools/symbols.py +1350 -0
  431. alysis_code/tools/test_discovery.py +643 -0
  432. alysis_code/tools/web.py +482 -0
  433. alysis_code/tools/web_search.py +2012 -0
  434. alysis_code/tools/web_search_dashscope.py +557 -0
  435. alysis_code/tools/web_search_ddgs.py +221 -0
  436. alysis_code/tools/web_search_provider_adapters.py +1429 -0
  437. alysis_code/tools/web_search_tavily.py +194 -0
  438. alysis_code/updates.py +933 -0
  439. alysis_code/usage_tracker.py +1990 -0
  440. alysis_code/verification_command_analysis.py +1004 -0
  441. alysis_code/verification_contract.py +574 -0
  442. alysis_code/verification_failure_summary.py +273 -0
  443. alysis_code/verification_repair.py +385 -0
  444. alysis_code/verify_gate.py +3129 -0
  445. alysis_code/web_research.py +1872 -0
  446. alysis_code/web_search_adapters.py +66 -0
  447. alysis_code/web_search_policy.py +27 -0
  448. alysis_code/workspace_binding.py +389 -0
  449. alysis_code/workspace_binding_ui.py +408 -0
  450. alysis_code/workspace_context.py +273 -0
  451. alysis_code/workspace_isolation.py +138 -0
  452. alysis_code/workspace_provisioning.py +455 -0
  453. alysis_code-0.13.0.dist-info/METADATA +507 -0
  454. alysis_code-0.13.0.dist-info/RECORD +458 -0
  455. alysis_code-0.13.0.dist-info/WHEEL +4 -0
  456. alysis_code-0.13.0.dist-info/entry_points.txt +3 -0
  457. alysis_code-0.13.0.dist-info/licenses/LICENSE +176 -0
  458. alysis_code-0.13.0.dist-info/licenses/NOTICE +4 -0
@@ -0,0 +1,1181 @@
1
+ from __future__ import annotations
2
+
3
+ import hashlib
4
+ import os
5
+ import stat
6
+ import subprocess
7
+ from dataclasses import dataclass
8
+ from pathlib import Path, PurePosixPath
9
+ from typing import Any, Literal
10
+
11
+ from .file_classification import classify_path, is_generated_or_vendor_path
12
+ from .git_safe import build_git_cmd, build_git_process_env
13
+ from .runtime_artifacts import is_runtime_artifact_path
14
+
15
+ PatchCaptureStatus = Literal["complete", "partial", "failed"]
16
+ CandidatePatchCompleteness = Literal["complete", "partial", "failed"]
17
+ CandidateDeltaPathKind = Literal[
18
+ "committed",
19
+ "staged",
20
+ "unstaged",
21
+ "deleted",
22
+ "untracked_material",
23
+ "untracked_generated",
24
+ "unknown_binary_or_large",
25
+ "ignored_generated",
26
+ "ignored_material",
27
+ ]
28
+
29
+
30
+ @dataclass(frozen=True)
31
+ class CandidateDeltaPath:
32
+ path: str
33
+ kind: CandidateDeltaPathKind
34
+ tracked: bool
35
+ classification: str = "unknown"
36
+ size_bytes: int | None = None
37
+ sha256: str | None = None
38
+ reason: str | None = None
39
+
40
+ def to_dict(self) -> dict[str, Any]:
41
+ return {
42
+ "path": self.path,
43
+ "kind": self.kind,
44
+ "tracked": self.tracked,
45
+ "classification": self.classification,
46
+ "size_bytes": self.size_bytes,
47
+ "sha256": self.sha256,
48
+ "reason": self.reason,
49
+ }
50
+
51
+ @classmethod
52
+ def from_dict(cls, payload: dict[str, object]) -> CandidateDeltaPath:
53
+ return cls(
54
+ path=str(payload.get("path") or ""),
55
+ kind=_delta_path_kind(payload.get("kind")),
56
+ tracked=bool(payload.get("tracked")),
57
+ classification=str(payload.get("classification") or "unknown"),
58
+ size_bytes=_optional_int(payload.get("size_bytes")),
59
+ sha256=str(payload.get("sha256")) if payload.get("sha256") is not None else None,
60
+ reason=str(payload.get("reason")) if payload.get("reason") is not None else None,
61
+ )
62
+
63
+
64
+ @dataclass(frozen=True)
65
+ class CandidateEvidenceExclusion:
66
+ path: str
67
+ reason: str
68
+ tracked: bool = False
69
+ classification: str = "runtime_artifact"
70
+ size_bytes: int | None = None
71
+ sha256: str | None = None
72
+
73
+ def to_dict(self) -> dict[str, Any]:
74
+ return {
75
+ "path": self.path,
76
+ "reason": self.reason,
77
+ "tracked": self.tracked,
78
+ "classification": self.classification,
79
+ "size_bytes": self.size_bytes,
80
+ "sha256": self.sha256,
81
+ }
82
+
83
+ @classmethod
84
+ def from_dict(cls, payload: dict[str, object]) -> CandidateEvidenceExclusion:
85
+ return cls(
86
+ path=str(payload.get("path") or ""),
87
+ reason=str(payload.get("reason") or "excluded"),
88
+ tracked=bool(payload.get("tracked")),
89
+ classification=str(payload.get("classification") or "runtime_artifact"),
90
+ size_bytes=_optional_int(payload.get("size_bytes")),
91
+ sha256=str(payload.get("sha256")) if payload.get("sha256") is not None else None,
92
+ )
93
+
94
+
95
+ @dataclass(frozen=True)
96
+ class CandidatePatchCaptureResult:
97
+ status: PatchCaptureStatus
98
+ material_patch_complete: bool
99
+ patch_text_sha256: str
100
+ reason_codes: tuple[str, ...] = ()
101
+
102
+ def to_dict(self) -> dict[str, Any]:
103
+ return {
104
+ "status": self.status,
105
+ "material_patch_complete": self.material_patch_complete,
106
+ "patch_text_sha256": self.patch_text_sha256,
107
+ "reason_codes": list(self.reason_codes),
108
+ }
109
+
110
+ @classmethod
111
+ def from_dict(cls, payload: dict[str, object]) -> CandidatePatchCaptureResult:
112
+ status = _patch_status(payload.get("status"))
113
+ return cls(
114
+ status=status,
115
+ material_patch_complete=bool(payload.get("material_patch_complete")),
116
+ patch_text_sha256=str(payload.get("patch_text_sha256") or ""),
117
+ reason_codes=_tuple_strs(payload.get("reason_codes")),
118
+ )
119
+
120
+
121
+ @dataclass(frozen=True)
122
+ class CandidateWorkingTreeDelta:
123
+ base_revision: str
124
+ final_head_revision: str | None
125
+ head_changed_from_base: bool = False
126
+ commits_ahead_count: int = 0
127
+ raw_changed_paths: tuple[str, ...] = ()
128
+ material_changed_paths: tuple[str, ...] = ()
129
+ excluded_generated_paths: tuple[str, ...] = ()
130
+ omitted_material_paths: tuple[str, ...] = ()
131
+ tracked_changed_paths: tuple[str, ...] = ()
132
+ staged_paths: tuple[str, ...] = ()
133
+ unstaged_paths: tuple[str, ...] = ()
134
+ deleted_paths: tuple[str, ...] = ()
135
+ untracked_material_paths: tuple[str, ...] = ()
136
+ untracked_generated_paths: tuple[str, ...] = ()
137
+ ignored_generated_paths: tuple[str, ...] = ()
138
+ unknown_binary_or_large_paths: tuple[str, ...] = ()
139
+ path_entries: tuple[CandidateDeltaPath, ...] = ()
140
+ excluded_paths: tuple[CandidateEvidenceExclusion, ...] = ()
141
+ omitted_material_entries: tuple[CandidateEvidenceExclusion, ...] = ()
142
+ patch_capture_status: PatchCaptureStatus = "complete"
143
+ material_patch_complete: bool = True
144
+ patch_reason_codes: tuple[str, ...] = ()
145
+ state_descriptors: tuple[str, ...] = ()
146
+ patch_text_sha256: str = ""
147
+ material_changed_file_count: int = 0
148
+ raw_changed_file_count: int = 0
149
+ evidence_filter_policy_version: str = "candidate-working-tree-delta-v1"
150
+
151
+ def __post_init__(self) -> None:
152
+ material = _sorted_unique(self.material_changed_paths)
153
+ raw = _sorted_unique(self.raw_changed_paths)
154
+ object.__setattr__(self, "material_changed_paths", material)
155
+ object.__setattr__(self, "raw_changed_paths", raw)
156
+ object.__setattr__(self, "material_changed_file_count", len(material))
157
+ object.__setattr__(self, "raw_changed_file_count", len(raw))
158
+
159
+ def to_dict(self) -> dict[str, Any]:
160
+ return {
161
+ "schema_version": 1,
162
+ "base_revision": self.base_revision,
163
+ "final_head_revision": self.final_head_revision,
164
+ "head_changed_from_base": self.head_changed_from_base,
165
+ "commits_ahead_count": self.commits_ahead_count,
166
+ "raw_changed_paths": list(self.raw_changed_paths),
167
+ "material_changed_paths": list(self.material_changed_paths),
168
+ "excluded_generated_paths": list(self.excluded_generated_paths),
169
+ "omitted_material_paths": list(self.omitted_material_paths),
170
+ "tracked_changed_paths": list(self.tracked_changed_paths),
171
+ "staged_paths": list(self.staged_paths),
172
+ "unstaged_paths": list(self.unstaged_paths),
173
+ "deleted_paths": list(self.deleted_paths),
174
+ "untracked_material_paths": list(self.untracked_material_paths),
175
+ "untracked_generated_paths": list(self.untracked_generated_paths),
176
+ "ignored_generated_paths": list(self.ignored_generated_paths),
177
+ "unknown_binary_or_large_paths": list(self.unknown_binary_or_large_paths),
178
+ "path_entries": [item.to_dict() for item in self.path_entries],
179
+ "excluded_paths": [item.to_dict() for item in self.excluded_paths],
180
+ "omitted_material_entries": [item.to_dict() for item in self.omitted_material_entries],
181
+ "patch_capture_status": self.patch_capture_status,
182
+ "material_patch_complete": self.material_patch_complete,
183
+ "patch_reason_codes": list(self.patch_reason_codes),
184
+ "state_descriptors": list(self.state_descriptors),
185
+ "patch_text_sha256": self.patch_text_sha256,
186
+ "material_changed_file_count": self.material_changed_file_count,
187
+ "raw_changed_file_count": self.raw_changed_file_count,
188
+ "evidence_filter_policy_version": self.evidence_filter_policy_version,
189
+ }
190
+
191
+ @classmethod
192
+ def from_dict(cls, payload: dict[str, object]) -> CandidateWorkingTreeDelta:
193
+ return cls(
194
+ base_revision=str(payload.get("base_revision") or ""),
195
+ final_head_revision=(
196
+ str(payload.get("final_head_revision"))
197
+ if payload.get("final_head_revision") is not None
198
+ else None
199
+ ),
200
+ head_changed_from_base=bool(payload.get("head_changed_from_base")),
201
+ commits_ahead_count=_int(payload.get("commits_ahead_count")),
202
+ raw_changed_paths=_tuple_strs(payload.get("raw_changed_paths")),
203
+ material_changed_paths=_tuple_strs(payload.get("material_changed_paths")),
204
+ excluded_generated_paths=_tuple_strs(payload.get("excluded_generated_paths")),
205
+ omitted_material_paths=_tuple_strs(payload.get("omitted_material_paths")),
206
+ tracked_changed_paths=_tuple_strs(payload.get("tracked_changed_paths")),
207
+ staged_paths=_tuple_strs(payload.get("staged_paths")),
208
+ unstaged_paths=_tuple_strs(payload.get("unstaged_paths")),
209
+ deleted_paths=_tuple_strs(payload.get("deleted_paths")),
210
+ untracked_material_paths=_tuple_strs(payload.get("untracked_material_paths")),
211
+ untracked_generated_paths=_tuple_strs(payload.get("untracked_generated_paths")),
212
+ ignored_generated_paths=_tuple_strs(payload.get("ignored_generated_paths")),
213
+ unknown_binary_or_large_paths=_tuple_strs(payload.get("unknown_binary_or_large_paths")),
214
+ path_entries=tuple(
215
+ CandidateDeltaPath.from_dict(item)
216
+ for item in _tuple_dicts(payload.get("path_entries"))
217
+ ),
218
+ excluded_paths=tuple(
219
+ CandidateEvidenceExclusion.from_dict(item)
220
+ for item in _tuple_dicts(payload.get("excluded_paths"))
221
+ ),
222
+ omitted_material_entries=tuple(
223
+ CandidateEvidenceExclusion.from_dict(item)
224
+ for item in _tuple_dicts(payload.get("omitted_material_entries"))
225
+ ),
226
+ patch_capture_status=_patch_status(payload.get("patch_capture_status")),
227
+ material_patch_complete=bool(payload.get("material_patch_complete")),
228
+ patch_reason_codes=_tuple_strs(payload.get("patch_reason_codes")),
229
+ state_descriptors=_tuple_strs(payload.get("state_descriptors")),
230
+ patch_text_sha256=str(payload.get("patch_text_sha256") or ""),
231
+ )
232
+
233
+
234
+ @dataclass(frozen=True)
235
+ class CandidateGitState:
236
+ base_ref: str
237
+ head_ref: str | None
238
+ base_ref_available: bool = False
239
+ git_commit_created: bool = False
240
+ status_porcelain: str = ""
241
+ changed_files: tuple[str, ...] = ()
242
+ committed_files: tuple[str, ...] = ()
243
+ staged_files: tuple[str, ...] = ()
244
+ unstaged_files: tuple[str, ...] = ()
245
+ untracked_files: tuple[str, ...] = ()
246
+ patch_text: str = ""
247
+ patch_capture_status: PatchCaptureStatus = "complete"
248
+ reason_codes: tuple[str, ...] = ()
249
+ state_descriptors: tuple[str, ...] = ()
250
+ raw_changed_paths: tuple[str, ...] = ()
251
+ material_changed_paths: tuple[str, ...] = ()
252
+ excluded_generated_paths: tuple[str, ...] = ()
253
+ omitted_material_paths: tuple[str, ...] = ()
254
+ tracked_changed_paths: tuple[str, ...] = ()
255
+ deleted_paths: tuple[str, ...] = ()
256
+ untracked_material_paths: tuple[str, ...] = ()
257
+ untracked_generated_paths: tuple[str, ...] = ()
258
+ unknown_binary_or_large_paths: tuple[str, ...] = ()
259
+ material_patch_complete: bool = True
260
+ patch_text_sha256: str = ""
261
+ material_changed_file_count: int = 0
262
+ raw_changed_file_count: int = 0
263
+ evidence_filter_policy_version: str = "candidate-working-tree-delta-v1"
264
+ working_tree_delta: CandidateWorkingTreeDelta | None = None
265
+
266
+ def __post_init__(self) -> None:
267
+ material = _sorted_unique(self.material_changed_paths or self.changed_files)
268
+ raw = _sorted_unique(self.raw_changed_paths or self.changed_files)
269
+ object.__setattr__(self, "changed_files", material)
270
+ object.__setattr__(self, "material_changed_paths", material)
271
+ object.__setattr__(self, "raw_changed_paths", raw)
272
+ object.__setattr__(self, "committed_files", _sorted_unique(self.committed_files))
273
+ object.__setattr__(self, "staged_files", _sorted_unique(self.staged_files))
274
+ object.__setattr__(self, "unstaged_files", _sorted_unique(self.unstaged_files))
275
+ object.__setattr__(self, "untracked_files", _sorted_unique(self.untracked_files))
276
+ object.__setattr__(self, "material_changed_file_count", len(material))
277
+ object.__setattr__(self, "raw_changed_file_count", len(raw))
278
+ if not self.patch_text_sha256:
279
+ object.__setattr__(self, "patch_text_sha256", _sha256_text(self.patch_text))
280
+ if self.working_tree_delta is None:
281
+ object.__setattr__(
282
+ self,
283
+ "working_tree_delta",
284
+ CandidateWorkingTreeDelta(
285
+ base_revision=self.base_ref,
286
+ final_head_revision=self.head_ref,
287
+ head_changed_from_base=self.git_commit_created,
288
+ raw_changed_paths=raw,
289
+ material_changed_paths=material,
290
+ excluded_generated_paths=self.excluded_generated_paths,
291
+ omitted_material_paths=self.omitted_material_paths,
292
+ tracked_changed_paths=self.tracked_changed_paths,
293
+ staged_paths=self.staged_files,
294
+ unstaged_paths=self.unstaged_files,
295
+ deleted_paths=self.deleted_paths,
296
+ untracked_material_paths=self.untracked_material_paths,
297
+ untracked_generated_paths=self.untracked_generated_paths,
298
+ unknown_binary_or_large_paths=self.unknown_binary_or_large_paths,
299
+ patch_capture_status=self.patch_capture_status,
300
+ material_patch_complete=self.material_patch_complete,
301
+ patch_reason_codes=self.reason_codes,
302
+ state_descriptors=self.state_descriptors,
303
+ patch_text_sha256=self.patch_text_sha256,
304
+ ),
305
+ )
306
+
307
+ @property
308
+ def git_status_after(self) -> str:
309
+ return self.status_porcelain
310
+
311
+ def to_dict(self) -> dict[str, Any]:
312
+ return {
313
+ "base_ref": self.base_ref,
314
+ "head_ref": self.head_ref,
315
+ "base_ref_available": self.base_ref_available,
316
+ "git_commit_created": self.git_commit_created,
317
+ "status_porcelain": self.status_porcelain,
318
+ "git_status_after": self.status_porcelain,
319
+ "changed_files": list(self.changed_files),
320
+ "committed_files": list(self.committed_files),
321
+ "staged_files": list(self.staged_files),
322
+ "unstaged_files": list(self.unstaged_files),
323
+ "untracked_files": list(self.untracked_files),
324
+ "patch_text": self.patch_text,
325
+ "patch_capture_status": self.patch_capture_status,
326
+ "reason_codes": list(self.reason_codes),
327
+ "state_descriptors": list(self.state_descriptors),
328
+ "raw_changed_paths": list(self.raw_changed_paths),
329
+ "material_changed_paths": list(self.material_changed_paths),
330
+ "excluded_generated_paths": list(self.excluded_generated_paths),
331
+ "omitted_material_paths": list(self.omitted_material_paths),
332
+ "tracked_changed_paths": list(self.tracked_changed_paths),
333
+ "deleted_paths": list(self.deleted_paths),
334
+ "untracked_material_paths": list(self.untracked_material_paths),
335
+ "untracked_generated_paths": list(self.untracked_generated_paths),
336
+ "unknown_binary_or_large_paths": list(self.unknown_binary_or_large_paths),
337
+ "material_patch_complete": self.material_patch_complete,
338
+ "patch_text_sha256": self.patch_text_sha256,
339
+ "material_changed_file_count": self.material_changed_file_count,
340
+ "raw_changed_file_count": self.raw_changed_file_count,
341
+ "evidence_filter_policy_version": self.evidence_filter_policy_version,
342
+ "working_tree_delta": (
343
+ self.working_tree_delta.to_dict() if self.working_tree_delta is not None else None
344
+ ),
345
+ }
346
+
347
+ def patch_capture_artifact(self) -> dict[str, Any]:
348
+ delta = self.working_tree_delta
349
+ return {
350
+ "schema_version": 1,
351
+ "base_revision": self.base_ref,
352
+ "final_head_revision": self.head_ref,
353
+ "raw_git_state": {
354
+ "status_porcelain": self.status_porcelain,
355
+ "committed_files": list(self.committed_files),
356
+ "staged_files": list(self.staged_files),
357
+ "unstaged_files": list(self.unstaged_files),
358
+ "untracked_files": list(self.untracked_files),
359
+ },
360
+ "material_delta": delta.to_dict() if delta is not None else {},
361
+ "raw_changed_paths": list(self.raw_changed_paths),
362
+ "material_changed_paths": list(self.material_changed_paths),
363
+ "excluded_paths": (
364
+ [item.to_dict() for item in delta.excluded_paths] if delta is not None else []
365
+ ),
366
+ "omitted_material_paths": (
367
+ [item.to_dict() for item in delta.omitted_material_entries]
368
+ if delta is not None
369
+ else []
370
+ ),
371
+ "patch_capture_status": self.patch_capture_status,
372
+ "material_patch_complete": self.material_patch_complete,
373
+ "state_descriptors": list(self.state_descriptors),
374
+ "reason_codes": list(self.reason_codes),
375
+ "patch_text_sha256": self.patch_text_sha256,
376
+ "evidence_filter_policy_version": self.evidence_filter_policy_version,
377
+ }
378
+
379
+ @classmethod
380
+ def from_dict(cls, payload: dict[str, object]) -> CandidateGitState:
381
+ status = str(
382
+ payload.get("status_porcelain")
383
+ if payload.get("status_porcelain") is not None
384
+ else payload.get("git_status_after") or ""
385
+ )
386
+ delta_payload = payload.get("working_tree_delta")
387
+ delta = (
388
+ CandidateWorkingTreeDelta.from_dict(delta_payload)
389
+ if isinstance(delta_payload, dict)
390
+ else None
391
+ )
392
+ patch_status = _patch_status(payload.get("patch_capture_status"))
393
+ return cls(
394
+ base_ref=str(payload.get("base_ref") or ""),
395
+ head_ref=str(payload.get("head_ref")) if payload.get("head_ref") is not None else None,
396
+ base_ref_available=bool(payload.get("base_ref_available") or payload.get("base_ref")),
397
+ git_commit_created=bool(payload.get("git_commit_created")),
398
+ status_porcelain=status,
399
+ changed_files=_tuple_strs(
400
+ payload.get("changed_files")
401
+ if payload.get("changed_files") is not None
402
+ else payload.get("material_changed_paths")
403
+ ),
404
+ committed_files=_tuple_strs(payload.get("committed_files")),
405
+ staged_files=_tuple_strs(payload.get("staged_files")),
406
+ unstaged_files=_tuple_strs(payload.get("unstaged_files")),
407
+ untracked_files=_tuple_strs(payload.get("untracked_files")),
408
+ patch_text=str(payload.get("patch_text") or ""),
409
+ patch_capture_status=patch_status,
410
+ reason_codes=_tuple_strs(payload.get("reason_codes")),
411
+ state_descriptors=_tuple_strs(payload.get("state_descriptors")),
412
+ raw_changed_paths=_tuple_strs(payload.get("raw_changed_paths")),
413
+ material_changed_paths=_tuple_strs(payload.get("material_changed_paths")),
414
+ excluded_generated_paths=_tuple_strs(payload.get("excluded_generated_paths")),
415
+ omitted_material_paths=_tuple_strs(payload.get("omitted_material_paths")),
416
+ tracked_changed_paths=_tuple_strs(payload.get("tracked_changed_paths")),
417
+ deleted_paths=_tuple_strs(payload.get("deleted_paths")),
418
+ untracked_material_paths=_tuple_strs(payload.get("untracked_material_paths")),
419
+ untracked_generated_paths=_tuple_strs(payload.get("untracked_generated_paths")),
420
+ unknown_binary_or_large_paths=_tuple_strs(payload.get("unknown_binary_or_large_paths")),
421
+ material_patch_complete=bool(payload.get("material_patch_complete", True)),
422
+ patch_text_sha256=str(payload.get("patch_text_sha256") or ""),
423
+ evidence_filter_policy_version=str(
424
+ payload.get("evidence_filter_policy_version") or "candidate-working-tree-delta-v1"
425
+ ),
426
+ working_tree_delta=delta,
427
+ )
428
+
429
+
430
+ def capture_candidate_git_state(
431
+ *,
432
+ worktree_path: Path,
433
+ base_ref: str,
434
+ untracked_text_size_limit: int = 512_000,
435
+ ) -> CandidateGitState:
436
+ if not worktree_path.exists():
437
+ return CandidateGitState(
438
+ base_ref=base_ref,
439
+ head_ref=None,
440
+ base_ref_available=bool(base_ref),
441
+ patch_capture_status="failed",
442
+ material_patch_complete=False,
443
+ reason_codes=("worktree_missing",),
444
+ )
445
+
446
+ head_ref = _git_stdout(worktree_path, ["rev-parse", "HEAD"])
447
+ base_available = bool(
448
+ base_ref and _git_success(worktree_path, ["cat-file", "-e", f"{base_ref}^{{commit}}"])
449
+ )
450
+ status = _candidate_git_status(worktree_path)
451
+ git_commit_created = bool(base_available and head_ref and head_ref != base_ref)
452
+ commits_ahead = _commits_ahead(worktree_path, base_ref=base_ref) if base_available else 0
453
+ status_sets = _status_file_sets(status)
454
+
455
+ committed_files, committed_patch, committed_reasons = _committed_capture(
456
+ worktree_path,
457
+ base_ref=base_ref,
458
+ head_ref=head_ref,
459
+ base_ref_available=base_available,
460
+ )
461
+ staged_files, staged_patch, staged_reasons = _diff_capture(
462
+ worktree_path,
463
+ patch_args=["diff", "--binary", "--cached"],
464
+ name_args=["diff", "--name-only", "--cached"],
465
+ failed_reason="staged_patch_capture_failed",
466
+ )
467
+ unstaged_files, unstaged_patch, unstaged_reasons = _diff_capture(
468
+ worktree_path,
469
+ patch_args=["diff", "--binary"],
470
+ name_args=["diff", "--name-only"],
471
+ failed_reason="unstaged_patch_capture_failed",
472
+ )
473
+
474
+ tracked_changed_paths = _sorted_unique(
475
+ set(committed_files) | set(staged_files) | set(unstaged_files)
476
+ )
477
+ tracked_deleted_paths = _deleted_paths(
478
+ worktree_path, base_ref=base_ref, base_ref_available=base_available
479
+ )
480
+ material_tracked_paths = tracked_changed_paths
481
+
482
+ untracked_capture = _capture_untracked_paths(
483
+ worktree_path=worktree_path,
484
+ untracked_paths=status_sets.untracked_files,
485
+ ignored_paths=status_sets.ignored_files,
486
+ size_limit=untracked_text_size_limit,
487
+ )
488
+
489
+ material_paths = _sorted_unique(
490
+ set(material_tracked_paths) | set(untracked_capture.material_paths)
491
+ )
492
+ raw_paths = _sorted_unique(
493
+ set(material_tracked_paths)
494
+ | set(status_sets.untracked_files)
495
+ | set(status_sets.ignored_files)
496
+ | set(untracked_capture.excluded_generated_paths)
497
+ | set(untracked_capture.omitted_material_paths)
498
+ )
499
+ patch_text = _join_patch_parts(
500
+ committed_patch,
501
+ staged_patch,
502
+ unstaged_patch,
503
+ untracked_capture.patch_text,
504
+ )
505
+
506
+ state_descriptors: list[str] = []
507
+ if git_commit_created:
508
+ state_descriptors.append("commits_ahead")
509
+ if staged_files:
510
+ state_descriptors.append("staged_changes")
511
+ if unstaged_files:
512
+ state_descriptors.append("unstaged_changes")
513
+ if status_sets.untracked_files:
514
+ state_descriptors.append("untracked_changes")
515
+ if status_sets.ignored_files:
516
+ state_descriptors.append("ignored_changes")
517
+
518
+ reason_codes: list[str] = []
519
+ if not base_ref or not base_available:
520
+ reason_codes.append("base_revision_unavailable")
521
+ if untracked_capture.excluded_generated_paths:
522
+ reason_codes.append("generated_runtime_artifacts_excluded")
523
+ reason_codes.extend(committed_reasons)
524
+ reason_codes.extend(staged_reasons)
525
+ reason_codes.extend(unstaged_reasons)
526
+ reason_codes.extend(untracked_capture.reason_codes)
527
+ if not raw_paths:
528
+ reason_codes.append("no_changes_detected")
529
+
530
+ patch_status = _patch_capture_status(
531
+ material_changed_paths=material_paths,
532
+ patch_text=patch_text,
533
+ reason_codes=tuple(reason_codes),
534
+ )
535
+ material_complete = patch_status == "complete"
536
+ if patch_status == "failed":
537
+ reason_codes.append("patch_capture_failed")
538
+ elif patch_status == "partial":
539
+ reason_codes.append("patch_capture_partial")
540
+
541
+ patch_hash = _sha256_text(patch_text)
542
+ delta = CandidateWorkingTreeDelta(
543
+ base_revision=base_ref,
544
+ final_head_revision=head_ref or None,
545
+ head_changed_from_base=git_commit_created,
546
+ commits_ahead_count=commits_ahead,
547
+ raw_changed_paths=raw_paths,
548
+ material_changed_paths=material_paths,
549
+ excluded_generated_paths=untracked_capture.excluded_generated_paths,
550
+ omitted_material_paths=untracked_capture.omitted_material_paths,
551
+ tracked_changed_paths=tracked_changed_paths,
552
+ staged_paths=staged_files,
553
+ unstaged_paths=unstaged_files,
554
+ deleted_paths=tracked_deleted_paths,
555
+ untracked_material_paths=untracked_capture.material_paths,
556
+ untracked_generated_paths=untracked_capture.untracked_generated_paths,
557
+ ignored_generated_paths=untracked_capture.ignored_generated_paths,
558
+ unknown_binary_or_large_paths=untracked_capture.unknown_binary_or_large_paths,
559
+ path_entries=(
560
+ *_tracked_delta_entries(committed_files, kind="committed"),
561
+ *_tracked_delta_entries(staged_files, kind="staged"),
562
+ *_tracked_delta_entries(unstaged_files, kind="unstaged"),
563
+ *_tracked_delta_entries(tracked_deleted_paths, kind="deleted"),
564
+ *untracked_capture.path_entries,
565
+ ),
566
+ excluded_paths=untracked_capture.exclusions,
567
+ omitted_material_entries=untracked_capture.omissions,
568
+ patch_capture_status=patch_status,
569
+ material_patch_complete=material_complete,
570
+ patch_reason_codes=tuple(dict.fromkeys(reason_codes)),
571
+ state_descriptors=tuple(dict.fromkeys(state_descriptors)),
572
+ patch_text_sha256=patch_hash,
573
+ )
574
+
575
+ return CandidateGitState(
576
+ base_ref=base_ref,
577
+ head_ref=head_ref or None,
578
+ base_ref_available=base_available,
579
+ git_commit_created=git_commit_created,
580
+ status_porcelain=status,
581
+ changed_files=material_paths,
582
+ committed_files=tuple(path for path in committed_files if path in set(material_paths)),
583
+ staged_files=tuple(path for path in staged_files if path in set(material_paths)),
584
+ unstaged_files=tuple(path for path in unstaged_files if path in set(material_paths)),
585
+ untracked_files=status_sets.untracked_files,
586
+ patch_text=patch_text,
587
+ patch_capture_status=patch_status,
588
+ reason_codes=tuple(dict.fromkeys(reason_codes)),
589
+ state_descriptors=tuple(dict.fromkeys(state_descriptors)),
590
+ raw_changed_paths=raw_paths,
591
+ material_changed_paths=material_paths,
592
+ excluded_generated_paths=untracked_capture.excluded_generated_paths,
593
+ omitted_material_paths=untracked_capture.omitted_material_paths,
594
+ tracked_changed_paths=tracked_changed_paths,
595
+ deleted_paths=tracked_deleted_paths,
596
+ untracked_material_paths=untracked_capture.material_paths,
597
+ untracked_generated_paths=untracked_capture.untracked_generated_paths,
598
+ unknown_binary_or_large_paths=untracked_capture.unknown_binary_or_large_paths,
599
+ material_patch_complete=material_complete,
600
+ patch_text_sha256=patch_hash,
601
+ working_tree_delta=delta,
602
+ )
603
+
604
+
605
+ @dataclass(frozen=True)
606
+ class _StatusFileSets:
607
+ staged_files: tuple[str, ...] = ()
608
+ unstaged_files: tuple[str, ...] = ()
609
+ untracked_files: tuple[str, ...] = ()
610
+ ignored_files: tuple[str, ...] = ()
611
+
612
+
613
+ @dataclass(frozen=True)
614
+ class _UntrackedCapture:
615
+ material_paths: tuple[str, ...] = ()
616
+ untracked_generated_paths: tuple[str, ...] = ()
617
+ ignored_generated_paths: tuple[str, ...] = ()
618
+ excluded_generated_paths: tuple[str, ...] = ()
619
+ omitted_material_paths: tuple[str, ...] = ()
620
+ unknown_binary_or_large_paths: tuple[str, ...] = ()
621
+ exclusions: tuple[CandidateEvidenceExclusion, ...] = ()
622
+ omissions: tuple[CandidateEvidenceExclusion, ...] = ()
623
+ path_entries: tuple[CandidateDeltaPath, ...] = ()
624
+ patch_text: str = ""
625
+ reason_codes: tuple[str, ...] = ()
626
+
627
+
628
+ def _committed_capture(
629
+ worktree_path: Path,
630
+ *,
631
+ base_ref: str,
632
+ head_ref: str,
633
+ base_ref_available: bool,
634
+ ) -> tuple[tuple[str, ...], str, tuple[str, ...]]:
635
+ if not head_ref or not base_ref_available:
636
+ return (), "", ()
637
+ if head_ref == base_ref:
638
+ return (), "", ()
639
+ name_cp = _run_git(worktree_path, ["diff", "--name-only", f"{base_ref}...HEAD"])
640
+ patch_cp = _run_git(worktree_path, ["diff", "--binary", f"{base_ref}...HEAD"])
641
+ reason_codes: list[str] = []
642
+ if name_cp.returncode != 0 or patch_cp.returncode != 0:
643
+ reason_codes.append("committed_patch_capture_failed")
644
+ files = _stdout_paths(name_cp.stdout) if name_cp.returncode == 0 else ()
645
+ patch = _patch_stdout(patch_cp) if patch_cp.returncode == 0 else ""
646
+ return files, patch, tuple(reason_codes)
647
+
648
+
649
+ def _diff_capture(
650
+ worktree_path: Path,
651
+ *,
652
+ patch_args: list[str],
653
+ name_args: list[str],
654
+ failed_reason: str,
655
+ ) -> tuple[tuple[str, ...], str, tuple[str, ...]]:
656
+ name_cp = _run_git(worktree_path, name_args)
657
+ patch_cp = _run_git(worktree_path, patch_args)
658
+ reason_codes: list[str] = []
659
+ if name_cp.returncode != 0 or patch_cp.returncode != 0:
660
+ reason_codes.append(failed_reason)
661
+ files = _stdout_paths(name_cp.stdout) if name_cp.returncode == 0 else ()
662
+ patch = _patch_stdout(patch_cp) if patch_cp.returncode == 0 else ""
663
+ return files, patch, tuple(reason_codes)
664
+
665
+
666
+ def _candidate_git_status(worktree_path: Path) -> str:
667
+ cp = _run_git(
668
+ worktree_path,
669
+ ["status", "--porcelain=v1", "--untracked-files=all", "--ignored=matching"],
670
+ )
671
+ if cp.returncode != 0:
672
+ return ""
673
+ return cp.stdout.rstrip()
674
+
675
+
676
+ def _status_file_sets(status_porcelain: str) -> _StatusFileSets:
677
+ staged: set[str] = set()
678
+ unstaged: set[str] = set()
679
+ untracked: set[str] = set()
680
+ ignored: set[str] = set()
681
+ for line in status_porcelain.splitlines():
682
+ if not line:
683
+ continue
684
+ if line.startswith("?? "):
685
+ untracked.update(_status_line_paths(line))
686
+ continue
687
+ if line.startswith("!! "):
688
+ ignored.update(_status_line_paths(line))
689
+ continue
690
+ if len(line) < 3:
691
+ continue
692
+ index_status = line[0]
693
+ worktree_status = line[1]
694
+ paths = _status_line_paths(line)
695
+ if index_status not in {" ", "?"}:
696
+ staged.update(paths)
697
+ if worktree_status not in {" ", "?"}:
698
+ unstaged.update(paths)
699
+ return _StatusFileSets(
700
+ staged_files=_sorted_unique(staged),
701
+ unstaged_files=_sorted_unique(unstaged),
702
+ untracked_files=_sorted_unique(untracked),
703
+ ignored_files=_sorted_unique(ignored),
704
+ )
705
+
706
+
707
+ def _status_line_paths(line: str) -> tuple[str, ...]:
708
+ text = line[3:].strip() if len(line) > 3 else line.strip()
709
+ if " -> " in text:
710
+ parts = tuple(_normalize_rel_path(part) for part in text.split(" -> ") if part.strip())
711
+ return tuple(part for part in parts[-1:] if part)
712
+ normalized = _normalize_rel_path(text)
713
+ return (normalized,) if normalized else ()
714
+
715
+
716
+ def _capture_untracked_paths(
717
+ *,
718
+ worktree_path: Path,
719
+ untracked_paths: tuple[str, ...],
720
+ ignored_paths: tuple[str, ...],
721
+ size_limit: int,
722
+ ) -> _UntrackedCapture:
723
+ material: list[str] = []
724
+ generated_untracked: list[str] = []
725
+ generated_ignored: list[str] = []
726
+ unknown_binary_or_large: list[str] = []
727
+ exclusions: list[CandidateEvidenceExclusion] = []
728
+ omissions: list[CandidateEvidenceExclusion] = []
729
+ entries: list[CandidateDeltaPath] = []
730
+ patches: list[str] = []
731
+ reason_codes: list[str] = []
732
+
733
+ for rel_path in untracked_paths:
734
+ classified = _classify_candidate_path(rel_path, root=worktree_path)
735
+ if classified.is_generated:
736
+ generated_untracked.append(rel_path)
737
+ exclusions.append(
738
+ _exclusion_for_path(worktree_path, rel_path, reason=classified.reason)
739
+ )
740
+ entries.append(
741
+ CandidateDeltaPath(
742
+ path=rel_path,
743
+ kind="untracked_generated",
744
+ tracked=False,
745
+ classification=classified.label,
746
+ size_bytes=_safe_size(worktree_path / rel_path),
747
+ reason=classified.reason,
748
+ )
749
+ )
750
+ continue
751
+ path = worktree_path / rel_path
752
+ try:
753
+ content, mode = _read_untracked_material(
754
+ path,
755
+ rel_path=rel_path,
756
+ root=worktree_path,
757
+ size_limit=size_limit,
758
+ )
759
+ except _OmitMaterialFile as exc:
760
+ unknown_binary_or_large.append(rel_path)
761
+ reason = exc.reason
762
+ omissions.append(_exclusion_for_path(worktree_path, rel_path, reason=reason))
763
+ entries.append(
764
+ CandidateDeltaPath(
765
+ path=rel_path,
766
+ kind="unknown_binary_or_large",
767
+ tracked=False,
768
+ classification=classified.label,
769
+ size_bytes=_safe_size(path),
770
+ sha256=_safe_sha256(path),
771
+ reason=reason,
772
+ )
773
+ )
774
+ reason_codes.append(reason)
775
+ continue
776
+ except OSError:
777
+ unknown_binary_or_large.append(rel_path)
778
+ omissions.append(
779
+ _exclusion_for_path(
780
+ worktree_path, rel_path, reason="patch_generation_failed_for_material_path"
781
+ )
782
+ )
783
+ reason_codes.append("patch_generation_failed_for_material_path")
784
+ continue
785
+ material.append(rel_path)
786
+ entries.append(
787
+ CandidateDeltaPath(
788
+ path=rel_path,
789
+ kind="untracked_material",
790
+ tracked=False,
791
+ classification=classified.label,
792
+ size_bytes=_safe_size(path),
793
+ sha256=_sha256_text(content),
794
+ )
795
+ )
796
+ patches.append(_new_file_patch(rel_path, content, mode=mode))
797
+
798
+ for rel_path in ignored_paths:
799
+ classified = _classify_candidate_path(rel_path.rstrip("/"), root=worktree_path)
800
+ if classified.is_generated:
801
+ generated_ignored.append(rel_path)
802
+ exclusions.append(
803
+ _exclusion_for_path(worktree_path, rel_path.rstrip("/"), reason=classified.reason)
804
+ )
805
+ entries.append(
806
+ CandidateDeltaPath(
807
+ path=rel_path,
808
+ kind="ignored_generated",
809
+ tracked=False,
810
+ classification=classified.label,
811
+ size_bytes=_safe_size(worktree_path / rel_path.rstrip("/")),
812
+ reason=classified.reason,
813
+ )
814
+ )
815
+ else:
816
+ omissions.append(
817
+ _exclusion_for_path(
818
+ worktree_path,
819
+ rel_path.rstrip("/"),
820
+ reason="ignored_material_path_not_captured",
821
+ )
822
+ )
823
+ reason_codes.append("ignored_material_path_not_captured")
824
+
825
+ excluded = _sorted_unique(set(generated_untracked) | set(generated_ignored))
826
+ return _UntrackedCapture(
827
+ material_paths=_sorted_unique(material),
828
+ untracked_generated_paths=_sorted_unique(generated_untracked),
829
+ ignored_generated_paths=_sorted_unique(generated_ignored),
830
+ excluded_generated_paths=excluded,
831
+ omitted_material_paths=_sorted_unique(
832
+ set(unknown_binary_or_large)
833
+ | {
834
+ item.path
835
+ for item in omissions
836
+ if item.reason == "ignored_material_path_not_captured"
837
+ }
838
+ ),
839
+ unknown_binary_or_large_paths=_sorted_unique(unknown_binary_or_large),
840
+ exclusions=tuple(sorted(exclusions, key=lambda item: item.path)),
841
+ omissions=tuple(sorted(omissions, key=lambda item: item.path)),
842
+ path_entries=tuple(sorted(entries, key=lambda item: (item.path, item.kind))),
843
+ patch_text=_join_patch_parts(*patches),
844
+ reason_codes=tuple(dict.fromkeys(reason_codes)),
845
+ )
846
+
847
+
848
+ @dataclass(frozen=True)
849
+ class _PathClassification:
850
+ label: str
851
+ is_generated: bool
852
+ reason: str
853
+
854
+
855
+ def _classify_candidate_path(path: str, *, root: Path) -> _PathClassification:
856
+ normalized = _normalize_rel_path(path)
857
+ if is_runtime_artifact_path(normalized, root=root):
858
+ return _PathClassification("runtime_artifact", True, _runtime_artifact_reason(normalized))
859
+ if is_generated_or_vendor_path(normalized):
860
+ return _PathClassification("generated_or_vendor", True, "generated_or_vendor_path")
861
+ return _PathClassification(classify_path(normalized).kind, False, "material")
862
+
863
+
864
+ def _runtime_artifact_reason(path: str) -> str:
865
+ parts = tuple(part.casefold() for part in PurePosixPath(path).parts if part)
866
+ leaf = parts[-1] if parts else ""
867
+ if "__pycache__" in parts or leaf.endswith((".pyc", ".pyo")):
868
+ return "python_runtime_artifact"
869
+ if ".pytest_cache" in parts:
870
+ return "pytest_runtime_artifact"
871
+ if ".mypy_cache" in parts:
872
+ return "mypy_runtime_artifact"
873
+ if ".ruff_cache" in parts:
874
+ return "ruff_runtime_artifact"
875
+ if ".alysis" in parts:
876
+ return "alysis_runtime_artifact"
877
+ return "runtime_artifact"
878
+
879
+
880
+ def _read_untracked_material(
881
+ path: Path, *, rel_path: str, root: Path, size_limit: int
882
+ ) -> tuple[str, int]:
883
+ if _normalize_rel_path(rel_path).startswith("../") or Path(rel_path).is_absolute():
884
+ raise _OmitMaterialFile("path_outside_worktree")
885
+ try:
886
+ resolved_parent = path.parent.resolve()
887
+ if not _path_within(resolved_parent, root):
888
+ raise _OmitMaterialFile("path_outside_worktree")
889
+ except OSError:
890
+ raise _OmitMaterialFile("path_outside_worktree") from None
891
+ try:
892
+ st = path.lstat()
893
+ except OSError as exc:
894
+ raise OSError from exc
895
+ if stat.S_ISLNK(st.st_mode):
896
+ target = os.readlink(path)
897
+ target_parts = PurePosixPath(target.replace("\\", "/")).parts
898
+ if os.path.isabs(target) or ".." in target_parts:
899
+ raise _OmitMaterialFile("unsupported_symlink_change")
900
+ return target, 0o120000
901
+ if not stat.S_ISREG(st.st_mode):
902
+ raise _OmitMaterialFile("unsupported_file_mode_change")
903
+ if st.st_size > max(0, int(size_limit)):
904
+ raise _OmitMaterialFile("unknown_binary_or_large_material_file_omitted")
905
+ data = path.read_bytes()
906
+ if b"\x00" in data:
907
+ raise _OmitMaterialFile("unknown_binary_or_large_material_file_omitted")
908
+ try:
909
+ content = data.decode("utf-8")
910
+ except UnicodeDecodeError as exc:
911
+ raise _OmitMaterialFile("unknown_binary_or_large_material_file_omitted") from exc
912
+ mode = 0o100755 if st.st_mode & stat.S_IXUSR else 0o100644
913
+ return content, mode
914
+
915
+
916
+ class _OmitMaterialFile(Exception):
917
+ def __init__(self, reason: str) -> None:
918
+ super().__init__(reason)
919
+ self.reason = reason
920
+
921
+
922
+ def _new_file_patch(rel_path: str, content: str, *, mode: int = 0o100644) -> str:
923
+ safe_path = _normalize_rel_path(rel_path)
924
+ mode_text = f"{mode:06o}"
925
+ lines = content.splitlines()
926
+ patch_lines = [
927
+ f"diff --git a/{safe_path} b/{safe_path}",
928
+ f"new file mode {mode_text}",
929
+ "index 0000000..0000000",
930
+ "--- /dev/null",
931
+ f"+++ b/{safe_path}",
932
+ ]
933
+ if lines:
934
+ patch_lines.append(f"@@ -0,0 +1,{len(lines)} @@")
935
+ patch_lines.extend(f"+{line}" for line in lines)
936
+ if not content.endswith("\n"):
937
+ patch_lines.append("\")
938
+ return "\n".join(patch_lines) + "\n"
939
+
940
+
941
+ def _deleted_paths(
942
+ worktree_path: Path, *, base_ref: str, base_ref_available: bool
943
+ ) -> tuple[str, ...]:
944
+ deleted: set[str] = set()
945
+ for args in (
946
+ ["diff", "--name-only", "--diff-filter=D"],
947
+ ["diff", "--cached", "--name-only", "--diff-filter=D"],
948
+ ):
949
+ cp = _run_git(worktree_path, args)
950
+ if cp.returncode == 0:
951
+ deleted.update(_stdout_paths(cp.stdout))
952
+ if base_ref_available:
953
+ cp = _run_git(
954
+ worktree_path, ["diff", "--name-only", "--diff-filter=D", f"{base_ref}...HEAD"]
955
+ )
956
+ if cp.returncode == 0:
957
+ deleted.update(_stdout_paths(cp.stdout))
958
+ return _sorted_unique(deleted)
959
+
960
+
961
+ def _tracked_delta_entries(
962
+ paths: tuple[str, ...],
963
+ *,
964
+ kind: CandidateDeltaPathKind,
965
+ ) -> tuple[CandidateDeltaPath, ...]:
966
+ return tuple(
967
+ CandidateDeltaPath(
968
+ path=path,
969
+ kind=kind,
970
+ tracked=True,
971
+ classification=classify_path(path).kind,
972
+ )
973
+ for path in paths
974
+ )
975
+
976
+
977
+ def _patch_capture_status(
978
+ *,
979
+ material_changed_paths: tuple[str, ...],
980
+ patch_text: str,
981
+ reason_codes: tuple[str, ...],
982
+ ) -> PatchCaptureStatus:
983
+ partial_reasons = {
984
+ "base_revision_unavailable",
985
+ "committed_patch_capture_failed",
986
+ "staged_patch_capture_failed",
987
+ "unstaged_patch_capture_failed",
988
+ "unknown_binary_or_large_material_file_omitted",
989
+ "unsupported_symlink_change",
990
+ "patch_generation_failed_for_material_path",
991
+ "material_path_disappeared_during_capture",
992
+ "path_outside_worktree",
993
+ "capture_mismatch",
994
+ "unsupported_file_mode_change",
995
+ "ignored_material_path_not_captured",
996
+ }
997
+ if any(reason in partial_reasons for reason in reason_codes):
998
+ return "partial"
999
+ if not material_changed_paths:
1000
+ return "complete"
1001
+ return "complete" if patch_text.strip() else "failed"
1002
+
1003
+
1004
+ def _commits_ahead(worktree_path: Path, *, base_ref: str) -> int:
1005
+ if not base_ref:
1006
+ return 0
1007
+ cp = _run_git(worktree_path, ["rev-list", "--count", f"{base_ref}..HEAD"])
1008
+ if cp.returncode != 0:
1009
+ return 0
1010
+ try:
1011
+ return int(cp.stdout.strip() or "0")
1012
+ except ValueError:
1013
+ return 0
1014
+
1015
+
1016
+ def _run_git(root: Path, args: list[str]) -> subprocess.CompletedProcess[str]:
1017
+ return subprocess.run(
1018
+ build_git_cmd(root, args),
1019
+ check=False,
1020
+ capture_output=True,
1021
+ text=True,
1022
+ env={
1023
+ **os.environ,
1024
+ **build_git_process_env(),
1025
+ },
1026
+ )
1027
+
1028
+
1029
+ def _git_stdout(root: Path, args: list[str]) -> str:
1030
+ cp = _run_git(root, args)
1031
+ if cp.returncode != 0:
1032
+ return ""
1033
+ return cp.stdout.strip()
1034
+
1035
+
1036
+ def _git_success(root: Path, args: list[str]) -> bool:
1037
+ return _run_git(root, args).returncode == 0
1038
+
1039
+
1040
+ def _stdout_paths(stdout: str) -> tuple[str, ...]:
1041
+ return _sorted_unique(line.strip() for line in stdout.splitlines() if line.strip())
1042
+
1043
+
1044
+ def _patch_stdout(cp: subprocess.CompletedProcess[str]) -> str:
1045
+ return _ensure_trailing_newline(cp.stdout) if cp.stdout else ""
1046
+
1047
+
1048
+ def _join_patch_parts(*parts: str) -> str:
1049
+ patch_text = ""
1050
+ for part in parts:
1051
+ if not part or not part.strip():
1052
+ continue
1053
+ if patch_text and not patch_text.endswith("\n"):
1054
+ patch_text += "\n"
1055
+ patch_text += _ensure_trailing_newline(part)
1056
+ return patch_text
1057
+
1058
+
1059
+ def _ensure_trailing_newline(text: str) -> str:
1060
+ if not text:
1061
+ return ""
1062
+ return text if text.endswith("\n") else f"{text}\n"
1063
+
1064
+
1065
+ def _normalize_rel_path(path: str) -> str:
1066
+ normalized = str(path or "").replace("\\", "/").strip().strip("/")
1067
+ while normalized.startswith("./"):
1068
+ normalized = normalized[2:]
1069
+ return normalized
1070
+
1071
+
1072
+ def _path_within(path: Path, root: Path | None) -> bool:
1073
+ if root is None:
1074
+ return True
1075
+ try:
1076
+ path.resolve().relative_to(root.resolve())
1077
+ return True
1078
+ except (OSError, ValueError):
1079
+ return False
1080
+
1081
+
1082
+ def _safe_size(path: Path) -> int | None:
1083
+ try:
1084
+ return path.lstat().st_size
1085
+ except OSError:
1086
+ return None
1087
+
1088
+
1089
+ def _safe_sha256(path: Path) -> str | None:
1090
+ try:
1091
+ if not path.is_file() or path.stat().st_size > 1024 * 1024:
1092
+ return None
1093
+ return hashlib.sha256(path.read_bytes()).hexdigest()
1094
+ except OSError:
1095
+ return None
1096
+
1097
+
1098
+ def _exclusion_for_path(
1099
+ worktree_path: Path, rel_path: str, *, reason: str
1100
+ ) -> CandidateEvidenceExclusion:
1101
+ normalized = _normalize_rel_path(rel_path)
1102
+ path = worktree_path / normalized
1103
+ return CandidateEvidenceExclusion(
1104
+ path=normalized,
1105
+ reason=reason,
1106
+ tracked=False,
1107
+ classification=classify_path(normalized).kind,
1108
+ size_bytes=_safe_size(path),
1109
+ sha256=_safe_sha256(path),
1110
+ )
1111
+
1112
+
1113
+ def _sha256_text(text: str) -> str:
1114
+ return hashlib.sha256(text.encode("utf-8")).hexdigest()
1115
+
1116
+
1117
+ def _patch_status(value: object) -> PatchCaptureStatus:
1118
+ raw = str(value or "complete")
1119
+ if raw == "ok":
1120
+ return "complete"
1121
+ if raw in {"complete", "partial", "failed"}:
1122
+ return raw # type: ignore[return-value]
1123
+ return "failed"
1124
+
1125
+
1126
+ def _delta_path_kind(value: object) -> CandidateDeltaPathKind:
1127
+ raw = str(value or "untracked_material")
1128
+ allowed = {
1129
+ "committed",
1130
+ "staged",
1131
+ "unstaged",
1132
+ "deleted",
1133
+ "untracked_material",
1134
+ "untracked_generated",
1135
+ "unknown_binary_or_large",
1136
+ "ignored_generated",
1137
+ "ignored_material",
1138
+ }
1139
+ return raw if raw in allowed else "untracked_material" # type: ignore[return-value]
1140
+
1141
+
1142
+ def _tuple_strs(value: object) -> tuple[str, ...]:
1143
+ if value is None:
1144
+ return ()
1145
+ if isinstance(value, str):
1146
+ normalized = _normalize_rel_path(value)
1147
+ return (normalized,) if normalized else ()
1148
+ if not isinstance(value, (list, tuple, set)):
1149
+ text = _normalize_rel_path(str(value))
1150
+ return (text,) if text else ()
1151
+ return _sorted_unique(_normalize_rel_path(str(item)) for item in value if str(item).strip())
1152
+
1153
+
1154
+ def _tuple_dicts(value: object) -> tuple[dict[str, object], ...]:
1155
+ if not isinstance(value, (list, tuple)):
1156
+ return ()
1157
+ return tuple(dict(item) for item in value if isinstance(item, dict))
1158
+
1159
+
1160
+ def _sorted_unique(values: object) -> tuple[str, ...]:
1161
+ if isinstance(values, set):
1162
+ iterable = values
1163
+ else:
1164
+ iterable = values if isinstance(values, (list, tuple, set)) else tuple(values) # type: ignore[arg-type]
1165
+ return tuple(sorted({str(item) for item in iterable if str(item).strip()}))
1166
+
1167
+
1168
+ def _int(value: object, default: int = 0) -> int:
1169
+ try:
1170
+ return int(value)
1171
+ except (TypeError, ValueError):
1172
+ return default
1173
+
1174
+
1175
+ def _optional_int(value: object) -> int | None:
1176
+ if value is None:
1177
+ return None
1178
+ try:
1179
+ return int(value)
1180
+ except (TypeError, ValueError):
1181
+ return None