diagram-to-iac 1.4.0__py3-none-any.whl → 1.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- diagram_to_iac/agents/demonstrator_langgraph/config.yaml +56 -0
- diagram_to_iac/agents/git_langgraph/config.yaml +91 -0
- diagram_to_iac/agents/hello_langgraph/config.yaml +6 -0
- diagram_to_iac/agents/policy_agent/config.yaml +43 -0
- diagram_to_iac/agents/supervisor_langgraph/config.yaml +55 -0
- diagram_to_iac/agents/terraform_langgraph/config.yaml +25 -0
- diagram_to_iac/config.yaml +253 -0
- diagram_to_iac/core/issue_tracker.py +13 -2
- diagram_to_iac/core/memory.py +9 -6
- diagram_to_iac/core/test_config.py +123 -0
- diagram_to_iac/services/observability.py +12 -1
- diagram_to_iac/templates/issue_frontmatter.yml +240 -0
- diagram_to_iac/tools/api_utils.py +12 -2
- diagram_to_iac/tools/git/git_config.yaml +102 -0
- diagram_to_iac/tools/sec_utils.py +95 -38
- diagram_to_iac/tools/shell/shell_config.yaml +41 -0
- diagram_to_iac/tools/tf/terraform_config.yaml +21 -0
- {diagram_to_iac-1.4.0.dist-info → diagram_to_iac-1.6.0.dist-info}/METADATA +9 -3
- {diagram_to_iac-1.4.0.dist-info → diagram_to_iac-1.6.0.dist-info}/RECORD +22 -10
- {diagram_to_iac-1.4.0.dist-info → diagram_to_iac-1.6.0.dist-info}/WHEEL +0 -0
- {diagram_to_iac-1.4.0.dist-info → diagram_to_iac-1.6.0.dist-info}/entry_points.txt +0 -0
- {diagram_to_iac-1.4.0.dist-info → diagram_to_iac-1.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,41 @@
|
|
1
|
+
# Shell Tools specific configuration
|
2
|
+
# Inherits common settings from src/diagram_to_iac/config.yaml
|
3
|
+
# Only tool-specific settings and overrides are defined here
|
4
|
+
|
5
|
+
shell_executor:
|
6
|
+
# Allowed binaries for shell execution (security whitelist)
|
7
|
+
allowed_binaries: ["git", "bash", "sh", "gh", "terraform", "tfsec", "ls", "find", "wc"]
|
8
|
+
|
9
|
+
# Maximum output size before truncation (bytes)
|
10
|
+
max_output_size: 8192
|
11
|
+
|
12
|
+
# Security and path validation settings
|
13
|
+
allow_relative_paths: true
|
14
|
+
restrict_to_workspace: true
|
15
|
+
|
16
|
+
# Logging configuration (specific to shell tools)
|
17
|
+
enable_detailed_logging: true
|
18
|
+
log_command_execution: true
|
19
|
+
log_output_truncation: true
|
20
|
+
|
21
|
+
# Error messages for consistent user feedback
|
22
|
+
error_messages:
|
23
|
+
binary_not_allowed: "Shell executor: Binary '{binary}' is not in the allowed list."
|
24
|
+
invalid_workspace_path: "Shell executor: Path '{path}' is outside the allowed workspace."
|
25
|
+
command_timeout: "Shell executor: Command timed out after {timeout} seconds."
|
26
|
+
execution_failed: "Shell executor: Command failed with exit code {exit_code}."
|
27
|
+
output_truncated: "Shell executor: Output truncated to {size} bytes."
|
28
|
+
|
29
|
+
# Success messages for operation feedback
|
30
|
+
success_messages:
|
31
|
+
command_executed: "Shell executor: Command completed successfully in {duration:.2f}s."
|
32
|
+
output_captured: "Shell executor: Captured {size} bytes of output."
|
33
|
+
|
34
|
+
# Development and testing overrides
|
35
|
+
development:
|
36
|
+
# For local development, allow broader workspace access
|
37
|
+
local_workspace_base: "/home/vindpro/Documents/projects/diagram-to-iac"
|
38
|
+
# Extended timeout for development operations
|
39
|
+
extended_timeout: 120
|
40
|
+
# Additional dev binaries (can be enabled for local testing)
|
41
|
+
dev_binaries: ["ls", "pwd", "echo", "cat", "grep"]
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Terraform Tools specific configuration
|
2
|
+
# Inherits common settings from src/diagram_to_iac/config.yaml
|
3
|
+
# Only tool-specific settings and overrides are defined here
|
4
|
+
|
5
|
+
terraform_executor:
|
6
|
+
# Allowed binaries for terraform execution (security whitelist)
|
7
|
+
allowed_binaries: ["terraform", "git", "bash", "sh"]
|
8
|
+
|
9
|
+
# Terraform-specific settings
|
10
|
+
default_plan_file: "plan.tfplan"
|
11
|
+
default_auto_approve: true
|
12
|
+
|
13
|
+
# Path validation settings
|
14
|
+
restrict_to_workspace: true
|
15
|
+
|
16
|
+
# Terraform-specific logging configuration
|
17
|
+
enable_detailed_logging: true
|
18
|
+
|
19
|
+
# Memory integration
|
20
|
+
store_operations_in_memory: true
|
21
|
+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: diagram-to-iac
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.6.0
|
4
4
|
Summary: Convert architecture diagrams into IaC modules
|
5
5
|
Author-email: vindpro <admin@vindpro.com>
|
6
6
|
Description-Content-Type: text/markdown
|
@@ -9,15 +9,21 @@ Requires-Dist: google_api_python_client==2.174.0
|
|
9
9
|
Requires-Dist: langchain_anthropic==0.3.16
|
10
10
|
Requires-Dist: langchain-core<1.0.0,>=0.3.62
|
11
11
|
Requires-Dist: langchain_google_genai==2.1.5
|
12
|
-
Requires-Dist: langchain_openai==0.3.
|
12
|
+
Requires-Dist: langchain_openai==0.3.27
|
13
13
|
Requires-Dist: langgraph==0.5.0
|
14
|
-
Requires-Dist: openai==1.
|
14
|
+
Requires-Dist: openai==1.93.0
|
15
15
|
Requires-Dist: protobuf>=5.27.0
|
16
16
|
Requires-Dist: pydantic==2.11.7
|
17
17
|
Requires-Dist: PyYAML==6.0.2
|
18
18
|
Requires-Dist: Requests==2.32.4
|
19
19
|
Requires-Dist: typing_extensions==4.14.0
|
20
20
|
Requires-Dist: GitPython<4.0,>=3.1
|
21
|
+
Provides-Extra: test
|
22
|
+
Requires-Dist: pytest>=7.0; extra == "test"
|
23
|
+
Requires-Dist: pytest-cov>=4.0; extra == "test"
|
24
|
+
Requires-Dist: pytest-mock>=3.10; extra == "test"
|
25
|
+
Requires-Dist: pytest-asyncio>=0.21; extra == "test"
|
26
|
+
Requires-Dist: pexpect>=4.8; extra == "test"
|
21
27
|
|
22
28
|
# diagram-to-iac
|
23
29
|
|
@@ -1,5 +1,6 @@
|
|
1
1
|
diagram_to_iac/__init__.py,sha256=gQanRC5O_7AMB-NQFEEd-MU0GICa-dBsgvcJgquKBfs,1427
|
2
2
|
diagram_to_iac/cli.py,sha256=uumG1frF42eCkdLIZxyxQB1x6lDwtG-qKL4vcHnLLXY,400
|
3
|
+
diagram_to_iac/config.yaml,sha256=0DMksgsQt32W3K1DkFXtweK1E11VxJwj1E9-IJCKUUw,7459
|
3
4
|
diagram_to_iac/r2d.py,sha256=I7XSuUtu8TdvAhK4tCMLc3U_3ZtP7DJGfq168aeI3Mk,13208
|
4
5
|
diagram_to_iac/actions/__init__.py,sha256=P1CjjY4FYUA0Tcx8FQNLYYSI9fhv8yKd_TmRGtmhW50,229
|
5
6
|
diagram_to_iac/actions/git_entry.py,sha256=mhY6gYquUPVvyvnTC2S90z_uXEe1asqWLoi1989aB_Q,5403
|
@@ -8,13 +9,17 @@ diagram_to_iac/actions/terraform_agent_entry.py,sha256=gKkX4fIRdBDZpwPQO_v2t1SSO
|
|
8
9
|
diagram_to_iac/agents/__init__.py,sha256=GHInKSPq56ZPYSKsyti6_wk82dhn2hOqfxNHkZZOj_0,735
|
9
10
|
diagram_to_iac/agents/demonstrator_langgraph/__init__.py,sha256=nghMYMEEarfkR0V6AH1fDCV-mXBLnmFP2sO4OPxJ4cI,371
|
10
11
|
diagram_to_iac/agents/demonstrator_langgraph/agent.py,sha256=9ZH2H5iAB2DfMhCr-OzImVZlwoeXIP8RKl6_VG47W2I,35349
|
12
|
+
diagram_to_iac/agents/demonstrator_langgraph/config.yaml,sha256=T1nMi9AQwZxdIWU6NWxttl9CcyEf_Pu6_F-_zCjdVUc,2050
|
11
13
|
diagram_to_iac/agents/git_langgraph/__init__.py,sha256=x6nCnOu-Vcl-qVqW1swhdaE_sQqUSvEUUtWk4eePBUo,295
|
12
14
|
diagram_to_iac/agents/git_langgraph/agent.py,sha256=_lGwyTTgTsS4ZtaQLCceGJa5zeLvux_Hqda1-fqAgXg,49288
|
15
|
+
diagram_to_iac/agents/git_langgraph/config.yaml,sha256=yjxIsD5b5TushF-Yc3iSVJl1fK4GuhErQ0tWRHdkQYc,3690
|
13
16
|
diagram_to_iac/agents/git_langgraph/pr.py,sha256=qXopN5XAF1DIac5vbH-QasihkuAiWmC9JY8pLYlm-sQ,8601
|
14
17
|
diagram_to_iac/agents/hello_langgraph/__init__.py,sha256=lviuDAPJezmpaXR-H7JxfIT9wvg1xO2t6JLyeKSSx0Y,266
|
15
18
|
diagram_to_iac/agents/hello_langgraph/agent.py,sha256=R49yfFGxqMPBBu36ztDH9lBE_-s7VFyRB33gnNSXxek,33777
|
19
|
+
diagram_to_iac/agents/hello_langgraph/config.yaml,sha256=PCOwG9FrbrZdtnc7zM3D43jP-TjudW656_qAz-G_lH0,227
|
16
20
|
diagram_to_iac/agents/policy_agent/__init__.py,sha256=E6QEyIpSHh0PMRNnM0dXuYtz2HZdCJaY5W7UbEwPZBA,380
|
17
21
|
diagram_to_iac/agents/policy_agent/agent.py,sha256=dJLX3q2sYmwUGjs_qQOAlAvTfkEEYUalNCnBz1eeaBw,22296
|
22
|
+
diagram_to_iac/agents/policy_agent/config.yaml,sha256=VmNucLT1JXBSh2FJIeJfAW740AvHAoH-sAGpbjUiYCM,1333
|
18
23
|
diagram_to_iac/agents/policy_agent/integration_example.py,sha256=LtOGshT0VL6yuu5p8UtJ5xqKNweRsLqeyCZK18dnwBA,6703
|
19
24
|
diagram_to_iac/agents/policy_agent/tools/__init__.py,sha256=C9ez49BmMiaAlYs_QrtC0ypMLm1S-Sf9RCRI40-KuCA,282
|
20
25
|
diagram_to_iac/agents/policy_agent/tools/tfsec_tool.py,sha256=YYCRhwVLegeCzJrbah3BYhpKwYPh7PtDxB3kYW8qt10,10116
|
@@ -23,6 +28,7 @@ diagram_to_iac/agents/shell_langgraph/agent.py,sha256=dZWzjVQ9oX_BtNHQ1Zrzy2oQpu
|
|
23
28
|
diagram_to_iac/agents/shell_langgraph/detector.py,sha256=wLw0uDP_V2m1z6SRk7QNCzoUMYCfXwu3DNg8EWue9yk,1493
|
24
29
|
diagram_to_iac/agents/supervisor_langgraph/__init__.py,sha256=iLN60d20cqoXOLyuLvJkiwrzapE84em222Tnyndq2dc,385
|
25
30
|
diagram_to_iac/agents/supervisor_langgraph/agent.py,sha256=1qfgYSQQx1JNgN9ORFCl35NrklRbN7ZcUdP5AbGBsGo,101342
|
31
|
+
diagram_to_iac/agents/supervisor_langgraph/config.yaml,sha256=tdItteHrgTWU3xeHiZ9DVblO5j0G_2Wo63nb-wG8eIo,2334
|
26
32
|
diagram_to_iac/agents/supervisor_langgraph/demonstrator.py,sha256=OT-bElEyLZBedzcc5DtZnp1yhjYVjx4jRzt52f5SoSU,803
|
27
33
|
diagram_to_iac/agents/supervisor_langgraph/github_listener.py,sha256=Ko9dOnS9CUqbjTogEyhEmVhkiaW8OiwLzX6k18lSrac,16377
|
28
34
|
diagram_to_iac/agents/supervisor_langgraph/guards.py,sha256=XzBgjXnwbOgLkGm7AqXX4tQdGBerq_6pKvduKPqIwF0,720
|
@@ -30,25 +36,29 @@ diagram_to_iac/agents/supervisor_langgraph/pat_loop.py,sha256=feY8ZPGQxqkUuHOMSd
|
|
30
36
|
diagram_to_iac/agents/supervisor_langgraph/router.py,sha256=7hZXXEmtvG__w7UAaOhoPaHdubUv-oMKbQdMTMXk-qY,276
|
31
37
|
diagram_to_iac/agents/terraform_langgraph/__init__.py,sha256=N4_cTgk1wNZMS9WU5xZMEm6Dt5GiJ2b0iLx-QUhJd10,390
|
32
38
|
diagram_to_iac/agents/terraform_langgraph/agent.py,sha256=lDaRCLcqShZiUGN25R-T94JTCLYaz4UgT_di3tDA0nE,50593
|
39
|
+
diagram_to_iac/agents/terraform_langgraph/config.yaml,sha256=_jZ0hEegZcXRkm3pDwkPzZkOEi4Gt8ONYwsoFPNc5FQ,643
|
33
40
|
diagram_to_iac/agents/terraform_langgraph/parser.py,sha256=J56CPlpIEIPuDHeAOL3sz4TiIgqLi7raPlX7jwFrAms,2039
|
34
41
|
diagram_to_iac/core/__init__.py,sha256=VjXPYLIS2SAPIDniBkeA2EDK0VHJvdaKIC8dzVneaTM,140
|
35
42
|
diagram_to_iac/core/agent_base.py,sha256=DjZjcfzDpEhfIOki00XwQ-4lPli3OBcQ_7RNKsT7JSI,505
|
36
43
|
diagram_to_iac/core/config_loader.py,sha256=6WWOp6G7_xYUhm1x62sVa-7kFlCthcthbppmeGz1YsM,9276
|
37
44
|
diagram_to_iac/core/enhanced_memory.py,sha256=fJ8r-MREZRnm6Rg01CDCicMEx-dDxDEjJgrk8rnVc5Y,11761
|
38
45
|
diagram_to_iac/core/errors.py,sha256=gZwZocnIcBlS4YccIBdjG8XztRCtMe4Cu6KWxLzebDM,115
|
39
|
-
diagram_to_iac/core/issue_tracker.py,sha256=
|
40
|
-
diagram_to_iac/core/memory.py,sha256=
|
46
|
+
diagram_to_iac/core/issue_tracker.py,sha256=WLp2cJD9PNV0WwWqU0dyHtuNiyKHI9HQvGmRsdnh2c8,2193
|
47
|
+
diagram_to_iac/core/memory.py,sha256=nV0LxDnU1Or41oF3sZzmxpYPknu8lICqkjFGJ8fBs9c,4772
|
41
48
|
diagram_to_iac/core/registry.py,sha256=ibdMz68W7qkwF0dprt4ni5pekgJfAPuRgL85uRU7wHY,26632
|
49
|
+
diagram_to_iac/core/test_config.py,sha256=hktJ2NcRK2i24xinN4slHpH2-WV8w8PoMXgJnDYeCtQ,3467
|
42
50
|
diagram_to_iac/services/__init__.py,sha256=I5R8g7vYX4tCldRf1Jf9vEhm5mylc-MfFicqLnY6a3E,238
|
43
51
|
diagram_to_iac/services/commenter.py,sha256=iXvHXOeih64FbE34PuGPk6fhI4RmC62ZSVtFwmMqiOA,22146
|
44
|
-
diagram_to_iac/services/observability.py,sha256=
|
52
|
+
diagram_to_iac/services/observability.py,sha256=ci2EV7IlC-RinDL8u8S8JGB78ZBN39Q2EXCyiqIbWWc,2250
|
45
53
|
diagram_to_iac/services/step_summary.py,sha256=g3MuMZ51IDubI0oWcF7qMvseNgDS6D90AsKK_1s5xDQ,2808
|
54
|
+
diagram_to_iac/templates/issue_frontmatter.yml,sha256=qjyjUT8jszRIbiX6wmACfhzF-4yTvY1cRtY371o4Ung,7012
|
46
55
|
diagram_to_iac/tools/__init__.py,sha256=F2pcKhoPP5KDeQIGcqKXD1J30KFKc9qxMw1jxzrs9qY,434
|
47
|
-
diagram_to_iac/tools/api_utils.py,sha256=
|
48
|
-
diagram_to_iac/tools/sec_utils.py,sha256=
|
56
|
+
diagram_to_iac/tools/api_utils.py,sha256=c3nOK3eZdUuik5IVvMyGIEG-3oILnyOVd-RubtPdpgE,9616
|
57
|
+
diagram_to_iac/tools/sec_utils.py,sha256=Zzb-I3_qZblv0nIEm4TO0xQCga3Phq44SOGx1ga_wOc,12463
|
49
58
|
diagram_to_iac/tools/text_utils.py,sha256=cnwOXWndd1QAlZC4zOO9jtF3_j4xozDLUTfzfJE9wWQ,9959
|
50
59
|
diagram_to_iac/tools/git/__init__.py,sha256=1V3_Kg_KzQ6er60N-1hqQeigkV8c4AvYq-R60_xmQ4o,1316
|
51
60
|
diagram_to_iac/tools/git/git.py,sha256=0NYz9NqQWf-5YTX7R3nBPyLmzvih-jhd0gYY8KZDmTM,46501
|
61
|
+
diagram_to_iac/tools/git/git_config.yaml,sha256=ekww9EEZigEfZBv-HNSEYP__SDT61yOdBQ0u-Lhquv0,4272
|
52
62
|
diagram_to_iac/tools/hello/__init__.py,sha256=f6GpkiQxvuGaRMm34yQilGACxUI4c5edJQTDjZtskjQ,891
|
53
63
|
diagram_to_iac/tools/hello/cal_utils.py,sha256=B-0iOJHNL1IgYPlWUdrAwEf1r9LUKBAnGyx1xQz05ZE,1507
|
54
64
|
diagram_to_iac/tools/hello/text_utils.py,sha256=ZaVQYw6GVqaq9EDTQfG3gTAudeN8CuFUUb7IETZhUCA,3952
|
@@ -61,9 +71,11 @@ diagram_to_iac/tools/llm_utils/openai_driver.py,sha256=ZqzXEYEutwqRw3qWx-GH85Mj2
|
|
61
71
|
diagram_to_iac/tools/llm_utils/router.py,sha256=ga8xfmPMl_SGINDwazeAAFYTAx9L_IQcVV5AdvqD0dQ,22643
|
62
72
|
diagram_to_iac/tools/shell/__init__.py,sha256=6UZjBcnbPabA6Qy7t4j-dCi3S2sE6sB2bTE9PIL98bA,292
|
63
73
|
diagram_to_iac/tools/shell/shell.py,sha256=ZOJ7Vo3l_R2Gm6Ml2FL0RX__-C_JOsUrLJVvBMwAy9E,21122
|
74
|
+
diagram_to_iac/tools/shell/shell_config.yaml,sha256=9mV1mpOD9mwOx50TXF-ACafeJmBSZaqPo4v-TQxB5U4,1722
|
64
75
|
diagram_to_iac/tools/tf/terraform.py,sha256=j1boWRo6JKpNGf1OwnWoWboO0gMYTizCOHDSxozoFZw,37343
|
65
|
-
diagram_to_iac
|
66
|
-
diagram_to_iac-1.
|
67
|
-
diagram_to_iac-1.
|
68
|
-
diagram_to_iac-1.
|
69
|
-
diagram_to_iac-1.
|
76
|
+
diagram_to_iac/tools/tf/terraform_config.yaml,sha256=Mj5rp5hwLLZ3VmKIqwnjoKvPlaA20OX5plH40DfGG7k,610
|
77
|
+
diagram_to_iac-1.6.0.dist-info/METADATA,sha256=0XLOecf3n1rchEW3kG-7AY_JcCS0rKWhvBmJXV5VmBI,10689
|
78
|
+
diagram_to_iac-1.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
79
|
+
diagram_to_iac-1.6.0.dist-info/entry_points.txt,sha256=DfGCnmgWWGHtQpqU8VqcUWs5k_be-bfO67z1vOuTitA,277
|
80
|
+
diagram_to_iac-1.6.0.dist-info/top_level.txt,sha256=k1cV0YODiCUU46qlmbQaquMcbMXhNm05NZLxsinDUBA,15
|
81
|
+
diagram_to_iac-1.6.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|