Development
python-support - Claude MCP Skill
Python-Specific Behavior
SEO Guide: Enhance your AI agent with the python-support tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to python-specific behavior... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# Python-Specific Behavior
## Class Display in search_module
For Python codebases, the `search_module` tool displays both module-level functions AND classes defined in the module.
### How It Works
The Python indexer creates separate searchable entities:
1. **Modules** (e.g., `cicada.git.history_analyzer`)
- Contains module-level functions
- Displays classes defined in the module
- Each class shows: name, line number, public/private method counts
2. **Classes** (e.g., `HistoryAnalyzer`)
- Indexed separately as module entries
- Contains class methods
- Has `parent_module` field linking to the module
### Example Output
```
cicada/git/history_analyzer.py:1
cicada.git.history_analyzer • 0 public • 0 private
**Classes:**
• HistoryAnalyzer (line 17) • 3 public • 9 private
Analyzes git history for files and functions.
Module-level: (none)
```
### Usage
Both approaches work for finding code:
- `search_module("cicada.git.history_analyzer")` → Shows module with classes
- `search_module("HistoryAnalyzer")` → Shows class with methods
**Implementation:** `cicada/languages/scip/converter.py`, `cicada/format/formatter.py`
## Configurable Import Detection
The SCIP converter has a configurable `import_search_lines` parameter that controls how many lines from the top of the file are scanned for import statements.
### Default Behavior
- Scans first **50 lines** for imports (increased from 15 in initial implementation)
- Configurable via `import_search_lines` parameter
- Prevents false positives by ignoring function calls deeper in the file
### Usage
```python
from cicada.languages.scip.converter import SCIPConverter
# Use default (50 lines)
converter = SCIPConverter()
# Increase for files with very large headers
converter = SCIPConverter(import_search_lines=100)
# Decrease for faster processing if all imports are early
converter = SCIPConverter(import_search_lines=25)
```
### Why This Matters
- Python files often have large module docstrings (10-30 lines)
- Copyright headers and license text can push imports down
- Without this limit, regular function calls would be misidentified as imports
- The configurable limit balances accuracy and flexibility
**Implementation:** `cicada/languages/scip/converter.py:19-42`, `tests/languages/scip/test_import_search_lines.py`Signals
Information
- Repository
- wende/cicada
- Author
- wende
- Last Sync
- 1/20/2026
- Repo Updated
- 1/17/2026
- Created
- 1/18/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
cursorrules
CrewAI Development Rules
README
Agents — Working Implementations
firecrawl-build-search
Integrate Firecrawl `/search` into product code and agent workflows. Use when an app needs discovery before extraction, when the feature starts with a query instead of a URL, or when the system should search the web and optionally hydrate result content.
firecrawl-build-onboarding
Get Firecrawl credentials and SDK setup into a project. Use when an application needs `FIRECRAWL_API_KEY`, when an agent should add Firecrawl to `.env`, when the user wants to authenticate Firecrawl for app code, or when choosing the first SDK and docs for a new Firecrawl integration. This skill includes its own browser auth flow, so it does not depend on the website onboarding skill.
Related Guides
Python Django Best Practices: A Comprehensive Guide to the Claude Skill
Learn how to use the python django best practices Claude skill. Complete guide with installation instructions and examples.
Mastering Python and TypeScript Development with the Claude Skill Guide
Learn how to use the python typescript guide Claude skill. Complete guide with installation instructions and examples.
Mastering Data Science with Claude: A Complete Guide to the Pandas Scikit-Learn Skill
Learn how to use the pandas scikit learn guide Claude skill. Complete guide with installation instructions and examples.