code-context-control 2.32.1__py3-none-any.whl → 2.32.2__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.
- cli/c3.py +1 -1
- {code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/METADATA +30 -1
- {code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/RECORD +7 -7
- {code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/WHEEL +0 -0
- {code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/entry_points.txt +0 -0
- {code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/licenses/LICENSE +0 -0
- {code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/top_level.txt +0 -0
cli/c3.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code-context-control
|
|
3
|
-
Version: 2.32.
|
|
3
|
+
Version: 2.32.2
|
|
4
4
|
Summary: Local code-intelligence layer for AI coding tools (Claude Code, Codex, Gemini, Copilot). Retrieve less, read less, edit safer.
|
|
5
5
|
Author-email: Dimitri Tselenchuk <dtselenc@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -281,6 +281,34 @@ to the C3 edit ledger so the audit trail covers platform-side changes too.
|
|
|
281
281
|
The **Hub UI** (per-project) gains a "Bitbucket" tab with sub-views for
|
|
282
282
|
Overview / Pull Requests / Branches / Activity / Admin.
|
|
283
283
|
|
|
284
|
+
### Oracle Discovery API (v2.32.0)
|
|
285
|
+
|
|
286
|
+
The **Oracle** is C3's optional cross-project memory agent (a local web app). As of
|
|
287
|
+
v2.32.0 it can expose C3's cross-project code & memory intelligence as **tools for an
|
|
288
|
+
external LLM** — point Claude (or any function-calling model) at a running Oracle and
|
|
289
|
+
it can discover your projects and search code, memory, and the cross-project graph
|
|
290
|
+
across all of them.
|
|
291
|
+
|
|
292
|
+
Two transports share one tool core:
|
|
293
|
+
|
|
294
|
+
- **MCP** (streamable HTTP/SSE) at `http://127.0.0.1:3332/mcp` — native for Claude
|
|
295
|
+
Code / Claude Desktop / any MCP client.
|
|
296
|
+
- **OpenAPI REST** at `http://127.0.0.1:3331/api/discovery` — for any LLM with
|
|
297
|
+
function-calling (fetch `/openapi.json` to auto-register the tools).
|
|
298
|
+
|
|
299
|
+
```bash
|
|
300
|
+
# Start the Oracle (serves the REST + MCP discovery endpoints)
|
|
301
|
+
python oracle/oracle_server.py --no-browser
|
|
302
|
+
|
|
303
|
+
# Print the Bearer token + a ready-to-paste .mcp.json snippet
|
|
304
|
+
c3 oracle api info
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
Only **read** and **safe-action** tools are exposed (no code editing); requests need a
|
|
308
|
+
**Bearer token** (stored in the OS keyring) and both servers bind `127.0.0.1` by
|
|
309
|
+
default. Generate, rotate, and copy the token from the dashboard's **Settings →
|
|
310
|
+
Discovery API** tab. See the [Oracle Discovery API guide](oracle-guide/discovery-api.md).
|
|
311
|
+
|
|
284
312
|
---
|
|
285
313
|
|
|
286
314
|
## Tiered local AI (optional)
|
|
@@ -355,6 +383,7 @@ The author may introduce a paid offering or relicense future major versions; no
|
|
|
355
383
|
|
|
356
384
|
- **PyPI:** https://pypi.org/project/code-context-control/
|
|
357
385
|
- **Changelog:** [`CHANGELOG.md`](CHANGELOG.md)
|
|
386
|
+
- **Oracle Discovery API:** [`oracle-guide/discovery-api.md`](oracle-guide/discovery-api.md)
|
|
358
387
|
- **Security policy:** [`SECURITY.md`](SECURITY.md)
|
|
359
388
|
- **Licensing FAQ:** [`LICENSING.md`](LICENSING.md)
|
|
360
389
|
- **Issues:** https://github.com/drknowhow/code-context-control/issues
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cli/__init__.py,sha256=ec66drCZGNMRU4V6ov0zVhYZph1us12Vn8OvG_LJyRY,22
|
|
2
2
|
cli/_hook_utils.py,sha256=1_hTA-Wz62xB8jnSAH4C5TfCkrwEP0g2kq_-oRfQLm4,3724
|
|
3
|
-
cli/c3.py,sha256=
|
|
3
|
+
cli/c3.py,sha256=mv6N7y8teSwK18x0q-XLjoLTZhWzrJYIsyH8rlbwj-o,288183
|
|
4
4
|
cli/docs.html,sha256=JgtBFUuUkvmYowPREYiGhhcRbB5e2UjkRc00MIF0hsU,143653
|
|
5
5
|
cli/edits.html,sha256=UjAhoCmBmQ89cklGvJqzC6eyNP2tc8H6T-e01DVkLvE,43418
|
|
6
6
|
cli/hook_auto_snapshot.py,sha256=amtliVDzKUQr6KBR0pdBA8vXghAV-gKr19jBaJVnP_w,5006
|
|
@@ -57,7 +57,7 @@ cli/ui/components/memory.js,sha256=v5IsHTxLHpXX4xCsUaZ_UPprZEabdgP4jiWc298iV2U,2
|
|
|
57
57
|
cli/ui/components/sessions.js,sha256=FIKtil76B8tCkAmcFV7hlj6GQ_DCJK2jCzvEmdK7NBE,30837
|
|
58
58
|
cli/ui/components/settings.js,sha256=8LVTV2TQl9tcRXhXbtBEJOCBdiyk-x2QASoVYZUAuEA,71442
|
|
59
59
|
cli/ui/components/sidebar.js,sha256=cAY_jwYB-o1X_wWn__VXlG4IegVObuE3NmVsuFWqxtg,7417
|
|
60
|
-
code_context_control-2.32.
|
|
60
|
+
code_context_control-2.32.2.dist-info/licenses/LICENSE,sha256=l8Kh5QCNWNvR6kIt8L0BUZvc2LAFiHv2c-FnsGnUZf4,11301
|
|
61
61
|
core/__init__.py,sha256=TSDCEcM4V7gcZVM3w2ykJaqEUch4Dkon-rivV17T73s,2501
|
|
62
62
|
core/config.py,sha256=0RBVni99wqJIxAYU6uweWVOmdI-FJvQ8d3IV5Mp1Muc,12818
|
|
63
63
|
core/ide.py,sha256=9LzsDVK2LL8RVpL40l6oNGiasZ3D8OCU_9i9A0gJKBo,6876
|
|
@@ -153,8 +153,8 @@ tui/screens/search_view.py,sha256=MMHjVdlk3HZSuDBSvq8IGrqv_Mh5Us6YqXQ80bcWSMk,19
|
|
|
153
153
|
tui/screens/session_view.py,sha256=eZ1eDwHTvPOck1wCCviixtOaCxIkBT_95ytNNNriGNA,5991
|
|
154
154
|
tui/screens/stats.py,sha256=p81PjzdaIv7hllb8f45-rlVe4lJZwSdIMqu7e86_u5s,6223
|
|
155
155
|
tui/screens/ui_view.py,sha256=1QJCgLh2YfgWIpvzRG1KOGXYEaOYX6ojN61Azjf2oX0,2125
|
|
156
|
-
code_context_control-2.32.
|
|
157
|
-
code_context_control-2.32.
|
|
158
|
-
code_context_control-2.32.
|
|
159
|
-
code_context_control-2.32.
|
|
160
|
-
code_context_control-2.32.
|
|
156
|
+
code_context_control-2.32.2.dist-info/METADATA,sha256=wPXVQQGc2FfMlK5H2UWOq9pPAmRY_MWXXpJjj9ALNE4,19221
|
|
157
|
+
code_context_control-2.32.2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
158
|
+
code_context_control-2.32.2.dist-info/entry_points.txt,sha256=7kX_WUsDCF2hbXzvbNyscyaBb9AeA-DJY5v_5hN0DlU,93
|
|
159
|
+
code_context_control-2.32.2.dist-info/top_level.txt,sha256=wRt41zBybVF3qAiNXHz9BURbkKvUvfhmWWtKMhaw6eE,29
|
|
160
|
+
code_context_control-2.32.2.dist-info/RECORD,,
|
|
File without changes
|
{code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{code_context_control-2.32.1.dist-info → code_context_control-2.32.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|