gdmcode 0.1.1__tar.gz → 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 (955) hide show
  1. gdmcode-0.1.3/.gitignore +60 -0
  2. gdmcode-0.1.3/CONTRIBUTING.md +101 -0
  3. gdmcode-0.1.3/PKG-INFO +244 -0
  4. gdmcode-0.1.3/README.md +147 -0
  5. gdmcode-0.1.3/config.toml +55 -0
  6. gdmcode-0.1.3/docs/agentic-runtime-audit.md +57 -0
  7. gdmcode-0.1.3/docs/architecture.md +120 -0
  8. gdmcode-0.1.3/docs/cli-reference.md +189 -0
  9. gdmcode-0.1.3/docs/configuration.md +168 -0
  10. gdmcode-0.1.3/docs/deployment.md +232 -0
  11. gdmcode-0.1.3/docs/plugin-guide.md +203 -0
  12. gdmcode-0.1.3/docs/quick-start.md +83 -0
  13. gdmcode-0.1.3/docs/security-hardening.md +233 -0
  14. gdmcode-0.1.3/gdmcode/__init__.py +1 -0
  15. gdmcode-0.1.3/gdmcode/_internal/constants.py +244 -0
  16. gdmcode-0.1.3/gdmcode/agent/commit_classifier.py +91 -0
  17. gdmcode-0.1.3/gdmcode/agent/context_budget.py +391 -0
  18. gdmcode-0.1.3/gdmcode/agent/daemon.py +681 -0
  19. gdmcode-0.1.3/gdmcode/agent/debug_loop.py +473 -0
  20. gdmcode-0.1.3/gdmcode/agent/impact_analyzer.py +149 -0
  21. gdmcode-0.1.3/gdmcode/agent/loop.py +1410 -0
  22. gdmcode-0.1.3/gdmcode/agent/regression_guard.py +251 -0
  23. gdmcode-0.1.3/gdmcode/agent/review_gate.py +648 -0
  24. gdmcode-0.1.3/gdmcode/agent/self_healing.py +145 -0
  25. gdmcode-0.1.3/gdmcode/agent/smart_test_selector.py +89 -0
  26. gdmcode-0.1.3/gdmcode/agent/system_prompt.py +226 -0
  27. gdmcode-0.1.3/gdmcode/agent/task_tracker.py +320 -0
  28. gdmcode-0.1.3/gdmcode/agent/test_validator.py +210 -0
  29. gdmcode-0.1.3/gdmcode/agent/tool_orchestrator.py +402 -0
  30. gdmcode-0.1.3/gdmcode/agent/verification_loop.py +133 -0
  31. gdmcode-0.1.3/gdmcode/agent/work_director.py +136 -0
  32. gdmcode-0.1.3/gdmcode/artifacts/__init__.py +16 -0
  33. gdmcode-0.1.3/gdmcode/artifacts/artifact_store.py +456 -0
  34. gdmcode-0.1.3/gdmcode/artifacts/verification_graph.py +75 -0
  35. gdmcode-0.1.3/gdmcode/auth.py +411 -0
  36. gdmcode-0.1.3/gdmcode/cli.py +1332 -0
  37. gdmcode-0.1.3/gdmcode/commands.py +1413 -0
  38. gdmcode-0.1.3/gdmcode/config.py +795 -0
  39. gdmcode-0.1.3/gdmcode/cost_tracker.py +348 -0
  40. gdmcode-0.1.3/gdmcode/db/__init__.py +4 -0
  41. gdmcode-0.1.3/gdmcode/db/migrations.py +337 -0
  42. gdmcode-0.1.3/gdmcode/enterprise/__init__.py +3 -0
  43. gdmcode-0.1.3/gdmcode/enterprise/identity.py +90 -0
  44. gdmcode-0.1.3/gdmcode/enterprise/rbac.py +100 -0
  45. gdmcode-0.1.3/gdmcode/enterprise/team_config.py +125 -0
  46. gdmcode-0.1.3/gdmcode/exceptions.py +207 -0
  47. gdmcode-0.1.3/gdmcode/git_workflow.py +651 -0
  48. gdmcode-0.1.3/gdmcode/integrations/__init__.py +6 -0
  49. gdmcode-0.1.3/gdmcode/integrations/github_actions.py +106 -0
  50. gdmcode-0.1.3/gdmcode/integrations/mcp_server.py +333 -0
  51. gdmcode-0.1.3/gdmcode/integrations/sentry_integration.py +100 -0
  52. gdmcode-0.1.3/gdmcode/integrations/sentry_server.py +82 -0
  53. gdmcode-0.1.3/gdmcode/integrations/webhook_security.py +19 -0
  54. gdmcode-0.1.3/gdmcode/main.py +27 -0
  55. gdmcode-0.1.3/gdmcode/memory/code_index.py +376 -0
  56. gdmcode-0.1.3/gdmcode/memory/compressor.py +378 -0
  57. gdmcode-0.1.3/gdmcode/memory/context_memory.py +135 -0
  58. gdmcode-0.1.3/gdmcode/memory/continuous_memory.py +234 -0
  59. gdmcode-0.1.3/gdmcode/memory/conventions.py +495 -0
  60. gdmcode-0.1.3/gdmcode/memory/db.py +1119 -0
  61. gdmcode-0.1.3/gdmcode/memory/document_index.py +205 -0
  62. gdmcode-0.1.3/gdmcode/memory/file_cache.py +128 -0
  63. gdmcode-0.1.3/gdmcode/memory/project_scanner.py +178 -0
  64. gdmcode-0.1.3/gdmcode/memory/session_store.py +201 -0
  65. gdmcode-0.1.3/gdmcode/models/client.py +715 -0
  66. gdmcode-0.1.3/gdmcode/models/definitions.py +459 -0
  67. gdmcode-0.1.3/gdmcode/models/router.py +418 -0
  68. gdmcode-0.1.3/gdmcode/models/schemas.py +389 -0
  69. gdmcode-0.1.3/gdmcode/permissions.py +294 -0
  70. gdmcode-0.1.3/gdmcode/remote/__init__.py +5 -0
  71. gdmcode-0.1.3/gdmcode/remote/command_filter.py +33 -0
  72. gdmcode-0.1.3/gdmcode/remote/permission_handler.py +79 -0
  73. gdmcode-0.1.3/gdmcode/remote/phone_ui.py +48 -0
  74. gdmcode-0.1.3/gdmcode/remote/protocol.py +59 -0
  75. gdmcode-0.1.3/gdmcode/remote/server.py +586 -0
  76. gdmcode-0.1.3/gdmcode/remote/token_manager.py +61 -0
  77. gdmcode-0.1.3/gdmcode/repl.py +562 -0
  78. gdmcode-0.1.3/gdmcode/runtime/__init__.py +1 -0
  79. gdmcode-0.1.3/gdmcode/runtime/branch_farm.py +372 -0
  80. gdmcode-0.1.3/gdmcode/runtime/replay.py +351 -0
  81. gdmcode-0.1.3/gdmcode/sandbox/__init__.py +2 -0
  82. gdmcode-0.1.3/gdmcode/sandbox/policy.py +44 -0
  83. gdmcode-0.1.3/gdmcode/sdk/__init__.py +3 -0
  84. gdmcode-0.1.3/gdmcode/sdk/plugin_host.py +100 -0
  85. gdmcode-0.1.3/gdmcode/sdk/plugin_loader.py +101 -0
  86. gdmcode-0.1.3/gdmcode/security.py +409 -0
  87. gdmcode-0.1.3/gdmcode/server/__init__.py +7 -0
  88. gdmcode-0.1.3/gdmcode/server/bridge.py +427 -0
  89. gdmcode-0.1.3/gdmcode/server/bridge_cli.py +103 -0
  90. gdmcode-0.1.3/gdmcode/session/__init__.py +10 -0
  91. gdmcode-0.1.3/gdmcode/session/event_fanout.py +46 -0
  92. gdmcode-0.1.3/gdmcode/session/permission_bridge.py +100 -0
  93. gdmcode-0.1.3/gdmcode/tools/__init__.py +160 -0
  94. gdmcode-0.1.3/gdmcode/tools/agent_tools.py +423 -0
  95. gdmcode-0.1.3/gdmcode/tools/ask_user_tool.py +83 -0
  96. gdmcode-0.1.3/gdmcode/tools/bash_tool.py +384 -0
  97. gdmcode-0.1.3/gdmcode/tools/browser_tool.py +352 -0
  98. gdmcode-0.1.3/gdmcode/tools/dep_tools.py +210 -0
  99. gdmcode-0.1.3/gdmcode/tools/document_reader.py +167 -0
  100. gdmcode-0.1.3/gdmcode/tools/document_tool.py +240 -0
  101. gdmcode-0.1.3/gdmcode/tools/document_writer.py +171 -0
  102. gdmcode-0.1.3/gdmcode/tools/impact_tools.py +240 -0
  103. gdmcode-0.1.3/gdmcode/tools/playwright_tool.py +172 -0
  104. gdmcode-0.1.3/gdmcode/tools/quality_tools.py +366 -0
  105. gdmcode-0.1.3/gdmcode/tools/read_tools.py +318 -0
  106. gdmcode-0.1.3/gdmcode/tools/search_tools.py +310 -0
  107. gdmcode-0.1.3/gdmcode/tools/shell_tools.py +311 -0
  108. gdmcode-0.1.3/gdmcode/tools/write_tools.py +337 -0
  109. gdmcode-0.1.3/gdmcode/voice/__init__.py +25 -0
  110. gdmcode-0.1.3/gdmcode/voice/audio_capture.py +92 -0
  111. gdmcode-0.1.3/gdmcode/voice/audio_playback.py +68 -0
  112. gdmcode-0.1.3/gdmcode/voice/providers.py +143 -0
  113. gdmcode-0.1.3/gdmcode/voice/vad.py +55 -0
  114. gdmcode-0.1.3/gdmcode/voice/voice_loop.py +156 -0
  115. gdmcode-0.1.3/proxy/main.py +210 -0
  116. gdmcode-0.1.3/pyproject.toml +172 -0
  117. gdmcode-0.1.3/tests/remote/test_remote_server.py +354 -0
  118. gdmcode-0.1.3/tests/test_agent_tools.py +175 -0
  119. gdmcode-0.1.3/tests/test_api_fallback.py +291 -0
  120. gdmcode-0.1.3/tests/test_artifact_store.py +374 -0
  121. gdmcode-0.1.3/tests/test_audit_log.py +315 -0
  122. gdmcode-0.1.3/tests/test_auth.py +99 -0
  123. gdmcode-0.1.3/tests/test_auto_quality.py +358 -0
  124. gdmcode-0.1.3/tests/test_autonomy_levels.py +220 -0
  125. gdmcode-0.1.3/tests/test_bash_tool.py +110 -0
  126. gdmcode-0.1.3/tests/test_batch_api.py +444 -0
  127. gdmcode-0.1.3/tests/test_branch_farm.py +346 -0
  128. gdmcode-0.1.3/tests/test_bridge.py +680 -0
  129. gdmcode-0.1.3/tests/test_bridge_smoke.py +155 -0
  130. gdmcode-0.1.3/tests/test_browser_tool_smoke.py +134 -0
  131. gdmcode-0.1.3/tests/test_browser_tools.py +268 -0
  132. gdmcode-0.1.3/tests/test_btw_queue.py +267 -0
  133. gdmcode-0.1.3/tests/test_chrome_extension.py +258 -0
  134. gdmcode-0.1.3/tests/test_ci_runner.py +115 -0
  135. gdmcode-0.1.3/tests/test_cli_smoke.py +59 -0
  136. gdmcode-0.1.3/tests/test_commands.py +324 -0
  137. gdmcode-0.1.3/tests/test_compression.py +502 -0
  138. gdmcode-0.1.3/tests/test_confidence.py +250 -0
  139. gdmcode-0.1.3/tests/test_config.py +794 -0
  140. gdmcode-0.1.3/tests/test_continuous_memory.py +368 -0
  141. gdmcode-0.1.3/tests/test_convention_drift.py +103 -0
  142. gdmcode-0.1.3/tests/test_cost_tracker.py +307 -0
  143. gdmcode-0.1.3/tests/test_daemon.py +266 -0
  144. gdmcode-0.1.3/tests/test_daemon_stability.py +328 -0
  145. gdmcode-0.1.3/tests/test_daemon_watchdog.py +296 -0
  146. gdmcode-0.1.3/tests/test_db.py +97 -0
  147. gdmcode-0.1.3/tests/test_debate.py +260 -0
  148. gdmcode-0.1.3/tests/test_debug_loop.py +289 -0
  149. gdmcode-0.1.3/tests/test_debug_loop_smoke.py +138 -0
  150. gdmcode-0.1.3/tests/test_dep_tools.py +160 -0
  151. gdmcode-0.1.3/tests/test_doctor.py +66 -0
  152. gdmcode-0.1.3/tests/test_document_index.py +260 -0
  153. gdmcode-0.1.3/tests/test_document_reader.py +309 -0
  154. gdmcode-0.1.3/tests/test_document_tool.py +210 -0
  155. gdmcode-0.1.3/tests/test_document_writer.py +239 -0
  156. gdmcode-0.1.3/tests/test_domain_skills.py +214 -0
  157. gdmcode-0.1.3/tests/test_eval_harness.py +193 -0
  158. gdmcode-0.1.3/tests/test_event_log.py +178 -0
  159. gdmcode-0.1.3/tests/test_failure_taxonomy.py +78 -0
  160. gdmcode-0.1.3/tests/test_file_tools.py +141 -0
  161. gdmcode-0.1.3/tests/test_git_workflow.py +652 -0
  162. gdmcode-0.1.3/tests/test_github_actions.py +244 -0
  163. gdmcode-0.1.3/tests/test_health.py +305 -0
  164. gdmcode-0.1.3/tests/test_hermetic_sandbox.py +317 -0
  165. gdmcode-0.1.3/tests/test_identity_rbac.py +343 -0
  166. gdmcode-0.1.3/tests/test_impact_analysis.py +101 -0
  167. gdmcode-0.1.3/tests/test_impact_analyzer.py +180 -0
  168. gdmcode-0.1.3/tests/test_impact_graph.py +291 -0
  169. gdmcode-0.1.3/tests/test_impact_tools.py +105 -0
  170. gdmcode-0.1.3/tests/test_injection_gate.py +362 -0
  171. gdmcode-0.1.3/tests/test_leaderboard.py +109 -0
  172. gdmcode-0.1.3/tests/test_local_models.py +614 -0
  173. gdmcode-0.1.3/tests/test_loop.py +273 -0
  174. gdmcode-0.1.3/tests/test_loop_p3.py +155 -0
  175. gdmcode-0.1.3/tests/test_mcp_server.py +320 -0
  176. gdmcode-0.1.3/tests/test_migrations.py +108 -0
  177. gdmcode-0.1.3/tests/test_model_config.py +188 -0
  178. gdmcode-0.1.3/tests/test_orchestrator.py +225 -0
  179. gdmcode-0.1.3/tests/test_package.py +73 -0
  180. gdmcode-0.1.3/tests/test_permissions.py +106 -0
  181. gdmcode-0.1.3/tests/test_phase2_modules.py +359 -0
  182. gdmcode-0.1.3/tests/test_phone_ui.py +176 -0
  183. gdmcode-0.1.3/tests/test_playwright_tool.py +327 -0
  184. gdmcode-0.1.3/tests/test_plugin_sdk.py +321 -0
  185. gdmcode-0.1.3/tests/test_protocol_version.py +124 -0
  186. gdmcode-0.1.3/tests/test_provenance.py +77 -0
  187. gdmcode-0.1.3/tests/test_proxy_server.py +68 -0
  188. gdmcode-0.1.3/tests/test_quality_integration.py +445 -0
  189. gdmcode-0.1.3/tests/test_reasoning_toggle.py +313 -0
  190. gdmcode-0.1.3/tests/test_redaction.py +143 -0
  191. gdmcode-0.1.3/tests/test_regression_collector.py +25 -0
  192. gdmcode-0.1.3/tests/test_regression_guard_integration.py +290 -0
  193. gdmcode-0.1.3/tests/test_regression_runner.py +46 -0
  194. gdmcode-0.1.3/tests/test_repl_smoke.py +198 -0
  195. gdmcode-0.1.3/tests/test_replay.py +410 -0
  196. gdmcode-0.1.3/tests/test_resilience.py +401 -0
  197. gdmcode-0.1.3/tests/test_result_cache.py +360 -0
  198. gdmcode-0.1.3/tests/test_review_gate_expanded.py +161 -0
  199. gdmcode-0.1.3/tests/test_risk_scorer.py +204 -0
  200. gdmcode-0.1.3/tests/test_rollback.py +572 -0
  201. gdmcode-0.1.3/tests/test_router_compressor_conventions.py +241 -0
  202. gdmcode-0.1.3/tests/test_router_escalation.py +395 -0
  203. gdmcode-0.1.3/tests/test_sandbox.py +150 -0
  204. gdmcode-0.1.3/tests/test_scoring.py +100 -0
  205. gdmcode-0.1.3/tests/test_search_tools.py +95 -0
  206. gdmcode-0.1.3/tests/test_self_healing.py +263 -0
  207. gdmcode-0.1.3/tests/test_semantic_edit.py +378 -0
  208. gdmcode-0.1.3/tests/test_sentry_integration.py +324 -0
  209. gdmcode-0.1.3/tests/test_session_checkpoint.py +396 -0
  210. gdmcode-0.1.3/tests/test_session_controller.py +190 -0
  211. gdmcode-0.1.3/tests/test_session_restore.py +523 -0
  212. gdmcode-0.1.3/tests/test_signal_handling.py +325 -0
  213. gdmcode-0.1.3/tests/test_swebench_adapter.py +61 -0
  214. gdmcode-0.1.3/tests/test_swebench_runner.py +51 -0
  215. gdmcode-0.1.3/tests/test_system_prompt.py +99 -0
  216. gdmcode-0.1.3/tests/test_team_config.py +213 -0
  217. gdmcode-0.1.3/tests/test_tool_cache.py +266 -0
  218. gdmcode-0.1.3/tests/test_tool_orchestrator.py +123 -0
  219. gdmcode-0.1.3/tests/test_tool_timeout.py +192 -0
  220. gdmcode-0.1.3/tests/test_tools_registry.py +156 -0
  221. gdmcode-0.1.3/tests/test_tunnel_qr.py +305 -0
  222. gdmcode-0.1.3/tests/test_usage_analytics.py +244 -0
  223. gdmcode-0.1.3/tests/test_verification_graph.py +277 -0
  224. gdmcode-0.1.3/tests/test_verification_loop.py +330 -0
  225. gdmcode-0.1.3/tests/test_voice_loop.py +284 -0
  226. gdmcode-0.1.3/tests/test_voice_providers.py +219 -0
  227. gdmcode-0.1.3/tests/test_whole_codebase.py +208 -0
  228. gdmcode-0.1.3/tests/test_work_director.py +394 -0
  229. gdmcode-0.1.3/tests/voice/test_audio_foundation.py +233 -0
  230. gdmcode-0.1.1/.github/workflows/ci.yml +0 -25
  231. gdmcode-0.1.1/.github/workflows/deploy-gcloud.yml +0 -126
  232. gdmcode-0.1.1/.github/workflows/eval-nightly.yml +0 -22
  233. gdmcode-0.1.1/.github/workflows/eval-post-merge.yml +0 -20
  234. gdmcode-0.1.1/.github/workflows/eval-pr.yml +0 -18
  235. gdmcode-0.1.1/.github/workflows/eval-weekly.yml +0 -20
  236. gdmcode-0.1.1/.github/workflows/gdm-autofix.yml +0 -171
  237. gdmcode-0.1.1/.github/workflows/gdm-review.yml +0 -52
  238. gdmcode-0.1.1/.github/workflows/pages.yml +0 -40
  239. gdmcode-0.1.1/.github/workflows/release.yml +0 -51
  240. gdmcode-0.1.1/.github/workflows/smoke-test.yml +0 -33
  241. gdmcode-0.1.1/.github/workflows/vscode-ext.yml +0 -72
  242. gdmcode-0.1.1/.gitignore +0 -62
  243. gdmcode-0.1.1/CONTRIBUTING.md +0 -101
  244. gdmcode-0.1.1/Makefile +0 -27
  245. gdmcode-0.1.1/PKG-INFO +0 -256
  246. gdmcode-0.1.1/README.md +0 -153
  247. gdmcode-0.1.1/assets/logo/guidegdm.png +0 -0
  248. gdmcode-0.1.1/assets/remote/index.html +0 -286
  249. gdmcode-0.1.1/audit/00-AUDIT-PLAN.md +0 -140
  250. gdmcode-0.1.1/audit/01-STATUS.md +0 -56
  251. gdmcode-0.1.1/audit/02-SECURITY-ACTION.md +0 -49
  252. gdmcode-0.1.1/audit/03-CONSOLIDATED-SUMMARY.md +0 -72
  253. gdmcode-0.1.1/audit/BRIEFING.md +0 -46
  254. gdmcode-0.1.1/audit/architecture-audit.md +0 -546
  255. gdmcode-0.1.1/audit/performance-audit.md +0 -109
  256. gdmcode-0.1.1/audit/security-audit.md +0 -245
  257. gdmcode-0.1.1/audit/test-coverage-audit.md +0 -391
  258. gdmcode-0.1.1/config.toml +0 -67
  259. gdmcode-0.1.1/deploy/secrets.sh +0 -5
  260. gdmcode-0.1.1/deploy/setup.sh +0 -90
  261. gdmcode-0.1.1/docs/.nojekyll +0 -0
  262. gdmcode-0.1.1/docs/CNAME +0 -1
  263. gdmcode-0.1.1/docs/_config.yml +0 -4
  264. gdmcode-0.1.1/docs/architecture.md +0 -120
  265. gdmcode-0.1.1/docs/brainstorm/comparison.md +0 -109
  266. gdmcode-0.1.1/docs/brainstorm/eval-gpt-5.3-codex.md +0 -53
  267. gdmcode-0.1.1/docs/brainstorm/eval-gpt-5.4.md +0 -85
  268. gdmcode-0.1.1/docs/brainstorm/eval-sonnet-4.6.md +0 -112
  269. gdmcode-0.1.1/docs/cli-reference/index.html +0 -153
  270. gdmcode-0.1.1/docs/cli-reference.md +0 -595
  271. gdmcode-0.1.1/docs/configuration.md +0 -174
  272. gdmcode-0.1.1/docs/deployment.md +0 -232
  273. gdmcode-0.1.1/docs/index.html +0 -389
  274. gdmcode-0.1.1/docs/plugin-guide.md +0 -203
  275. gdmcode-0.1.1/docs/quick-start/index.html +0 -163
  276. gdmcode-0.1.1/docs/quick-start.md +0 -90
  277. gdmcode-0.1.1/docs/releases.json +0 -7
  278. gdmcode-0.1.1/docs/security-hardening.md +0 -264
  279. gdmcode-0.1.1/docs/setup/index.html +0 -433
  280. gdmcode-0.1.1/docs/tasks/README.md +0 -371
  281. gdmcode-0.1.1/docs/tasks/SCHEMA.md +0 -199
  282. gdmcode-0.1.1/docs/tasks/STANDARDS_EXCERPT.md +0 -70
  283. gdmcode-0.1.1/docs/tasks/archive/evals-001-harness.v1.md +0 -42
  284. gdmcode-0.1.1/docs/tasks/archive/evals-002-swebench.v1.md +0 -30
  285. gdmcode-0.1.1/docs/tasks/archive/evals-003-sandbox.v1.md +0 -31
  286. gdmcode-0.1.1/docs/tasks/archive/evals-004-regression-suite.v1.md +0 -41
  287. gdmcode-0.1.1/docs/tasks/artifacts/artifacts-001-verification-graph.md +0 -336
  288. gdmcode-0.1.1/docs/tasks/artifacts/artifacts-002-structured-output.md +0 -400
  289. gdmcode-0.1.1/docs/tasks/autonomous/autonomous-001-multi-file.md +0 -154
  290. gdmcode-0.1.1/docs/tasks/autonomous/autonomous-002-verification-loop.md +0 -226
  291. gdmcode-0.1.1/docs/tasks/autonomous/autonomous-003-git-workflow.md +0 -216
  292. gdmcode-0.1.1/docs/tasks/autonomous/autonomous-004-self-healing-debug.md +0 -237
  293. gdmcode-0.1.1/docs/tasks/autonomous/autonomous-005-impact-analysis.md +0 -224
  294. gdmcode-0.1.1/docs/tasks/autonomous/autonomous-006-rollback.md +0 -263
  295. gdmcode-0.1.1/docs/tasks/core/core-001-repl-bugfixes.md +0 -51
  296. gdmcode-0.1.1/docs/tasks/core/core-002-session-checkpoint.md +0 -129
  297. gdmcode-0.1.1/docs/tasks/core/core-003-session-restore.md +0 -121
  298. gdmcode-0.1.1/docs/tasks/core/core-004-signal-handling.md +0 -92
  299. gdmcode-0.1.1/docs/tasks/core/core-005-health-command.md +0 -101
  300. gdmcode-0.1.1/docs/tasks/core/core-006-tool-timeout.md +0 -52
  301. gdmcode-0.1.1/docs/tasks/core/core-007-api-fallback.md +0 -74
  302. gdmcode-0.1.1/docs/tasks/core/core-008-injection-gate.md +0 -102
  303. gdmcode-0.1.1/docs/tasks/core/core-009-btw-queue.md +0 -62
  304. gdmcode-0.1.1/docs/tasks/core/core-010-daemon-watchdog.md +0 -91
  305. gdmcode-0.1.1/docs/tasks/docs/docs-001-document-reader.md +0 -297
  306. gdmcode-0.1.1/docs/tasks/docs/docs-002-document-writer.md +0 -246
  307. gdmcode-0.1.1/docs/tasks/docs/docs-003-document-context.md +0 -235
  308. gdmcode-0.1.1/docs/tasks/docs/docs-004-document-index.md +0 -346
  309. gdmcode-0.1.1/docs/tasks/enterprise/enterprise-001-team-config.md +0 -253
  310. gdmcode-0.1.1/docs/tasks/enterprise/enterprise-002-audit-log.md +0 -272
  311. gdmcode-0.1.1/docs/tasks/enterprise/enterprise-003-rbac.md +0 -296
  312. gdmcode-0.1.1/docs/tasks/enterprise/enterprise-004-analytics.md +0 -191
  313. gdmcode-0.1.1/docs/tasks/evals/evals-001-benchmark-suite.md +0 -512
  314. gdmcode-0.1.1/docs/tasks/evals/evals-002-ci-integration.md +0 -382
  315. gdmcode-0.1.1/docs/tasks/evals/evals-003-swebench-runner.md +0 -376
  316. gdmcode-0.1.1/docs/tasks/evals/evals-004-regression-tests.md +0 -339
  317. gdmcode-0.1.1/docs/tasks/extensions/extensions-001-bridge-server.md +0 -55
  318. gdmcode-0.1.1/docs/tasks/extensions/extensions-002-chrome-extension.md +0 -49
  319. gdmcode-0.1.1/docs/tasks/extensions/extensions-003-browser-tools.md +0 -52
  320. gdmcode-0.1.1/docs/tasks/extensions/extensions-004-mobile-tool.md +0 -48
  321. gdmcode-0.1.1/docs/tasks/ide/ide-001-vscode-extension.md +0 -180
  322. gdmcode-0.1.1/docs/tasks/ide/ide-002-semantic-edit.md +0 -218
  323. gdmcode-0.1.1/docs/tasks/ide/ide-003-confidence-scoring.md +0 -186
  324. gdmcode-0.1.1/docs/tasks/ide/ide-004-autonomy-slider.md +0 -247
  325. gdmcode-0.1.1/docs/tasks/infra/infra-001-db-migration-registry.md +0 -98
  326. gdmcode-0.1.1/docs/tasks/infra/protocol-001-client-protocol-versioning.md +0 -110
  327. gdmcode-0.1.1/docs/tasks/integrations/integrations-001-github-actions.md +0 -218
  328. gdmcode-0.1.1/docs/tasks/integrations/integrations-002-sentry.md +0 -159
  329. gdmcode-0.1.1/docs/tasks/integrations/integrations-003-mcp.md +0 -137
  330. gdmcode-0.1.1/docs/tasks/integrations/integrations-004-work-director.md +0 -188
  331. gdmcode-0.1.1/docs/tasks/integrations/integrations-005-plugin-sdk.md +0 -203
  332. gdmcode-0.1.1/docs/tasks/memory/memory-001-code-index.md +0 -168
  333. gdmcode-0.1.1/docs/tasks/memory/memory-002-conventions-extract.md +0 -91
  334. gdmcode-0.1.1/docs/tasks/memory/memory-003-continuous-memory.md +0 -102
  335. gdmcode-0.1.1/docs/tasks/memory/memory-004-file-cache.md +0 -130
  336. gdmcode-0.1.1/docs/tasks/memory/memory-005-whole-codebase.md +0 -101
  337. gdmcode-0.1.1/docs/tasks/memory/memory-006-compression.md +0 -121
  338. gdmcode-0.1.1/docs/tasks/memory/memory-007-project-scanner.md +0 -139
  339. gdmcode-0.1.1/docs/tasks/memory/memory-008-state-consolidate.md +0 -123
  340. gdmcode-0.1.1/docs/tasks/meta/meta-001-task-index-update.md +0 -38
  341. gdmcode-0.1.1/docs/tasks/models/models-001-externalize-ids.md +0 -142
  342. gdmcode-0.1.1/docs/tasks/models/models-002-reasoning-toggle.md +0 -128
  343. gdmcode-0.1.1/docs/tasks/models/models-003-local-provider.md +0 -160
  344. gdmcode-0.1.1/docs/tasks/models/models-004-batch-api.md +0 -191
  345. gdmcode-0.1.1/docs/tasks/models/models-005-router-escalation.md +0 -155
  346. gdmcode-0.1.1/docs/tasks/models/models-006-debate-standard.md +0 -195
  347. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-002-hermetic-sandbox.md +0 -37
  348. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-003-deterministic-replay.md +0 -44
  349. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-004-artifact-bus.md +0 -54
  350. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-005-semantic-refactor.md +0 -33
  351. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-006-risk-scoring.md +0 -33
  352. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-007-impact-graph.md +0 -31
  353. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-008-pr-ci-agent.md +0 -29
  354. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-009-fix-from-prod.md +0 -29
  355. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-010-org-memory.md +0 -29
  356. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-011-policy-engine.md +0 -32
  357. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-012-compliance-export.md +0 -29
  358. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-014-self-play-router.md +0 -32
  359. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-015-failure-miner.md +0 -31
  360. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-016-onprem-mode.md +0 -30
  361. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-017-agent-sdk.md +0 -29
  362. gdmcode-0.1.1/docs/tasks/moonshot/moonshot-018-release-engineer.md +0 -34
  363. gdmcode-0.1.1/docs/tasks/quality/quality-001-review-gate-expand.md +0 -89
  364. gdmcode-0.1.1/docs/tasks/quality/quality-002-regression-guard-wire.md +0 -101
  365. gdmcode-0.1.1/docs/tasks/quality/quality-003-test-validator-wire.md +0 -85
  366. gdmcode-0.1.1/docs/tasks/quality/quality-004-auto-lint.md +0 -118
  367. gdmcode-0.1.1/docs/tasks/quality/quality-005-dep-guard-osv.md +0 -108
  368. gdmcode-0.1.1/docs/tasks/quality/quality-006-smoke-tests.md +0 -126
  369. gdmcode-0.1.1/docs/tasks/quality/quality-007-convention-drift.md +0 -132
  370. gdmcode-0.1.1/docs/tasks/quality/quality-008-breaking-change.md +0 -149
  371. gdmcode-0.1.1/docs/tasks/remote/remote-001-server-lan.md +0 -58
  372. gdmcode-0.1.1/docs/tasks/remote/remote-002-tunnel-qr.md +0 -43
  373. gdmcode-0.1.1/docs/tasks/remote/remote-003-phone-ui.md +0 -44
  374. gdmcode-0.1.1/docs/tasks/remote/remote-007-gdm-doctor.md +0 -48
  375. gdmcode-0.1.1/docs/tasks/runtime/runtime-001-daemon-fix.md +0 -254
  376. gdmcode-0.1.1/docs/tasks/runtime/runtime-002-branch-farm.md +0 -211
  377. gdmcode-0.1.1/docs/tasks/runtime/runtime-003-event-log.md +0 -301
  378. gdmcode-0.1.1/docs/tasks/runtime/runtime-004-replay-engine.md +0 -257
  379. gdmcode-0.1.1/docs/tasks/runtime/runtime-005-cost-tracker.md +0 -292
  380. gdmcode-0.1.1/docs/tasks/sdk/sdk-001-package-dist.md +0 -195
  381. gdmcode-0.1.1/docs/tasks/sdk/sdk-002-config-system.md +0 -269
  382. gdmcode-0.1.1/docs/tasks/sdk/sdk-003-community-readme.md +0 -181
  383. gdmcode-0.1.1/docs/tasks/security/security-001-core-redaction.md +0 -117
  384. gdmcode-0.1.1/docs/tasks/session/session-001-session-controller.md +0 -80
  385. gdmcode-0.1.1/docs/tasks/tools/tools-001-atomic-writes.md +0 -177
  386. gdmcode-0.1.1/docs/tasks/tools/tools-002-playwright.md +0 -161
  387. gdmcode-0.1.1/docs/tasks/tools/tools-003-debug-web-search.md +0 -170
  388. gdmcode-0.1.1/docs/tasks/tools/tools-004-result-cache.md +0 -165
  389. gdmcode-0.1.1/docs/tasks/tools/tools-005-agent-tools-register.md +0 -140
  390. gdmcode-0.1.1/docs/tasks/tools/tools-006-browser-eval-remove.md +0 -111
  391. gdmcode-0.1.1/docs/tasks/tools/tools-007-shell-platform.md +0 -188
  392. gdmcode-0.1.1/docs/tasks/validate.py +0 -182
  393. gdmcode-0.1.1/docs/tasks/voice/voice-001-audio-foundation.md +0 -44
  394. gdmcode-0.1.1/docs/tasks/voice/voice-002-providers.md +0 -44
  395. gdmcode-0.1.1/docs/tasks/voice/voice-003-voice-loop.md +0 -54
  396. gdmcode-0.1.1/docs/tasks-v2/README.md +0 -406
  397. gdmcode-0.1.1/docs/tasks-v2/SCHEMA.md +0 -215
  398. gdmcode-0.1.1/docs/tasks-v2/STANDARDS_EXCERPT.md +0 -70
  399. gdmcode-0.1.1/docs/tasks-v2/archive/evals-001-harness.v1.md +0 -42
  400. gdmcode-0.1.1/docs/tasks-v2/archive/evals-002-swebench.v1.md +0 -30
  401. gdmcode-0.1.1/docs/tasks-v2/archive/evals-003-sandbox.v1.md +0 -31
  402. gdmcode-0.1.1/docs/tasks-v2/archive/evals-004-regression-suite.v1.md +0 -41
  403. gdmcode-0.1.1/docs/tasks-v2/artifacts/artifacts-001-verification-graph.md +0 -98
  404. gdmcode-0.1.1/docs/tasks-v2/artifacts/artifacts-002-structured-output.md +0 -105
  405. gdmcode-0.1.1/docs/tasks-v2/autonomous/autonomous-001-multi-file.md +0 -92
  406. gdmcode-0.1.1/docs/tasks-v2/autonomous/autonomous-002-verification-loop.md +0 -67
  407. gdmcode-0.1.1/docs/tasks-v2/autonomous/autonomous-003-git-workflow.md +0 -59
  408. gdmcode-0.1.1/docs/tasks-v2/autonomous/autonomous-004-self-healing-debug.md +0 -58
  409. gdmcode-0.1.1/docs/tasks-v2/autonomous/autonomous-005-impact-analysis.md +0 -72
  410. gdmcode-0.1.1/docs/tasks-v2/autonomous/autonomous-006-rollback.md +0 -60
  411. gdmcode-0.1.1/docs/tasks-v2/core/core-001-repl-bugfixes.md +0 -51
  412. gdmcode-0.1.1/docs/tasks-v2/core/core-002-session-checkpoint.md +0 -128
  413. gdmcode-0.1.1/docs/tasks-v2/core/core-003-session-restore.md +0 -120
  414. gdmcode-0.1.1/docs/tasks-v2/core/core-004-signal-handling.md +0 -92
  415. gdmcode-0.1.1/docs/tasks-v2/core/core-005-health-command.md +0 -101
  416. gdmcode-0.1.1/docs/tasks-v2/core/core-006-tool-timeout.md +0 -52
  417. gdmcode-0.1.1/docs/tasks-v2/core/core-007-api-fallback.md +0 -74
  418. gdmcode-0.1.1/docs/tasks-v2/core/core-008-injection-gate.md +0 -101
  419. gdmcode-0.1.1/docs/tasks-v2/core/core-009-btw-queue.md +0 -68
  420. gdmcode-0.1.1/docs/tasks-v2/core/core-010-daemon-watchdog.md +0 -91
  421. gdmcode-0.1.1/docs/tasks-v2/docs/docs-001-document-reader.md +0 -68
  422. gdmcode-0.1.1/docs/tasks-v2/docs/docs-002-document-writer.md +0 -69
  423. gdmcode-0.1.1/docs/tasks-v2/docs/docs-003-document-context.md +0 -71
  424. gdmcode-0.1.1/docs/tasks-v2/docs/docs-004-document-index.md +0 -69
  425. gdmcode-0.1.1/docs/tasks-v2/enterprise/enterprise-001-team-config.md +0 -95
  426. gdmcode-0.1.1/docs/tasks-v2/enterprise/enterprise-002-audit-log.md +0 -72
  427. gdmcode-0.1.1/docs/tasks-v2/enterprise/enterprise-003-rbac.md +0 -67
  428. gdmcode-0.1.1/docs/tasks-v2/enterprise/enterprise-004-analytics.md +0 -66
  429. gdmcode-0.1.1/docs/tasks-v2/evals/evals-001-benchmark-suite.md +0 -115
  430. gdmcode-0.1.1/docs/tasks-v2/evals/evals-002-ci-integration.md +0 -119
  431. gdmcode-0.1.1/docs/tasks-v2/evals/evals-003-swebench-runner.md +0 -105
  432. gdmcode-0.1.1/docs/tasks-v2/evals/evals-004-regression-tests.md +0 -116
  433. gdmcode-0.1.1/docs/tasks-v2/extensions/extensions-001-bridge-server.md +0 -55
  434. gdmcode-0.1.1/docs/tasks-v2/extensions/extensions-002-chrome-extension.md +0 -87
  435. gdmcode-0.1.1/docs/tasks-v2/extensions/extensions-003-browser-tools.md +0 -90
  436. gdmcode-0.1.1/docs/tasks-v2/extensions/extensions-004-mobile-tool.md +0 -79
  437. gdmcode-0.1.1/docs/tasks-v2/ide/ide-001-vscode-extension.md +0 -107
  438. gdmcode-0.1.1/docs/tasks-v2/ide/ide-002-semantic-edit.md +0 -128
  439. gdmcode-0.1.1/docs/tasks-v2/ide/ide-003-confidence-scoring.md +0 -115
  440. gdmcode-0.1.1/docs/tasks-v2/ide/ide-004-autonomy-slider.md +0 -114
  441. gdmcode-0.1.1/docs/tasks-v2/infra/infra-001-db-migration-registry.md +0 -89
  442. gdmcode-0.1.1/docs/tasks-v2/infra/protocol-001-client-protocol-versioning.md +0 -118
  443. gdmcode-0.1.1/docs/tasks-v2/integrations/integrations-001-github-actions.md +0 -88
  444. gdmcode-0.1.1/docs/tasks-v2/integrations/integrations-002-sentry.md +0 -117
  445. gdmcode-0.1.1/docs/tasks-v2/integrations/integrations-003-mcp.md +0 -71
  446. gdmcode-0.1.1/docs/tasks-v2/integrations/integrations-004-work-director.md +0 -77
  447. gdmcode-0.1.1/docs/tasks-v2/integrations/integrations-005-plugin-sdk.md +0 -107
  448. gdmcode-0.1.1/docs/tasks-v2/memory/memory-001-code-index.md +0 -73
  449. gdmcode-0.1.1/docs/tasks-v2/memory/memory-002-conventions-extract.md +0 -79
  450. gdmcode-0.1.1/docs/tasks-v2/memory/memory-003-continuous-memory.md +0 -105
  451. gdmcode-0.1.1/docs/tasks-v2/memory/memory-004-file-cache.md +0 -68
  452. gdmcode-0.1.1/docs/tasks-v2/memory/memory-005-whole-codebase.md +0 -66
  453. gdmcode-0.1.1/docs/tasks-v2/memory/memory-006-compression.md +0 -59
  454. gdmcode-0.1.1/docs/tasks-v2/memory/memory-007-project-scanner.md +0 -71
  455. gdmcode-0.1.1/docs/tasks-v2/memory/memory-008-state-consolidate.md +0 -61
  456. gdmcode-0.1.1/docs/tasks-v2/meta/meta-001-task-index-update.md +0 -46
  457. gdmcode-0.1.1/docs/tasks-v2/models/models-001-externalize-ids.md +0 -142
  458. gdmcode-0.1.1/docs/tasks-v2/models/models-002-reasoning-toggle.md +0 -128
  459. gdmcode-0.1.1/docs/tasks-v2/models/models-003-local-provider.md +0 -72
  460. gdmcode-0.1.1/docs/tasks-v2/models/models-004-batch-api.md +0 -104
  461. gdmcode-0.1.1/docs/tasks-v2/models/models-005-router-escalation.md +0 -85
  462. gdmcode-0.1.1/docs/tasks-v2/models/models-006-debate-standard.md +0 -93
  463. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-002-hermetic-sandbox.md +0 -54
  464. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-003-deterministic-replay.md +0 -69
  465. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-004-artifact-bus.md +0 -66
  466. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-005-semantic-refactor.md +0 -64
  467. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-006-risk-scoring.md +0 -62
  468. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-007-impact-graph.md +0 -72
  469. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-008-pr-ci-agent.md +0 -71
  470. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-009-fix-from-prod.md +0 -79
  471. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-010-org-memory.md +0 -79
  472. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-011-policy-engine.md +0 -82
  473. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-012-compliance-export.md +0 -63
  474. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-014-self-play-router.md +0 -69
  475. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-015-failure-miner.md +0 -69
  476. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-016-onprem-mode.md +0 -75
  477. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-017-agent-sdk.md +0 -79
  478. gdmcode-0.1.1/docs/tasks-v2/moonshot/moonshot-018-release-engineer.md +0 -72
  479. gdmcode-0.1.1/docs/tasks-v2/quality/quality-001-review-gate-expand.md +0 -114
  480. gdmcode-0.1.1/docs/tasks-v2/quality/quality-002-regression-guard-wire.md +0 -115
  481. gdmcode-0.1.1/docs/tasks-v2/quality/quality-003-test-validator-wire.md +0 -88
  482. gdmcode-0.1.1/docs/tasks-v2/quality/quality-004-auto-lint.md +0 -89
  483. gdmcode-0.1.1/docs/tasks-v2/quality/quality-005-dep-guard-osv.md +0 -93
  484. gdmcode-0.1.1/docs/tasks-v2/quality/quality-006-smoke-tests.md +0 -95
  485. gdmcode-0.1.1/docs/tasks-v2/quality/quality-007-convention-drift.md +0 -76
  486. gdmcode-0.1.1/docs/tasks-v2/quality/quality-008-breaking-change.md +0 -105
  487. gdmcode-0.1.1/docs/tasks-v2/remote/remote-001-server-lan.md +0 -120
  488. gdmcode-0.1.1/docs/tasks-v2/remote/remote-002-tunnel-qr.md +0 -105
  489. gdmcode-0.1.1/docs/tasks-v2/remote/remote-003-phone-ui.md +0 -124
  490. gdmcode-0.1.1/docs/tasks-v2/remote/remote-007-gdm-doctor.md +0 -92
  491. gdmcode-0.1.1/docs/tasks-v2/runtime/runtime-001-daemon-fix.md +0 -93
  492. gdmcode-0.1.1/docs/tasks-v2/runtime/runtime-002-branch-farm.md +0 -54
  493. gdmcode-0.1.1/docs/tasks-v2/runtime/runtime-003-event-log.md +0 -105
  494. gdmcode-0.1.1/docs/tasks-v2/runtime/runtime-004-replay-engine.md +0 -114
  495. gdmcode-0.1.1/docs/tasks-v2/runtime/runtime-005-cost-tracker.md +0 -292
  496. gdmcode-0.1.1/docs/tasks-v2/sdk/sdk-001-package-dist.md +0 -96
  497. gdmcode-0.1.1/docs/tasks-v2/sdk/sdk-002-config-system.md +0 -108
  498. gdmcode-0.1.1/docs/tasks-v2/sdk/sdk-003-community-readme.md +0 -71
  499. gdmcode-0.1.1/docs/tasks-v2/security/security-001-core-redaction.md +0 -108
  500. gdmcode-0.1.1/docs/tasks-v2/session/session-001-session-controller.md +0 -99
  501. gdmcode-0.1.1/docs/tasks-v2/tools/tools-001-atomic-writes.md +0 -176
  502. gdmcode-0.1.1/docs/tasks-v2/tools/tools-002-playwright.md +0 -96
  503. gdmcode-0.1.1/docs/tasks-v2/tools/tools-003-debug-web-search.md +0 -83
  504. gdmcode-0.1.1/docs/tasks-v2/tools/tools-004-result-cache.md +0 -56
  505. gdmcode-0.1.1/docs/tasks-v2/tools/tools-005-agent-tools-register.md +0 -149
  506. gdmcode-0.1.1/docs/tasks-v2/tools/tools-006-browser-eval-remove.md +0 -111
  507. gdmcode-0.1.1/docs/tasks-v2/tools/tools-007-shell-platform.md +0 -82
  508. gdmcode-0.1.1/docs/tasks-v2/validate.py +0 -182
  509. gdmcode-0.1.1/docs/tasks-v2/voice/voice-001-audio-foundation.md +0 -92
  510. gdmcode-0.1.1/docs/tasks-v2/voice/voice-002-providers.md +0 -109
  511. gdmcode-0.1.1/docs/tasks-v2/voice/voice-003-voice-loop.md +0 -125
  512. gdmcode-0.1.1/evals/__init__.py +0 -57
  513. gdmcode-0.1.1/evals/ab_framework.py +0 -183
  514. gdmcode-0.1.1/evals/budget_tracker.py +0 -78
  515. gdmcode-0.1.1/evals/canary_tasks/.gitkeep +0 -0
  516. gdmcode-0.1.1/evals/canary_tasks/shared/canary-python-cache-005.yaml +0 -12
  517. gdmcode-0.1.1/evals/canary_tasks/shared/canary-python-regression-002.yaml +0 -12
  518. gdmcode-0.1.1/evals/canary_tasks/shared/canary-python-security-001.yaml +0 -12
  519. gdmcode-0.1.1/evals/canary_tasks/shared/canary-shell-ops-004.yaml +0 -12
  520. gdmcode-0.1.1/evals/canary_tasks/shared/canary-typescript-auth-006.yaml +0 -12
  521. gdmcode-0.1.1/evals/canary_tasks/shared/canary-typescript-session-003.yaml +0 -12
  522. gdmcode-0.1.1/evals/ci_runner.py +0 -1007
  523. gdmcode-0.1.1/evals/cost_frontier.py +0 -55
  524. gdmcode-0.1.1/evals/failure_taxonomy.py +0 -65
  525. gdmcode-0.1.1/evals/harness.py +0 -1067
  526. gdmcode-0.1.1/evals/leaderboard.py +0 -262
  527. gdmcode-0.1.1/evals/mock_provider.py +0 -51
  528. gdmcode-0.1.1/evals/private_eval_set.py +0 -326
  529. gdmcode-0.1.1/evals/profiles/benchmark_profile.yaml +0 -73
  530. gdmcode-0.1.1/evals/provenance.py +0 -67
  531. gdmcode-0.1.1/evals/regression/__init__.py +0 -1
  532. gdmcode-0.1.1/evals/regression/collector.py +0 -110
  533. gdmcode-0.1.1/evals/regression/conftest.py +0 -6
  534. gdmcode-0.1.1/evals/regression/fixture_repos/paginator/src/__init__.py +0 -1
  535. gdmcode-0.1.1/evals/regression/fixture_repos/paginator/src/paginator.py +0 -8
  536. gdmcode-0.1.1/evals/regression/fixture_repos/paginator/tests/conftest.py +0 -7
  537. gdmcode-0.1.1/evals/regression/fixture_repos/paginator/tests/hidden/test_paginator_hidden.py +0 -5
  538. gdmcode-0.1.1/evals/regression/fixture_repos/paginator/tests/test_paginator.py +0 -9
  539. gdmcode-0.1.1/evals/regression/runner.py +0 -470
  540. gdmcode-0.1.1/evals/regression/scenarios/fixtures/python-bugfix-easy-001.yaml +0 -17
  541. gdmcode-0.1.1/evals/regression/scenarios/full/full_01_integration.yaml +0 -4
  542. gdmcode-0.1.1/evals/regression/scenarios/full/full_02_escalation.yaml +0 -4
  543. gdmcode-0.1.1/evals/regression/scenarios/full/full_03_verification.yaml +0 -4
  544. gdmcode-0.1.1/evals/regression/scenarios/full/full_04_remote.yaml +0 -4
  545. gdmcode-0.1.1/evals/regression/scenarios/full/full_05_voice.yaml +0 -4
  546. gdmcode-0.1.1/evals/regression/scenarios/index.yaml +0 -245
  547. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_01_full_tests.yaml +0 -4
  548. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_02_memory.yaml +0 -4
  549. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_03_router.yaml +0 -4
  550. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_04_artifacts.yaml +0 -4
  551. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_05_tools.yaml +0 -4
  552. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_06_debug_loop.yaml +0 -4
  553. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_07_conventions.yaml +0 -4
  554. gdmcode-0.1.1/evals/regression/scenarios/nightly/nightly_08_evals.yaml +0 -4
  555. gdmcode-0.1.1/evals/regression/scenarios/smoke/smoke_01_cli_help.yaml +0 -4
  556. gdmcode-0.1.1/evals/regression/scenarios/smoke/smoke_02_lint.yaml +0 -4
  557. gdmcode-0.1.1/evals/regression/scenarios/smoke/smoke_03_db_init.yaml +0 -4
  558. gdmcode-0.1.1/evals/regression/scenarios/smoke/smoke_04_router.yaml +0 -4
  559. gdmcode-0.1.1/evals/regression/scenarios/smoke/smoke_05_config.yaml +0 -4
  560. gdmcode-0.1.1/evals/regression/suites/full.yaml +0 -49
  561. gdmcode-0.1.1/evals/regression/suites/nightly.yaml +0 -41
  562. gdmcode-0.1.1/evals/regression/suites/smoke.yaml +0 -14
  563. gdmcode-0.1.1/evals/regression/validate_coverage.py +0 -166
  564. gdmcode-0.1.1/evals/report.py +0 -243
  565. gdmcode-0.1.1/evals/results/.gitkeep +0 -0
  566. gdmcode-0.1.1/evals/sandbox.py +0 -431
  567. gdmcode-0.1.1/evals/sandbox_config.py +0 -50
  568. gdmcode-0.1.1/evals/sandbox_profiles/docker-rootless.yaml +0 -15
  569. gdmcode-0.1.1/evals/sandbox_profiles/gvisor.yaml +0 -11
  570. gdmcode-0.1.1/evals/sandbox_profiles/subprocess-dev.yaml +0 -5
  571. gdmcode-0.1.1/evals/scoring.py +0 -180
  572. gdmcode-0.1.1/evals/swebench_adapter.py +0 -42
  573. gdmcode-0.1.1/evals/swebench_runner.py +0 -375
  574. gdmcode-0.1.1/evals/tasks/easy/python-bugfix-easy-001.yaml +0 -5
  575. gdmcode-0.1.1/evals/tasks/easy/python-config-easy-001.yaml +0 -5
  576. gdmcode-0.1.1/evals/tasks/easy/python-dependency-easy-001.yaml +0 -5
  577. gdmcode-0.1.1/evals/tasks/easy/python-explain-easy-001.yaml +0 -5
  578. gdmcode-0.1.1/evals/tasks/easy/python-multi-file-easy-001.yaml +0 -5
  579. gdmcode-0.1.1/evals/tasks/easy/python-performance-easy-001.yaml +0 -5
  580. gdmcode-0.1.1/evals/tasks/easy/python-recovery-easy-001.yaml +0 -5
  581. gdmcode-0.1.1/evals/tasks/easy/python-refactor-easy-001.yaml +0 -5
  582. gdmcode-0.1.1/evals/tasks/easy/python-security-fix-easy-001.yaml +0 -5
  583. gdmcode-0.1.1/evals/tasks/easy/python-test-writing-easy-001.yaml +0 -5
  584. gdmcode-0.1.1/evals/tasks/easy/typescript-bugfix-easy-001.yaml +0 -5
  585. gdmcode-0.1.1/evals/tasks/easy/typescript-config-easy-001.yaml +0 -5
  586. gdmcode-0.1.1/evals/tasks/easy/typescript-dependency-easy-001.yaml +0 -5
  587. gdmcode-0.1.1/evals/tasks/easy/typescript-explain-easy-001.yaml +0 -5
  588. gdmcode-0.1.1/evals/tasks/easy/typescript-multi-file-easy-001.yaml +0 -5
  589. gdmcode-0.1.1/evals/tasks/easy/typescript-performance-easy-001.yaml +0 -5
  590. gdmcode-0.1.1/evals/tasks/easy/typescript-recovery-easy-001.yaml +0 -5
  591. gdmcode-0.1.1/evals/tasks/easy/typescript-refactor-easy-001.yaml +0 -5
  592. gdmcode-0.1.1/evals/tasks/easy/typescript-security-fix-easy-001.yaml +0 -5
  593. gdmcode-0.1.1/evals/tasks/easy/typescript-test-writing-easy-001.yaml +0 -5
  594. gdmcode-0.1.1/evals/tasks/hard/shell-bugfix-hard-001.yaml +0 -5
  595. gdmcode-0.1.1/evals/tasks/hard/shell-config-hard-001.yaml +0 -5
  596. gdmcode-0.1.1/evals/tasks/hard/shell-dependency-hard-001.yaml +0 -5
  597. gdmcode-0.1.1/evals/tasks/hard/shell-explain-hard-001.yaml +0 -5
  598. gdmcode-0.1.1/evals/tasks/hard/shell-multi-file-hard-001.yaml +0 -5
  599. gdmcode-0.1.1/evals/tasks/hard/shell-performance-hard-001.yaml +0 -5
  600. gdmcode-0.1.1/evals/tasks/hard/shell-recovery-hard-001.yaml +0 -5
  601. gdmcode-0.1.1/evals/tasks/hard/shell-refactor-hard-001.yaml +0 -5
  602. gdmcode-0.1.1/evals/tasks/hard/shell-security-fix-hard-001.yaml +0 -5
  603. gdmcode-0.1.1/evals/tasks/hard/shell-test-writing-hard-001.yaml +0 -5
  604. gdmcode-0.1.1/evals/tasks/hard/typescript-bugfix-hard-001.yaml +0 -5
  605. gdmcode-0.1.1/evals/tasks/hard/typescript-config-hard-001.yaml +0 -5
  606. gdmcode-0.1.1/evals/tasks/hard/typescript-dependency-hard-001.yaml +0 -5
  607. gdmcode-0.1.1/evals/tasks/hard/typescript-explain-hard-001.yaml +0 -5
  608. gdmcode-0.1.1/evals/tasks/hard/typescript-multi-file-hard-001.yaml +0 -5
  609. gdmcode-0.1.1/evals/tasks/hard/typescript-performance-hard-001.yaml +0 -5
  610. gdmcode-0.1.1/evals/tasks/hard/typescript-recovery-hard-001.yaml +0 -5
  611. gdmcode-0.1.1/evals/tasks/hard/typescript-refactor-hard-001.yaml +0 -5
  612. gdmcode-0.1.1/evals/tasks/hard/typescript-security-fix-hard-001.yaml +0 -5
  613. gdmcode-0.1.1/evals/tasks/hard/typescript-test-writing-hard-001.yaml +0 -5
  614. gdmcode-0.1.1/evals/tasks/index.yaml +0 -361
  615. gdmcode-0.1.1/evals/tasks/medium/python-bugfix-medium-001.yaml +0 -5
  616. gdmcode-0.1.1/evals/tasks/medium/python-config-medium-001.yaml +0 -5
  617. gdmcode-0.1.1/evals/tasks/medium/python-dependency-medium-001.yaml +0 -5
  618. gdmcode-0.1.1/evals/tasks/medium/python-explain-medium-001.yaml +0 -5
  619. gdmcode-0.1.1/evals/tasks/medium/python-multi-file-medium-001.yaml +0 -5
  620. gdmcode-0.1.1/evals/tasks/medium/python-performance-medium-001.yaml +0 -5
  621. gdmcode-0.1.1/evals/tasks/medium/python-recovery-medium-001.yaml +0 -5
  622. gdmcode-0.1.1/evals/tasks/medium/python-refactor-medium-001.yaml +0 -5
  623. gdmcode-0.1.1/evals/tasks/medium/python-security-fix-medium-001.yaml +0 -5
  624. gdmcode-0.1.1/evals/tasks/medium/python-test-writing-medium-001.yaml +0 -5
  625. gdmcode-0.1.1/evals/tasks/medium/shell-bugfix-medium-001.yaml +0 -5
  626. gdmcode-0.1.1/evals/tasks/medium/shell-config-medium-001.yaml +0 -5
  627. gdmcode-0.1.1/evals/tasks/medium/shell-dependency-medium-001.yaml +0 -5
  628. gdmcode-0.1.1/evals/tasks/medium/shell-explain-medium-001.yaml +0 -5
  629. gdmcode-0.1.1/evals/tasks/medium/shell-multi-file-medium-001.yaml +0 -5
  630. gdmcode-0.1.1/evals/tasks/medium/shell-performance-medium-001.yaml +0 -5
  631. gdmcode-0.1.1/evals/tasks/medium/shell-recovery-medium-001.yaml +0 -5
  632. gdmcode-0.1.1/evals/tasks/medium/shell-refactor-medium-001.yaml +0 -5
  633. gdmcode-0.1.1/evals/tasks/medium/shell-security-fix-medium-001.yaml +0 -5
  634. gdmcode-0.1.1/evals/tasks/medium/shell-test-writing-medium-001.yaml +0 -5
  635. gdmcode-0.1.1/evals/tasks/suites/nightly.yaml +0 -61
  636. gdmcode-0.1.1/evals/tasks/suites/post-merge.yaml +0 -41
  637. gdmcode-0.1.1/evals/tasks/suites/pr-smoke.yaml +0 -16
  638. gdmcode-0.1.1/evals/tasks/suites/weekly.yaml +0 -61
  639. gdmcode-0.1.1/extensions-plan.md +0 -2379
  640. gdmcode-0.1.1/gdm-vscode/.vscodeignore +0 -8
  641. gdmcode-0.1.1/gdm-vscode/chrome-ext/background.js +0 -482
  642. gdmcode-0.1.1/gdm-vscode/chrome-ext/content.js +0 -351
  643. gdmcode-0.1.1/gdm-vscode/chrome-ext/manifest.json +0 -11
  644. gdmcode-0.1.1/gdm-vscode/chrome-ext/popup.html +0 -136
  645. gdmcode-0.1.1/gdm-vscode/chrome-ext/popup.js +0 -187
  646. gdmcode-0.1.1/gdm-vscode/package-lock.json +0 -3823
  647. gdmcode-0.1.1/gdm-vscode/package.json +0 -139
  648. gdmcode-0.1.1/gdm-vscode/src/autonomySlider.ts +0 -244
  649. gdmcode-0.1.1/gdm-vscode/src/chatPanel.ts +0 -245
  650. gdmcode-0.1.1/gdm-vscode/src/confidenceView.ts +0 -421
  651. gdmcode-0.1.1/gdm-vscode/src/contextMenu.ts +0 -55
  652. gdmcode-0.1.1/gdm-vscode/src/diffView.ts +0 -249
  653. gdmcode-0.1.1/gdm-vscode/src/extension.ts +0 -303
  654. gdmcode-0.1.1/gdm-vscode/src/gdmClient.ts +0 -631
  655. gdmcode-0.1.1/gdm-vscode/src/semanticEdit.ts +0 -434
  656. gdmcode-0.1.1/gdm-vscode/src/statusBar.ts +0 -68
  657. gdmcode-0.1.1/gdm-vscode/src/taskMonitor.ts +0 -139
  658. gdmcode-0.1.1/gdm-vscode/src/test/runTests.ts +0 -122
  659. gdmcode-0.1.1/gdm-vscode/src/test/suite/autonomySlider.test.ts +0 -171
  660. gdmcode-0.1.1/gdm-vscode/src/test/suite/confidenceView.test.ts +0 -99
  661. gdmcode-0.1.1/gdm-vscode/src/test/suite/extension.test.ts +0 -28
  662. gdmcode-0.1.1/gdm-vscode/src/test/suite/gdmClient.test.ts +0 -242
  663. gdmcode-0.1.1/gdm-vscode/src/test/suite/index.ts +0 -15
  664. gdmcode-0.1.1/gdm-vscode/tsconfig.json +0 -16
  665. gdmcode-0.1.1/moonshot-audit.md +0 -344
  666. gdmcode-0.1.1/opus-moonshot-vision.md +0 -554
  667. gdmcode-0.1.1/plan.md +0 -1939
  668. gdmcode-0.1.1/project.json +0 -76
  669. gdmcode-0.1.1/proxy/main.py +0 -182
  670. gdmcode-0.1.1/pypi.toml +0 -27
  671. gdmcode-0.1.1/pyproject.toml +0 -149
  672. gdmcode-0.1.1/remote-voice-plan.md +0 -345
  673. gdmcode-0.1.1/src/__init__.py +0 -1
  674. gdmcode-0.1.1/src/_internal/console_lock.py +0 -41
  675. gdmcode-0.1.1/src/_internal/constants.py +0 -244
  676. gdmcode-0.1.1/src/agent/change_planner.py +0 -154
  677. gdmcode-0.1.1/src/agent/commit_classifier.py +0 -91
  678. gdmcode-0.1.1/src/agent/context_budget.py +0 -391
  679. gdmcode-0.1.1/src/agent/daemon.py +0 -681
  680. gdmcode-0.1.1/src/agent/debug_loop.py +0 -610
  681. gdmcode-0.1.1/src/agent/impact_analyzer.py +0 -149
  682. gdmcode-0.1.1/src/agent/loop.py +0 -2598
  683. gdmcode-0.1.1/src/agent/regression_guard.py +0 -274
  684. gdmcode-0.1.1/src/agent/review_gate.py +0 -761
  685. gdmcode-0.1.1/src/agent/self_healing.py +0 -145
  686. gdmcode-0.1.1/src/agent/smart_test_selector.py +0 -89
  687. gdmcode-0.1.1/src/agent/system_prompt.py +0 -230
  688. gdmcode-0.1.1/src/agent/task_tracker.py +0 -320
  689. gdmcode-0.1.1/src/agent/test_generator.py +0 -32
  690. gdmcode-0.1.1/src/agent/test_validator.py +0 -490
  691. gdmcode-0.1.1/src/agent/tool_orchestrator.py +0 -872
  692. gdmcode-0.1.1/src/agent/verification_loop.py +0 -238
  693. gdmcode-0.1.1/src/agent/work_director.py +0 -136
  694. gdmcode-0.1.1/src/artifacts/__init__.py +0 -16
  695. gdmcode-0.1.1/src/artifacts/artifact_store.py +0 -456
  696. gdmcode-0.1.1/src/artifacts/verification_graph.py +0 -75
  697. gdmcode-0.1.1/src/auth.py +0 -545
  698. gdmcode-0.1.1/src/cli.py +0 -2703
  699. gdmcode-0.1.1/src/cli_reference.py +0 -89
  700. gdmcode-0.1.1/src/commands.py +0 -1964
  701. gdmcode-0.1.1/src/config.py +0 -1080
  702. gdmcode-0.1.1/src/cost_tracker.py +0 -348
  703. gdmcode-0.1.1/src/db/__init__.py +0 -4
  704. gdmcode-0.1.1/src/db/migrations.py +0 -415
  705. gdmcode-0.1.1/src/enterprise/__init__.py +0 -12
  706. gdmcode-0.1.1/src/enterprise/analytics.py +0 -234
  707. gdmcode-0.1.1/src/enterprise/identity.py +0 -146
  708. gdmcode-0.1.1/src/enterprise/rbac.py +0 -260
  709. gdmcode-0.1.1/src/enterprise/repo_trust.py +0 -82
  710. gdmcode-0.1.1/src/enterprise/team_config.py +0 -208
  711. gdmcode-0.1.1/src/exceptions.py +0 -212
  712. gdmcode-0.1.1/src/git_workflow.py +0 -683
  713. gdmcode-0.1.1/src/integrations/__init__.py +0 -6
  714. gdmcode-0.1.1/src/integrations/github_actions.py +0 -544
  715. gdmcode-0.1.1/src/integrations/mcp_server.py +0 -493
  716. gdmcode-0.1.1/src/integrations/sentry_integration.py +0 -100
  717. gdmcode-0.1.1/src/integrations/sentry_server.py +0 -82
  718. gdmcode-0.1.1/src/integrations/webhook_security.py +0 -24
  719. gdmcode-0.1.1/src/main.py +0 -27
  720. gdmcode-0.1.1/src/memory/code_index.py +0 -376
  721. gdmcode-0.1.1/src/memory/compressor.py +0 -378
  722. gdmcode-0.1.1/src/memory/context_memory.py +0 -135
  723. gdmcode-0.1.1/src/memory/continuous_memory.py +0 -242
  724. gdmcode-0.1.1/src/memory/conventions.py +0 -495
  725. gdmcode-0.1.1/src/memory/db.py +0 -1569
  726. gdmcode-0.1.1/src/memory/document_index.py +0 -205
  727. gdmcode-0.1.1/src/memory/file_cache.py +0 -128
  728. gdmcode-0.1.1/src/memory/project_scanner.py +0 -178
  729. gdmcode-0.1.1/src/memory/session_store.py +0 -201
  730. gdmcode-0.1.1/src/models/client.py +0 -1095
  731. gdmcode-0.1.1/src/models/definitions.py +0 -566
  732. gdmcode-0.1.1/src/models/router.py +0 -439
  733. gdmcode-0.1.1/src/models/schemas.py +0 -390
  734. gdmcode-0.1.1/src/permissions.py +0 -605
  735. gdmcode-0.1.1/src/remote/__init__.py +0 -5
  736. gdmcode-0.1.1/src/remote/command_filter.py +0 -33
  737. gdmcode-0.1.1/src/remote/permission_handler.py +0 -91
  738. gdmcode-0.1.1/src/remote/phone_ui.py +0 -59
  739. gdmcode-0.1.1/src/remote/protocol.py +0 -188
  740. gdmcode-0.1.1/src/remote/runtime.py +0 -334
  741. gdmcode-0.1.1/src/remote/server.py +0 -860
  742. gdmcode-0.1.1/src/remote/token_manager.py +0 -77
  743. gdmcode-0.1.1/src/repl.py +0 -895
  744. gdmcode-0.1.1/src/runtime/__init__.py +0 -1
  745. gdmcode-0.1.1/src/runtime/branch_farm.py +0 -372
  746. gdmcode-0.1.1/src/runtime/replay.py +0 -351
  747. gdmcode-0.1.1/src/runtime/sandbox.py +0 -92
  748. gdmcode-0.1.1/src/sandbox/__init__.py +0 -2
  749. gdmcode-0.1.1/src/sandbox/policy.py +0 -44
  750. gdmcode-0.1.1/src/sdk/__init__.py +0 -3
  751. gdmcode-0.1.1/src/sdk/plugin_host.py +0 -100
  752. gdmcode-0.1.1/src/sdk/plugin_loader.py +0 -101
  753. gdmcode-0.1.1/src/security.py +0 -514
  754. gdmcode-0.1.1/src/server/__init__.py +0 -7
  755. gdmcode-0.1.1/src/server/bridge.py +0 -707
  756. gdmcode-0.1.1/src/server/bridge_cli.py +0 -147
  757. gdmcode-0.1.1/src/session/__init__.py +0 -10
  758. gdmcode-0.1.1/src/session/event_fanout.py +0 -86
  759. gdmcode-0.1.1/src/session/permission_bridge.py +0 -114
  760. gdmcode-0.1.1/src/tools/__init__.py +0 -160
  761. gdmcode-0.1.1/src/tools/agent_tools.py +0 -423
  762. gdmcode-0.1.1/src/tools/ask_user_tool.py +0 -267
  763. gdmcode-0.1.1/src/tools/bash_tool.py +0 -395
  764. gdmcode-0.1.1/src/tools/browser_tool.py +0 -466
  765. gdmcode-0.1.1/src/tools/dep_tools.py +0 -520
  766. gdmcode-0.1.1/src/tools/document_reader.py +0 -167
  767. gdmcode-0.1.1/src/tools/document_tool.py +0 -240
  768. gdmcode-0.1.1/src/tools/document_writer.py +0 -171
  769. gdmcode-0.1.1/src/tools/impact_tools.py +0 -302
  770. gdmcode-0.1.1/src/tools/playwright_tool.py +0 -557
  771. gdmcode-0.1.1/src/tools/quality_tools.py +0 -366
  772. gdmcode-0.1.1/src/tools/read_tools.py +0 -325
  773. gdmcode-0.1.1/src/tools/search_tools.py +0 -310
  774. gdmcode-0.1.1/src/tools/shell_tools.py +0 -311
  775. gdmcode-0.1.1/src/tools/write_tools.py +0 -984
  776. gdmcode-0.1.1/src/updater.py +0 -378
  777. gdmcode-0.1.1/src/verification.py +0 -139
  778. gdmcode-0.1.1/src/voice/__init__.py +0 -25
  779. gdmcode-0.1.1/src/voice/audio_capture.py +0 -92
  780. gdmcode-0.1.1/src/voice/audio_playback.py +0 -68
  781. gdmcode-0.1.1/src/voice/providers.py +0 -234
  782. gdmcode-0.1.1/src/voice/vad.py +0 -55
  783. gdmcode-0.1.1/src/voice/voice_loop.py +0 -218
  784. gdmcode-0.1.1/tests/remote/test_remote_protocol.py +0 -54
  785. gdmcode-0.1.1/tests/remote/test_remote_server.py +0 -496
  786. gdmcode-0.1.1/tests/test_ab_framework.py +0 -211
  787. gdmcode-0.1.1/tests/test_agent_tools.py +0 -173
  788. gdmcode-0.1.1/tests/test_analytics.py +0 -238
  789. gdmcode-0.1.1/tests/test_api_fallback.py +0 -350
  790. gdmcode-0.1.1/tests/test_artifact_store.py +0 -411
  791. gdmcode-0.1.1/tests/test_ask_user_tool.py +0 -51
  792. gdmcode-0.1.1/tests/test_audit_log.py +0 -315
  793. gdmcode-0.1.1/tests/test_auth.py +0 -137
  794. gdmcode-0.1.1/tests/test_auto_quality.py +0 -358
  795. gdmcode-0.1.1/tests/test_autonomy_levels.py +0 -622
  796. gdmcode-0.1.1/tests/test_bash_tool.py +0 -110
  797. gdmcode-0.1.1/tests/test_batch_api.py +0 -488
  798. gdmcode-0.1.1/tests/test_branch_farm.py +0 -346
  799. gdmcode-0.1.1/tests/test_bridge.py +0 -1251
  800. gdmcode-0.1.1/tests/test_bridge_smoke.py +0 -164
  801. gdmcode-0.1.1/tests/test_browser_tool_smoke.py +0 -134
  802. gdmcode-0.1.1/tests/test_browser_tools.py +0 -268
  803. gdmcode-0.1.1/tests/test_btw_queue.py +0 -267
  804. gdmcode-0.1.1/tests/test_change_planner.py +0 -60
  805. gdmcode-0.1.1/tests/test_chrome_extension.py +0 -366
  806. gdmcode-0.1.1/tests/test_ci_runner.py +0 -1551
  807. gdmcode-0.1.1/tests/test_cli_smoke.py +0 -1480
  808. gdmcode-0.1.1/tests/test_commands.py +0 -469
  809. gdmcode-0.1.1/tests/test_compression.py +0 -502
  810. gdmcode-0.1.1/tests/test_confidence.py +0 -250
  811. gdmcode-0.1.1/tests/test_config.py +0 -1203
  812. gdmcode-0.1.1/tests/test_continuous_memory.py +0 -375
  813. gdmcode-0.1.1/tests/test_convention_drift.py +0 -103
  814. gdmcode-0.1.1/tests/test_cost_frontier.py +0 -123
  815. gdmcode-0.1.1/tests/test_cost_tracker.py +0 -307
  816. gdmcode-0.1.1/tests/test_daemon.py +0 -266
  817. gdmcode-0.1.1/tests/test_daemon_stability.py +0 -328
  818. gdmcode-0.1.1/tests/test_daemon_watchdog.py +0 -296
  819. gdmcode-0.1.1/tests/test_db.py +0 -415
  820. gdmcode-0.1.1/tests/test_debate.py +0 -566
  821. gdmcode-0.1.1/tests/test_debug_loop.py +0 -502
  822. gdmcode-0.1.1/tests/test_debug_loop_smoke.py +0 -138
  823. gdmcode-0.1.1/tests/test_dep_tools.py +0 -214
  824. gdmcode-0.1.1/tests/test_doctor.py +0 -66
  825. gdmcode-0.1.1/tests/test_document_index.py +0 -260
  826. gdmcode-0.1.1/tests/test_document_reader.py +0 -309
  827. gdmcode-0.1.1/tests/test_document_tool.py +0 -210
  828. gdmcode-0.1.1/tests/test_document_writer.py +0 -239
  829. gdmcode-0.1.1/tests/test_domain_skills.py +0 -214
  830. gdmcode-0.1.1/tests/test_eval_harness.py +0 -2448
  831. gdmcode-0.1.1/tests/test_event_log.py +0 -213
  832. gdmcode-0.1.1/tests/test_failure_taxonomy.py +0 -95
  833. gdmcode-0.1.1/tests/test_file_tools.py +0 -141
  834. gdmcode-0.1.1/tests/test_git_workflow.py +0 -892
  835. gdmcode-0.1.1/tests/test_github_actions.py +0 -526
  836. gdmcode-0.1.1/tests/test_health.py +0 -305
  837. gdmcode-0.1.1/tests/test_hermetic_sandbox.py +0 -317
  838. gdmcode-0.1.1/tests/test_identity_rbac.py +0 -622
  839. gdmcode-0.1.1/tests/test_impact_analysis.py +0 -203
  840. gdmcode-0.1.1/tests/test_impact_analyzer.py +0 -180
  841. gdmcode-0.1.1/tests/test_impact_graph.py +0 -291
  842. gdmcode-0.1.1/tests/test_impact_tools.py +0 -144
  843. gdmcode-0.1.1/tests/test_injection_gate.py +0 -362
  844. gdmcode-0.1.1/tests/test_leaderboard.py +0 -178
  845. gdmcode-0.1.1/tests/test_local_models.py +0 -854
  846. gdmcode-0.1.1/tests/test_loop.py +0 -351
  847. gdmcode-0.1.1/tests/test_loop_p3.py +0 -165
  848. gdmcode-0.1.1/tests/test_mcp_server.py +0 -417
  849. gdmcode-0.1.1/tests/test_migrations.py +0 -108
  850. gdmcode-0.1.1/tests/test_model_config.py +0 -213
  851. gdmcode-0.1.1/tests/test_multi_file_orchestration_loop.py +0 -134
  852. gdmcode-0.1.1/tests/test_orchestrator.py +0 -225
  853. gdmcode-0.1.1/tests/test_package.py +0 -60
  854. gdmcode-0.1.1/tests/test_permissions.py +0 -164
  855. gdmcode-0.1.1/tests/test_phase2_modules.py +0 -359
  856. gdmcode-0.1.1/tests/test_phone_ui.py +0 -356
  857. gdmcode-0.1.1/tests/test_playwright_tool.py +0 -315
  858. gdmcode-0.1.1/tests/test_plugin_sdk.py +0 -321
  859. gdmcode-0.1.1/tests/test_protocol_version.py +0 -124
  860. gdmcode-0.1.1/tests/test_provenance.py +0 -77
  861. gdmcode-0.1.1/tests/test_quality_integration.py +0 -445
  862. gdmcode-0.1.1/tests/test_reasoning_toggle.py +0 -352
  863. gdmcode-0.1.1/tests/test_redaction.py +0 -192
  864. gdmcode-0.1.1/tests/test_regression_collector.py +0 -110
  865. gdmcode-0.1.1/tests/test_regression_guard_integration.py +0 -327
  866. gdmcode-0.1.1/tests/test_regression_runner.py +0 -336
  867. gdmcode-0.1.1/tests/test_regression_validate_coverage.py +0 -58
  868. gdmcode-0.1.1/tests/test_remote_runtime.py +0 -118
  869. gdmcode-0.1.1/tests/test_repl_smoke.py +0 -431
  870. gdmcode-0.1.1/tests/test_replay.py +0 -410
  871. gdmcode-0.1.1/tests/test_repo_trust.py +0 -103
  872. gdmcode-0.1.1/tests/test_report.py +0 -154
  873. gdmcode-0.1.1/tests/test_resilience.py +0 -401
  874. gdmcode-0.1.1/tests/test_result_cache.py +0 -360
  875. gdmcode-0.1.1/tests/test_review_gate_expanded.py +0 -252
  876. gdmcode-0.1.1/tests/test_risk_scorer.py +0 -204
  877. gdmcode-0.1.1/tests/test_rollback.py +0 -572
  878. gdmcode-0.1.1/tests/test_router_compressor_conventions.py +0 -241
  879. gdmcode-0.1.1/tests/test_router_escalation.py +0 -705
  880. gdmcode-0.1.1/tests/test_runtime_sandbox.py +0 -82
  881. gdmcode-0.1.1/tests/test_sandbox.py +0 -319
  882. gdmcode-0.1.1/tests/test_scoring.py +0 -191
  883. gdmcode-0.1.1/tests/test_search_tools.py +0 -95
  884. gdmcode-0.1.1/tests/test_self_healing.py +0 -263
  885. gdmcode-0.1.1/tests/test_semantic_edit.py +0 -557
  886. gdmcode-0.1.1/tests/test_sentry_integration.py +0 -324
  887. gdmcode-0.1.1/tests/test_session_checkpoint.py +0 -396
  888. gdmcode-0.1.1/tests/test_session_controller.py +0 -243
  889. gdmcode-0.1.1/tests/test_session_restore.py +0 -523
  890. gdmcode-0.1.1/tests/test_session_store.py +0 -134
  891. gdmcode-0.1.1/tests/test_signal_handling.py +0 -325
  892. gdmcode-0.1.1/tests/test_swebench_adapter.py +0 -60
  893. gdmcode-0.1.1/tests/test_swebench_runner.py +0 -335
  894. gdmcode-0.1.1/tests/test_system_prompt.py +0 -99
  895. gdmcode-0.1.1/tests/test_team_config.py +0 -224
  896. gdmcode-0.1.1/tests/test_test_validator.py +0 -127
  897. gdmcode-0.1.1/tests/test_tool_cache.py +0 -266
  898. gdmcode-0.1.1/tests/test_tool_orchestrator.py +0 -576
  899. gdmcode-0.1.1/tests/test_tool_timeout.py +0 -192
  900. gdmcode-0.1.1/tests/test_tools_registry.py +0 -156
  901. gdmcode-0.1.1/tests/test_tunnel_qr.py +0 -305
  902. gdmcode-0.1.1/tests/test_updater.py +0 -468
  903. gdmcode-0.1.1/tests/test_usage_analytics.py +0 -244
  904. gdmcode-0.1.1/tests/test_verification.py +0 -99
  905. gdmcode-0.1.1/tests/test_verification_graph.py +0 -277
  906. gdmcode-0.1.1/tests/test_verification_graph_runtime.py +0 -113
  907. gdmcode-0.1.1/tests/test_verification_loop.py +0 -330
  908. gdmcode-0.1.1/tests/test_verification_loop_live.py +0 -95
  909. gdmcode-0.1.1/tests/test_voice_loop.py +0 -396
  910. gdmcode-0.1.1/tests/test_voice_providers.py +0 -250
  911. gdmcode-0.1.1/tests/test_webhook_security.py +0 -26
  912. gdmcode-0.1.1/tests/test_whole_codebase.py +0 -208
  913. gdmcode-0.1.1/tests/test_work_director.py +0 -394
  914. gdmcode-0.1.1/tests/voice/test_audio_foundation.py +0 -233
  915. gdmcode-0.1.1/web/Dockerfile +0 -10
  916. gdmcode-0.1.1/web/main.py +0 -285
  917. gdmcode-0.1.1/web/requirements.txt +0 -6
  918. gdmcode-0.1.1/web/static/index.html +0 -548
  919. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/_internal/__init__.py +0 -0
  920. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/_internal/domain_skills.py +0 -0
  921. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/agent/__init__.py +0 -0
  922. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/agent/dag_validator.py +0 -0
  923. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/agent/impact_graph.py +0 -0
  924. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/agent/orchestrator.py +0 -0
  925. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/agent/risk_scorer.py +0 -0
  926. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/agent/transcript.py +0 -0
  927. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/agent/worktree_manager.py +0 -0
  928. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/enterprise/audit_log.py +0 -0
  929. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/enterprise/usage_analytics.py +0 -0
  930. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/memory/__init__.py +0 -0
  931. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/models/__init__.py +0 -0
  932. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/remote/models.py +0 -0
  933. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/remote/qr.py +0 -0
  934. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/remote/tunnel.py +0 -0
  935. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/sandbox/hermetic.py +0 -0
  936. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/sdk/plugin_base.py +0 -0
  937. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/server/bridge_client.py +0 -0
  938. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/server/protocol_version.py +0 -0
  939. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/session/input_broker.py +0 -0
  940. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/tools/_atomic.py +0 -0
  941. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/tools/browser_tools.py +0 -0
  942. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/tools/result_cache.py +0 -0
  943. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/voice/errors.py +0 -0
  944. {gdmcode-0.1.1/src → gdmcode-0.1.3/gdmcode}/voice/models.py +0 -0
  945. {gdmcode-0.1.1 → gdmcode-0.1.3}/proxy/Dockerfile +0 -0
  946. {gdmcode-0.1.1 → gdmcode-0.1.3}/proxy/requirements.txt +0 -0
  947. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/__init__.py +0 -0
  948. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/remote/__init__.py +0 -0
  949. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/test_agent_loop.py +0 -0
  950. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/test_budget_tracker.py +0 -0
  951. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/test_code_index.py +0 -0
  952. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/test_memory.py +0 -0
  953. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/test_mock_provider.py +0 -0
  954. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/test_router.py +0 -0
  955. {gdmcode-0.1.1 → gdmcode-0.1.3}/tests/voice/__init__.py +0 -0
