agentic-devtools 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. agentic_devtools-0.2.0/.devcontainer/README.md +50 -0
  2. agentic_devtools-0.2.0/.devcontainer/devcontainer.json +48 -0
  3. agentic_devtools-0.2.0/.dfly-temp/background-tasks/all-background-tasks.json +13 -0
  4. agentic_devtools-0.2.0/.dfly-temp/dfly-state.json +18 -0
  5. agentic_devtools-0.2.0/.github/agents/copilot-instructions.md +29 -0
  6. agentic_devtools-0.2.0/.github/agents/senior-python-developer.md +589 -0
  7. agentic_devtools-0.2.0/.github/agents/speckit.analyze.agent.md +184 -0
  8. agentic_devtools-0.2.0/.github/agents/speckit.checklist.agent.md +294 -0
  9. agentic_devtools-0.2.0/.github/agents/speckit.clarify.agent.md +181 -0
  10. agentic_devtools-0.2.0/.github/agents/speckit.constitution.agent.md +82 -0
  11. agentic_devtools-0.2.0/.github/agents/speckit.implement.agent.md +135 -0
  12. agentic_devtools-0.2.0/.github/agents/speckit.plan.agent.md +89 -0
  13. agentic_devtools-0.2.0/.github/agents/speckit.specify.agent.md +258 -0
  14. agentic_devtools-0.2.0/.github/agents/speckit.tasks.agent.md +137 -0
  15. agentic_devtools-0.2.0/.github/agents/speckit.taskstoissues.agent.md +30 -0
  16. agentic_devtools-0.2.0/.github/copilot-instructions.md +1221 -0
  17. agentic_devtools-0.2.0/.github/prompts/speckit.analyze.prompt.md +3 -0
  18. agentic_devtools-0.2.0/.github/prompts/speckit.checklist.prompt.md +3 -0
  19. agentic_devtools-0.2.0/.github/prompts/speckit.clarify.prompt.md +3 -0
  20. agentic_devtools-0.2.0/.github/prompts/speckit.constitution.prompt.md +3 -0
  21. agentic_devtools-0.2.0/.github/prompts/speckit.implement.prompt.md +3 -0
  22. agentic_devtools-0.2.0/.github/prompts/speckit.plan.prompt.md +3 -0
  23. agentic_devtools-0.2.0/.github/prompts/speckit.specify.prompt.md +3 -0
  24. agentic_devtools-0.2.0/.github/prompts/speckit.tasks.prompt.md +3 -0
  25. agentic_devtools-0.2.0/.github/prompts/speckit.taskstoissues.prompt.md +3 -0
  26. agentic_devtools-0.2.0/.github/workflows/README.md +68 -0
  27. agentic_devtools-0.2.0/.github/workflows/lint.yml +20 -0
  28. agentic_devtools-0.2.0/.github/workflows/publish.yml +92 -0
  29. agentic_devtools-0.2.0/.github/workflows/release.yml +60 -0
  30. agentic_devtools-0.2.0/.github/workflows/scripts/check-release-exists.sh +21 -0
  31. agentic_devtools-0.2.0/.github/workflows/scripts/create-github-release.sh +54 -0
  32. agentic_devtools-0.2.0/.github/workflows/scripts/create-release-packages.ps1 +424 -0
  33. agentic_devtools-0.2.0/.github/workflows/scripts/create-release-packages.sh +273 -0
  34. agentic_devtools-0.2.0/.github/workflows/scripts/generate-release-notes.sh +40 -0
  35. agentic_devtools-0.2.0/.github/workflows/scripts/get-next-version.sh +24 -0
  36. agentic_devtools-0.2.0/.github/workflows/scripts/update-version.sh +23 -0
  37. agentic_devtools-0.2.0/.github/workflows/test.yml +89 -0
  38. agentic_devtools-0.2.0/.gitignore +61 -0
  39. agentic_devtools-0.2.0/.specify/SDD_QUICK_REFERENCE.md +224 -0
  40. agentic_devtools-0.2.0/.specify/memory/constitution.md +195 -0
  41. agentic_devtools-0.2.0/.specify/scripts/bash/check-prerequisites.sh +166 -0
  42. agentic_devtools-0.2.0/.specify/scripts/bash/common.sh +156 -0
  43. agentic_devtools-0.2.0/.specify/scripts/bash/create-new-feature.sh +297 -0
  44. agentic_devtools-0.2.0/.specify/scripts/bash/setup-plan.sh +61 -0
  45. agentic_devtools-0.2.0/.specify/scripts/bash/update-agent-context.sh +799 -0
  46. agentic_devtools-0.2.0/.specify/scripts/powershell/check-prerequisites.ps1 +148 -0
  47. agentic_devtools-0.2.0/.specify/scripts/powershell/common.ps1 +137 -0
  48. agentic_devtools-0.2.0/.specify/scripts/powershell/create-new-feature.ps1 +283 -0
  49. agentic_devtools-0.2.0/.specify/scripts/powershell/setup-plan.ps1 +61 -0
  50. agentic_devtools-0.2.0/.specify/scripts/powershell/update-agent-context.ps1 +448 -0
  51. agentic_devtools-0.2.0/.specify/templates/agent-file-template.md +28 -0
  52. agentic_devtools-0.2.0/.specify/templates/checklist-template.md +40 -0
  53. agentic_devtools-0.2.0/.specify/templates/commands/analyze.md +187 -0
  54. agentic_devtools-0.2.0/.specify/templates/commands/checklist.md +297 -0
  55. agentic_devtools-0.2.0/.specify/templates/commands/clarify.md +184 -0
  56. agentic_devtools-0.2.0/.specify/templates/commands/constitution.md +82 -0
  57. agentic_devtools-0.2.0/.specify/templates/commands/implement.md +138 -0
  58. agentic_devtools-0.2.0/.specify/templates/commands/plan.md +95 -0
  59. agentic_devtools-0.2.0/.specify/templates/commands/specify.md +261 -0
  60. agentic_devtools-0.2.0/.specify/templates/commands/tasks.md +140 -0
  61. agentic_devtools-0.2.0/.specify/templates/commands/taskstoissues.md +33 -0
  62. agentic_devtools-0.2.0/.specify/templates/plan-template.md +104 -0
  63. agentic_devtools-0.2.0/.specify/templates/spec-template.md +121 -0
  64. agentic_devtools-0.2.0/.specify/templates/tasks-template.md +251 -0
  65. agentic_devtools-0.2.0/.specify/templates/vscode-settings.json +14 -0
  66. agentic_devtools-0.2.0/.work-folder-info +1 -0
  67. agentic_devtools-0.2.0/CHANGELOG.md +8 -0
  68. agentic_devtools-0.2.0/LICENSE +21 -0
  69. agentic_devtools-0.2.0/PKG-INFO +544 -0
  70. agentic_devtools-0.2.0/README.md +523 -0
  71. agentic_devtools-0.2.0/SPEC_DRIVEN_DEVELOPMENT.md +385 -0
  72. agentic_devtools-0.2.0/agdt_ai_helpers/__init__.py +34 -0
  73. agentic_devtools-0.2.0/agentic_devtools/__init__.py +8 -0
  74. agentic_devtools-0.2.0/agentic_devtools/background_tasks.py +598 -0
  75. agentic_devtools-0.2.0/agentic_devtools/cli/__init__.py +1 -0
  76. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/__init__.py +222 -0
  77. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/async_commands.py +1218 -0
  78. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/auth.py +34 -0
  79. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/commands.py +728 -0
  80. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/config.py +49 -0
  81. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/file_review_commands.py +1038 -0
  82. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/helpers.py +561 -0
  83. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/mark_reviewed.py +756 -0
  84. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/pipeline_commands.py +724 -0
  85. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/pr_summary_commands.py +579 -0
  86. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/pull_request_details_commands.py +596 -0
  87. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_commands.py +700 -0
  88. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_helpers.py +191 -0
  89. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_jira.py +308 -0
  90. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_prompts.py +263 -0
  91. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/run_details_commands.py +935 -0
  92. agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/vpn_toggle.py +1220 -0
  93. agentic_devtools-0.2.0/agentic_devtools/cli/git/__init__.py +91 -0
  94. agentic_devtools-0.2.0/agentic_devtools/cli/git/async_commands.py +294 -0
  95. agentic_devtools-0.2.0/agentic_devtools/cli/git/commands.py +399 -0
  96. agentic_devtools-0.2.0/agentic_devtools/cli/git/core.py +152 -0
  97. agentic_devtools-0.2.0/agentic_devtools/cli/git/diff.py +210 -0
  98. agentic_devtools-0.2.0/agentic_devtools/cli/git/operations.py +737 -0
  99. agentic_devtools-0.2.0/agentic_devtools/cli/jira/__init__.py +114 -0
  100. agentic_devtools-0.2.0/agentic_devtools/cli/jira/adf.py +105 -0
  101. agentic_devtools-0.2.0/agentic_devtools/cli/jira/async_commands.py +439 -0
  102. agentic_devtools-0.2.0/agentic_devtools/cli/jira/async_status.py +27 -0
  103. agentic_devtools-0.2.0/agentic_devtools/cli/jira/commands.py +28 -0
  104. agentic_devtools-0.2.0/agentic_devtools/cli/jira/comment_commands.py +141 -0
  105. agentic_devtools-0.2.0/agentic_devtools/cli/jira/config.py +69 -0
  106. agentic_devtools-0.2.0/agentic_devtools/cli/jira/create_commands.py +293 -0
  107. agentic_devtools-0.2.0/agentic_devtools/cli/jira/formatting.py +131 -0
  108. agentic_devtools-0.2.0/agentic_devtools/cli/jira/get_commands.py +287 -0
  109. agentic_devtools-0.2.0/agentic_devtools/cli/jira/helpers.py +278 -0
  110. agentic_devtools-0.2.0/agentic_devtools/cli/jira/parse_error_report.py +352 -0
  111. agentic_devtools-0.2.0/agentic_devtools/cli/jira/role_commands.py +560 -0
  112. agentic_devtools-0.2.0/agentic_devtools/cli/jira/state_helpers.py +39 -0
  113. agentic_devtools-0.2.0/agentic_devtools/cli/jira/update_commands.py +222 -0
  114. agentic_devtools-0.2.0/agentic_devtools/cli/jira/vpn_wrapper.py +58 -0
  115. agentic_devtools-0.2.0/agentic_devtools/cli/release/__init__.py +5 -0
  116. agentic_devtools-0.2.0/agentic_devtools/cli/release/commands.py +113 -0
  117. agentic_devtools-0.2.0/agentic_devtools/cli/release/helpers.py +113 -0
  118. agentic_devtools-0.2.0/agentic_devtools/cli/runner.py +318 -0
  119. agentic_devtools-0.2.0/agentic_devtools/cli/state.py +174 -0
  120. agentic_devtools-0.2.0/agentic_devtools/cli/subprocess_utils.py +109 -0
  121. agentic_devtools-0.2.0/agentic_devtools/cli/tasks/__init__.py +28 -0
  122. agentic_devtools-0.2.0/agentic_devtools/cli/tasks/commands.py +851 -0
  123. agentic_devtools-0.2.0/agentic_devtools/cli/testing.py +442 -0
  124. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/__init__.py +80 -0
  125. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/advancement.py +204 -0
  126. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/base.py +240 -0
  127. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/checklist.py +278 -0
  128. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/commands.py +1610 -0
  129. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/manager.py +802 -0
  130. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/preflight.py +323 -0
  131. agentic_devtools-0.2.0/agentic_devtools/cli/workflows/worktree_setup.py +1110 -0
  132. agentic_devtools-0.2.0/agentic_devtools/dispatcher.py +704 -0
  133. agentic_devtools-0.2.0/agentic_devtools/file_locking.py +203 -0
  134. agentic_devtools-0.2.0/agentic_devtools/prompts/__init__.py +38 -0
  135. agentic_devtools-0.2.0/agentic_devtools/prompts/apply-pull-request-review-suggestions/default-initiate-prompt.md +82 -0
  136. agentic_devtools-0.2.0/agentic_devtools/prompts/create-jira-epic/default-initiate-prompt.md +63 -0
  137. agentic_devtools-0.2.0/agentic_devtools/prompts/create-jira-issue/default-initiate-prompt.md +306 -0
  138. agentic_devtools-0.2.0/agentic_devtools/prompts/create-jira-subtask/default-initiate-prompt.md +57 -0
  139. agentic_devtools-0.2.0/agentic_devtools/prompts/loader.py +377 -0
  140. agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-completion-prompt.md +45 -0
  141. agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-decision-prompt.md +63 -0
  142. agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-file-review-prompt.md +69 -0
  143. agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-initiate-prompt.md +50 -0
  144. agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-summary-prompt.md +40 -0
  145. agentic_devtools-0.2.0/agentic_devtools/prompts/update-jira-issue/default-initiate-prompt.md +78 -0
  146. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-checklist-creation-prompt.md +58 -0
  147. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-commit-prompt.md +47 -0
  148. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-completion-prompt.md +65 -0
  149. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-implementation-prompt.md +66 -0
  150. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-implementation-review-prompt.md +60 -0
  151. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-initiate-prompt.md +67 -0
  152. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-planning-prompt.md +50 -0
  153. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-pull-request-prompt.md +56 -0
  154. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-retrieve-prompt.md +29 -0
  155. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-setup-prompt.md +19 -0
  156. agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-verification-prompt.md +73 -0
  157. agentic_devtools-0.2.0/agentic_devtools/state.py +754 -0
  158. agentic_devtools-0.2.0/agentic_devtools/task_state.py +902 -0
  159. agentic_devtools-0.2.0/ayaiay.json +13 -0
  160. agentic_devtools-0.2.0/pyproject.toml +187 -0
  161. agentic_devtools-0.2.0/specs/001-pypi-wheel-release/checklists/requirements.md +35 -0
  162. agentic_devtools-0.2.0/specs/001-pypi-wheel-release/plan.md +83 -0
  163. agentic_devtools-0.2.0/specs/001-pypi-wheel-release/spec.md +96 -0
  164. agentic_devtools-0.2.0/specs/001-pypi-wheel-release/tasks.md +166 -0
  165. agentic_devtools-0.2.0/specs/README.md +123 -0
  166. agentic_devtools-0.2.0/tests/__init__.py +1 -0
  167. agentic_devtools-0.2.0/tests/azure_devops/__init__.py +3 -0
  168. agentic_devtools-0.2.0/tests/azure_devops/conftest.py +23 -0
  169. agentic_devtools-0.2.0/tests/azure_devops/test_async_commands.py +881 -0
  170. agentic_devtools-0.2.0/tests/azure_devops/test_auth.py +51 -0
  171. agentic_devtools-0.2.0/tests/azure_devops/test_commands_api.py +872 -0
  172. agentic_devtools-0.2.0/tests/azure_devops/test_commands_dry_run.py +726 -0
  173. agentic_devtools-0.2.0/tests/azure_devops/test_config.py +118 -0
  174. agentic_devtools-0.2.0/tests/azure_devops/test_file_review_commands.py +231 -0
  175. agentic_devtools-0.2.0/tests/azure_devops/test_helpers.py +1005 -0
  176. agentic_devtools-0.2.0/tests/azure_devops/test_mark_reviewed.py +1438 -0
  177. agentic_devtools-0.2.0/tests/azure_devops/test_pipeline_commands.py +919 -0
  178. agentic_devtools-0.2.0/tests/azure_devops/test_pr_summary_commands.py +705 -0
  179. agentic_devtools-0.2.0/tests/azure_devops/test_pull_request_details_commands.py +1272 -0
  180. agentic_devtools-0.2.0/tests/azure_devops/test_review_commands.py +1596 -0
  181. agentic_devtools-0.2.0/tests/azure_devops/test_run_details_commands.py +1095 -0
  182. agentic_devtools-0.2.0/tests/azure_devops/test_vpn_toggle.py +1490 -0
  183. agentic_devtools-0.2.0/tests/cli/test_runner.py +285 -0
  184. agentic_devtools-0.2.0/tests/conftest.py +78 -0
  185. agentic_devtools-0.2.0/tests/test_background_tasks.py +344 -0
  186. agentic_devtools-0.2.0/tests/test_checklist.py +429 -0
  187. agentic_devtools-0.2.0/tests/test_checklist_commands.py +379 -0
  188. agentic_devtools-0.2.0/tests/test_cli_state.py +258 -0
  189. agentic_devtools-0.2.0/tests/test_dispatcher.py +438 -0
  190. agentic_devtools-0.2.0/tests/test_file_locking.py +290 -0
  191. agentic_devtools-0.2.0/tests/test_file_locking_platform.py +234 -0
  192. agentic_devtools-0.2.0/tests/test_file_review_commands.py +532 -0
  193. agentic_devtools-0.2.0/tests/test_file_review_queue_management.py +910 -0
  194. agentic_devtools-0.2.0/tests/test_git_async.py +282 -0
  195. agentic_devtools-0.2.0/tests/test_git_commands.py +616 -0
  196. agentic_devtools-0.2.0/tests/test_git_core.py +230 -0
  197. agentic_devtools-0.2.0/tests/test_git_diff.py +437 -0
  198. agentic_devtools-0.2.0/tests/test_git_operations.py +1001 -0
  199. agentic_devtools-0.2.0/tests/test_git_utilities.py +287 -0
  200. agentic_devtools-0.2.0/tests/test_jira_adf.py +319 -0
  201. agentic_devtools-0.2.0/tests/test_jira_async.py +324 -0
  202. agentic_devtools-0.2.0/tests/test_jira_commands.py +1685 -0
  203. agentic_devtools-0.2.0/tests/test_jira_config.py +138 -0
  204. agentic_devtools-0.2.0/tests/test_jira_formatting.py +209 -0
  205. agentic_devtools-0.2.0/tests/test_jira_helpers.py +575 -0
  206. agentic_devtools-0.2.0/tests/test_jira_state.py +60 -0
  207. agentic_devtools-0.2.0/tests/test_jira_update_commands.py +261 -0
  208. agentic_devtools-0.2.0/tests/test_parse_error_report.py +513 -0
  209. agentic_devtools-0.2.0/tests/test_preflight.py +414 -0
  210. agentic_devtools-0.2.0/tests/test_prompt_loader.py +402 -0
  211. agentic_devtools-0.2.0/tests/test_release_commands.py +180 -0
  212. agentic_devtools-0.2.0/tests/test_release_helpers.py +109 -0
  213. agentic_devtools-0.2.0/tests/test_release_integration.py +98 -0
  214. agentic_devtools-0.2.0/tests/test_review_jira.py +576 -0
  215. agentic_devtools-0.2.0/tests/test_review_prompts.py +384 -0
  216. agentic_devtools-0.2.0/tests/test_role_commands.py +1272 -0
  217. agentic_devtools-0.2.0/tests/test_state.py +1131 -0
  218. agentic_devtools-0.2.0/tests/test_subprocess_utils.py +163 -0
  219. agentic_devtools-0.2.0/tests/test_task_state.py +1034 -0
  220. agentic_devtools-0.2.0/tests/test_tasks_commands.py +1185 -0
  221. agentic_devtools-0.2.0/tests/test_testing.py +374 -0
  222. agentic_devtools-0.2.0/tests/test_vpn_wrapper.py +171 -0
  223. agentic_devtools-0.2.0/tests/test_workflow_advancement.py +275 -0
  224. agentic_devtools-0.2.0/tests/test_workflow_commands.py +2230 -0
  225. agentic_devtools-0.2.0/tests/test_workflow_prompt.py +507 -0
  226. agentic_devtools-0.2.0/tests/test_workflow_state.py +277 -0
  227. agentic_devtools-0.2.0/tests/test_worktree_setup.py +1759 -0
