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.
- agentic_devtools-0.2.0/.devcontainer/README.md +50 -0
- agentic_devtools-0.2.0/.devcontainer/devcontainer.json +48 -0
- agentic_devtools-0.2.0/.dfly-temp/background-tasks/all-background-tasks.json +13 -0
- agentic_devtools-0.2.0/.dfly-temp/dfly-state.json +18 -0
- agentic_devtools-0.2.0/.github/agents/copilot-instructions.md +29 -0
- agentic_devtools-0.2.0/.github/agents/senior-python-developer.md +589 -0
- agentic_devtools-0.2.0/.github/agents/speckit.analyze.agent.md +184 -0
- agentic_devtools-0.2.0/.github/agents/speckit.checklist.agent.md +294 -0
- agentic_devtools-0.2.0/.github/agents/speckit.clarify.agent.md +181 -0
- agentic_devtools-0.2.0/.github/agents/speckit.constitution.agent.md +82 -0
- agentic_devtools-0.2.0/.github/agents/speckit.implement.agent.md +135 -0
- agentic_devtools-0.2.0/.github/agents/speckit.plan.agent.md +89 -0
- agentic_devtools-0.2.0/.github/agents/speckit.specify.agent.md +258 -0
- agentic_devtools-0.2.0/.github/agents/speckit.tasks.agent.md +137 -0
- agentic_devtools-0.2.0/.github/agents/speckit.taskstoissues.agent.md +30 -0
- agentic_devtools-0.2.0/.github/copilot-instructions.md +1221 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.analyze.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.checklist.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.clarify.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.constitution.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.implement.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.plan.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.specify.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.tasks.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/prompts/speckit.taskstoissues.prompt.md +3 -0
- agentic_devtools-0.2.0/.github/workflows/README.md +68 -0
- agentic_devtools-0.2.0/.github/workflows/lint.yml +20 -0
- agentic_devtools-0.2.0/.github/workflows/publish.yml +92 -0
- agentic_devtools-0.2.0/.github/workflows/release.yml +60 -0
- agentic_devtools-0.2.0/.github/workflows/scripts/check-release-exists.sh +21 -0
- agentic_devtools-0.2.0/.github/workflows/scripts/create-github-release.sh +54 -0
- agentic_devtools-0.2.0/.github/workflows/scripts/create-release-packages.ps1 +424 -0
- agentic_devtools-0.2.0/.github/workflows/scripts/create-release-packages.sh +273 -0
- agentic_devtools-0.2.0/.github/workflows/scripts/generate-release-notes.sh +40 -0
- agentic_devtools-0.2.0/.github/workflows/scripts/get-next-version.sh +24 -0
- agentic_devtools-0.2.0/.github/workflows/scripts/update-version.sh +23 -0
- agentic_devtools-0.2.0/.github/workflows/test.yml +89 -0
- agentic_devtools-0.2.0/.gitignore +61 -0
- agentic_devtools-0.2.0/.specify/SDD_QUICK_REFERENCE.md +224 -0
- agentic_devtools-0.2.0/.specify/memory/constitution.md +195 -0
- agentic_devtools-0.2.0/.specify/scripts/bash/check-prerequisites.sh +166 -0
- agentic_devtools-0.2.0/.specify/scripts/bash/common.sh +156 -0
- agentic_devtools-0.2.0/.specify/scripts/bash/create-new-feature.sh +297 -0
- agentic_devtools-0.2.0/.specify/scripts/bash/setup-plan.sh +61 -0
- agentic_devtools-0.2.0/.specify/scripts/bash/update-agent-context.sh +799 -0
- agentic_devtools-0.2.0/.specify/scripts/powershell/check-prerequisites.ps1 +148 -0
- agentic_devtools-0.2.0/.specify/scripts/powershell/common.ps1 +137 -0
- agentic_devtools-0.2.0/.specify/scripts/powershell/create-new-feature.ps1 +283 -0
- agentic_devtools-0.2.0/.specify/scripts/powershell/setup-plan.ps1 +61 -0
- agentic_devtools-0.2.0/.specify/scripts/powershell/update-agent-context.ps1 +448 -0
- agentic_devtools-0.2.0/.specify/templates/agent-file-template.md +28 -0
- agentic_devtools-0.2.0/.specify/templates/checklist-template.md +40 -0
- agentic_devtools-0.2.0/.specify/templates/commands/analyze.md +187 -0
- agentic_devtools-0.2.0/.specify/templates/commands/checklist.md +297 -0
- agentic_devtools-0.2.0/.specify/templates/commands/clarify.md +184 -0
- agentic_devtools-0.2.0/.specify/templates/commands/constitution.md +82 -0
- agentic_devtools-0.2.0/.specify/templates/commands/implement.md +138 -0
- agentic_devtools-0.2.0/.specify/templates/commands/plan.md +95 -0
- agentic_devtools-0.2.0/.specify/templates/commands/specify.md +261 -0
- agentic_devtools-0.2.0/.specify/templates/commands/tasks.md +140 -0
- agentic_devtools-0.2.0/.specify/templates/commands/taskstoissues.md +33 -0
- agentic_devtools-0.2.0/.specify/templates/plan-template.md +104 -0
- agentic_devtools-0.2.0/.specify/templates/spec-template.md +121 -0
- agentic_devtools-0.2.0/.specify/templates/tasks-template.md +251 -0
- agentic_devtools-0.2.0/.specify/templates/vscode-settings.json +14 -0
- agentic_devtools-0.2.0/.work-folder-info +1 -0
- agentic_devtools-0.2.0/CHANGELOG.md +8 -0
- agentic_devtools-0.2.0/LICENSE +21 -0
- agentic_devtools-0.2.0/PKG-INFO +544 -0
- agentic_devtools-0.2.0/README.md +523 -0
- agentic_devtools-0.2.0/SPEC_DRIVEN_DEVELOPMENT.md +385 -0
- agentic_devtools-0.2.0/agdt_ai_helpers/__init__.py +34 -0
- agentic_devtools-0.2.0/agentic_devtools/__init__.py +8 -0
- agentic_devtools-0.2.0/agentic_devtools/background_tasks.py +598 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/__init__.py +1 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/__init__.py +222 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/async_commands.py +1218 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/auth.py +34 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/commands.py +728 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/config.py +49 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/file_review_commands.py +1038 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/helpers.py +561 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/mark_reviewed.py +756 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/pipeline_commands.py +724 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/pr_summary_commands.py +579 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/pull_request_details_commands.py +596 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_commands.py +700 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_helpers.py +191 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_jira.py +308 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/review_prompts.py +263 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/run_details_commands.py +935 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/azure_devops/vpn_toggle.py +1220 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/git/__init__.py +91 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/git/async_commands.py +294 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/git/commands.py +399 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/git/core.py +152 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/git/diff.py +210 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/git/operations.py +737 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/__init__.py +114 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/adf.py +105 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/async_commands.py +439 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/async_status.py +27 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/commands.py +28 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/comment_commands.py +141 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/config.py +69 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/create_commands.py +293 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/formatting.py +131 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/get_commands.py +287 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/helpers.py +278 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/parse_error_report.py +352 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/role_commands.py +560 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/state_helpers.py +39 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/update_commands.py +222 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/jira/vpn_wrapper.py +58 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/release/__init__.py +5 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/release/commands.py +113 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/release/helpers.py +113 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/runner.py +318 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/state.py +174 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/subprocess_utils.py +109 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/tasks/__init__.py +28 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/tasks/commands.py +851 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/testing.py +442 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/__init__.py +80 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/advancement.py +204 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/base.py +240 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/checklist.py +278 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/commands.py +1610 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/manager.py +802 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/preflight.py +323 -0
- agentic_devtools-0.2.0/agentic_devtools/cli/workflows/worktree_setup.py +1110 -0
- agentic_devtools-0.2.0/agentic_devtools/dispatcher.py +704 -0
- agentic_devtools-0.2.0/agentic_devtools/file_locking.py +203 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/__init__.py +38 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/apply-pull-request-review-suggestions/default-initiate-prompt.md +82 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/create-jira-epic/default-initiate-prompt.md +63 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/create-jira-issue/default-initiate-prompt.md +306 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/create-jira-subtask/default-initiate-prompt.md +57 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/loader.py +377 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-completion-prompt.md +45 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-decision-prompt.md +63 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-file-review-prompt.md +69 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-initiate-prompt.md +50 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/pull-request-review/default-summary-prompt.md +40 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/update-jira-issue/default-initiate-prompt.md +78 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-checklist-creation-prompt.md +58 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-commit-prompt.md +47 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-completion-prompt.md +65 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-implementation-prompt.md +66 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-implementation-review-prompt.md +60 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-initiate-prompt.md +67 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-planning-prompt.md +50 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-pull-request-prompt.md +56 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-retrieve-prompt.md +29 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-setup-prompt.md +19 -0
- agentic_devtools-0.2.0/agentic_devtools/prompts/work-on-jira-issue/default-verification-prompt.md +73 -0
- agentic_devtools-0.2.0/agentic_devtools/state.py +754 -0
- agentic_devtools-0.2.0/agentic_devtools/task_state.py +902 -0
- agentic_devtools-0.2.0/ayaiay.json +13 -0
- agentic_devtools-0.2.0/pyproject.toml +187 -0
- agentic_devtools-0.2.0/specs/001-pypi-wheel-release/checklists/requirements.md +35 -0
- agentic_devtools-0.2.0/specs/001-pypi-wheel-release/plan.md +83 -0
- agentic_devtools-0.2.0/specs/001-pypi-wheel-release/spec.md +96 -0
- agentic_devtools-0.2.0/specs/001-pypi-wheel-release/tasks.md +166 -0
- agentic_devtools-0.2.0/specs/README.md +123 -0
- agentic_devtools-0.2.0/tests/__init__.py +1 -0
- agentic_devtools-0.2.0/tests/azure_devops/__init__.py +3 -0
- agentic_devtools-0.2.0/tests/azure_devops/conftest.py +23 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_async_commands.py +881 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_auth.py +51 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_commands_api.py +872 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_commands_dry_run.py +726 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_config.py +118 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_file_review_commands.py +231 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_helpers.py +1005 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_mark_reviewed.py +1438 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_pipeline_commands.py +919 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_pr_summary_commands.py +705 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_pull_request_details_commands.py +1272 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_review_commands.py +1596 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_run_details_commands.py +1095 -0
- agentic_devtools-0.2.0/tests/azure_devops/test_vpn_toggle.py +1490 -0
- agentic_devtools-0.2.0/tests/cli/test_runner.py +285 -0
- agentic_devtools-0.2.0/tests/conftest.py +78 -0
- agentic_devtools-0.2.0/tests/test_background_tasks.py +344 -0
- agentic_devtools-0.2.0/tests/test_checklist.py +429 -0
- agentic_devtools-0.2.0/tests/test_checklist_commands.py +379 -0
- agentic_devtools-0.2.0/tests/test_cli_state.py +258 -0
- agentic_devtools-0.2.0/tests/test_dispatcher.py +438 -0
- agentic_devtools-0.2.0/tests/test_file_locking.py +290 -0
- agentic_devtools-0.2.0/tests/test_file_locking_platform.py +234 -0
- agentic_devtools-0.2.0/tests/test_file_review_commands.py +532 -0
- agentic_devtools-0.2.0/tests/test_file_review_queue_management.py +910 -0
- agentic_devtools-0.2.0/tests/test_git_async.py +282 -0
- agentic_devtools-0.2.0/tests/test_git_commands.py +616 -0
- agentic_devtools-0.2.0/tests/test_git_core.py +230 -0
- agentic_devtools-0.2.0/tests/test_git_diff.py +437 -0
- agentic_devtools-0.2.0/tests/test_git_operations.py +1001 -0
- agentic_devtools-0.2.0/tests/test_git_utilities.py +287 -0
- agentic_devtools-0.2.0/tests/test_jira_adf.py +319 -0
- agentic_devtools-0.2.0/tests/test_jira_async.py +324 -0
- agentic_devtools-0.2.0/tests/test_jira_commands.py +1685 -0
- agentic_devtools-0.2.0/tests/test_jira_config.py +138 -0
- agentic_devtools-0.2.0/tests/test_jira_formatting.py +209 -0
- agentic_devtools-0.2.0/tests/test_jira_helpers.py +575 -0
- agentic_devtools-0.2.0/tests/test_jira_state.py +60 -0
- agentic_devtools-0.2.0/tests/test_jira_update_commands.py +261 -0
- agentic_devtools-0.2.0/tests/test_parse_error_report.py +513 -0
- agentic_devtools-0.2.0/tests/test_preflight.py +414 -0
- agentic_devtools-0.2.0/tests/test_prompt_loader.py +402 -0
- agentic_devtools-0.2.0/tests/test_release_commands.py +180 -0
- agentic_devtools-0.2.0/tests/test_release_helpers.py +109 -0
- agentic_devtools-0.2.0/tests/test_release_integration.py +98 -0
- agentic_devtools-0.2.0/tests/test_review_jira.py +576 -0
- agentic_devtools-0.2.0/tests/test_review_prompts.py +384 -0
- agentic_devtools-0.2.0/tests/test_role_commands.py +1272 -0
- agentic_devtools-0.2.0/tests/test_state.py +1131 -0
- agentic_devtools-0.2.0/tests/test_subprocess_utils.py +163 -0
- agentic_devtools-0.2.0/tests/test_task_state.py +1034 -0
- agentic_devtools-0.2.0/tests/test_tasks_commands.py +1185 -0
- agentic_devtools-0.2.0/tests/test_testing.py +374 -0
- agentic_devtools-0.2.0/tests/test_vpn_wrapper.py +171 -0
- agentic_devtools-0.2.0/tests/test_workflow_advancement.py +275 -0
- agentic_devtools-0.2.0/tests/test_workflow_commands.py +2230 -0
- agentic_devtools-0.2.0/tests/test_workflow_prompt.py +507 -0
- agentic_devtools-0.2.0/tests/test_workflow_state.py +277 -0
- 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 -->
|