agentic-devtools 0.2.332__py3-none-any.whl → 0.2.334__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agentic_devtools/_version.py +2 -2
- agentic_devtools/adapters/__init__.py +8 -0
- agentic_devtools/adapters/idempotency_query_provider.py +64 -0
- agentic_devtools/adapters/issue_provider.py +65 -0
- agentic_devtools/adapters/jira_provider.py +140 -75
- agentic_devtools/adapters/operation_plan.py +111 -0
- agentic_devtools/adapters/orchestration_key.py +39 -15
- agentic_devtools/adapters/plan_manifest.py +437 -0
- agentic_devtools/orchestration/graph_builder.py +15 -5
- agentic_devtools/orchestration/nodes/__init__.py +31 -0
- agentic_devtools/orchestration/nodes/_helpers.py +261 -0
- agentic_devtools/orchestration/nodes/checklist_creation.py +139 -0
- agentic_devtools/orchestration/nodes/commit.py +169 -0
- agentic_devtools/orchestration/nodes/completion.py +163 -0
- agentic_devtools/orchestration/nodes/implementation.py +395 -0
- agentic_devtools/orchestration/nodes/implementation_review.py +126 -0
- agentic_devtools/orchestration/nodes/initiate.py +136 -0
- agentic_devtools/orchestration/nodes/planning.py +221 -0
- agentic_devtools/orchestration/nodes/pull_request.py +256 -0
- agentic_devtools/orchestration/nodes/retrieve.py +198 -0
- agentic_devtools/orchestration/nodes/setup.py +123 -0
- agentic_devtools/orchestration/nodes/verification.py +96 -0
- agentic_devtools/orchestration/pilot_workflow.py +53 -21
- agentic_devtools/orchestration/runner.py +62 -9
- agentic_devtools/orchestration/state_schema.py +24 -0
- {agentic_devtools-0.2.332.dist-info → agentic_devtools-0.2.334.dist-info}/METADATA +1 -1
- {agentic_devtools-0.2.332.dist-info → agentic_devtools-0.2.334.dist-info}/RECORD +30 -14
- {agentic_devtools-0.2.332.dist-info → agentic_devtools-0.2.334.dist-info}/WHEEL +0 -0
- {agentic_devtools-0.2.332.dist-info → agentic_devtools-0.2.334.dist-info}/entry_points.txt +0 -0
- {agentic_devtools-0.2.332.dist-info → agentic_devtools-0.2.334.dist-info}/licenses/LICENSE +0 -0
|
@@ -50,5 +50,29 @@ class WorkOnIssueState(TypedDict, total=False):
|
|
|
50
50
|
setup_complete: bool
|
|
51
51
|
checklist_created: bool
|
|
52
52
|
|
|
53
|
+
# Issue provider and data fields (FR-002, FR-004)
|
|
54
|
+
issue_provider: str # "jira" or "github"
|
|
55
|
+
issue_data: dict[str, Any] # Normalized issue details
|
|
56
|
+
|
|
57
|
+
# Checklist and implementation tracking (FR-001, FR-005)
|
|
58
|
+
checklist_items: list[dict[str, Any]] # Structured checklist entries
|
|
59
|
+
implementation_log: list[dict[str, Any]] # Per-item TDD results
|
|
60
|
+
|
|
61
|
+
# Quality gate and verification (FR-006)
|
|
62
|
+
verification_output: str # Last quality gate output
|
|
63
|
+
retry_budget: int # Configured verification retry budget for routing
|
|
64
|
+
|
|
65
|
+
# PR and commit metadata (FR-007, FR-008)
|
|
66
|
+
pr_url: str # Created PR URL
|
|
67
|
+
commit_message: str # Generated commit message
|
|
68
|
+
pr_title: str # Generated PR title
|
|
69
|
+
|
|
70
|
+
# Token usage tracking (NFR-002)
|
|
71
|
+
token_usage_prompt: int # Cumulative prompt tokens
|
|
72
|
+
token_usage_completion: int # Cumulative completion tokens
|
|
73
|
+
|
|
74
|
+
# Blocked state detection (FR-004)
|
|
75
|
+
blocked_reason: str | None # Structured explanation for blocked state
|
|
76
|
+
|
|
53
77
|
# Node status tracking for checkpoint/resume (FR-002, FR-010)
|
|
54
78
|
_node_statuses: dict[str, Any]
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
agentic_devtools/__init__.py,sha256=J_Zw_vWKghk-cLmqI83hXQmSiS8zMhGIHM5WPLDkZuo,242
|
|
2
|
-
agentic_devtools/_version.py,sha256=
|
|
2
|
+
agentic_devtools/_version.py,sha256=zCDzZB-BjhjJU9TVZ4-J2A_CgEGmIY3nHS9UvedSqM0,524
|
|
3
3
|
agentic_devtools/agdt_gitignore.py,sha256=aBPBQe7M0GLH8NIp1NsyN9ZiO80fNGOi46IcT5A4SK4,1569
|
|
4
4
|
agentic_devtools/background_tasks.py,sha256=IVC1XJKQzPBP8wCRNCZX_iZCg9FJY_GBUzddSJj7xqw,17473
|
|
5
5
|
agentic_devtools/config.py,sha256=DEVxTVZhsQbVQwO9qdB_1h19aBpjMzF6xJY_ePYLGLs,15629
|
|
@@ -15,7 +15,7 @@ agentic_devtools/_bundled_skills/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
15
15
|
agentic_devtools/_bundled_skills/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
agentic_devtools/_bundled_skills/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
agentic_devtools/_bundled_skills/workflow-analysis/SKILL.md,sha256=imOFULtiGqsFEljGx0ly7_ntnZAmLWuYAF0HL82MIVA,21153
|
|
18
|
-
agentic_devtools/adapters/__init__.py,sha256=
|
|
18
|
+
agentic_devtools/adapters/__init__.py,sha256=BVj0rIs6WIPee2_hxm2yj-WSdNi-PfrHFw33GK2yJho,8161
|
|
19
19
|
agentic_devtools/adapters/base.py,sha256=7UIx89av0QOO01eqOFx9hQZC4HNhUPNe1myFBmL0NgY,6104
|
|
20
20
|
agentic_devtools/adapters/copilot-instructions.md,sha256=xkz-aVd7cc2v_tPN9CzV67O0GbKZNmkmHXSwN_ULK_8,29223
|
|
21
21
|
agentic_devtools/adapters/cycle_detection.py,sha256=93y3Yb1v2ungYeTJKxL8ztQltm8OFvsnLP67ZFVmoAQ,2350
|
|
@@ -25,12 +25,15 @@ agentic_devtools/adapters/factory.py,sha256=Z32q3wcZ196jWRlRcphRRDBqYMbTCRlz13EU
|
|
|
25
25
|
agentic_devtools/adapters/github_adapter.py,sha256=ltdJveOCHs95zzJMERDZp9T66FCYgvRR6slzKBBkJxY,22324
|
|
26
26
|
agentic_devtools/adapters/github_provider.py,sha256=6hvoaOFP-uOZQKGl2_XU8o9uR5xUzAWFFMHul3aKZuw,19992
|
|
27
27
|
agentic_devtools/adapters/github_schema.py,sha256=V793iZqst3Dj_piX6CkSbn379nvItECs7PattF95WqU,6869
|
|
28
|
-
agentic_devtools/adapters/
|
|
28
|
+
agentic_devtools/adapters/idempotency_query_provider.py,sha256=vJ9hi2bKQIQsIxhnIqFWXKV38DmS9W3T1pVRtIZ908A,2135
|
|
29
|
+
agentic_devtools/adapters/issue_provider.py,sha256=E4QNTtKC2JGZEax9cF5bCVa-FybTN0FbWlMrGzgkyt0,28775
|
|
29
30
|
agentic_devtools/adapters/issue_type_mapping.py,sha256=-Mh4fmr6Zd10CEGkDaFHVYiOJHUXFIWItAec5jmKu5c,14193
|
|
30
31
|
agentic_devtools/adapters/jira_adapter.py,sha256=Fhkdm6YaTNW6wVKf1KSXlrT18XL-qRezBD1j9TMt03k,22525
|
|
31
|
-
agentic_devtools/adapters/jira_provider.py,sha256=
|
|
32
|
+
agentic_devtools/adapters/jira_provider.py,sha256=mC-oP9-06B2xCczOXrzLbJRvk0HRzgYak7ZgYpK9wb8,37204
|
|
32
33
|
agentic_devtools/adapters/markdown_adapter.py,sha256=ej6Je7yGtj8igtHiiG_7ZbTedGyN0G1HLloLuQoWGkM,25942
|
|
33
|
-
agentic_devtools/adapters/
|
|
34
|
+
agentic_devtools/adapters/operation_plan.py,sha256=Lp46YSI3hz9UeZ253tlCzDufDZr9x4Jgk4LGwRq57Xc,4315
|
|
35
|
+
agentic_devtools/adapters/orchestration_key.py,sha256=-v2lM1HGSa6IIeeLy6vDZzxeeAN7O0ETkycuvLWRwIA,4059
|
|
36
|
+
agentic_devtools/adapters/plan_manifest.py,sha256=QozGmmQCFH5Z7HDYx3eMeI21M3PMuM_DW2qWFnQeCv0,18831
|
|
34
37
|
agentic_devtools/adapters/retry.py,sha256=CsueXIs-sLgkCVgp_hspzNnQKi_Ty-FyVN-066WncRc,3736
|
|
35
38
|
agentic_devtools/adapters/types.py,sha256=gqN2fq0i0gtMzCY1dCweZRlq3taAQNQEEHdqak5pbjI,8853
|
|
36
39
|
agentic_devtools/cli/__init__.py,sha256=VgHQrGk0NuMaGMdvooFwz3nGY1NzVi6kX5Fr7wF-Tdw,40
|
|
@@ -431,7 +434,7 @@ agentic_devtools/mcp/server.py,sha256=UCUZZW30rJsYzQvNIpkOhC5GhAojdZ_YAkKSmdB3Lw
|
|
|
431
434
|
agentic_devtools/orchestration/__init__.py,sha256=zYa4oQfoJAFG6C4zBhqI5kaj_5QCX2Y1j5hdJ_WYo10,798
|
|
432
435
|
agentic_devtools/orchestration/checkpointing.py,sha256=6lKinmwTRSkftiUHbKR96S9tQ97g252OrgCuzP4nRoo,1282
|
|
433
436
|
agentic_devtools/orchestration/execution_lock.py,sha256=3BnGt7kQz2UetJEkLy9Y1f9vZ1f4y3zWQTonzDnippk,4226
|
|
434
|
-
agentic_devtools/orchestration/graph_builder.py,sha256=
|
|
437
|
+
agentic_devtools/orchestration/graph_builder.py,sha256=7opsk33Z8P89OEoO4tBD8VjBDAGk4Suj1NJGbJiyT4k,4086
|
|
435
438
|
agentic_devtools/orchestration/idempotency.py,sha256=HCSWXC5HSlqZC8vBKmpilBWx3Bd8kHC44rFZLIxm3gc,591
|
|
436
439
|
agentic_devtools/orchestration/node_factory.py,sha256=4k_FkxVyDeFGMtpjLvK2OEoChRXBtbi2TOREsmBfqVs,3937
|
|
437
440
|
agentic_devtools/orchestration/node_status.py,sha256=LnfORl0tKrzXO2LxevIAIoV7i56Sxf4eX1aYZ9JKmII,7807
|
|
@@ -444,9 +447,9 @@ agentic_devtools/orchestration/observability_run.py,sha256=-_UwxBd-Vo9QyM1FjJRqk
|
|
|
444
447
|
agentic_devtools/orchestration/observability_summary.py,sha256=MM4IMqJq5c-lcQSCEQ6d5Qh-3bbo--8qKCGd-GjerJk,7458
|
|
445
448
|
agentic_devtools/orchestration/observability_truncation.py,sha256=C6SoUFYCyuhSQLt2aMXlRkC3AX6eMtO1-iJC-yN52XU,3223
|
|
446
449
|
agentic_devtools/orchestration/observability_writer.py,sha256=jCozD9J693hgCF3sO6X2E_WME5g3t4BscqAfIQ9z2Ts,3440
|
|
447
|
-
agentic_devtools/orchestration/pilot_workflow.py,sha256=
|
|
448
|
-
agentic_devtools/orchestration/runner.py,sha256=
|
|
449
|
-
agentic_devtools/orchestration/state_schema.py,sha256=
|
|
450
|
+
agentic_devtools/orchestration/pilot_workflow.py,sha256=ghLI6twrUXu0QRo_NX-CDSPJz19bohux_mtzdvw70Ck,13306
|
|
451
|
+
agentic_devtools/orchestration/runner.py,sha256=ChUl06eFmDKTXd5d6qZhE89BTaHQ1ulAMS2CWevO13M,10146
|
|
452
|
+
agentic_devtools/orchestration/state_schema.py,sha256=h5g5sFKco6zV4wn0uzbfeVDGhTs7CKQS2yEwsGHAEqU,2557
|
|
450
453
|
agentic_devtools/orchestration/execution/__init__.py,sha256=sKqwEaVx7RTgazt-v3XNdSIs_p6JNVtK2HI4cG1IwtI,2037
|
|
451
454
|
agentic_devtools/orchestration/execution/adr_validation.py,sha256=LjYrGrq2MwuVXTUm5npt_zysptc8GMY8zu56eaKKHyM,2525
|
|
452
455
|
agentic_devtools/orchestration/execution/context.py,sha256=1aSNyyppTXIr0_7qzAXZ9NovFvmfqJ-kgsggtXOHYcc,969
|
|
@@ -487,6 +490,19 @@ agentic_devtools/orchestration/llm/testing/__init__.py,sha256=uGQJReTX_bAlCKKnbF
|
|
|
487
490
|
agentic_devtools/orchestration/llm/testing/canonical_hash.py,sha256=V5A506C1Q77MIE9MXFXK0IVvZF_WNkB-PI4DIq88ao0,1882
|
|
488
491
|
agentic_devtools/orchestration/llm/testing/deterministic.py,sha256=ec6uSHRz8A_6r219As6hCN4ow4VSNlRKR4FNVxT6UFw,9004
|
|
489
492
|
agentic_devtools/orchestration/llm/testing/fixture_store.py,sha256=iaZ5Ja-eSXkrB_El50P18zjaCjzfhzm-paVscfRZ8kU,6010
|
|
493
|
+
agentic_devtools/orchestration/nodes/__init__.py,sha256=Vvi2AT5y-PxO81svIIHDOdKBxwIYZi0ntQrTtE3B0Yw,1367
|
|
494
|
+
agentic_devtools/orchestration/nodes/_helpers.py,sha256=MStjuyoME0MF4wzN4jljOty2P2SGvsQNNeGeazAN_o0,7620
|
|
495
|
+
agentic_devtools/orchestration/nodes/checklist_creation.py,sha256=TOSayHe-PEGA463JevDddkY8wW5UQZpmEfwWCINkMNE,4790
|
|
496
|
+
agentic_devtools/orchestration/nodes/commit.py,sha256=kdqWsJxr2BIias9OnPvUVjAUDN6fLluYTV4FfHlBcyI,5401
|
|
497
|
+
agentic_devtools/orchestration/nodes/completion.py,sha256=Zj04-XIhegRDPTxmH8c23UEAyWbnj7YNzJ1kPe0evzQ,5602
|
|
498
|
+
agentic_devtools/orchestration/nodes/implementation.py,sha256=6xbp3lnHOEQp5rGuwFrRgCYXQpiZ_UECZvF5VShT0vk,15161
|
|
499
|
+
agentic_devtools/orchestration/nodes/implementation_review.py,sha256=8NB_bI_0Kna2_Es03COLJTWMVMIgQVBYGCfLH0bVVb4,4242
|
|
500
|
+
agentic_devtools/orchestration/nodes/initiate.py,sha256=4VOVKVOiJwd1WHPAO6z2X_Ziet6qno5e7k6Ym4ca1co,5009
|
|
501
|
+
agentic_devtools/orchestration/nodes/planning.py,sha256=IZORbkXWPx9S-ytzBYIVKcCizIwuMuspmXQ2APOlSCY,8223
|
|
502
|
+
agentic_devtools/orchestration/nodes/pull_request.py,sha256=bFsl6FmOol29blijSPLRI-CaD8GULdc06tHVrK5mkHg,8818
|
|
503
|
+
agentic_devtools/orchestration/nodes/retrieve.py,sha256=cC19NOOalmYaT93Y1S-2DczcA5gRbL7JvA8e5Sw8YSk,7358
|
|
504
|
+
agentic_devtools/orchestration/nodes/setup.py,sha256=Sk9TwBX9Z-Yi2eqnAI_S8bZDCHgCkFoaAYPlRlFdGI0,4162
|
|
505
|
+
agentic_devtools/orchestration/nodes/verification.py,sha256=N7I_Sd8Q-VQq_7VaS9kfeNyun49De1ECQy5SLm7Rlz4,3238
|
|
490
506
|
agentic_devtools/orchestration/policies/__init__.py,sha256=LGB3NBAApJGxMeU9EyF6LvcHvsse74edtwjdrmxg3es,1148
|
|
491
507
|
agentic_devtools/orchestration/policies/approval.py,sha256=DK0jG8HTNcMKCUVdy4S-n5InxZ-lT4qzwjMzPh7aP48,4812
|
|
492
508
|
agentic_devtools/orchestration/policies/blocked.py,sha256=mkNk1AbH89TYSjIPYYjlDSpekopuscjdlrbojc6T5fU,4298
|
|
@@ -889,8 +905,8 @@ agentic_devtools/_bundled_skills/prompts/speckit.plan.prompt.md,sha256=IJja5r2Sd
|
|
|
889
905
|
agentic_devtools/_bundled_skills/prompts/speckit.specify.prompt.md,sha256=eyzE3GRi2hyW30a6xPYOU7q6MJf0skrD-baEGURYqpg,31
|
|
890
906
|
agentic_devtools/_bundled_skills/prompts/speckit.tasks.prompt.md,sha256=iPxXwon5nV6dNcJV8-JoP3PssKUVXctNiG-C9SsRhB8,29
|
|
891
907
|
agentic_devtools/_bundled_skills/prompts/speckit.taskstoissues.prompt.md,sha256=L5Y21PMSoUcPAAdHy2Jnf-wGVdi04jV_pPvyOJZfpm0,37
|
|
892
|
-
agentic_devtools-0.2.
|
|
893
|
-
agentic_devtools-0.2.
|
|
894
|
-
agentic_devtools-0.2.
|
|
895
|
-
agentic_devtools-0.2.
|
|
896
|
-
agentic_devtools-0.2.
|
|
908
|
+
agentic_devtools-0.2.334.dist-info/METADATA,sha256=g0EEpnciUl9Fuz_zxsb0J5ogdNb7w9T3ooPotvLMhmw,29796
|
|
909
|
+
agentic_devtools-0.2.334.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
910
|
+
agentic_devtools-0.2.334.dist-info/entry_points.txt,sha256=Xs0VhRkREzs61FdX63Ed1qa1-WDeBppn7BvMdRIYYZ4,11395
|
|
911
|
+
agentic_devtools-0.2.334.dist-info/licenses/LICENSE,sha256=yBEDdICksxhBYLWoERKp9MTqwGnUF6Ryj9BTLwXTc6k,1082
|
|
912
|
+
agentic_devtools-0.2.334.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|