Core LSP client infrastructure for SwiftLens
Project description
swiftlens-core
Core LSP client infrastructure for SwiftLens - a Model Context Protocol server for Swift code analysis.
[](https://github.com/YOUR_ORG/swiftlens-core/actions/workflows/pr-tests.yml)
Overview
This package contains the low-level SourceKit-LSP integration that powers SwiftLens. It provides:
- Efficient LSP client with process management
- Protocol implementation for SourceKit-LSP communication
- Core LSP operations (symbols, references, definitions, hover, etc.)
- Resource management and timeout handling
Installation
This package is distributed as a pre-built wheel:
pip install swiftlens-core-*.whl
Usage
The primary entry point for tool developers is the managed_lsp_client context manager:
from swiftlens_core.src.lsp import managed_lsp_client
# Use the managed client for efficient LSP operations
with managed_lsp_client(project_root="/path/to/project") as client:
# Get document symbols
symbols = client.get_document_symbols("/path/to/file.swift")
# Find references
references = client.find_references("/path/to/file.swift", line=10, character=5)
# Get hover information
hover = client.get_hover("/path/to/file.swift", line=10, character=5)
API Reference
Core Classes
SwiftLSPClient: Main LSP client classLSPProtocol: Protocol implementationLSPClientManager: Client lifecycle management
Context Manager
managed_lsp_client(): Recommended way to use the LSP client
Operations
All operations are accessible through the client instance and return structured responses.
Requirements
- macOS with Xcode installed
- Python 3.9 or higher
- SourceKit-LSP (included with Xcode)
License
This is proprietary software. See LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swiftlens_core-0.1.9-cp313-cp313-macosx_15_0_arm64.whl.
File metadata
- Download URL: swiftlens_core-0.1.9-cp313-cp313-macosx_15_0_arm64.whl
- Upload date:
- Size: 574.4 kB
- Tags: CPython 3.13, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d8bc24a0afd224f2d71b396b495f94d2a9099099f741a75dc3a193db7786029
|
|
| MD5 |
0464d675fc94e383d339cdcdcd96b613
|
|
| BLAKE2b-256 |
84cbd0e1731d16ab966c679ac1347623f2d6d204a099e7b9baacc1eab5986d3b
|