code-context-mcp 1.0.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.
Files changed (43) hide show
  1. code_context/__init__.py +3 -0
  2. code_context/_background.py +93 -0
  3. code_context/_composition.py +425 -0
  4. code_context/_watcher.py +89 -0
  5. code_context/adapters/__init__.py +0 -0
  6. code_context/adapters/driven/__init__.py +0 -0
  7. code_context/adapters/driven/chunker_dispatcher.py +43 -0
  8. code_context/adapters/driven/chunker_line.py +54 -0
  9. code_context/adapters/driven/chunker_treesitter.py +215 -0
  10. code_context/adapters/driven/chunker_treesitter_queries.py +111 -0
  11. code_context/adapters/driven/code_source_fs.py +122 -0
  12. code_context/adapters/driven/embeddings_local.py +111 -0
  13. code_context/adapters/driven/embeddings_openai.py +58 -0
  14. code_context/adapters/driven/git_source_cli.py +211 -0
  15. code_context/adapters/driven/introspector_fs.py +224 -0
  16. code_context/adapters/driven/keyword_index_sqlite.py +206 -0
  17. code_context/adapters/driven/reranker_crossencoder.py +61 -0
  18. code_context/adapters/driven/symbol_index_sqlite.py +264 -0
  19. code_context/adapters/driven/vector_store_numpy.py +119 -0
  20. code_context/adapters/driving/__init__.py +0 -0
  21. code_context/adapters/driving/mcp_server.py +365 -0
  22. code_context/cli.py +161 -0
  23. code_context/config.py +114 -0
  24. code_context/domain/__init__.py +0 -0
  25. code_context/domain/index_bus.py +52 -0
  26. code_context/domain/models.py +140 -0
  27. code_context/domain/ports.py +205 -0
  28. code_context/domain/use_cases/__init__.py +0 -0
  29. code_context/domain/use_cases/explain_diff.py +98 -0
  30. code_context/domain/use_cases/find_definition.py +30 -0
  31. code_context/domain/use_cases/find_references.py +22 -0
  32. code_context/domain/use_cases/get_file_tree.py +36 -0
  33. code_context/domain/use_cases/get_summary.py +24 -0
  34. code_context/domain/use_cases/indexer.py +336 -0
  35. code_context/domain/use_cases/recent_changes.py +36 -0
  36. code_context/domain/use_cases/search_repo.py +131 -0
  37. code_context/server.py +151 -0
  38. code_context_mcp-1.0.0.dist-info/METADATA +181 -0
  39. code_context_mcp-1.0.0.dist-info/RECORD +43 -0
  40. code_context_mcp-1.0.0.dist-info/WHEEL +5 -0
  41. code_context_mcp-1.0.0.dist-info/entry_points.txt +3 -0
  42. code_context_mcp-1.0.0.dist-info/licenses/LICENSE +21 -0
  43. code_context_mcp-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,181 @@
