shoreguard 0.1.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.
- shoreguard-0.1.0/.gitignore +211 -0
- shoreguard-0.1.0/LICENSE +201 -0
- shoreguard-0.1.0/PKG-INFO +273 -0
- shoreguard-0.1.0/README.md +243 -0
- shoreguard-0.1.0/frontend/css/cards.css +29 -0
- shoreguard-0.1.0/frontend/css/log.css +25 -0
- shoreguard-0.1.0/frontend/css/policy.css +42 -0
- shoreguard-0.1.0/frontend/css/style.css +293 -0
- shoreguard-0.1.0/frontend/css/tables.css +85 -0
- shoreguard-0.1.0/frontend/css/wizard.css +37 -0
- shoreguard-0.1.0/frontend/js/app.js +333 -0
- shoreguard-0.1.0/frontend/js/approvals.js +206 -0
- shoreguard-0.1.0/frontend/js/components.js +92 -0
- shoreguard-0.1.0/frontend/js/constants.js +58 -0
- shoreguard-0.1.0/frontend/js/gateway.js +463 -0
- shoreguard-0.1.0/frontend/js/logs.js +82 -0
- shoreguard-0.1.0/frontend/js/policy.js +524 -0
- shoreguard-0.1.0/frontend/js/providers.js +181 -0
- shoreguard-0.1.0/frontend/js/rule.js +303 -0
- shoreguard-0.1.0/frontend/js/sandboxes.js +263 -0
- shoreguard-0.1.0/frontend/js/websocket.js +136 -0
- shoreguard-0.1.0/frontend/js/wizard.js +305 -0
- shoreguard-0.1.0/frontend/templates/base.html +48 -0
- shoreguard-0.1.0/frontend/templates/components/approval_modal.html +21 -0
- shoreguard-0.1.0/frontend/templates/components/confirm_modal.html +14 -0
- shoreguard-0.1.0/frontend/templates/components/gateway_error.html +8 -0
- shoreguard-0.1.0/frontend/templates/components/sandbox_nav.html +11 -0
- shoreguard-0.1.0/frontend/templates/pages/dashboard.html +10 -0
- shoreguard-0.1.0/frontend/templates/pages/gateway_detail.html +18 -0
- shoreguard-0.1.0/frontend/templates/pages/gateways.html +69 -0
- shoreguard-0.1.0/frontend/templates/pages/policies.html +18 -0
- shoreguard-0.1.0/frontend/templates/pages/policy_section.html +25 -0
- shoreguard-0.1.0/frontend/templates/pages/preset_detail.html +18 -0
- shoreguard-0.1.0/frontend/templates/pages/providers.html +83 -0
- shoreguard-0.1.0/frontend/templates/pages/rule_detail.html +21 -0
- shoreguard-0.1.0/frontend/templates/pages/sandbox_approvals.html +24 -0
- shoreguard-0.1.0/frontend/templates/pages/sandbox_base.html +20 -0
- shoreguard-0.1.0/frontend/templates/pages/sandbox_detail.html +19 -0
- shoreguard-0.1.0/frontend/templates/pages/sandbox_logs.html +19 -0
- shoreguard-0.1.0/frontend/templates/pages/sandbox_policy.html +19 -0
- shoreguard-0.1.0/frontend/templates/pages/sandbox_terminal.html +18 -0
- shoreguard-0.1.0/frontend/templates/pages/sandboxes.html +49 -0
- shoreguard-0.1.0/frontend/templates/pages/wizard.html +141 -0
- shoreguard-0.1.0/pyproject.toml +101 -0
- shoreguard-0.1.0/shoreguard/__init__.py +3 -0
- shoreguard-0.1.0/shoreguard/api/__init__.py +1 -0
- shoreguard-0.1.0/shoreguard/api/deps.py +37 -0
- shoreguard-0.1.0/shoreguard/api/main.py +511 -0
- shoreguard-0.1.0/shoreguard/api/routes/__init__.py +1 -0
- shoreguard-0.1.0/shoreguard/api/routes/approvals.py +130 -0
- shoreguard-0.1.0/shoreguard/api/routes/gateway.py +112 -0
- shoreguard-0.1.0/shoreguard/api/routes/policies.py +166 -0
- shoreguard-0.1.0/shoreguard/api/routes/providers.py +116 -0
- shoreguard-0.1.0/shoreguard/api/routes/sandboxes.py +153 -0
- shoreguard-0.1.0/shoreguard/client/__init__.py +181 -0
- shoreguard-0.1.0/shoreguard/client/_converters.py +69 -0
- shoreguard-0.1.0/shoreguard/client/_proto/__init__.py +24 -0
- shoreguard-0.1.0/shoreguard/client/_proto/datamodel_pb2.py +73 -0
- shoreguard-0.1.0/shoreguard/client/_proto/datamodel_pb2.pyi +243 -0
- shoreguard-0.1.0/shoreguard/client/_proto/datamodel_pb2_grpc.py +26 -0
- shoreguard-0.1.0/shoreguard/client/_proto/inference_pb2.py +54 -0
- shoreguard-0.1.0/shoreguard/client/_proto/inference_pb2.pyi +162 -0
- shoreguard-0.1.0/shoreguard/client/_proto/inference_pb2_grpc.py +201 -0
- shoreguard-0.1.0/shoreguard/client/_proto/openshell_pb2.py +200 -0
- shoreguard-0.1.0/shoreguard/client/_proto/openshell_pb2.pyi +1053 -0
- shoreguard-0.1.0/shoreguard/client/_proto/openshell_pb2_grpc.py +1573 -0
- shoreguard-0.1.0/shoreguard/client/_proto/sandbox_pb2.py +79 -0
- shoreguard-0.1.0/shoreguard/client/_proto/sandbox_pb2.pyi +287 -0
- shoreguard-0.1.0/shoreguard/client/_proto/sandbox_pb2_grpc.py +26 -0
- shoreguard-0.1.0/shoreguard/client/approvals.py +165 -0
- shoreguard-0.1.0/shoreguard/client/policies.py +141 -0
- shoreguard-0.1.0/shoreguard/client/providers.py +91 -0
- shoreguard-0.1.0/shoreguard/client/sandboxes.py +259 -0
- shoreguard-0.1.0/shoreguard/config.py +19 -0
- shoreguard-0.1.0/shoreguard/exceptions.py +44 -0
- shoreguard-0.1.0/shoreguard/openshell.yaml +107 -0
- shoreguard-0.1.0/shoreguard/presets/discord.yaml +34 -0
- shoreguard-0.1.0/shoreguard/presets/docker.yaml +43 -0
- shoreguard-0.1.0/shoreguard/presets/huggingface.yaml +34 -0
- shoreguard-0.1.0/shoreguard/presets/jira.yaml +35 -0
- shoreguard-0.1.0/shoreguard/presets/npm.yaml +25 -0
- shoreguard-0.1.0/shoreguard/presets/outlook.yaml +43 -0
- shoreguard-0.1.0/shoreguard/presets/pypi.yaml +25 -0
- shoreguard-0.1.0/shoreguard/presets/slack.yaml +35 -0
- shoreguard-0.1.0/shoreguard/presets/telegram.yaml +19 -0
- shoreguard-0.1.0/shoreguard/presets.py +36 -0
- shoreguard-0.1.0/shoreguard/py.typed +0 -0
- shoreguard-0.1.0/shoreguard/services/__init__.py +1 -0
- shoreguard-0.1.0/shoreguard/services/_openshell_meta.py +33 -0
- shoreguard-0.1.0/shoreguard/services/approvals.py +55 -0
- shoreguard-0.1.0/shoreguard/services/gateway.py +690 -0
- shoreguard-0.1.0/shoreguard/services/policy.py +136 -0
- shoreguard-0.1.0/shoreguard/services/providers.py +91 -0
- shoreguard-0.1.0/shoreguard/services/sandbox.py +167 -0
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
#uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
#poetry.lock
|
|
109
|
+
#poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
#pdm.lock
|
|
116
|
+
#pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
#pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# SageMath parsed files
|
|
135
|
+
*.sage.py
|
|
136
|
+
|
|
137
|
+
# Environments
|
|
138
|
+
.env
|
|
139
|
+
.envrc
|
|
140
|
+
.venv
|
|
141
|
+
env/
|
|
142
|
+
venv/
|
|
143
|
+
ENV/
|
|
144
|
+
env.bak/
|
|
145
|
+
venv.bak/
|
|
146
|
+
|
|
147
|
+
# Spyder project settings
|
|
148
|
+
.spyderproject
|
|
149
|
+
.spyproject
|
|
150
|
+
|
|
151
|
+
# Rope project settings
|
|
152
|
+
.ropeproject
|
|
153
|
+
|
|
154
|
+
# mkdocs documentation
|
|
155
|
+
/site
|
|
156
|
+
|
|
157
|
+
# mypy
|
|
158
|
+
.mypy_cache/
|
|
159
|
+
.dmypy.json
|
|
160
|
+
dmypy.json
|
|
161
|
+
|
|
162
|
+
# Pyre type checker
|
|
163
|
+
.pyre/
|
|
164
|
+
|
|
165
|
+
# pytype static type analyzer
|
|
166
|
+
.pytype/
|
|
167
|
+
|
|
168
|
+
# Cython debug symbols
|
|
169
|
+
cython_debug/
|
|
170
|
+
|
|
171
|
+
# PyCharm
|
|
172
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
173
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
174
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
175
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
176
|
+
#.idea/
|
|
177
|
+
|
|
178
|
+
# Abstra
|
|
179
|
+
# Abstra is an AI-powered process automation framework.
|
|
180
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
181
|
+
# Learn more at https://abstra.io/docs
|
|
182
|
+
.abstra/
|
|
183
|
+
|
|
184
|
+
# Visual Studio Code
|
|
185
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
186
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
188
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
189
|
+
# .vscode/
|
|
190
|
+
|
|
191
|
+
# Ruff stuff:
|
|
192
|
+
.ruff_cache/
|
|
193
|
+
|
|
194
|
+
# PyPI configuration file
|
|
195
|
+
.pypirc
|
|
196
|
+
|
|
197
|
+
# Cursor
|
|
198
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
199
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
200
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
201
|
+
.cursorignore
|
|
202
|
+
.cursorindexingignore
|
|
203
|
+
|
|
204
|
+
# Marimo
|
|
205
|
+
marimo/_static/
|
|
206
|
+
marimo/_lsp/
|
|
207
|
+
__marimo__/
|
|
208
|
+
|
|
209
|
+
# Claude Code
|
|
210
|
+
.claude/
|
|
211
|
+
mutants/
|
shoreguard-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shoreguard
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Open source control plane for NVIDIA OpenShell
|
|
5
|
+
Project-URL: Homepage, https://github.com/FloHofstetter/shoreguard
|
|
6
|
+
Project-URL: Repository, https://github.com/FloHofstetter/shoreguard
|
|
7
|
+
Project-URL: Issues, https://github.com/FloHofstetter/shoreguard/issues
|
|
8
|
+
Author-email: Florian Hofstetter <flo.max.hofstetter@gmail.com>
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: ai-agents,control-plane,nvidia,openshell,sandbox,security
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Framework :: FastAPI
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: System Administrators
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Security
|
|
20
|
+
Classifier: Topic :: System :: Systems Administration
|
|
21
|
+
Requires-Python: >=3.12
|
|
22
|
+
Requires-Dist: fastapi>=0.135
|
|
23
|
+
Requires-Dist: grpcio>=1.78
|
|
24
|
+
Requires-Dist: jinja2>=3.1
|
|
25
|
+
Requires-Dist: pyyaml>=6.0
|
|
26
|
+
Requires-Dist: typer>=0.15
|
|
27
|
+
Requires-Dist: uvicorn>=0.42
|
|
28
|
+
Requires-Dist: websockets>=16.0
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
|
|
31
|
+
# Shoreguard
|
|
32
|
+
|
|
33
|
+
[](https://github.com/FloHofstetter/shoreguard/actions/workflows/ci.yml)
|
|
34
|
+
[](https://www.python.org/downloads/)
|
|
35
|
+
[](LICENSE)
|
|
36
|
+
|
|
37
|
+
Open source control plane for [NVIDIA OpenShell](https://github.com/NVIDIA/OpenShell). A web-based GUI to manage AI agent sandboxes, security policies, and approval flows.
|
|
38
|
+
|
|
39
|
+
> [!WARNING]
|
|
40
|
+
> **Weekend project.** This UI was vibe-coded in a weekend as a proof of concept. It works, it has tests, but it is not production-hardened. There is no authentication, no rate limiting, and no audit logging. Use it for local development and demos — not to secure anything that matters.
|
|
41
|
+
|
|
42
|
+

|
|
43
|
+
|
|
44
|
+
## What is this?
|
|
45
|
+
|
|
46
|
+
OpenShell provides secure, sandboxed environments for AI agents (OpenClaw, Claude Code, Cursor, etc.). Shoreguard gives you a dashboard to:
|
|
47
|
+
|
|
48
|
+
- **Manage sandboxes** — Create, monitor, and delete agent sandboxes
|
|
49
|
+
- **Edit security policies** — Visual network policy editor instead of raw YAML
|
|
50
|
+
- **Approve access requests** — iOS-style permission dialogs when agents try to reach blocked endpoints
|
|
51
|
+
- **Live monitoring** — Real-time logs and events via WebSocket
|
|
52
|
+
- **One-click setup** — Wizard to create sandboxes with pre-configured policy presets
|
|
53
|
+
|
|
54
|
+
## Quick Start
|
|
55
|
+
|
|
56
|
+
**Prerequisites:** Python 3.12+, a running [OpenShell](https://github.com/NVIDIA/OpenShell) gateway
|
|
57
|
+
|
|
58
|
+
### Install from PyPI
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
pip install shoreguard
|
|
62
|
+
shoreguard
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Install from source
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
git clone https://github.com/FloHofstetter/shoreguard.git
|
|
69
|
+
cd shoreguard
|
|
70
|
+
uv sync
|
|
71
|
+
uv run shoreguard
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Open [http://localhost:8888](http://localhost:8888) in your browser.
|
|
75
|
+
|
|
76
|
+
> Shoreguard auto-discovers your OpenShell gateway via `~/.config/openshell/active_gateway`. If no gateway is configured, the UI loads but API calls will fail.
|
|
77
|
+
|
|
78
|
+
### CLI Options
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
shoreguard --help
|
|
82
|
+
shoreguard --port 9000 --host 127.0.0.1
|
|
83
|
+
shoreguard --log-level debug --no-reload
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
| Flag | Env Variable | Default | Description |
|
|
87
|
+
|------|-------------|---------|-------------|
|
|
88
|
+
| `--host` | `SHOREGUARD_HOST` | `0.0.0.0` | Bind address |
|
|
89
|
+
| `--port` | `SHOREGUARD_PORT` | `8888` | Bind port |
|
|
90
|
+
| `--log-level` | `SHOREGUARD_LOG_LEVEL` | `info` | Log level (debug/info/warning/error) |
|
|
91
|
+
| `--no-reload` | `SHOREGUARD_RELOAD` | reload on | Disable auto-reload |
|
|
92
|
+
|
|
93
|
+
CLI arguments take priority over environment variables.
|
|
94
|
+
|
|
95
|
+
## Features
|
|
96
|
+
|
|
97
|
+
### Gateway Management
|
|
98
|
+
|
|
99
|
+
Multi-gateway support with status monitoring, start/stop controls, and system diagnostics.
|
|
100
|
+
|
|
101
|
+

|
|
102
|
+
|
|
103
|
+
### Policy Management
|
|
104
|
+
|
|
105
|
+
Visual network policy editor with per-rule endpoint details and binary restrictions.
|
|
106
|
+
|
|
107
|
+

|
|
108
|
+
|
|
109
|
+
- View and edit network policies per sandbox
|
|
110
|
+
- Apply bundled presets with one click (PyPI, npm, Docker Hub, Slack, Discord, etc.)
|
|
111
|
+
- Policy revision history with rollback capability
|
|
112
|
+
|
|
113
|
+
### Approval Flow
|
|
114
|
+
|
|
115
|
+
When an agent in a sandbox tries to access a blocked endpoint, OpenShell generates a draft policy recommendation. Shoreguard surfaces these as approval requests:
|
|
116
|
+
|
|
117
|
+
- Review proposed network rules with rationale and security notes
|
|
118
|
+
- Approve, reject, or edit individual rules
|
|
119
|
+
- Bulk approve/reject with security-flagged chunk protection
|
|
120
|
+
- Undo approved rules
|
|
121
|
+
- Real-time WebSocket notifications for new approval requests
|
|
122
|
+
|
|
123
|
+
### Sandbox Wizard
|
|
124
|
+
|
|
125
|
+
Step-by-step sandbox creation with agent type selection, configuration, policy presets, and live launch progress.
|
|
126
|
+
|
|
127
|
+

|
|
128
|
+
|
|
129
|
+
### Bundled Policy Presets
|
|
130
|
+
|
|
131
|
+
| Preset | Description |
|
|
132
|
+
|--------|-------------|
|
|
133
|
+
| `pypi` | Python Package Index (pypi.org) |
|
|
134
|
+
| `npm` | npm + Yarn registries |
|
|
135
|
+
| `docker` | Docker Hub + NVIDIA Container Registry |
|
|
136
|
+
| `huggingface` | HF Hub, LFS, and Inference API |
|
|
137
|
+
| `slack` | Slack API and webhooks |
|
|
138
|
+
| `discord` | Discord API, gateway, and CDN |
|
|
139
|
+
| `telegram` | Telegram Bot API |
|
|
140
|
+
| `jira` | Jira / Atlassian Cloud |
|
|
141
|
+
| `outlook` | Microsoft Graph / Outlook |
|
|
142
|
+
|
|
143
|
+
## Architecture
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
┌─────────────────────────────────────────────┐
|
|
147
|
+
│ Browser (:8888) │
|
|
148
|
+
│ ├── Dashboard (Bootstrap 5 + JS) │
|
|
149
|
+
│ ├── Policy Editor │
|
|
150
|
+
│ ├── Approval Flow │
|
|
151
|
+
│ └── Sandbox Wizard │
|
|
152
|
+
├─────────────────────────────────────────────┤
|
|
153
|
+
│ Shoreguard API (FastAPI) │
|
|
154
|
+
│ ├── REST endpoints /api/* │
|
|
155
|
+
│ ├── WebSocket /ws/{sandbox} │
|
|
156
|
+
│ └── Static files /static/* │
|
|
157
|
+
├─────────────────────────────────────────────┤
|
|
158
|
+
│ Service Layer (Business Logic) │
|
|
159
|
+
│ ├── GatewayService Docker, ports, health │
|
|
160
|
+
│ ├── SandboxService Create + presets │
|
|
161
|
+
│ ├── PolicyService Rule CRUD, merge │
|
|
162
|
+
│ └── ProviderService Types, credentials │
|
|
163
|
+
├─────────────────────────────────────────────┤
|
|
164
|
+
│ Client Layer (gRPC + mTLS) │
|
|
165
|
+
│ ├── SandboxManager CRUD, exec, logs │
|
|
166
|
+
│ ├── PolicyManager policies, presets │
|
|
167
|
+
│ └── ApprovalManager draft policy flow │
|
|
168
|
+
├─────────────────────────────────────────────┤
|
|
169
|
+
│ OpenShell Gateway (gRPC) │
|
|
170
|
+
│ └── Docker / Kubernetes Sandboxes │
|
|
171
|
+
└─────────────────────────────────────────────┘
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
## API
|
|
175
|
+
|
|
176
|
+
Shoreguard exposes a REST API on port 8888. Interactive docs are available at [/docs](http://localhost:8888/docs) (Swagger UI).
|
|
177
|
+
|
|
178
|
+
### Key endpoints
|
|
179
|
+
|
|
180
|
+
| Method | Path | Description |
|
|
181
|
+
|--------|------|-------------|
|
|
182
|
+
| `GET` | `/api/sandboxes` | List all sandboxes |
|
|
183
|
+
| `POST` | `/api/sandboxes` | Create a sandbox |
|
|
184
|
+
| `GET` | `/api/sandboxes/{name}` | Get sandbox details |
|
|
185
|
+
| `DELETE` | `/api/sandboxes/{name}` | Delete a sandbox |
|
|
186
|
+
| `POST` | `/api/sandboxes/{name}/exec` | Execute a command |
|
|
187
|
+
| `GET` | `/api/sandboxes/{name}/policy` | Get active policy |
|
|
188
|
+
| `PUT` | `/api/sandboxes/{name}/policy` | Update policy |
|
|
189
|
+
| `GET` | `/api/sandboxes/{name}/approvals/pending` | Get pending approvals |
|
|
190
|
+
| `POST` | `/api/sandboxes/{name}/approvals/{id}/approve` | Approve a request |
|
|
191
|
+
| `POST` | `/api/sandboxes/{name}/approvals/{id}/reject` | Reject a request |
|
|
192
|
+
| `GET` | `/api/policies/presets` | List available presets |
|
|
193
|
+
| `WS` | `/ws/{name}` | Live sandbox events |
|
|
194
|
+
|
|
195
|
+
## Development
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
# Install with dev dependencies
|
|
199
|
+
uv sync --group dev
|
|
200
|
+
|
|
201
|
+
# Run the server with auto-reload
|
|
202
|
+
uv run shoreguard
|
|
203
|
+
|
|
204
|
+
# Lint and format
|
|
205
|
+
uv run ruff check .
|
|
206
|
+
uv run ruff format --check .
|
|
207
|
+
|
|
208
|
+
# Type checking
|
|
209
|
+
uv run pyright
|
|
210
|
+
|
|
211
|
+
# Unit tests
|
|
212
|
+
uv run pytest -m 'not integration'
|
|
213
|
+
|
|
214
|
+
# Integration tests (requires running OpenShell gateway)
|
|
215
|
+
uv run pytest tests/integration/ -m integration
|
|
216
|
+
|
|
217
|
+
# All tests
|
|
218
|
+
uv run pytest
|
|
219
|
+
|
|
220
|
+
# Mutation testing
|
|
221
|
+
uv run mutmut run
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
### Test suite
|
|
225
|
+
|
|
226
|
+
| Category | Tests | Description |
|
|
227
|
+
|----------|-------|-------------|
|
|
228
|
+
| Unit | 425 | Client managers, services, API routes, converters, CLI |
|
|
229
|
+
| Integration | 35 | Live gRPC against real OpenShell gateway |
|
|
230
|
+
| Mutation | 72% kill rate | Via mutmut, measures test quality |
|
|
231
|
+
|
|
232
|
+
### OpenShell metadata (`openshell.yaml`)
|
|
233
|
+
|
|
234
|
+
Shoreguard needs metadata about OpenShell that is not available via the gRPC API: provider types with their credential environment variables, inference provider profiles, and community sandbox templates.
|
|
235
|
+
|
|
236
|
+
This metadata lives in [`shoreguard/openshell.yaml`](shoreguard/openshell.yaml). When OpenShell updates its provider registry or community sandbox list, update this file to match. The sync sources are documented at the top of the file:
|
|
237
|
+
|
|
238
|
+
| Data | OpenShell source |
|
|
239
|
+
|------|-----------------|
|
|
240
|
+
| Provider types | `crates/openshell-providers/src/lib.rs` (`ProviderRegistry::new`) |
|
|
241
|
+
| Credential keys | `crates/openshell-providers/src/<type>.rs` (discovery logic) |
|
|
242
|
+
| Inference providers | `crates/openshell-core/src/inference.rs` (`profile_for`) |
|
|
243
|
+
| Community sandboxes | `docs/sandboxes/community-sandboxes.md` |
|
|
244
|
+
|
|
245
|
+
### Regenerating proto stubs
|
|
246
|
+
|
|
247
|
+
If the OpenShell proto files change:
|
|
248
|
+
|
|
249
|
+
```bash
|
|
250
|
+
uv run python scripts/generate_proto.py /path/to/OpenShell/proto
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
## Roadmap
|
|
254
|
+
|
|
255
|
+
- [ ] Multi-cluster support
|
|
256
|
+
- [ ] Policy diff viewer
|
|
257
|
+
- [ ] Audit log export
|
|
258
|
+
- [ ] User authentication
|
|
259
|
+
|
|
260
|
+
## Contributing
|
|
261
|
+
|
|
262
|
+
1. Open an issue to discuss changes before submitting a PR
|
|
263
|
+
2. Run the full check suite before pushing:
|
|
264
|
+
|
|
265
|
+
```bash
|
|
266
|
+
uv run ruff check . && uv run ruff format --check . && uv run pyright && uv run pytest -m 'not integration'
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
3. All CI checks must pass (lint, typecheck, tests on Python 3.12 + 3.13)
|
|
270
|
+
|
|
271
|
+
## License
|
|
272
|
+
|
|
273
|
+
[Apache 2.0](LICENSE)
|