Skip to content

Commit 3c52e9c

Browse files
authored
Merge pull request #1 from contextforge-org/InitialCLI
Initial CLI
2 parents 5174860 + 6fe5a6f commit 3c52e9c

58 files changed

Lines changed: 7973 additions & 12 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 259 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
1+
*FEATURES.md
2+
spec/
3+
stats/
4+
.env.bak
5+
*cookies*txt
6+
cookies*
7+
cookies.txt
8+
.claude
9+
mcpgateway-export*
10+
mutants
11+
.mutmut-cache
12+
CLAUDE.local.md
13+
.aider*
14+
.scannerwork
15+
llms-full.txt
16+
aider*
17+
.aider*
18+
todo/
19+
*.sarif
20+
devskim-results.sarif
21+
debug_login_page.png
22+
docs/pstats.png
23+
mcp.prof
24+
mcp.pstats
25+
.depsorter_cache.json
26+
.depupdate.*
27+
token.txt
28+
*.db
29+
*.bak
30+
*.backup
31+
mcpgateway.sbom.xml
32+
gateway_service_leader.lock
33+
docs/docs/test/
34+
tmp
35+
*.tgz
36+
*.gz
37+
*.bz
38+
*.bz2
39+
*.tar
40+
TODO.md
41+
minikube-*
42+
.htpasswd
43+
.env.gcr
44+
packages-lock.json
45+
packages.json
46+
node_modules/
47+
./depsort*
48+
./depupdate*
49+
.tmp*
50+
mcp.db-journal
51+
mcp.db-shm
52+
mcp.db-wal
53+
certs/
54+
jwt/
55+
FIXMEs
56+
*.old
57+
logs/
58+
*.log
59+
60+
# Fuzzing artifacts and reports
61+
reports/
62+
corpus/
63+
tests/fuzz/fuzzers/results/
64+
.venv
65+
mcp.db
66+
public/
67+
ica_integrations_host.sbom.json
68+
.pyre
69+
dictionary.dic
70+
pdm.lock
71+
.pdm-python
72+
temp/
73+
public/
74+
*history.md
75+
htmlcov
76+
test_commands.md
77+
cover.md
78+
build/
79+
.icaenv
80+
commands_output.txt
81+
commands_output.md
82+
command_output.md
83+
command_output.txt
84+
command_outputs.md
85+
.env
86+
.env.ce
87+
.ica.env
88+
./snakefood.png
89+
./snakefood.svg
90+
./playground
91+
92+
.attic
93+
.vscode/settings.json
94+
scribeflow.log
95+
coverage_re
96+
bin/flagged
97+
flagged/
98+
certs/
99+
# VENV
100+
.python37/
101+
.python39/
102+
103+
# Byte-compiled / optimized / DLL files
104+
__pycache__/
105+
**/__pycache__/
106+
*.py[cod]
107+
*$py.class
108+
mcpgateway-wrapper/src/mcp_gateway_wrapper/__pycache__/
109+
110+
# Bak
111+
*.bak
112+
113+
# C extensions
114+
*.so
115+
116+
# Distribution / packaging
117+
.wily/
118+
.Python
119+
build/
120+
develop-eggs/
121+
dist/
122+
downloads/
123+
eggs/
124+
.eggs/
125+
lib/
126+
lib64/
127+
parts/
128+
sdist/
129+
var/
130+
wheels/
131+
*.egg-info/
132+
.installed.cfg
133+
*.egg
134+
MANIFEST
135+
136+
# PyInstaller
137+
# Usually these files are written by a python script from a template
138+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
139+
*.manifest
140+
*.spec
141+
142+
# Installer logs
143+
pip-log.txt
144+
pip-delete-this-directory.txt
145+
146+
# Unit test / coverage reports
147+
htmlcov/
148+
.tox/
149+
.nox/
150+
.coverage
151+
.coverage.*
152+
.cache
153+
nosetests.xml
154+
coverage.xml
155+
*.cover
156+
.hypothesis/
157+
.pytest_cache/
158+
159+
# Translations
160+
*.mo
161+
*.pot
162+
163+
# Django stuff:
164+
*.log
165+
local_settings.py
166+
db.sqlite3
167+
168+
# Flask stuff:
169+
instance/
170+
.webassets-cache
171+
172+
# Scrapy stuff:
173+
.scrapy
174+
175+
# Sphinx documentation
176+
docs/_build/
177+
178+
# PyBuilder
179+
target/
180+
181+
# Jupyter Notebook
182+
.ipynb_checkpoints
183+
184+
# IPython
185+
profile_default/
186+
ipython_config.py
187+
188+
# pyenv
189+
.python-version
190+
191+
# celery beat schedule file
192+
celerybeat-schedule
193+
194+
# SageMath parsed files
195+
*.sage.py
196+
197+
# Environments
198+
.env
199+
.venv
200+
env/
201+
venv/
202+
ENV/
203+
env.bak/
204+
venv.bak/
205+
206+
# Spyder project settings
207+
.spyderproject
208+
.spyproject
209+
210+
# Rope project settings
211+
.ropeproject
212+
213+
# mkdocs documentation
214+
/site
215+
216+
# mypy
217+
.mypy_cache/
218+
.dmypy.json
219+
dmypy.json
220+
221+
# others
222+
.pdm-build
223+
.vscode
224+
225+
# Mac junk
226+
.DS_Store
227+
228+
.idea/
229+
230+
# Sonar
231+
.scannerwork
232+
233+
# vim
234+
*.swp
235+
*,cover
236+
237+
# model cache
238+
.config
239+
logging/
240+
241+
.ai*
242+
243+
# downloads
244+
downloads/
245+
246+
# db_path
247+
db_path/
248+
249+
# filelock path
250+
tmp/
251+
252+
.continue
253+
254+
.ruff_cache/
255+
256+
# Rust build artifacts
257+
plugins_rust/target/
258+
plugins_rust/**/*.rs.bk
259+
plugins_rust/Cargo.lock

0 commit comments

Comments
 (0)