@@ -0,0 +1,50 @@
1
+ # Python Development Container
2
+
3
+ This directory contains the configuration for a Python development container that can be used with:
4
+ - Visual Studio Code with the Dev Containers extension
5
+ - GitHub Codespaces
6
+ - Any tool that supports the Dev Container specification
7
+
8
+ ## Features
9
+
10
+ - **Python 3.12**: Latest stable Python version
11
+ - **Development Tools**: Pre-configured with pytest, black, mypy, ruff, and isort
12
+ - **VS Code Extensions**:
13
+ - Python language support (Pylance)
14
+ - Black formatter
15
+ - Ruff linter
16
+ - mypy type checker
17
+ - **Auto-formatting**: Format on save enabled
18
+ - **Import organization**: Automatic import sorting on save
19
+ - **Testing**: pytest configured and ready to use
20
+
21
+ ## Usage
22
+
23
+ ### VS Code
24
+
25
+ 1. Install the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
26
+ 2. Open this repository in VS Code
27
+ 3. When prompted, click "Reopen in Container" or use the command palette: `Dev Containers: Reopen in Container`
28
+ 4. The container will build and install all dependencies automatically
29
+
30
+ ### GitHub Codespaces
31
+
32
+ 1. Create a new Codespace from this repository
33
+ 2. The development environment will be set up automatically
34
+
35
+ ## Post-Create Setup
36
+
37
+ After the container is created, the following command runs automatically:
38
+ ```bash
39
+ pip install -e '.[dev]'
40
+ ```
41
+
42
+ This installs the `agentic-devtools` package in editable mode with all development dependencies.
43
+
44
+ ## Customization
45
+
46
+ To customize the development environment, edit the `devcontainer.json` file:
47
+ - Add more VS Code extensions to the `extensions` array
48
+ - Modify VS Code settings in the `settings` object
49
+ - Change the Python version by updating the `image` property
50
+ - Add additional features from the [devcontainer features catalog](https://containers.dev/features)
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "Python 3 Agentic DevTools",
3
+ "image": "mcr.microsoft.com/devcontainers/python:3.12",
4
+
5
+ // Configure tool-specific properties.
6
+ "customizations": {
7
+ "vscode": {
8
+ "settings": {
9
+ "python.defaultInterpreterPath": "/usr/local/bin/python",
10
+ "python.linting.enabled": true,
11
+ "python.linting.pylintEnabled": false,
12
+ "python.linting.flake8Enabled": false,
13
+ "python.formatting.provider": "black",
14
+ "python.testing.pytestEnabled": true,
15
+ "python.testing.unittestEnabled": false,
16
+ "editor.formatOnSave": true,
17
+ "editor.codeActionsOnSave": {
18
+ "source.organizeImports": "explicit"
19
+ },
20
+ "[python]": {
21
+ "editor.defaultFormatter": "ms-python.black-formatter",
22
+ "editor.formatOnSave": true
23
+ }
24
+ },
25
+ "extensions": [
26
+ "ms-python.python",
27
+ "ms-python.vscode-pylance",
28
+ "ms-python.black-formatter",
29
+ "charliermarsh.ruff",
30
+ "ms-python.mypy-type-checker"
31
+ ]
32
+ }
33
+ },
34
+
35
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
36
+ // "forwardPorts": [],
37
+
38
+ // Use 'postCreateCommand' to run commands after the container is created.
39
+ "postCreateCommand": "pip install -e '.[dev]'",
40
+
41
+ // Configure tool-specific properties.
42
+ "features": {
43
+ "ghcr.io/devcontainers/features/git:1": {}
44
+ }
45
+
46
+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
47
+ // "remoteUser": "root"
48
+ }
@@ -0,0 +1,13 @@
1
+ [
2
+ {
3
+ "id": "21c14f00-df25-41e7-a2e0-0ee1466b50c3",
4
+ "command": "dfly-test",
5
+ "status": "failed",
6
+ "startTime": "2026-01-27T11:34:40.399626+00:00",
7
+ "endTime": "2026-01-27T11:34:40.736510+00:00",
8
+ "logFile": "/workspaces/agentic-devtools/.dfly-temp/background-tasks/logs/dfly_test_20260127_113440_387577.log",
9
+ "exitCode": 1,
10
+ "args": {},
11
+ "errorMessage": null
12
+ }
13
+ ]
@@ -0,0 +1,18 @@
1
+ {
2
+ "background": {
3
+ "recentTasks": [
4
+ {
5
+ "id": "21c14f00-df25-41e7-a2e0-0ee1466b50c3",
6
+ "command": "dfly-test",
7
+ "status": "failed",
8
+ "startTime": "2026-01-27T11:34:40.399626+00:00",
9
+ "endTime": "2026-01-27T11:34:40.736510+00:00",
10
+ "logFile": "/workspaces/agentic-devtools/.dfly-temp/background-tasks/logs/dfly_test_20260127_113440_387577.log",
11
+ "exitCode": 1,
12
+ "args": {},
13
+ "errorMessage": null
14
+ }
15
+ ],
16
+ "task_id": "21c14f00-df25-41e7-a2e0-0ee1466b50c3"
17
+ }
18
+ }
@@ -0,0 +1,29 @@
1
+ # agentic-devtools Development Guidelines
2
+
3
+ Auto-generated from all feature plans. Last updated: 2026-02-03
4
+
5
+ ## Active Technologies
6
+
7
+ - Python >= 3.8 + requests, Jinja2 (bestehend), neu: build, twine (für Release-Flows) (001-pypi-wheel-release)
8
+
9
+ ## Project Structure
10
+
11
+ ```text
12
+ src/
13
+ tests/
14
+ ```
15
+
16
+ ## Commands
17
+
18
+ cd src [ONLY COMMANDS FOR ACTIVE TECHNOLOGIES][ONLY COMMANDS FOR ACTIVE TECHNOLOGIES] pytest [ONLY COMMANDS FOR ACTIVE TECHNOLOGIES][ONLY COMMANDS FOR ACTIVE TECHNOLOGIES] ruff check .
19
+
20
+ ## Code Style
21
+
22
+ Python >= 3.8: Follow standard conventions
23
+
24
+ ## Recent Changes
25
+
26
+ - 001-pypi-wheel-release: Added Python >= 3.8 + requests, Jinja2 (bestehend), neu: build, twine (für Release-Flows)
27
+
28
+ <!-- MANUAL ADDITIONS START -->
29
+ <!-- MANUAL ADDITIONS END -->