@@ -0,0 +1,60 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.pyo
5
+ *.pyd
6
+ .Python
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+ .eggs/
11
+
12
+ # Virtual environments
13
+ .venv/
14
+ venv/
15
+ env/
16
+
17
+ # Testing
18
+ .pytest_cache/
19
+ .coverage
20
+ htmlcov/
21
+ .mutmut-cache/
22
+
23
+ # IDE
24
+ .vscode/
25
+ .idea/
26
+ *.swp
27
+ *.swo
28
+
29
+ # gdm runtime state
30
+ .gdm_remote.json
31
+ .gdm/
32
+ .context-memory/
33
+
34
+ # Eval results (generated artifacts)
35
+ evals/results/*.db
36
+ evals/results/swebench/
37
+
38
+ # claw-code (external tool, not part of this project)
39
+ claw-code/
40
+
41
+ # Scratch / probe files
42
+ _chk.py
43
+ _edit_cli.py
44
+ _edit_cmd.py
45
+ _lineend.py
46
+ _patch2.py
47
+ _pathcheck.py
48
+ _probe.py
49
+ _probe2.py
50
+ _test2.py
51
+ _v.py
52
+ _write_html.py
53
+ _write_tests.py
54
+ _write_tests2.py
55
+
56
+ # Secrets — never commit API keys
57
+ .env
58
+ **/.env
59
+ *.env
60
+
@@ -0,0 +1,101 @@
1
+ # Contributing to gdm
2
+
3
+ Thank you for contributing! gdm is MIT-licensed and welcomes issues, bug fixes, new tools, and
4
+ documentation improvements.
5
+
6
+ ---
7
+
8
+ ## 1. Development setup
9
+
10
+ ```bash
11
+ git clone https://github.com/GedeonMatabaro/gdmcode
12
+ cd gdmcode
13
+ pip install -e ".[dev]"
14
+ gdm health # verify the install
15
+ ```
16
+
17
+ Python 3.12+ required. A virtual environment (or `pipx`) is recommended.
18
+
19
+ ---
20
+
21
+ ## 2. Code style
22
+
23
+ gdm uses **ruff** for linting and **mypy** for type checking.
24
+
25
+ ```bash
26
+ make lint # ruff check src tests && mypy src
27
+ ```
28
+
29
+ Before opening a PR, ensure `make lint` passes with no errors. Formatting follows ruff defaults.
30
+ Do not add `# noqa` suppressions without a comment explaining why.
31
+
32
+ ---
33
+
34
+ ## 3. Testing
35
+
36
+ ```bash
37
+ make test # python -m pytest
38
+ ```
39
+
40
+ Run the full test suite before submitting. New features must ship with at least one test.
41
+ Unit tests live in `tests/`; fixtures are in `tests/conftest.py`.
42
+
43
+ To run a single file:
44
+ ```bash
45
+ python -m pytest tests/test_agent_tools.py -v
46
+ ```
47
+
48
+ ---
49
+
50
+ ## 4. PR process
51
+
52
+ **Branch naming:**
53
+ - `feat/<short-slug>` — new feature
54
+ - `fix/<short-slug>` — bug fix
55
+ - `docs/<short-slug>` — documentation only
56
+
57
+ **Commit format** (conventional commits):
58
+ ```
59
+ feat: add impact analysis gate
60
+ fix(config): handle missing TOML section gracefully
61
+ docs: update architecture diagram
62
+ ```
63
+
64
+ **Requirements before merge:**
65
+ 1. `make lint` passes.
66
+ 2. `make test` passes.
67
+ 3. PR description explains *what* and *why* (not just *how*).
68
+ 4. New public APIs include type annotations and docstrings.
69
+
70
+ ---
71
+
72
+ ## 5. Adding a new tool
73
+
74
+ gdm tools live in `gdmcode/tools/`. Follow this checklist:
75
+
76
+ 1. **Implement** — create `gdmcode/tools/my_tool.py` with a function matching the tool call signature.
77
+ 2. **Register** — add the tool to the `REGISTRY` in `gdmcode/tools/__init__.py`.
78
+ 3. **Audit action** — define an audit action constant in `gdmcode/enterprise/audit.py`
79
+ (e.g. `MY_TOOL_CALL = "my_tool.call"`).
80
+ 4. **Permission** — add the tool to the appropriate permission tier in `gdmcode/permissions.py` if
81
+ it performs file writes, network calls, or shell execution.
82
+ 5. **Test** — write at least one test in `tests/test_my_tool.py` covering the happy path and a
83
+ permission-denied path.
84
+ 6. **Docs** — add the tool to the CLI reference in `docs/cli-reference.md` if it has a
85
+ corresponding subcommand.
86
+
87
+ ---
88
+
89
+ ## 6. Release process
90
+
91
+ 1. Update `_VERSION` in `gdmcode/cli.py`.
92
+ 2. Commit: `git commit -m "chore: bump version to X.Y.Z"`.
93
+ 3. Tag: `git tag vX.Y.Z`.
94
+ 4. Push the tag — CI will build the wheel and publish to PyPI automatically via GitHub Actions.
95
+ 5. Verify with `pip install gdmcode==X.Y.Z && gdm version`.
96
+
97
+ ---
98
+
99
+ ## Questions?
100
+
101
+ Open an issue or start a discussion on GitHub. We aim to respond within two business days.
gdmcode-0.1.3/PKG-INFO ADDED
@@ -0,0 +1,244 @@
1
+ Metadata-Version: 2.4
2
+ Name: gdmcode
3
+ Version: 0.1.3
4
+ Summary: gdm: AI coding agent for professional developers
5
+ Project-URL: Homepage, https://github.com/guidegdm/gdmcode
6
+ Project-URL: Repository, https://github.com/guidegdm/gdmcode
7
+ Project-URL: Bug Tracker, https://github.com/guidegdm/gdmcode/issues
8
+ Project-URL: Documentation, https://github.com/guidegdm/gdmcode#readme
9
+ Project-URL: Changelog, https://github.com/guidegdm/gdmcode/blob/main/CHANGELOG.md
10
+ License: MIT
11
+ Keywords: ai,coding-agent,developer-tools,llm
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Software Development :: Code Generators
20
+ Classifier: Topic :: Utilities
21
+ Requires-Python: >=3.11
22
+ Requires-Dist: httpx>=0.27.0
23
+ Requires-Dist: keyring>=25.0.0
24
+ Requires-Dist: markdownify>=0.12.0
25
+ Requires-Dist: openai>=1.30.0
26
+ Requires-Dist: prompt-toolkit>=3.0.43
27
+ Requires-Dist: pydantic>=2.7.0
28
+ Requires-Dist: requests>=2.32.0
29
+ Requires-Dist: rich>=13.7.0
30
+ Requires-Dist: tiktoken>=0.7.0
31
+ Requires-Dist: tomli-w>=1.0.0
32
+ Requires-Dist: tree-sitter-javascript>=0.23.0
33
+ Requires-Dist: tree-sitter-python>=0.23.0
34
+ Requires-Dist: tree-sitter-typescript>=0.23.0
35
+ Requires-Dist: tree-sitter>=0.23.0
36
+ Requires-Dist: typer>=0.12.0
37
+ Requires-Dist: websockets>=12.0
38
+ Provides-Extra: all
39
+ Requires-Dist: faiss-cpu>=1.8.0; extra == 'all'
40
+ Requires-Dist: itsdangerous>=2.2.0; extra == 'all'
41
+ Requires-Dist: numpy>=1.26.0; extra == 'all'
42
+ Requires-Dist: openpyxl>=3.1.0; extra == 'all'
43
+ Requires-Dist: pdfplumber>=0.11.0; extra == 'all'
44
+ Requires-Dist: playwright>=1.44.0; extra == 'all'
45
+ Requires-Dist: python-docx>=1.1.0; extra == 'all'
46
+ Requires-Dist: qrcode>=7.4.0; extra == 'all'
47
+ Requires-Dist: sounddevice>=0.4.6; extra == 'all'
48
+ Requires-Dist: starlette>=0.37.0; extra == 'all'
49
+ Requires-Dist: uvicorn>=0.29.0; extra == 'all'
50
+ Requires-Dist: webrtcvad>=2.0.10; extra == 'all'
51
+ Requires-Dist: websockets>=12.0; extra == 'all'
52
+ Requires-Dist: xlrd>=2.0.1; extra == 'all'
53
+ Provides-Extra: browser
54
+ Requires-Dist: playwright>=1.44.0; extra == 'browser'
55
+ Requires-Dist: websockets>=12.0; extra == 'browser'
56
+ Provides-Extra: dev
57
+ Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
58
+ Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
59
+ Requires-Dist: pytest-mock>=3.14.0; extra == 'dev'
60
+ Requires-Dist: pytest>=8.2.0; extra == 'dev'
61
+ Provides-Extra: docs
62
+ Requires-Dist: openpyxl>=3.1.0; extra == 'docs'
63
+ Requires-Dist: pdfplumber>=0.11.0; extra == 'docs'
64
+ Requires-Dist: python-docx>=1.1.0; extra == 'docs'
65
+ Requires-Dist: xlrd>=2.0.1; extra == 'docs'
66
+ Provides-Extra: evals
67
+ Requires-Dist: bandit[toml]>=1.7.0; extra == 'evals'
68
+ Requires-Dist: datasets>=2.20.0; extra == 'evals'
69
+ Requires-Dist: docker>=7.1.0; extra == 'evals'
70
+ Requires-Dist: jinja2>=3.1.0; extra == 'evals'
71
+ Requires-Dist: mypy>=1.10.0; extra == 'evals'
72
+ Requires-Dist: pandas>=2.2.0; extra == 'evals'
73
+ Requires-Dist: pyyaml>=6.0.0; extra == 'evals'
74
+ Requires-Dist: ruff>=0.4.0; extra == 'evals'
75
+ Requires-Dist: swebench>=3.0.0; extra == 'evals'
76
+ Provides-Extra: faiss
77
+ Requires-Dist: faiss-cpu>=1.8.0; extra == 'faiss'
78
+ Provides-Extra: mobile
79
+ Provides-Extra: plugin-dev
80
+ Requires-Dist: build>=1.2; extra == 'plugin-dev'
81
+ Requires-Dist: twine>=5.0; extra == 'plugin-dev'
82
+ Provides-Extra: remote
83
+ Requires-Dist: itsdangerous>=2.2.0; extra == 'remote'
84
+ Requires-Dist: qrcode>=7.4.0; extra == 'remote'
85
+ Requires-Dist: starlette>=0.37.0; extra == 'remote'
86
+ Requires-Dist: uvicorn>=0.29.0; extra == 'remote'
87
+ Requires-Dist: websockets>=12.0; extra == 'remote'
88
+ Provides-Extra: sentry
89
+ Requires-Dist: fastapi>=0.111; extra == 'sentry'
90
+ Requires-Dist: httpx>=0.27; extra == 'sentry'
91
+ Requires-Dist: uvicorn[standard]>=0.29; extra == 'sentry'
92
+ Provides-Extra: voice
93
+ Requires-Dist: numpy>=1.26.0; extra == 'voice'
94
+ Requires-Dist: sounddevice>=0.4.6; extra == 'voice'
95
+ Requires-Dist: webrtcvad>=2.0.10; extra == 'voice'
96
+ Description-Content-Type: text/markdown
97
+
98
+ # gdm — Open-Source AI Coding Agent
99
+
100
+ A terminal-native coding agent that reads your codebase, reasons over it, and edits files autonomously — with configurable autonomy, local model support, and a full audit trail.
101
+
102
+ ![Build status](https://img.shields.io/badge/build-passing-brightgreen) ![PyPI](https://img.shields.io/badge/pypi-gdm--code-blue) ![License: MIT](https://img.shields.io/badge/license-MIT-green)
103
+
104
+ ---
105
+
106
+ ## Quick start
107
+
108
+ ```bash
109
+ pipx install gdmcode
110
+ gdm version
111
+ gdm login grok # or: gemini | codex
112
+ cd my-project && gdm "fix the login bug"
113
+ ```
114
+
115
+ If you cannot reach a model provider directly, start `gdm` and run `/proxy`, then paste the relay token with `/proxy token`. The provider API key stays encrypted locally; the relay should not persist provider keys.
116
+
117
+ See [docs/quick-start.md](docs/quick-start.md) for a step-by-step walkthrough.
118
+
119
+ ---
120
+
121
+ ## Why gdm?
122
+
123
+ - **Local-model support** — run fully air-gapped with Ollama or vLLM; no data leaves your machine.
124
+ - **Autonomy slider** — five levels from "ask everything" to "fully autonomous"; start low, build trust.
125
+ - **Open source and auditable** — MIT licensed, hash-chained audit log, team policy enforcement.
126
+
127
+ ---
128
+
129
+ ## Feature status
130
+
131
+ | Feature | Status | Task(s) |
132
+ |---|---|---|
133
+ | Multi-model routing (Grok / Gemini / Codex) | ✅ implemented | models-001/002/005 |
134
+ | Local model support — Ollama / vLLM | ✅ implemented | models-003 |
135
+ | Cost tracking and budget caps | ✅ implemented | runtime-005 |
136
+ | Session checkpoint / restore | ✅ implemented | core-002/003 |
137
+ | Audit log with hash chain | ✅ implemented | enterprise-002 |
138
+ | Team configuration and policy | ✅ implemented | enterprise-001 |
139
+ | Web search (debug / research) | ✅ implemented | tools-003 |
140
+ | Code index + whole-codebase mode | ✅ implemented | memory-001/005 |
141
+ | Git workflow automation | ✅ implemented | autonomous-003 |
142
+ | Verification loop | ✅ implemented | autonomous-002 |
143
+ | Self-healing debug loop | ✅ implemented | autonomous-004 |
144
+ | Multi-file orchestration | ✅ implemented | autonomous-001 |
145
+ | Impact analysis gate | ✅ implemented | autonomous-005 |
146
+ | Autonomy slider — 5 levels | ✅ implemented | ide-004 |
147
+ | VS Code extension | ✅ implemented | ide-001/002/003 |
148
+ | Voice interface (PTT + streaming) | ✅ implemented | voice-001/002/003 |
149
+ | Remote / LAN server + phone UI | ✅ implemented | remote-001/002/003 |
150
+ | Chrome extension + bridge | ✅ implemented | extensions-002 |
151
+ | MCP protocol server | ✅ implemented | integrations-003 |
152
+ | GitHub Actions CI integration | ✅ implemented | integrations-001 |
153
+ | Playwright browser automation | ✅ implemented | tools-002 |
154
+ | Sub-agent parallel execution | ✅ implemented | tools-005 |
155
+ | RBAC (role-based access control) | 📋 planned | enterprise-003 |
156
+ | Usage analytics dashboard | 📋 planned | enterprise-004 |
157
+ | Hermetic sandbox | ✅ implemented | moonshot-002 |
158
+ | Patch risk scoring | ✅ implemented | moonshot-006 |
159
+ | Impact graph smart test selection | ✅ implemented | moonshot-007 |
160
+ | CI eval pipeline | ✅ implemented | evals-002 |
161
+ | Continuous memory | ✅ implemented | memory-003 |
162
+ | Proxy/relay mode (geo-restricted regions) | ✅ implemented | proxy-001 |
163
+ | OIDC identity integration | 📋 planned | — |
164
+
165
+ ---
166
+
167
+ ## Installation
168
+
169
+ **Recommended (isolated environment):**
170
+ ```bash
171
+ pipx install gdmcode
172
+ ```
173
+
174
+ **pip:**
175
+ ```bash
176
+ pip install gdmcode
177
+ ```
178
+
179
+ **Development install:**
180
+ ```bash
181
+ git clone https://github.com/GedeonMatabaro/gdmcode
182
+ cd gdmcode
183
+ pip install -e ".[dev]"
184
+ gdm health
185
+ ```
186
+
187
+ **Note:** The PyPI package is `gdmcode`. The command is `gdm`.
188
+
189
+ ---
190
+
191
+ ## Configuration
192
+
193
+ gdm uses a 7-layer precedence system (highest wins):
194
+
195
+ ```
196
+ CLI flags > env vars (GDM_*) > team policy > team preferences
197
+ > project .gdm/config.toml > user ~/.config/gdm/config.toml > defaults
198
+ ```
199
+
200
+ Quick setup:
201
+ ```bash
202
+ gdm login grok # or: gemini | codex | all
203
+ ```
204
+
205
+ Secrets are stored in the OS keychain — never in TOML files.
206
+
207
+ Interactive setup is also available inside `gdm` with `/login` and `/proxy`. First launch without credentials shows onboarding instead of starting model agents.
208
+
209
+ Full configuration reference: [docs/configuration.md](docs/configuration.md)
210
+
211
+ ---
212
+
213
+ ## Enterprise
214
+
215
+ gdm includes audit and governance features suitable for team deployment:
216
+
217
+ - **Audit log** — every tool call is logged with a hash chain for tamper detection.
218
+ - **Team policy** — `.gdm/team.toml` enforces autonomy caps, network allowlists, and git permissions.
219
+ - **RBAC** — planned (enterprise-003).
220
+
221
+ See [docs/security-hardening.md](docs/security-hardening.md) for deployment guidance.
222
+
223
+ ---
224
+
225
+ ## Architecture
226
+
227
+ gdm runs a tool-calling agent loop: the model receives a task, selects tools from a registered
228
+ registry, executes them (subject to injection checks, RBAC, and network policy), and writes the
229
+ results back into context. Sessions are checkpointed to SQLite; memory is indexed for whole-codebase
230
+ reasoning.
231
+
232
+ Full architecture diagram: [docs/architecture.md](docs/architecture.md)
233
+
234
+ ---
235
+
236
+ ## Contributing
237
+
238
+ See [CONTRIBUTING.md](CONTRIBUTING.md). Issues and PRs welcome.
239
+
240
+ ---
241
+
242
+ ## License
243
+
244
+ MIT — Copyright GedeonMatabaro
@@ -0,0 +1,147 @@
1
+ # gdm — Open-Source AI Coding Agent
2
+
3
+ A terminal-native coding agent that reads your codebase, reasons over it, and edits files autonomously — with configurable autonomy, local model support, and a full audit trail.
4
+
5
+ ![Build status](https://img.shields.io/badge/build-passing-brightgreen) ![PyPI](https://img.shields.io/badge/pypi-gdm--code-blue) ![License: MIT](https://img.shields.io/badge/license-MIT-green)
6
+
7
+ ---
8
+
9
+ ## Quick start
10
+
11
+ ```bash
12
+ pipx install gdmcode
13
+ gdm version
14
+ gdm login grok # or: gemini | codex
15
+ cd my-project && gdm "fix the login bug"
16
+ ```
17
+
18
+ If you cannot reach a model provider directly, start `gdm` and run `/proxy`, then paste the relay token with `/proxy token`. The provider API key stays encrypted locally; the relay should not persist provider keys.
19
+
20
+ See [docs/quick-start.md](docs/quick-start.md) for a step-by-step walkthrough.
21
+
22
+ ---
23
+
24
+ ## Why gdm?
25
+
26
+ - **Local-model support** — run fully air-gapped with Ollama or vLLM; no data leaves your machine.
27
+ - **Autonomy slider** — five levels from "ask everything" to "fully autonomous"; start low, build trust.
28
+ - **Open source and auditable** — MIT licensed, hash-chained audit log, team policy enforcement.
29
+
30
+ ---
31
+
32
+ ## Feature status
33
+
34
+ | Feature | Status | Task(s) |
35
+ |---|---|---|
36
+ | Multi-model routing (Grok / Gemini / Codex) | ✅ implemented | models-001/002/005 |
37
+ | Local model support — Ollama / vLLM | ✅ implemented | models-003 |
38
+ | Cost tracking and budget caps | ✅ implemented | runtime-005 |
39
+ | Session checkpoint / restore | ✅ implemented | core-002/003 |
40
+ | Audit log with hash chain | ✅ implemented | enterprise-002 |
41
+ | Team configuration and policy | ✅ implemented | enterprise-001 |
42
+ | Web search (debug / research) | ✅ implemented | tools-003 |
43
+ | Code index + whole-codebase mode | ✅ implemented | memory-001/005 |
44
+ | Git workflow automation | ✅ implemented | autonomous-003 |
45
+ | Verification loop | ✅ implemented | autonomous-002 |
46
+ | Self-healing debug loop | ✅ implemented | autonomous-004 |
47
+ | Multi-file orchestration | ✅ implemented | autonomous-001 |
48
+ | Impact analysis gate | ✅ implemented | autonomous-005 |
49
+ | Autonomy slider — 5 levels | ✅ implemented | ide-004 |
50
+ | VS Code extension | ✅ implemented | ide-001/002/003 |
51
+ | Voice interface (PTT + streaming) | ✅ implemented | voice-001/002/003 |
52
+ | Remote / LAN server + phone UI | ✅ implemented | remote-001/002/003 |
53
+ | Chrome extension + bridge | ✅ implemented | extensions-002 |
54
+ | MCP protocol server | ✅ implemented | integrations-003 |
55
+ | GitHub Actions CI integration | ✅ implemented | integrations-001 |
56
+ | Playwright browser automation | ✅ implemented | tools-002 |
57
+ | Sub-agent parallel execution | ✅ implemented | tools-005 |
58
+ | RBAC (role-based access control) | 📋 planned | enterprise-003 |
59
+ | Usage analytics dashboard | 📋 planned | enterprise-004 |
60
+ | Hermetic sandbox | ✅ implemented | moonshot-002 |
61
+ | Patch risk scoring | ✅ implemented | moonshot-006 |
62
+ | Impact graph smart test selection | ✅ implemented | moonshot-007 |
63
+ | CI eval pipeline | ✅ implemented | evals-002 |
64
+ | Continuous memory | ✅ implemented | memory-003 |
65
+ | Proxy/relay mode (geo-restricted regions) | ✅ implemented | proxy-001 |
66
+ | OIDC identity integration | 📋 planned | — |
67
+
68
+ ---
69
+
70
+ ## Installation
71
+
72
+ **Recommended (isolated environment):**
73
+ ```bash
74
+ pipx install gdmcode
75
+ ```
76
+
77
+ **pip:**
78
+ ```bash
79
+ pip install gdmcode
80
+ ```
81
+
82
+ **Development install:**
83
+ ```bash
84
+ git clone https://github.com/GedeonMatabaro/gdmcode
85
+ cd gdmcode
86
+ pip install -e ".[dev]"
87
+ gdm health
88
+ ```
89
+
90
+ **Note:** The PyPI package is `gdmcode`. The command is `gdm`.
91
+
92
+ ---
93
+
94
+ ## Configuration
95
+
96
+ gdm uses a 7-layer precedence system (highest wins):
97
+
98
+ ```
99
+ CLI flags > env vars (GDM_*) > team policy > team preferences
100
+ > project .gdm/config.toml > user ~/.config/gdm/config.toml > defaults
101
+ ```
102
+
103
+ Quick setup:
104
+ ```bash
105
+ gdm login grok # or: gemini | codex | all
106
+ ```
107
+
108
+ Secrets are stored in the OS keychain — never in TOML files.
109
+
110
+ Interactive setup is also available inside `gdm` with `/login` and `/proxy`. First launch without credentials shows onboarding instead of starting model agents.
111
+
112
+ Full configuration reference: [docs/configuration.md](docs/configuration.md)
113
+
114
+ ---
115
+
116
+ ## Enterprise
117
+
118
+ gdm includes audit and governance features suitable for team deployment:
119
+
120
+ - **Audit log** — every tool call is logged with a hash chain for tamper detection.
121
+ - **Team policy** — `.gdm/team.toml` enforces autonomy caps, network allowlists, and git permissions.
122
+ - **RBAC** — planned (enterprise-003).
123
+
124
+ See [docs/security-hardening.md](docs/security-hardening.md) for deployment guidance.
125
+
126
+ ---
127
+
128
+ ## Architecture
129
+
130
+ gdm runs a tool-calling agent loop: the model receives a task, selects tools from a registered
131
+ registry, executes them (subject to injection checks, RBAC, and network policy), and writes the
132
+ results back into context. Sessions are checkpointed to SQLite; memory is indexed for whole-codebase
133
+ reasoning.
134
+
135
+ Full architecture diagram: [docs/architecture.md](docs/architecture.md)
136
+
137
+ ---
138
+
139
+ ## Contributing
140
+
141
+ See [CONTRIBUTING.md](CONTRIBUTING.md). Issues and PRs welcome.
142
+
143
+ ---
144
+
145
+ ## License
146
+
147
+ MIT — Copyright GedeonMatabaro
@@ -0,0 +1,55 @@
1
+ # config.toml — gdm application settings template
2
+ #
3
+ # Copy to ~/.config/gdm/config.toml for user-wide settings, or to
4
+ # .gdm/config.toml in your project directory for project-level overrides.
5
+ #
6
+ # Precedence (lowest → highest):
7
+ # defaults → user config → project config → team preferences
8
+ # → team policy → environment variables → CLI flags
9
+ #
10
+ # Team [policy] values override environment variables and CLI flags.
11
+ # Secrets (api_key, token, password, credential) are stored in the OS keychain
12
+ # via `gdm login` — they must NOT appear in any config file.
13
+ #
14
+ # All keys are documented with type, default value, and description.
15
+
16
+ # ─────────────────────────────────────────────────────────────────────────────
17
+ # [models] — AI model selection
18
+ # ─────────────────────────────────────────────────────────────────────────────
19
+
20
+ [models]
21
+ primary = "grok-4-0106" # default: "grok-4-0106" — model for all tasks
22
+ fallback = "o3-mini" # default: "o3-mini" — fallback when primary is unavailable
23
+
24
+ # ─────────────────────────────────────────────────────────────────────────────
25
+ # [budget] — cost controls
26
+ # ─────────────────────────────────────────────────────────────────────────────
27
+
28
+ [budget]
29
+ session_limit_usd = 10.0 # type: float, default: 10.0 — max cost per session; 0 = unlimited
30
+ monthly_limit_usd = 200.0 # type: float, default: 200.0 — monthly cap across all sessions
31
+
32
+ # ─────────────────────────────────────────────────────────────────────────────
33
+ # [autonomy] — agent autonomy level
34
+ # ─────────────────────────────────────────────────────────────────────────────
35
+
36
+ [autonomy]
37
+ level = 2 # type: int (0–5), default: 2
38
+ # 0 = ask everything | 3 = balanced | 5 = fully autonomous
39
+ # Start low and increase as trust builds.
40
+
41
+ # ─────────────────────────────────────────────────────────────────────────────
42
+ # [audit] — audit log retention
43
+ # ─────────────────────────────────────────────────────────────────────────────
44
+
45
+ [audit]
46
+ retain_days = 90 # type: int (≥1), default: 90 — delete audit entries older than N days
47
+
48
+ # ─────────────────────────────────────────────────────────────────────────────
49
+ # [analytics] — usage analytics and reporting
50
+ # ─────────────────────────────────────────────────────────────────────────────
51
+
52
+ [analytics]
53
+ consent_required = false # type: bool, default: false — require per-user opt-in
54
+ roi_estimation = false # type: bool, default: false — enable estimated time-saved reporting
55
+ anonymise = true # type: bool, default: true — hash actor IDs (recommended)
@@ -0,0 +1,57 @@
1
+ # Agentic Runtime Audit
2
+
3
+ ## Decisions locked in
4
+
5
+ - The proxy must not persist user provider API keys server-side.
6
+ - Server-side proxy state may keep only short-lived, non-reversible token fingerprints for abuse controls such as rate limiting.
7
+ - The CLI must start as a lightweight shell before login so `/login`, `/proxy`, `/help`, and local commands are usable without constructing model clients or agent loops.
8
+ - Agent/runtime initialization should be lazy: build the model client, router, transcript, orchestrator, and permission context only when the first model-backed turn starts.
9
+ - First-run UX should be explicit: users should see the two valid connection paths immediately, not discover them only after a failed prompt.
10
+
11
+ ## Fixed in this pass
12
+
13
+ - `gdm` can load config without credentials for interactive startup.
14
+ - The REPL now supports `/login [provider]`, reloads config after login, and defers agent construction until the first non-command prompt.
15
+ - `/proxy on` can be used before the agent exists; the next model turn uses the proxy configuration.
16
+ - One-shot prompts fail fast with a clear login/proxy message instead of constructing a broken model client.
17
+ - Proxy-only credentials are valid: an enabled proxy token can be the only credential path.
18
+ - Proxy rate limiting no longer stores raw bearer tokens in memory; it stores SHA-256 fingerprints.
19
+ - Proxy request handling rejects malformed `Content-Length`, oversized chunked bodies, invalid JSON, and non-object JSON before upstream forwarding.
20
+ - Streaming proxy responses now preserve upstream HTTP status codes.
21
+ - First-run REPL now shows a guided onboarding panel when no model connection is configured.
22
+ - A plain prompt without credentials now re-shows the setup panel instead of a dead-end error.
23
+ - Proxy setup copy now encourages `/proxy token` hidden input instead of pasting secrets inline into shell history.
24
+
25
+ ## Intended user journey
26
+
27
+ 1. User runs `gdm`.
28
+ 2. If credentials or proxy mode already exist, gdm shows the header and keeps startup light: the agent initializes on the first real prompt.
29
+ 3. If no model connection exists, gdm starts the REPL anyway and shows:
30
+ - Direct provider path: `/login grok`, `/login gemini`, or `/login codex`.
31
+ - Proxy path: `/proxy token` to enter the provider key hidden and store it locally, then `/proxy on`.
32
+ 4. User can still run `/help`, `/status`, `/proxy status`, `/doctor`, or `/exit` without an LLM.
33
+ 5. After login/proxy setup, the next non-command prompt initializes the model client and agent loop.
34
+ 6. Non-interactive `gdm --prompt ...` remains strict: it exits early with setup instructions if no model route exists.
35
+
36
+ ## Remaining high-impact gaps
37
+
38
+ - Consolidate runtime state away from legacy project-local memory paths into a single documented `.gdm`/appdata boundary.
39
+ - Add end-to-end CLI tests for a complete no-credential REPL session: `/help`, `/proxy token`, `/proxy on`, `/login`, then first model turn with a mocked model backend.
40
+ - Add proxy integration tests with mocked upstream streaming responses for 200, 401, 429, and disconnect cases.
41
+ - Audit background daemon startup paths so background agents never run unless explicitly requested or scheduled by a user-approved policy.
42
+ - Add startup timing tests or benchmarks for `gdm --version`, `gdm health`, and bare `gdm` to prevent future eager imports.
43
+
44
+ ## Release hardening pass
45
+
46
+ - Build configuration now excludes generated caches, coverage files, local runtime state, result databases, scratch files, and internal task/brainstorm docs from release artifacts.
47
+ - The wheel intentionally contains only the runtime `src` package. The sdist includes runtime code, proxy code, tests, curated docs, and project metadata.
48
+ - Tracked generated artifacts are being removed from version control, including `__pycache__`, `.pyc`, `.coverage`, and `evals/results/budget.db`.
49
+ - Version display now uses the package `__version__` so installed metadata and `gdm version` stay aligned.
50
+ - Test fixtures no longer contain full secret-shaped literals, reducing false positives during release artifact scans.
51
+ - Release docs now describe direct login, relay setup, local credential storage, and the rule that provider API keys should not be persisted server-side.
52
+
53
+ ## Current release posture
54
+
55
+ - Good for local dogfooding and an internal/private alpha build.
56
+ - Acceptable for a public alpha only if the current top-level installed import package name, `src`, is explicitly accepted as temporary.
57
+ - Not ideal for a polished public beta/stable PyPI release until the package is renamed to `gdmcode` or `gdm` and imports are migrated.