runbooks 0.7.5__py3-none-any.whl → 0.7.6__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.
- runbooks/__init__.py +1 -1
- runbooks/cfat/__init__.py +2 -2
- runbooks/finops/__init__.py +1 -1
- runbooks/finops/cli.py +1 -1
- runbooks/operate/__init__.py +2 -2
- runbooks/remediation/__init__.py +2 -2
- runbooks/remediation/acm_remediation.py +1 -1
- runbooks/remediation/base.py +1 -1
- runbooks/remediation/cloudtrail_remediation.py +1 -1
- runbooks/remediation/cognito_remediation.py +1 -1
- runbooks/remediation/dynamodb_remediation.py +1 -1
- runbooks/remediation/ec2_remediation.py +1 -1
- runbooks/remediation/ec2_unattached_ebs_volumes.py +1 -1
- runbooks/remediation/kms_enable_key_rotation.py +1 -1
- runbooks/remediation/kms_remediation.py +1 -1
- runbooks/remediation/lambda_remediation.py +1 -1
- runbooks/remediation/multi_account.py +1 -1
- runbooks/remediation/rds_remediation.py +1 -1
- runbooks/remediation/requirements.txt +2 -2
- runbooks/remediation/s3_block_public_access.py +1 -1
- runbooks/remediation/s3_enable_access_logging.py +1 -1
- runbooks/remediation/s3_encryption.py +1 -1
- runbooks/remediation/s3_remediation.py +1 -1
- runbooks/security/__init__.py +1 -1
- {runbooks-0.7.5.dist-info → runbooks-0.7.6.dist-info}/METADATA +4 -2
- {runbooks-0.7.5.dist-info → runbooks-0.7.6.dist-info}/RECORD +42 -62
- {runbooks-0.7.5.dist-info → runbooks-0.7.6.dist-info}/top_level.txt +0 -1
- jupyter-agent/.env +0 -2
- jupyter-agent/.env.template +0 -2
- jupyter-agent/.gitattributes +0 -35
- jupyter-agent/.gradio/certificate.pem +0 -31
- jupyter-agent/README.md +0 -16
- jupyter-agent/__main__.log +0 -8
- jupyter-agent/app.py +0 -256
- jupyter-agent/cloudops-agent.png +0 -0
- jupyter-agent/ds-system-prompt.txt +0 -154
- jupyter-agent/jupyter-agent.png +0 -0
- jupyter-agent/llama3_template.jinja +0 -123
- jupyter-agent/requirements.txt +0 -9
- jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb +0 -68
- jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb +0 -91
- jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb +0 -91
- jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb +0 -57
- jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb +0 -53
- jupyter-agent/tmp/jupyter-agent.ipynb +0 -27
- jupyter-agent/utils.py +0 -409
- runbooks/inventory/aws_organization.png +0 -0
- /runbooks/inventory/{tests → Tests}/common_test_data.py +0 -0
- /runbooks/inventory/{tests → Tests}/common_test_functions.py +0 -0
- /runbooks/inventory/{tests → Tests}/script_test_data.py +0 -0
- /runbooks/inventory/{tests → Tests}/setup.py +0 -0
- /runbooks/inventory/{tests → Tests}/src.py +0 -0
- /runbooks/inventory/{tests/test_inventory_modules.py → Tests/test_Inventory_Modules.py} +0 -0
- /runbooks/inventory/{tests → Tests}/test_cfn_describe_stacks.py +0 -0
- /runbooks/inventory/{tests → Tests}/test_ec2_describe_instances.py +0 -0
- /runbooks/inventory/{tests → Tests}/test_lambda_list_functions.py +0 -0
- /runbooks/inventory/{tests → Tests}/test_moto_integration_example.py +0 -0
- /runbooks/inventory/{tests → Tests}/test_org_list_accounts.py +0 -0
- /runbooks/inventory/{Inventory_Modules.py → inventory_modules.py} +0 -0
- {runbooks-0.7.5.dist-info → runbooks-0.7.6.dist-info}/WHEEL +0 -0
- {runbooks-0.7.5.dist-info → runbooks-0.7.6.dist-info}/entry_points.txt +0 -0
- {runbooks-0.7.5.dist-info → runbooks-0.7.6.dist-info}/licenses/LICENSE +0 -0
runbooks/__init__.py
CHANGED
@@ -67,7 +67,7 @@ try:
|
|
67
67
|
__version__ = _pkg_version("runbooks")
|
68
68
|
except Exception:
|
69
69
|
# Fallback if metadata is unavailable during editable installs
|
70
|
-
__version__ = "0.7.
|
70
|
+
__version__ = "0.7.6"
|
71
71
|
|
72
72
|
# Core module exports
|
73
73
|
from runbooks.config import RunbooksConfig, load_config, save_config
|
runbooks/cfat/__init__.py
CHANGED
@@ -34,7 +34,7 @@ Example:
|
|
34
34
|
print(f"Critical Issues: {report.summary.critical_issues}")
|
35
35
|
```
|
36
36
|
|
37
|
-
Version: 0.7.
|
37
|
+
Version: 0.7.6 (Latest with enhanced CLI integration, rust tooling, and modern dependency stack)
|
38
38
|
"""
|
39
39
|
|
40
40
|
# Core assessment engine
|
@@ -53,7 +53,7 @@ from runbooks.cfat.models import (
|
|
53
53
|
from runbooks.cfat.runner import AssessmentRunner
|
54
54
|
|
55
55
|
# Version info
|
56
|
-
__version__ = "0.7.
|
56
|
+
__version__ = "0.7.6"
|
57
57
|
__author__ = "CloudOps Runbooks Team"
|
58
58
|
|
59
59
|
# Public API exports
|
runbooks/finops/__init__.py
CHANGED
@@ -12,7 +12,7 @@ This module provides terminal-based AWS cost monitoring with features including:
|
|
12
12
|
Integrated as a submodule of CloudOps Runbooks for enterprise FinOps automation.
|
13
13
|
"""
|
14
14
|
|
15
|
-
__version__ = "0.7.
|
15
|
+
__version__ = "0.7.6"
|
16
16
|
|
17
17
|
# Core components
|
18
18
|
# AWS client utilities
|
runbooks/finops/cli.py
CHANGED
runbooks/operate/__init__.py
CHANGED
@@ -169,7 +169,7 @@ runbooks operate iam update-roles-cross-accounts --role-name deployment-role
|
|
169
169
|
- **Platform Teams**: Self-service infrastructure capabilities
|
170
170
|
- **Security Teams**: Compliance automation and policy enforcement
|
171
171
|
|
172
|
-
Version: 0.7.
|
172
|
+
Version: 0.7.6 - Enterprise Production Ready
|
173
173
|
Compatibility: AWS SDK v3, Python 3.8+, Multi-deployment ready
|
174
174
|
"""
|
175
175
|
|
@@ -183,7 +183,7 @@ from runbooks.operate.s3_operations import S3Operations
|
|
183
183
|
from runbooks.operate.tagging_operations import TaggingOperations
|
184
184
|
|
185
185
|
# Version info
|
186
|
-
__version__ = "0.7.
|
186
|
+
__version__ = "0.7.6"
|
187
187
|
__author__ = "CloudOps Runbooks Team"
|
188
188
|
|
189
189
|
# Public API exports
|
runbooks/remediation/__init__.py
CHANGED
@@ -41,7 +41,7 @@ automation lifecycle by bridging assessment findings to automated fixes.
|
|
41
41
|
- CloudTrail Policy Analysis & Reversion, Resource Scanning
|
42
42
|
- Workspace Management, Cross-Service Utilities
|
43
43
|
|
44
|
-
Version: 0.7.
|
44
|
+
Version: 0.7.6 - Enterprise Production Ready
|
45
45
|
Compatibility: AWS SDK v3, Python 3.8+, Multi-deployment ready
|
46
46
|
"""
|
47
47
|
|
@@ -66,7 +66,7 @@ from runbooks.remediation.rds_remediation import RDSSecurityRemediation
|
|
66
66
|
from runbooks.remediation.s3_remediation import S3SecurityRemediation
|
67
67
|
|
68
68
|
# Version info
|
69
|
-
__version__ = "0.7.
|
69
|
+
__version__ = "0.7.6"
|
70
70
|
__author__ = "CloudOps Runbooks Team"
|
71
71
|
|
72
72
|
# Public API exports
|
runbooks/remediation/base.py
CHANGED
@@ -60,7 +60,7 @@ Each remediation operation includes compliance framework mapping:
|
|
60
60
|
- **AWS Well-Architected Framework**: Pillar and principle mapping
|
61
61
|
- **CheckPoint CloudGuard/Dome9**: Rule-by-rule remediation mapping
|
62
62
|
|
63
|
-
Version: 0.7.
|
63
|
+
Version: 0.7.6 - Enterprise Production Ready
|
64
64
|
Compatibility: AWS SDK v3, Python 3.8+, Multi-deployment ready
|
65
65
|
"""
|
66
66
|
|
@@ -31,7 +31,7 @@ python ec2_unattached_ebs_volumes.py
|
|
31
31
|
⚠️ **DATA LOSS**: Deleted volumes cannot be recovered
|
32
32
|
⚠️ **COST IMPACT**: Verify volumes are truly unused before deletion
|
33
33
|
|
34
|
-
Version: 0.7.
|
34
|
+
Version: 0.7.6 - Enterprise Production Ready
|
35
35
|
Compliance: CIS AWS Foundations, Cost Optimization Best Practices
|
36
36
|
"""
|
37
37
|
|
@@ -43,7 +43,7 @@ python kms_enable_key_rotation.py --rotation-days 365
|
|
43
43
|
⚠️ **COST IMPACT**: Key rotation may impact application performance
|
44
44
|
⚠️ **TESTING**: Verify applications handle key rotation gracefully
|
45
45
|
|
46
|
-
Version: 0.7.
|
46
|
+
Version: 0.7.6 - Enterprise Production Ready
|
47
47
|
Compliance: CIS AWS Foundations 3.8, NIST SP 800-57
|
48
48
|
"""
|
49
49
|
|
@@ -24,7 +24,7 @@ contourpy==1.2.0
|
|
24
24
|
cryptography==42.0.4
|
25
25
|
debugpy==1.8.1
|
26
26
|
decorator==5.1.1
|
27
|
-
defusedxml==0.7.
|
27
|
+
defusedxml==0.7.6
|
28
28
|
executing==2.0.1
|
29
29
|
fastjsonschema==2.19.1
|
30
30
|
fqdn==1.5.1
|
@@ -74,7 +74,7 @@ platformdirs==4.2.0
|
|
74
74
|
prompt-toolkit==3.0.43
|
75
75
|
protobuf==4.25.3
|
76
76
|
psutil==5.9.8
|
77
|
-
ptyprocess==0.7.
|
77
|
+
ptyprocess==0.7.6
|
78
78
|
publicsuffix2==2.20191221
|
79
79
|
pure-eval==0.2.2
|
80
80
|
pyasn1==0.5.1
|
@@ -47,7 +47,7 @@ python s3_block_public_access.py --block
|
|
47
47
|
⚠️ **WEBSITE HOSTING**: Will disable S3 static website hosting features
|
48
48
|
⚠️ **CDN INTEGRATION**: May affect CloudFront and other CDN configurations
|
49
49
|
|
50
|
-
Version: 0.7.
|
50
|
+
Version: 0.7.6 - Enterprise Production Ready
|
51
51
|
Compliance: CIS AWS Foundations 2.1.5, NIST SP 800-53
|
52
52
|
"""
|
53
53
|
|
@@ -53,7 +53,7 @@ python s3_enable_access_logging.py --log-bucket audit-logs --log-prefix access-l
|
|
53
53
|
⚠️ **COST IMPACT**: Access logging incurs additional storage costs
|
54
54
|
⚠️ **RETENTION**: Consider lifecycle policies for log management
|
55
55
|
|
56
|
-
Version: 0.7.
|
56
|
+
Version: 0.7.6 - Enterprise Production Ready
|
57
57
|
Compliance: CIS AWS Foundations 3.1, SOC2 A1.1, PCI DSS 10.2
|
58
58
|
"""
|
59
59
|
|
@@ -53,7 +53,7 @@ python s3_encryption.py --encryption-type sse-kms --create-kms-key
|
|
53
53
|
⚠️ **KEY MANAGEMENT**: Customer-managed keys require proper lifecycle management
|
54
54
|
⚠️ **COMPLIANCE**: Some regulations require specific encryption types
|
55
55
|
|
56
|
-
Version: 0.7.
|
56
|
+
Version: 0.7.6 - Enterprise Production Ready
|
57
57
|
Compliance: CIS AWS Foundations 2.1.1, SOC2 A1.2, PCI DSS 3.4
|
58
58
|
"""
|
59
59
|
|
@@ -46,7 +46,7 @@ Migrated and enhanced from these original remediation scripts:
|
|
46
46
|
- **D9.AWS.S3.02**: S3 bucket public access prevention
|
47
47
|
- **D9.AWS.S3.03**: S3 bucket encryption enforcement
|
48
48
|
|
49
|
-
Version: 0.7.
|
49
|
+
Version: 0.7.6 - Enterprise Production Ready
|
50
50
|
"""
|
51
51
|
|
52
52
|
import json
|
runbooks/security/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: runbooks
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.6
|
4
4
|
Summary: CloudOps Automation Toolkit with Enhanced Cloud Foundations Assessment for DevOps and SRE teams.
|
5
5
|
Author-email: Maintainers <nnthanh101@gmail.com>
|
6
6
|
License-Expression: Apache-2.0
|
@@ -34,8 +34,9 @@ Requires-Dist: markdown>=3.7.0
|
|
34
34
|
Requires-Dist: prettytable>=3.16.0
|
35
35
|
Requires-Dist: simplejson>=3.20.1
|
36
36
|
Requires-Dist: python-dateutil>=2.9.0
|
37
|
-
Requires-Dist: loguru>=0.7.
|
37
|
+
Requires-Dist: loguru>=0.7.3
|
38
38
|
Requires-Dist: tqdm>=4.67.1
|
39
|
+
Requires-Dist: graphviz>=0.20.1
|
39
40
|
Requires-Dist: rich>=14.0.0
|
40
41
|
Requires-Dist: reportlab>=3.6.1
|
41
42
|
Requires-Dist: requests>=2.32.0
|
@@ -43,6 +44,7 @@ Requires-Dist: packaging>=21.0
|
|
43
44
|
Requires-Dist: pyyaml>=6.0.2
|
44
45
|
Requires-Dist: jmespath>=1.0.1
|
45
46
|
Requires-Dist: urllib3<1.27,>=1.26.18
|
47
|
+
Requires-Dist: mcp>=1.12.3
|
46
48
|
Dynamic: license-file
|
47
49
|
|
48
50
|
# 🚀 CloudOps Runbooks - Enterprise AWS Automation Toolkit
|
@@ -1,30 +1,11 @@
|
|
1
1
|
conftest.py,sha256=HTnQMw9wxefkvX5q4yG8EUH2qVLJBnC9QCt3UCltw7I,586
|
2
|
-
|
3
|
-
jupyter-agent/.env.template,sha256=xU2MQ80zvx2mYr_n3alar7oop9mdhonU6xNVEQGlzwY,71
|
4
|
-
jupyter-agent/.gitattributes,sha256=Ea1--iSXXuSww8OjjtGHN_Blil91oKlnh7V2p4oCM2E,1519
|
5
|
-
jupyter-agent/README.md,sha256=WJ7zUhaFaDl26cH6mcWimqkpN04TJhIH4TKiyd6MDI0,370
|
6
|
-
jupyter-agent/__main__.log,sha256=TDRITkba40x0Lby7EkWncbIs4i8g1sztDD_heSj62aI,710
|
7
|
-
jupyter-agent/app.py,sha256=8UR8AzqrJYHWr2bpj-mOSuPHLYzd8AWVJbxnM43h5Q8,8727
|
8
|
-
jupyter-agent/cloudops-agent.png,sha256=A4e0WfpihWVHFtz0Yj09Y9uci-IWF4gdpnZifACzdT8,408376
|
9
|
-
jupyter-agent/ds-system-prompt.txt,sha256=YZydzHqxaHgXVPORiltlWDg3rK-c-a2Dlx0BAj2dfsg,5034
|
10
|
-
jupyter-agent/jupyter-agent.png,sha256=KJjLvoWAnuhSaEsWBW8PHwouzk2sVC84PTtSuMDEg3o,438042
|
11
|
-
jupyter-agent/llama3_template.jinja,sha256=gywY7mJ14M-VeCSs0LLFO-Nt3S7XEJaQQ-KuzorzuEs,5198
|
12
|
-
jupyter-agent/requirements.txt,sha256=OrwjCjWcVo8lp82yY6Sor2r46mxhqMfkFiH6PBphtA0,173
|
13
|
-
jupyter-agent/utils.py,sha256=MGsDPI6a2OYc39wwSeg8oAM69U_k8mMSzegwT1cyp_0,13067
|
14
|
-
jupyter-agent/.gradio/certificate.pem,sha256=IrVXonBVszYGtlWfN3A5KNPkrXnxELQH0EmG4YQ1Q9E,1939
|
15
|
-
jupyter-agent/tmp/jupyter-agent.ipynb,sha256=jrqDAZIRUDqcCLyrV_Jb435WIipb7OB5FjxULP0mynI,612
|
16
|
-
jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb,sha256=hDZB4yLCsQcTMXMNZhNCVAmuXugTXJlXlDu-5BnNZDM,70481
|
17
|
-
jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb,sha256=KQ8slJljjsUjsE-COrh-jZFoaEg5jwP6ukk6VX6-C0I,89492
|
18
|
-
jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb,sha256=XUM3BR1BJ8qp37rKDft-f9rXCGiG6V7_WOoF6TbBUNw,110860
|
19
|
-
jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb,sha256=tPE_Uwx8ZQscqVaM0gfnSgsxNc9RkrcisJKICW1ah38,9686
|
20
|
-
jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb,sha256=7tibJV-03sU3Xn4oRjt6E2QOQIt57E0xxY0hcoNctqg,75815
|
21
|
-
runbooks/__init__.py,sha256=tjccXsn7a6V-Y3q6jaXqiQ2q8-sMdbgB1Zt4ILd6cFI,4600
|
2
|
+
runbooks/__init__.py,sha256=v10iKXkuZf8wdK5VgNSnVyR4uwNjKHInhbNRHK0YvS0,4600
|
22
3
|
runbooks/__main__.py,sha256=0hTPUA9KkLm_H_COqaIpNzXvC4Lv5b_XYYBV6fUFDrM,241
|
23
4
|
runbooks/base.py,sha256=SE31vwKB_CW2C0w2Onb7QfjU2xJXcUbiYTSHBDWT7KE,11593
|
24
5
|
runbooks/config.py,sha256=63Bct1jASQG3mjPTNnzfJwTMgXzG8aQqVsaku6ugZR0,7839
|
25
6
|
runbooks/main.py,sha256=YOG-bPNiDYtL4XCZozGEkjyVP61GPwCZ1IbMq8mLlY4,148252
|
26
7
|
runbooks/cfat/README.md,sha256=rP_FNuKB8xKfj89dPKf43_s_-ScqrmlQ_ZPXj6h0pfo,11089
|
27
|
-
runbooks/cfat/__init__.py,sha256=
|
8
|
+
runbooks/cfat/__init__.py,sha256=aAiIi6bCx0G3QbZfc5jxLDNpCixnl78eyIi9awCCKPI,1922
|
28
9
|
runbooks/cfat/app.ts,sha256=EwpA9bQzkoH1qqTJ_Tco47PwVG2zTv4g8ZmEGYpWYlU,27785
|
29
10
|
runbooks/cfat/cli.py,sha256=37KUY-ObzMcB7xYs2R8Q40djLFnBgLhBnUXujvn2M7s,3483
|
30
11
|
runbooks/cfat/models.py,sha256=gh-7XmqEH9PvqrmxtmIhWoKGpGcFTWr1pah_9iNrLxM,37960
|
@@ -87,9 +68,9 @@ runbooks/cfat/tests/test_integration.py,sha256=L4kkWW41Jsuzn4Tv-z_a5cY6xOo_aHzCA
|
|
87
68
|
runbooks/cfat/tests/test_models.py,sha256=16Dcdty82_yotJ2ngBbgydCy9BDamxtMZrs4a1t-mVM,18267
|
88
69
|
runbooks/cfat/tests/test_reporting.py,sha256=ysPZSAFgCQ7oIkOdBxUrlCiyZBhWDpcnp0I2cv3k9_Q,12631
|
89
70
|
runbooks/finops/README.md,sha256=Fm9dpPujttPLJ2ES2d_zDUZ-YrVqVkeaAM1gjlcQxCw,12983
|
90
|
-
runbooks/finops/__init__.py,sha256=
|
71
|
+
runbooks/finops/__init__.py,sha256=X5nVDeHNHIV2_9NrGQHulepYKh_V5r5jBj46R_Gc8dg,2265
|
91
72
|
runbooks/finops/aws_client.py,sha256=o9ShoAH_V1QKBlq2Li4VTrjnXNj3ezgGvenJAiPUbjY,9379
|
92
|
-
runbooks/finops/cli.py,sha256=
|
73
|
+
runbooks/finops/cli.py,sha256=c0FJDJULhmpNdteAlHoxrwtxalNxkNM4dKVyJXpwlPg,5227
|
93
74
|
runbooks/finops/cost_processor.py,sha256=BNyG9HpkAI27UFcoRurP3Tz1Q4BV9u_fVk6wVzf0ysU,15042
|
94
75
|
runbooks/finops/dashboard_runner.py,sha256=JDNx-MqmDuGEZXPhRTDaxlAcjzmvMpjXhOEwIkj8n2A,18281
|
95
76
|
runbooks/finops/helpers.py,sha256=TlFXLZ7oJViYlKWk7MpbWDVlG71jM8C61dM8r5yjNMw,12805
|
@@ -99,13 +80,11 @@ runbooks/finops/types.py,sha256=Tk7sMVh-9LXxrU6IKDa6RMlxK7H3HkWUKvs1yctD_yQ,1592
|
|
99
80
|
runbooks/finops/visualisations.py,sha256=BI6cBsKSNUcjqnEukMzHxZzqyv12w3TRj2zvN53-Rbk,2737
|
100
81
|
runbooks/inventory/.gitignore,sha256=qqVQodfb6iNuPRM7fsl7lvqxrJaatKNQqQmX7s1_PPg,5563
|
101
82
|
runbooks/inventory/ArgumentsClass.py,sha256=BwquO-iYZNS_fVxgASrksanzoAN_NPCzRpTAyohRLX0,8621
|
102
|
-
runbooks/inventory/Inventory_Modules.py,sha256=4bBfezmCtsT-r0YU7Rhfv94rxhfPfStrUkPF4q009uI,285209
|
103
83
|
runbooks/inventory/README.md,sha256=gCubMJ8mp09hwPccr2GDbUgiFr8CoCsakp1kHHAApTU,43221
|
104
84
|
runbooks/inventory/__init__.py,sha256=J-MoV_B5ScwlqfLEZv7ZRF7iTai5Hsya0c4tiNrrVE4,2039
|
105
85
|
runbooks/inventory/account_class.py,sha256=wvYNeiXHq6tk8Pqa95Aa91zAtuBXcnE51NonzDueuaM,26361
|
106
86
|
runbooks/inventory/all_my_instances_wrapper.py,sha256=B_nHnXOFle6_LU1YnZd38uMZNV6pIONh4EvCyO-lwzw,5723
|
107
87
|
runbooks/inventory/aws_decorators.py,sha256=_3QWqih_J6tgs7_dnJwp7Al7OI0qImZpFMyO4E-bMZE,8605
|
108
|
-
runbooks/inventory/aws_organization.png,sha256=-LUsSMk9L-sPF6K3Z__FOnHIP7u4nQW9Q1rcTw1EzX8,1140649
|
109
88
|
runbooks/inventory/check_cloudtrail_compliance.py,sha256=rQGKuJefqBa1LCfTsVgKJ_GiP3HKqgpYX77iclOV2ko,33652
|
110
89
|
runbooks/inventory/check_controltower_readiness.py,sha256=2elNsYY_PYhcQeyjcnB4NTbZVUrHnXU70OjrzwOpwVI,56076
|
111
90
|
runbooks/inventory/check_landingzone_readiness.py,sha256=K7UayaO7QRIhNa0ewZk-Ks4iRAjUPVgMFfjkbgHVOYw,35934
|
@@ -120,6 +99,7 @@ runbooks/inventory/find_ec2_security_groups.py,sha256=f-I5Xp4e3A36za4sKEwYm_Wkle
|
|
120
99
|
runbooks/inventory/find_landingzone_versions.py,sha256=4oYfgmH4fJ40F3YuQKAhCcBuLHRgie4fTLCftPaQXhE,10277
|
121
100
|
runbooks/inventory/find_vpc_flow_logs.py,sha256=BRwjqb4BD0K97uv8cabpn5nN1iL0DmVkClmX01hAfoA,65119
|
122
101
|
runbooks/inventory/inventory.sh,sha256=WXmBEpi9OpTu24US9LhW5PC-z6jSwTN0jdwlt-p3aok,23939
|
102
|
+
runbooks/inventory/inventory_modules.py,sha256=4bBfezmCtsT-r0YU7Rhfv94rxhfPfStrUkPF4q009uI,285209
|
123
103
|
runbooks/inventory/list_cfn_stacks.py,sha256=Drgi_7RUaIZA-Z4L-eMEvmmT6nqlj-oGvwBOGOmRKlw,22399
|
124
104
|
runbooks/inventory/list_cfn_stackset_operation_results.py,sha256=1kjuv5uL-ioIWa7Dkx45XAEw3aFRClFTG8Qx1r44pSQ,12847
|
125
105
|
runbooks/inventory/list_cfn_stackset_operations.py,sha256=lYsrZ44xiHkmjKdDQLaVzm7zcabGG91N-7EWtzmWcVU,38317
|
@@ -151,6 +131,17 @@ runbooks/inventory/requirements.txt,sha256=W8mvfeKf86CfTIeRJyqa978xJ77Cjfh4mlQ3G
|
|
151
131
|
runbooks/inventory/run_on_multi_accounts.py,sha256=ecyzqffcHAoWovjoUlT643duC3sCdpCAz6z-S8vEIwU,8586
|
152
132
|
runbooks/inventory/verify_ec2_security_groups.py,sha256=iFX5AlRJWaU0DP-gwdOrsXc3zNwsRZbjZeyjcn0YMUA,68221
|
153
133
|
runbooks/inventory/LandingZone/delete_lz.py,sha256=hMwv-T8RTjQQdx9oLelABibFHGD9TFR0xkI_Hgfabw0,48920
|
134
|
+
runbooks/inventory/Tests/common_test_data.py,sha256=M4qRXxYu-WphsJnnumG0P7ENK3OX1Gh2AoCxFN71U4s,180677
|
135
|
+
runbooks/inventory/Tests/common_test_functions.py,sha256=WKeLHuAclroH1Jhc2RyDU9L7d9L4nH6fIFS2NjNtokE,8710
|
136
|
+
runbooks/inventory/Tests/script_test_data.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
|
+
runbooks/inventory/Tests/setup.py,sha256=hig677ZZWySuWa5nlL1McAjLR3JMaFP1w6ysS9fISeg,698
|
138
|
+
runbooks/inventory/Tests/src.py,sha256=5JhsRWGkrukMa8vGXbei64z_0j9K7c7uNmHk-TK8ZXE,641
|
139
|
+
runbooks/inventory/Tests/test_Inventory_Modules.py,sha256=OcGqt_Za3Se2hRbDidbcd-WZQfR3IOhsLBnAOsNhz14,2164
|
140
|
+
runbooks/inventory/Tests/test_cfn_describe_stacks.py,sha256=0Lt9pU8rlhnDo1-AnQLlSYSIzr3jl-NB6NUjj8QnRmI,7793
|
141
|
+
runbooks/inventory/Tests/test_ec2_describe_instances.py,sha256=TPwK-sW3H3da30s1e-toJRpKJDhAZqE7l9sbh99buKc,8314
|
142
|
+
runbooks/inventory/Tests/test_lambda_list_functions.py,sha256=4sABlsEVTxGzGtFVT5k4K5bYzK9YsX828_2_RkeHQas,3163
|
143
|
+
runbooks/inventory/Tests/test_moto_integration_example.py,sha256=mBS6Tnr5Wd2EfzhhnbCqZxMEsPdjNPtu8PDrzsMT3JA,9357
|
144
|
+
runbooks/inventory/Tests/test_org_list_accounts.py,sha256=otlaEcVED1bJEkwxWu0zrmMDM9JX5fvw72V0kD17j38,2233
|
154
145
|
runbooks/inventory/collectors/__init__.py,sha256=gmRyAeXqZt-0KgBD4eh77zQs-dcxpKVci0470yZInMg,1101
|
155
146
|
runbooks/inventory/collectors/aws_compute.py,sha256=MzxNqE1YWRdTVtLyJNNXgWabyvLU1kKoiKpe9Cn0RdU,21018
|
156
147
|
runbooks/inventory/collectors/aws_management.py,sha256=kRB3mxCGXq3TfXlINzdhxIb0sB6CzGoO698JeuyKLWc,32932
|
@@ -163,22 +154,11 @@ runbooks/inventory/models/__init__.py,sha256=LjW8NAHcDeBFvjXjAZwoo73xwQHid8f1-Fi
|
|
163
154
|
runbooks/inventory/models/account.py,sha256=G-7NtoRi8VRX6B0VoMF4qirwTNU_3ukMRGThylQKEbA,7109
|
164
155
|
runbooks/inventory/models/inventory.py,sha256=zNaQLvpshWeljbnbaTAeQ_6rJZ4HDPpwPovY7LfwrFY,11434
|
165
156
|
runbooks/inventory/models/resource.py,sha256=mSTpOv0EE5t-jZtLofsovXb1bpG9EE2HTU_0KjeE8Jo,8539
|
166
|
-
runbooks/inventory/tests/common_test_data.py,sha256=M4qRXxYu-WphsJnnumG0P7ENK3OX1Gh2AoCxFN71U4s,180677
|
167
|
-
runbooks/inventory/tests/common_test_functions.py,sha256=WKeLHuAclroH1Jhc2RyDU9L7d9L4nH6fIFS2NjNtokE,8710
|
168
|
-
runbooks/inventory/tests/script_test_data.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
169
|
-
runbooks/inventory/tests/setup.py,sha256=hig677ZZWySuWa5nlL1McAjLR3JMaFP1w6ysS9fISeg,698
|
170
|
-
runbooks/inventory/tests/src.py,sha256=5JhsRWGkrukMa8vGXbei64z_0j9K7c7uNmHk-TK8ZXE,641
|
171
|
-
runbooks/inventory/tests/test_cfn_describe_stacks.py,sha256=0Lt9pU8rlhnDo1-AnQLlSYSIzr3jl-NB6NUjj8QnRmI,7793
|
172
|
-
runbooks/inventory/tests/test_ec2_describe_instances.py,sha256=TPwK-sW3H3da30s1e-toJRpKJDhAZqE7l9sbh99buKc,8314
|
173
|
-
runbooks/inventory/tests/test_inventory_modules.py,sha256=OcGqt_Za3Se2hRbDidbcd-WZQfR3IOhsLBnAOsNhz14,2164
|
174
|
-
runbooks/inventory/tests/test_lambda_list_functions.py,sha256=4sABlsEVTxGzGtFVT5k4K5bYzK9YsX828_2_RkeHQas,3163
|
175
|
-
runbooks/inventory/tests/test_moto_integration_example.py,sha256=mBS6Tnr5Wd2EfzhhnbCqZxMEsPdjNPtu8PDrzsMT3JA,9357
|
176
|
-
runbooks/inventory/tests/test_org_list_accounts.py,sha256=otlaEcVED1bJEkwxWu0zrmMDM9JX5fvw72V0kD17j38,2233
|
177
157
|
runbooks/inventory/utils/__init__.py,sha256=c6bQD-Foq3U8tw-JK8PYR-o8K5MwJ3mJWkKi2UbDLtg,830
|
178
158
|
runbooks/inventory/utils/aws_helpers.py,sha256=rg1L69An3PLVWrTTiHGjL29Z8N51rOVYLostN8CCcwk,17124
|
179
159
|
runbooks/inventory/utils/threading_utils.py,sha256=ckizvb0QSWx1xkDanvaoUOCHaXOm2E6Abg1VQFxfJrU,16067
|
180
160
|
runbooks/inventory/utils/validation.py,sha256=HoQmEr9CSEfS1yF0uyCAW5TKlG-u9-t-YRouThSBxeA,19803
|
181
|
-
runbooks/operate/__init__.py,sha256=
|
161
|
+
runbooks/operate/__init__.py,sha256=fqFgURzM0H13TaIfycJlMQHIk78mVfHFCzvJkhcTTp0,7258
|
182
162
|
runbooks/operate/base.py,sha256=-pgIOqCzCH-0nNiZWVvp4efy26g7K4l2KgDMcpJRhng,10154
|
183
163
|
runbooks/operate/cloudformation_operations.py,sha256=U6zDeDnnGUiOu1GXCYtC_5g2LJMqzic6RX61VsYejfw,24481
|
184
164
|
runbooks/operate/cloudwatch_operations.py,sha256=CHqJ-vf9dh_AhnEZ6lrr9BYM4QKiMGYnSa7Qc4lwXPo,19071
|
@@ -191,50 +171,50 @@ runbooks/operate/tags.json,sha256=-Y77SDvrvn0sCdsxgdRwu0sl0mih2Ib_N6nGi-UtE5U,51
|
|
191
171
|
runbooks/remediation/CLAUDE.md,sha256=E7u7DX4nso7yN4suoV7HS1T52058zdUNfiExZkEVd1o,3999
|
192
172
|
runbooks/remediation/DOME9.md,sha256=g2qMJmkoMdfUZWoGufo-tNXPLFV9utDlsWatAKsflnY,43743
|
193
173
|
runbooks/remediation/README.md,sha256=qoO6D8qaF5o5K-yBoGfslu8ChaijWnWJaqh_AveqLV8,386
|
194
|
-
runbooks/remediation/__init__.py,sha256=
|
174
|
+
runbooks/remediation/__init__.py,sha256=xtmVEgarrkYU66tp_jT0rM-pMxpOQq69nOfFI-qsAx0,3422
|
195
175
|
runbooks/remediation/acm_cert_expired_unused.py,sha256=_SfttBHKMBfXNtI1006Ci1dCYDgqhCEGGI5Ua3RvQGk,3541
|
196
|
-
runbooks/remediation/acm_remediation.py,sha256=
|
176
|
+
runbooks/remediation/acm_remediation.py,sha256=0A3-aOBo1A5CkusTs77136m93TzPWRkFjN6-xXYUNrI,38824
|
197
177
|
runbooks/remediation/api_gateway_list.py,sha256=7RyTSmmhQaezNt9Ksh_BktSAPaQ7DGKQeBviqbkEdS0,7180
|
198
|
-
runbooks/remediation/base.py,sha256=
|
199
|
-
runbooks/remediation/cloudtrail_remediation.py,sha256=
|
178
|
+
runbooks/remediation/base.py,sha256=7GjQr80Ce7FqftFCuXGiib_YdYQJaKUJQR4z_jgCdaE,24480
|
179
|
+
runbooks/remediation/cloudtrail_remediation.py,sha256=eumUem5lCuY7Hcm0w7rJhnAX7xrWBRoNShxmGJih074,38390
|
200
180
|
runbooks/remediation/cloudtrail_s3_modifications.py,sha256=DaN6DmvTgZk4D2QlxXEJ4yUc1m1oi7U1myNX7krA00Q,13147
|
201
181
|
runbooks/remediation/cognito_active_users.py,sha256=ZKtludgCL0ufWiWpiodfD8DNRKSiIMWcQeBBBANH4o8,2973
|
202
|
-
runbooks/remediation/cognito_remediation.py,sha256=
|
182
|
+
runbooks/remediation/cognito_remediation.py,sha256=2uWiNo0LSo3lCA4UOmeuvCSsAPVqVuoLkiru67LrW5k,36966
|
203
183
|
runbooks/remediation/cognito_user_password_reset.py,sha256=1pBLS9Ccdu8ohflGcbsBI-HLKLbNYsU39sijielAcQk,6902
|
204
184
|
runbooks/remediation/commons.py,sha256=f3QcUHyZ0fRHWYvh3NNVJoittoS8eEeVZ7cUiGWFseQ,15348
|
205
185
|
runbooks/remediation/dynamodb_optimize.py,sha256=CKezH6osJlW44kpu47STN0K6Q9EbL69FYr2SmwjcHmw,5987
|
206
|
-
runbooks/remediation/dynamodb_remediation.py,sha256=
|
186
|
+
runbooks/remediation/dynamodb_remediation.py,sha256=o9zwjjbgkMkXxtUe3Qq4NAOBYaNXd3KbaioRrZQdLx8,30872
|
207
187
|
runbooks/remediation/dynamodb_server_side_encryption.py,sha256=wnXwRcXzR3dFpcsA-5CjyCvPBixOiflN2H8Rfdp8Wao,3802
|
208
188
|
runbooks/remediation/ec2_public_ips.py,sha256=BcTi7QGihyy5brPa2zJSiqk0fcFYok5YO96B6GrEf68,5331
|
209
|
-
runbooks/remediation/ec2_remediation.py,sha256=
|
189
|
+
runbooks/remediation/ec2_remediation.py,sha256=mzQVZJeSzYsfH1co-V96oW-fkqPAzS3-Odq-qi0JNzg,37035
|
210
190
|
runbooks/remediation/ec2_subnet_disable_auto_ip_assignment.py,sha256=UeXqp2qTCj2oXwGKXH_6H1PcBQANjMAXXIKADH1kOd4,2723
|
211
|
-
runbooks/remediation/ec2_unattached_ebs_volumes.py,sha256=
|
191
|
+
runbooks/remediation/ec2_unattached_ebs_volumes.py,sha256=x8vgSFOzQo5mfN-tOKLaBt1IzHqWmuhSv5gEFR2_fYk,18987
|
212
192
|
runbooks/remediation/ec2_unused_security_groups.py,sha256=YKG4-UBipJEdoMvy1Pt5-j3CdK-4LlmdXSJ3wyxZdNA,8512
|
213
|
-
runbooks/remediation/kms_enable_key_rotation.py,sha256=
|
214
|
-
runbooks/remediation/kms_remediation.py,sha256=
|
193
|
+
runbooks/remediation/kms_enable_key_rotation.py,sha256=Ulpltvh-n_PHLxKE2rI5UsEHr-L3edjkTdv9-mIDurw,27587
|
194
|
+
runbooks/remediation/kms_remediation.py,sha256=YxscKTGWEh7ViPYmDFzeORjS6Qds04iZKC6dHZfAvnY,29381
|
215
195
|
runbooks/remediation/lambda_list.py,sha256=B5dQzg_nWXbuC-h0TuCE1hH26Rsm5jeNkmRZrbYGekM,10925
|
216
|
-
runbooks/remediation/lambda_remediation.py,sha256=
|
217
|
-
runbooks/remediation/multi_account.py,sha256=
|
196
|
+
runbooks/remediation/lambda_remediation.py,sha256=MKOqWDpRQ41xSa9J4GdmABvK7_LiNAs-hp5zPkFdxZ4,42553
|
197
|
+
runbooks/remediation/multi_account.py,sha256=DBC2abhQAjIx7nbPqTZjIQGcUL0farQgZt6cIV7sYp4,22062
|
218
198
|
runbooks/remediation/rds_instance_list.py,sha256=Nl1Pe1DDBZBl3SDjnY2i51IrcErELgCh2W1EXQyu_Dc,8476
|
219
|
-
runbooks/remediation/rds_remediation.py,sha256=
|
199
|
+
runbooks/remediation/rds_remediation.py,sha256=KVgo9ermkR0f19-0Jq-e0_c8ImfsB_XAGIYyeWC4EfM,37069
|
220
200
|
runbooks/remediation/rds_snapshot_list.py,sha256=7ImBYvHScpP_TxnccE2pWbwuiYlblZKtXZ1YzsSVLiY,7933
|
221
|
-
runbooks/remediation/requirements.txt,sha256=
|
222
|
-
runbooks/remediation/s3_block_public_access.py,sha256=
|
201
|
+
runbooks/remediation/requirements.txt,sha256=xwrVRq4cK8GbX9cwt_8TLLj8kCJHQ06tqBrH_wukMzE,2091
|
202
|
+
runbooks/remediation/s3_block_public_access.py,sha256=mTBIxaiBnyjyAOMFxzhFhlRwBDYFl9tXbkoFTBDLy4o,6331
|
223
203
|
runbooks/remediation/s3_bucket_public_access.py,sha256=eejdaWik_QpWHIMAZSdHWVckJBHL3VkXRBCIDFcVVVI,5533
|
224
204
|
runbooks/remediation/s3_disable_static_website_hosting.py,sha256=08CeFqDfGpLRAwGVJQDiEyA2ct_pHSXiSh9Wt0_iIOI,2749
|
225
205
|
runbooks/remediation/s3_downloader.py,sha256=WteUk1xMiiUdnUOeC_O3RhbAVSEfKB4XyYbWSW29lT4,8777
|
226
|
-
runbooks/remediation/s3_enable_access_logging.py,sha256=
|
227
|
-
runbooks/remediation/s3_encryption.py,sha256=
|
206
|
+
runbooks/remediation/s3_enable_access_logging.py,sha256=jUxMy7Dy0EweuCxW-YQ43nHSSmptmL6cYfxZuniHGyc,24672
|
207
|
+
runbooks/remediation/s3_encryption.py,sha256=K94Xn7yd9SZ3IgFjubEw87_NzWyIPeX4lgZKLoFOGPM,21064
|
228
208
|
runbooks/remediation/s3_force_ssl_secure_policy.py,sha256=j-p0T5xjk8l4wIgtW07yYuoWIYhcDyVL_UgdrdNGPDY,5219
|
229
209
|
runbooks/remediation/s3_list.py,sha256=PB7MqI13GYR6-PhYtqf3MIdURWbd1dVKdSSDUoubmVE,6313
|
230
210
|
runbooks/remediation/s3_object_search.py,sha256=8MnbwVwz2qZ0IK_C_uzMwNCfMnkB24d8JgrIN03lqSo,7904
|
231
|
-
runbooks/remediation/s3_remediation.py,sha256=
|
211
|
+
runbooks/remediation/s3_remediation.py,sha256=ix-WoeND_galxEhV901T3E__bNovqvcE_Z6bWToLbC0,33014
|
232
212
|
runbooks/remediation/scan_for_phrase.py,sha256=FgTpDXnLg1tdnU6aYTmvOZu9CMjZMsfrZCNOSLqL4P4,18958
|
233
213
|
runbooks/remediation/workspaces_list.py,sha256=M6UGSmHT_IfTD2Dk58fO0b38wAp3Rb7IXvuI0S46Inw,9426
|
234
214
|
runbooks/remediation/Tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
215
|
runbooks/remediation/Tests/update_policy.py,sha256=7jb5hMR6jVbCUwzl5MHVqxrIGFN9_2-trIMUV-R7Kls,2999
|
236
216
|
runbooks/security/README.md,sha256=NiOHsV8Kal5LHh3mJtEjw30rCjx-9JjnMzPjXe4_Hzo,17850
|
237
|
-
runbooks/security/__init__.py,sha256=
|
217
|
+
runbooks/security/__init__.py,sha256=tVfoTO03gnk0BB7vI_XuDsBCmGfd7_c-BNg4Rc9GBLo,1844
|
238
218
|
runbooks/security/config-origin.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
|
239
219
|
runbooks/security/config.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
|
240
220
|
runbooks/security/permission.json,sha256=3p9xDYEKLfOT171GE8gV2dAjgw2TFNoggGB65w2q-L8,1261
|
@@ -269,9 +249,9 @@ runbooks/security/utils/level_const.py,sha256=l8uYBmgEMjIQTGVVuXPAfDd_Psl6jNfTQw
|
|
269
249
|
runbooks/security/utils/permission_list.py,sha256=nq06vlILHp9rfnCpJauCmFCOEGdgFMF-XO3uBFrrd-o,767
|
270
250
|
runbooks/utils/__init__.py,sha256=3K-CwUA_NEN9R7RT5PeELs-VLSgVKUfkV-4NJkbCg90,5770
|
271
251
|
runbooks/utils/logger.py,sha256=ifxqLjDlZoDaG8rtAGVKLZ5dAwcMn16rB4YgMfeUC3E,972
|
272
|
-
runbooks-0.7.
|
273
|
-
runbooks-0.7.
|
274
|
-
runbooks-0.7.
|
275
|
-
runbooks-0.7.
|
276
|
-
runbooks-0.7.
|
277
|
-
runbooks-0.7.
|
252
|
+
runbooks-0.7.6.dist-info/licenses/LICENSE,sha256=WAQUYGIkLJh6CPrlZgr0IsbRODa0EZ6fboBXGjfWggs,11375
|
253
|
+
runbooks-0.7.6.dist-info/METADATA,sha256=tR_okgkKovVNu3De0TihCGaQym-0glHx9wHSK9CuJTg,26273
|
254
|
+
runbooks-0.7.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
255
|
+
runbooks-0.7.6.dist-info/entry_points.txt,sha256=OUdFCP5rg5Q1bS1lqyZ8z1NjdGMyIj3t1M7eHd6CRuM,223
|
256
|
+
runbooks-0.7.6.dist-info/top_level.txt,sha256=A0zTBjuF7THC6vnJU7StN7ihtUoh31lZSfwyWpWP2YE,18
|
257
|
+
runbooks-0.7.6.dist-info/RECORD,,
|
jupyter-agent/.env
DELETED
jupyter-agent/.env.template
DELETED
jupyter-agent/.gitattributes
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
*.7z filter=lfs diff=lfs merge=lfs -text
|
2
|
-
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3
|
-
*.bin filter=lfs diff=lfs merge=lfs -text
|
4
|
-
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5
|
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6
|
-
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7
|
-
*.gz filter=lfs diff=lfs merge=lfs -text
|
8
|
-
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9
|
-
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10
|
-
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11
|
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
12
|
-
*.model filter=lfs diff=lfs merge=lfs -text
|
13
|
-
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
14
|
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
15
|
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
16
|
-
*.onnx filter=lfs diff=lfs merge=lfs -text
|
17
|
-
*.ot filter=lfs diff=lfs merge=lfs -text
|
18
|
-
*.parquet filter=lfs diff=lfs merge=lfs -text
|
19
|
-
*.pb filter=lfs diff=lfs merge=lfs -text
|
20
|
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
21
|
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
22
|
-
*.pt filter=lfs diff=lfs merge=lfs -text
|
23
|
-
*.pth filter=lfs diff=lfs merge=lfs -text
|
24
|
-
*.rar filter=lfs diff=lfs merge=lfs -text
|
25
|
-
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26
|
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27
|
-
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28
|
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
29
|
-
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30
|
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31
|
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32
|
-
*.xz filter=lfs diff=lfs merge=lfs -text
|
33
|
-
*.zip filter=lfs diff=lfs merge=lfs -text
|
34
|
-
*.zst filter=lfs diff=lfs merge=lfs -text
|
35
|
-
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
@@ -1,31 +0,0 @@
|
|
1
|
-
-----BEGIN CERTIFICATE-----
|
2
|
-
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
-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
-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
-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
-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
-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
-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
-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
-
A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW
|
11
|
-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
-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
-
B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv
|
14
|
-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
-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
-
jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw
|
17
|
-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
-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
-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
-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
-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
-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
-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
-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
-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
-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
-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
-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
-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
-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
|
31
|
-
-----END CERTIFICATE-----
|
jupyter-agent/README.md
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Jupyter Agent
|
3
|
-
emoji: 🏃
|
4
|
-
colorFrom: red
|
5
|
-
colorTo: purple
|
6
|
-
sdk: gradio
|
7
|
-
sdk_version: 5.8.0
|
8
|
-
app_file: app.py
|
9
|
-
pinned: false
|
10
|
-
thumbnail: cloudops-agent.png
|
11
|
-
---
|
12
|
-
|
13
|
-
|
14
|
-
# Task-Specialized Agents for automation, by focusing on well-defined problems with clear success metrics
|
15
|
-
|
16
|
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
jupyter-agent/__main__.log
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
2025-02-07 08:59:31,890 - INFO - Notebook saved to ./tmp/hohanq1u097/jupyter-agent.ipynb
|
2
|
-
2025-02-07 09:08:58,989 - INFO - Notebook saved to ./tmp/4ojbs8a02ir/jupyter-agent.ipynb
|
3
|
-
2025-02-07 09:16:22,801 - INFO - Notebook saved to ./tmp/4ojbs8a02ir/jupyter-agent.ipynb
|
4
|
-
2025-02-07 10:27:19,698 - INFO - Notebook saved to ./tmp/crqbsseag5/jupyter-agent.ipynb
|
5
|
-
2025-02-07 10:29:00,714 - INFO - Notebook saved to ./tmp/crqbsseag5/jupyter-agent.ipynb
|
6
|
-
2025-02-07 10:44:22,894 - INFO - Notebook saved to ./tmp/jns1sam29wm/jupyter-agent.ipynb
|
7
|
-
2025-02-07 11:56:07,281 - INFO - Notebook saved to ./tmp/cm5iasgpm3p/jupyter-agent.ipynb
|
8
|
-
2025-02-07 11:57:38,936 - INFO - Notebook saved to ./tmp/cm5iasgpm3p/jupyter-agent.ipynb
|