libcontext 0.5.0__tar.gz → 0.6.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.
- {libcontext-0.5.0 → libcontext-0.6.0}/PKG-INFO +4 -4
- {libcontext-0.5.0 → libcontext-0.6.0}/README.md +3 -3
- {libcontext-0.5.0 → libcontext-0.6.0}/pyproject.toml +1 -1
- {libcontext-0.5.0 → libcontext-0.6.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/.github/workflows/ci.yml +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/.github/workflows/release.yml +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/.gitignore +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/CHANGELOG.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/CONTRIBUTING.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/DEPENDENCIES.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/LICENSE +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/SECURITY.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/docs/adr/001-progressive-disclosure-over-always-on-context.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/docs/adr/002-skill-plus-cli-as-primary-integration.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/docs/adr/004-ast-only-inspection.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/docs/adr/README.md +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/__init__.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/_envsetup.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/_security.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/cache.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/cli.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/collector.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/config.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/diff.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/exceptions.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/inspector.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/mcp_server.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/models.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/py.typed +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/src/libcontext/renderer.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/__init__.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_cache.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_cli.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_cli_mcp_parity.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_collector.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_config.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_diff.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_envsetup.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_inspector.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_mcp_server.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_models.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_renderer.py +0 -0
- {libcontext-0.5.0 → libcontext-0.6.0}/tests/test_security.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: libcontext
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: Generate optimized LLM context from Python library APIs — CLI, skill, and MCP server
|
|
5
5
|
Project-URL: Homepage, https://github.com/Syclaw/libcontext
|
|
6
6
|
Project-URL: Repository, https://github.com/Syclaw/libcontext
|
|
@@ -39,7 +39,7 @@ Description-Content-Type: text/markdown
|
|
|
39
39
|
|
|
40
40
|
> Context-efficient API references for LLM toolchains — structured, on-demand, not always-on.
|
|
41
41
|
|
|
42
|
-
**libcontext** inspects any installed Python package via static AST analysis (no code execution) and generates compact Markdown API references. It integrates with Claude Code (via a `/lib` skill) and VS Code
|
|
42
|
+
**libcontext** inspects any installed Python package via static AST analysis (no code execution) and generates compact Markdown API references. It integrates with Claude Code, GitHub Copilot (via a `/lib` skill), and VS Code / Cursor (via an MCP server) to provide **progressive disclosure** — only loading API context when you actually need it, avoiding context window pollution.
|
|
43
43
|
|
|
44
44
|
## Why This Exists
|
|
45
45
|
|
|
@@ -107,7 +107,7 @@ libctx inspect requests libctx inspect requests libctx inspect requests
|
|
|
107
107
|
(no signatures) for one module across all modules
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
The `/lib` skill (Claude Code) and MCP server (VS Code
|
|
110
|
+
The `/lib` skill (Claude Code, GitHub Copilot) and MCP server (Claude Code, VS Code, Cursor) automate this workflow — the AI assistant decides what to inspect based on the task at hand.
|
|
111
111
|
|
|
112
112
|
### Direct CLI Usage
|
|
113
113
|
|
|
@@ -332,7 +332,7 @@ All async operations use httpx internally.
|
|
|
332
332
|
| `diff.py` | API diff between two package versions with breaking change detection |
|
|
333
333
|
| `cache.py` | Persistent disk cache with mtime/file-count invalidation and LRU eviction |
|
|
334
334
|
| `cli.py` | CLI entry point — `inspect`, `install`, `diff`, and `cache` subcommands |
|
|
335
|
-
| `mcp_server.py` | MCP server for VS Code / Cursor integration (optional) |
|
|
335
|
+
| `mcp_server.py` | MCP server for Claude Code / VS Code / Cursor integration (optional) |
|
|
336
336
|
|
|
337
337
|
## Development
|
|
338
338
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
> Context-efficient API references for LLM toolchains — structured, on-demand, not always-on.
|
|
12
12
|
|
|
13
|
-
**libcontext** inspects any installed Python package via static AST analysis (no code execution) and generates compact Markdown API references. It integrates with Claude Code (via a `/lib` skill) and VS Code
|
|
13
|
+
**libcontext** inspects any installed Python package via static AST analysis (no code execution) and generates compact Markdown API references. It integrates with Claude Code, GitHub Copilot (via a `/lib` skill), and VS Code / Cursor (via an MCP server) to provide **progressive disclosure** — only loading API context when you actually need it, avoiding context window pollution.
|
|
14
14
|
|
|
15
15
|
## Why This Exists
|
|
16
16
|
|
|
@@ -78,7 +78,7 @@ libctx inspect requests libctx inspect requests libctx inspect requests
|
|
|
78
78
|
(no signatures) for one module across all modules
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
The `/lib` skill (Claude Code) and MCP server (VS Code
|
|
81
|
+
The `/lib` skill (Claude Code, GitHub Copilot) and MCP server (Claude Code, VS Code, Cursor) automate this workflow — the AI assistant decides what to inspect based on the task at hand.
|
|
82
82
|
|
|
83
83
|
### Direct CLI Usage
|
|
84
84
|
|
|
@@ -303,7 +303,7 @@ All async operations use httpx internally.
|
|
|
303
303
|
| `diff.py` | API diff between two package versions with breaking change detection |
|
|
304
304
|
| `cache.py` | Persistent disk cache with mtime/file-count invalidation and LRU eviction |
|
|
305
305
|
| `cli.py` | CLI entry point — `inspect`, `install`, `diff`, and `cache` subcommands |
|
|
306
|
-
| `mcp_server.py` | MCP server for VS Code / Cursor integration (optional) |
|
|
306
|
+
| `mcp_server.py` | MCP server for Claude Code / VS Code / Cursor integration (optional) |
|
|
307
307
|
|
|
308
308
|
## Development
|
|
309
309
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{libcontext-0.5.0 → libcontext-0.6.0}/docs/adr/001-progressive-disclosure-over-always-on-context.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|