1
+ Metadata-Version: 2.4
2
+ Name: code-context-mcp
3
+ Version: 1.0.0
4
+ Summary: MCP server with local RAG for Claude Code repo context
5
+ Author: code-context contributors
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/nachogeinfor-ops/code-context
8
+ Project-URL: Documentation, https://github.com/nachogeinfor-ops/code-context#readme
9
+ Project-URL: Issues, https://github.com/nachogeinfor-ops/code-context/issues
10
+ Project-URL: Changelog, https://github.com/nachogeinfor-ops/code-context/blob/main/CHANGELOG.md
11
+ Project-URL: Tool Protocol, https://github.com/nachogeinfor-ops/context-template/blob/main/docs/tool-protocol.md
12
+ Keywords: claude-code,mcp,rag,developer-tools
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: POSIX :: Linux
17
+ Classifier: Operating System :: MacOS
18
+ Classifier: Operating System :: Microsoft :: Windows
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Software Development
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Classifier: Topic :: Text Processing :: Indexing
25
+ Requires-Python: >=3.11
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+ Requires-Dist: mcp>=1.0
29
+ Requires-Dist: numpy>=1.26
30
+ Requires-Dist: pyarrow>=14
31
+ Requires-Dist: platformdirs>=4
32
+ Requires-Dist: pathspec>=0.12
33
+ Requires-Dist: filelock>=3.13
34
+ Requires-Dist: sentence-transformers>=2.7
35
+ Requires-Dist: tree-sitter>=0.22
36
+ Requires-Dist: tree-sitter-language-pack>=0.7
37
+ Provides-Extra: openai
38
+ Requires-Dist: openai>=1.30; extra == "openai"
39
+ Provides-Extra: watch
40
+ Requires-Dist: watchdog>=4; extra == "watch"
41
+ Provides-Extra: dev
42
+ Requires-Dist: pytest>=7.4; extra == "dev"
43
+ Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
44
+ Requires-Dist: ruff>=0.5; extra == "dev"
45
+ Requires-Dist: watchdog>=4; extra == "dev"
46
+ Dynamic: license-file
47
+
48
+ # code-context
49
+
50
+ [![PyPI](https://img.shields.io/pypi/v/code-context-mcp.svg)](https://pypi.org/project/code-context-mcp/)
51
+ [![CI](https://github.com/nachogeinfor-ops/code-context/actions/workflows/ci.yml/badge.svg)](https://github.com/nachogeinfor-ops/code-context/actions/workflows/ci.yml)
52
+ [![Python](https://img.shields.io/pypi/pyversions/code-context-mcp.svg)](https://pypi.org/project/code-context-mcp/)
53
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
54
+
55
+ > **Status: stable (v1.0.0).** A Python MCP server with local RAG
56
+ > for [Claude Code](https://docs.claude.com/claude-code).
57
+ > Implements the [`code-context` Tool Protocol](https://github.com/nachogeinfor-ops/context-template/blob/main/docs/tool-protocol.md)
58
+ > v1.2 defined by [`context-template`](https://github.com/nachogeinfor-ops/context-template).
59
+
60
+ ## What it does
61
+
62
+ When you point Claude Code at a repo, you give it `CLAUDE.md` for static context. `code-context` adds **dynamic context** via 7 MCP tools:
63
+
64
+ - **`search_repo(query, top_k?, scope?)`** — **hybrid retrieval** across the codebase: vector embeddings (semantic) fused with BM25 keyword search (exact identifiers) via Reciprocal Rank Fusion. Optional cross-encoder reranking (off by default — enable with `CC_RERANK=on`).
65
+ - **`recent_changes(since?, paths?, max?)`** — recent git commits, optionally filtered.
66
+ - **`get_summary(scope?, path?)`** — structured project summary (name, stack, key modules, stats).
67
+ - **`find_definition(name, language?, max?)`** — locate where a symbol (function, class, method, type) is defined. Use INSTEAD of `Grep` for `def X` / `class X` / `function X` patterns. Returns repo-relative paths with line ranges and the symbol's kind (function, class, method, interface, struct, enum, record).
68
+ - **`find_references(name, max?)`** — list every line mentioning a named symbol. Use INSTEAD of `grep -n "X"` when the user asks "who calls X?" or "where is X used?". Word-boundary matched, so `log` doesn't return `logger`.
69
+ - **`get_file_tree(path?, max_depth?, include_hidden?)`** — repo-relative directory tree, gitignore-aware. Use INSTEAD of `Bash: ls -R` or `Bash: tree` for orientation prompts ("show me the project structure", "what's in this module?"). Returns hierarchical FileTreeNode with file sizes; honors `.gitignore`; defaults to depth 4.
70
+ - **`explain_diff(ref, max_chunks?)`** — AST-aligned chunks affected by the diff at `ref` (full SHA, `HEAD`, `HEAD~N`, branch). Use INSTEAD of `Bash: git show <sha>` for "what does this commit do" questions. The chunker resolves which whole functions/classes were touched, not raw line additions.
71
+
72
+ Architecture: hexagonal (ports & adapters). 9 driven ports with default implementations (sentence-transformers embeddings, NumPy+Parquet vector store, tree-sitter / line chunker, filesystem code source, git CLI, filesystem introspector, SQLite FTS5 keyword index, cross-encoder reranker, SQLite-backed symbol index). All swappable.
73
+
74
+ ## Install
75
+
76
+ ```bash
77
+ pip install code-context-mcp
78
+ # or, if you don't want torch (~2 GB), use the OpenAI embeddings backend:
79
+ pip install code-context-mcp[openai]
80
+ ```
81
+
82
+ > The PyPI distribution is **`code-context-mcp`** (the unhyphenated `code-context` name was squatted by an unrelated, abandoned project from 2023; see CHANGELOG for context). The Python module is still `code_context` and the CLI binaries are still `code-context` and `code-context-server`, so quickstart commands and `from code_context import ...` are unchanged.
83
+
84
+ > Note: the default install pulls `sentence-transformers` + the `all-MiniLM-L6-v2` model on first run. Plan for ~2 GB of disk after first reindex (torch ≈ 2 GB, model ≈ 90 MB). Use the `[openai]` extra to avoid torch entirely.
85
+
86
+ ## Quickstart
87
+
88
+ ```bash
89
+ cd /path/to/your/repo
90
+ claude mcp add code-context --command code-context-server
91
+ # Open Claude Code. From v0.9.0 the server starts in <1 s on a previously-indexed
92
+ # repo; the first reindex (and any subsequent ones) run on a background thread,
93
+ # so queries are never blocked. Cold start: queries return [] until the first
94
+ # bg reindex completes (~30-60 s on a typical repo with all-MiniLM on CPU).
95
+ # Edit-cycle reindex is sub-10 s thanks to v0.8.0's dirty_set tracking.
96
+ ```
97
+
98
+ ### Live mode (optional)
99
+
100
+ If you want every save in the repo to flow into the index without
101
+ manual `code-context reindex`:
102
+
103
+ ```bash
104
+ pip install code-context-mcp[watch] # adds watchdog
105
+ export CC_WATCH=on
106
+ claude mcp add code-context --command code-context-server
107
+ ```
108
+
109
+ Edits are debounced for ~1 s (configurable via
110
+ `CC_WATCH_DEBOUNCE_MS`) and then trigger a background reindex.
111
+ Default off — opt-in.
112
+
113
+ For OpenAI embeddings:
114
+ ```bash
115
+ export CC_EMBEDDINGS=openai
116
+ export OPENAI_API_KEY=sk-...
117
+ claude mcp add code-context --command code-context-server
118
+ ```
119
+
120
+ ## Making Claude actually use these tools
121
+
122
+ Claude Code defaults to its built-in tools (`Bash`, `Grep`, `Glob`, `Read`) over MCP servers because it knows them best. To get the value of `code-context`, give Claude an explicit hint by adding a section like this to your project's `CLAUDE.md`:
123
+
124
+ ```markdown
125
+ ## Context tools
126
+
127
+ This repo has the [code-context](https://github.com/nachogeinfor-ops/code-context) MCP server installed. Prefer it over built-in tools:
128
+
129
+ - **`search_repo(query, top_k?, scope?)`** — for conceptual questions like "where do we handle authentication" or "how is caching implemented". Use this instead of `Grep` whenever the query isn't an exact string match.
130
+ - **`recent_changes(since?, paths?, max?)`** — for "what changed recently" / commit-history questions. Use this instead of shelling out to `git log`.
131
+ - **`get_summary(scope?, path?)`** — for project orientation at session start, or to inspect a specific module.
132
+ - **`find_definition(name, language?, max?)`** — for "where is X defined?". Use this instead of `Grep` for `def X` / `class X` patterns; tree-sitter-indexed at reindex time, so it's faster and more accurate than scanning text.
133
+ - **`find_references(name, max?)`** — for "who calls X?" / "where is X used?". Use this instead of `grep -n`; word-boundary matched so `log` won't match `logger`.
134
+ - **`get_file_tree(path?, max_depth?, include_hidden?)`** — for "show me the project structure" / "what's in this module?". Use this instead of `Bash: ls -R` / `Bash: tree`; gitignore-aware and structured (file sizes included).
135
+ - **`explain_diff(ref, max_chunks?)`** — for "what does this commit do?" / "what changed in HEAD~3?". Use this instead of `Bash: git show <sha>`; the chunker resolves whole functions/classes that were touched, not raw line additions.
136
+ ```
137
+
138
+ Without this hint, Claude will work fine — it just won't reach for the MCP tools, which means the index goes unused. The hint is one paragraph; copy-paste it.
139
+
140
+ ## CLI
141
+
142
+ `code-context-server` is the MCP binary; you don't run it directly. The companion `code-context` CLI helps administer the index:
143
+
144
+ ```bash
145
+ code-context status # print index health + dirty/deleted counts
146
+ code-context reindex # incremental by default (only changed files)
147
+ code-context reindex --force # full reindex (post-model-upgrade or cache reset)
148
+ code-context query "where do we validate user emails" # debug, no MCP
149
+ code-context clear --yes # delete the cache for this repo
150
+ ```
151
+
152
+ ## Configuration
153
+
154
+ Configured via env vars. See [`docs/configuration.md`](docs/configuration.md) for the full list. Most-used:
155
+
156
+ | Var | Default |
157
+ |---|---|
158
+ | `CC_EMBEDDINGS` | `local` (or `openai`) |
159
+ | `CC_EMBEDDINGS_MODEL` | `all-MiniLM-L6-v2` |
160
+ | `CC_INCLUDE_EXTENSIONS` | `.py,.js,.ts,.jsx,.tsx,.go,.rs,.java,.c,.cpp,.h,.hpp,.md,.yaml,.yml,.json` |
161
+ | `CC_CHUNKER` | `treesitter` (AST-aware for Py/JS/TS/Go/Rust/C#, line fallback) — set `line` for v0.1.x behavior |
162
+ | `CC_CACHE_DIR` | platformdirs user cache |
163
+
164
+ ## Documentation
165
+
166
+ - **[Public API (v1)](docs/v1-api.md)** — what's stable; what's not. Read this before depending on `code-context` from another project.
167
+ - **[Configuration](docs/configuration.md)** — every env var with examples (chunker strategies, hybrid search, symbol index, background reindex, watch mode, …).
168
+ - **[Architecture](docs/architecture.md)** — hexagonal diagram, port contracts, indexing lifecycle, Sprint 7 background-thread + bus.
169
+ - **[Eval suite](benchmarks/eval/README.md)** — NDCG@10 / MRR / latency baselines per retrieval mode.
170
+ - **[Releasing](docs/release.md)** — Trusted Publisher setup, per-release checklist.
171
+ - **[Extending](docs/extending.md)** — write your own embeddings provider, vector store, or chunker.
172
+
173
+ ## Status
174
+
175
+ **v1.0.0 — stable.** Public surface frozen; v1.x will only add. See
176
+ [`docs/v1-api.md`](docs/v1-api.md) for the commitment scope and
177
+ [`CHANGELOG.md`](CHANGELOG.md) for what shipped in each version.
178
+
179
+ ## License
180
+
181
+ [MIT](LICENSE).
@@ -0,0 +1,43 @@
1
+ code_context/__init__.py,sha256=gJtH71A7AD6NuyaIrjnywBvecuMItchx8MYKHY_Kh7M,99
2
+ code_context/_background.py,sha256=rWKvjh5TmDXuLLgCm13UPJoDqTdbJoE62wwLMPC0JYg,3444
3
+ code_context/_composition.py,sha256=OMaXJBKJvo8TULmaO388lJwVk1MHvgdB7xCua8-Mbfg,14571
4
+ code_context/_watcher.py,sha256=Mv3XpKcAHJYf4s3oyAvVLD3ikupHJ__Cd-KYzpb292Q,2999
5
+ code_context/cli.py,sha256=EzUJpt0uTmOvlumV1Id5oyIAoeCLC_6UnfG3Iu2dK-4,5408
6
+ code_context/config.py,sha256=jtTzuFHkWqU757gvNkih07W7zkFeejpoXZ35C_kJSOo,3911
7
+ code_context/server.py,sha256=ZVROU7kobXghplldTQosiTAjh22r6VWO7HtTr2EoKF8,5106
8
+ code_context/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ code_context/adapters/driven/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ code_context/adapters/driven/chunker_dispatcher.py,sha256=aRNRhuxyWdj6dU3bcPA6386IV-4Has2US25cC_Q3gpo,1522
11
+ code_context/adapters/driven/chunker_line.py,sha256=6X2S3R60YHuj1PJ7wGz7nMfokpHGknfhL7Jg5SQFn9c,1493
12
+ code_context/adapters/driven/chunker_treesitter.py,sha256=RgYbUZdfpj_GqdQzYX-Uu1AAcBQGXq7qY1cGnsREQ3U,8139
13
+ code_context/adapters/driven/chunker_treesitter_queries.py,sha256=EHsvL5Mvf92WW50mVdZSuhQ9cpEYPGYjUXCXZN02i5c,3271
14
+ code_context/adapters/driven/code_source_fs.py,sha256=HNpbNCEomtZxwfCTB7N1yVGQAiUfwTLIp1unevWHQx4,4159
15
+ code_context/adapters/driven/embeddings_local.py,sha256=u_llGdxvg13hEfjU_8Y6iMI98lWl5zOguFcAA1_5sUE,4274
16
+ code_context/adapters/driven/embeddings_openai.py,sha256=SIWmkI8HLiHtYM7V9WgnTrrAiAq8AV1qHgKlmmGmhcA,1572
17
+ code_context/adapters/driven/git_source_cli.py,sha256=mIlNGh6v1Gh0a3424kCDc3ifemPsX70IK96ADKcApt4,7340
18
+ code_context/adapters/driven/introspector_fs.py,sha256=1zicMEUduwZK6hjztdzq3UgkLyHKx0ECd85cMjg-zs8,7654
19
+ code_context/adapters/driven/keyword_index_sqlite.py,sha256=qMxZ1tkOS2rtsZXW0F_MIm2GIRis3AQNHUOyLa03CnI,8351
20
+ code_context/adapters/driven/reranker_crossencoder.py,sha256=fYEK4f6mMViUcM3i8gpanw1StbI6-3sTEOIry1yROrY,1837
21
+ code_context/adapters/driven/symbol_index_sqlite.py,sha256=0Olb3CRe64kQt9b8QaCMXsZHeZcYtj4I04fZTeBHPrg,10934
22
+ code_context/adapters/driven/vector_store_numpy.py,sha256=ZwLb50IaGa1byiuzSoOXFcSKpq72koaBjV1cXNkFEJY,4563
23
+ code_context/adapters/driving/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ code_context/adapters/driving/mcp_server.py,sha256=Qj_fQhIHnduS1jFrO0I2V2r4OUHhYsfEWXOjTT8szZ0,14665
25
+ code_context/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ code_context/domain/index_bus.py,sha256=HOml7yz8IMKfnM8gCR9zaoEhI0ddheSUMzlQ8f08XzM,1829
27
+ code_context/domain/models.py,sha256=OiDDgw3RzRtIKjcteIR9X8rkqKsY4bh0iXdrzBBXQyw,4048
28
+ code_context/domain/ports.py,sha256=U8TjBJ_PaQ4d8NFk0l9oiCYK_LygdbdlwXj7AfVxRQs,6468
29
+ code_context/domain/use_cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ code_context/domain/use_cases/explain_diff.py,sha256=Jws_LUq2bgXhPPFVx_kN-zlF0-ykPPSlnVdP-6NsN6E,4156
31
+ code_context/domain/use_cases/find_definition.py,sha256=B3PmWYivSMscXaa0xujOq9pObYHX-TQ-OPgZ9TZgnsc,892
32
+ code_context/domain/use_cases/find_references.py,sha256=tguFc39BYupV6PBlv14IIk6DgqVzm5UYAoLnSpNNLJg,641
33
+ code_context/domain/use_cases/get_file_tree.py,sha256=qAjxnvrmnvaq5wRZoRkcXPxnJTlXxgVJk4uw5liRBFk,932
34
+ code_context/domain/use_cases/get_summary.py,sha256=W5DPolHZbcPNsmv-TC13MVD6-dEi7L4_z4QYETuxsHg,901
35
+ code_context/domain/use_cases/indexer.py,sha256=wUw2YHRjEyq7gN369kozle7lbpUhz_gLrPeHtDylMR8,14177
36
+ code_context/domain/use_cases/recent_changes.py,sha256=Lg9SPIgO73D_4tWoIfdcLPp6KZXgQTsUkH7U0EBF9UA,1047
37
+ code_context/domain/use_cases/search_repo.py,sha256=hAhaumSRh3LZI3qSZaGVK8x6khtleH2dI5MSVsoRRaA,5249
38
+ code_context_mcp-1.0.0.dist-info/licenses/LICENSE,sha256=wTfupSQSWMPKgTgleNJcx0tXs0GZ8WU6Isu5h0y_f4E,1082
39
+ code_context_mcp-1.0.0.dist-info/METADATA,sha256=DOEZFD4rae_CXS1Q92UeSuNDx5V8FdaX425pLZa3Q08,10792
40
+ code_context_mcp-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
41
+ code_context_mcp-1.0.0.dist-info/entry_points.txt,sha256=Vl7r5xH8wUB-mfd_rVmwJQCrYAd9c3t-wo3dBn5dTCQ,102
42
+ code_context_mcp-1.0.0.dist-info/top_level.txt,sha256=S4-Fe3nUrB2OIzEUjkjAfeJqc1gOsPaSakUM1sRUnHI,13
43
+ code_context_mcp-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ code-context = code_context.cli:main
3
+ code-context-server = code_context.server:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 code-context contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ code_context