Help us improve
Share bugs, ideas, or general feedback.
From lc-essentials
Fetches LimaCharlie documentation from GitHub repositories using WebFetch for platform features, SDKs, APIs, D&R rules, LCQL, sensors, outputs, extensions, integrations, AI skills, agents.
npx claudepluginhub refractionpoint/lc-ai --plugin lc-essentialsHow this skill is triggered — by the user, by Claude, or both
Slash command
/lc-essentials:lookup-lc-docThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill proactively whenever a user asks about LimaCharlie features, configuration, or implementation.
Manages Claude documentation: local index search/discovery/resolution by keywords/tags/natural language, sitemap scraping, metadata/alias handling, drift detection.
Searches and interprets Bitdrift documentation for SDK setup, API/service details, product behavior, configuration, and best practices via targeted fetches from docs.bitdrift.io.
Generates URLs to LimaCharlie web UI for dashboard, sensors, detections, D&R rules, FP rules, secrets, outputs, investigations, playbooks, AI agents, and sensor pages like timeline and processes.
Share bugs, ideas, or general feedback.
Use this skill proactively whenever a user asks about LimaCharlie features, configuration, or implementation.
Invoke this skill when users ask about:
Documentation is fetched from two GitHub repositories using WebFetch:
| Repository | Base URL |
|---|---|
| Platform docs | https://raw.githubusercontent.com/refractionPOINT/documentation/master/ |
| AI skills/agents | https://raw.githubusercontent.com/refractionPOINT/lc-ai/master/ |
ALWAYS start by fetching index/navigation files to discover the current structure:
# For platform documentation - fetch the main index
WebFetch: https://raw.githubusercontent.com/refractionPOINT/documentation/master/docs/index.md
# For AI skills/agents - fetch the summary files
WebFetch: https://raw.githubusercontent.com/refractionPOINT/lc-ai/master/marketplace/plugins/lc-essentials/README.md
WebFetch: https://raw.githubusercontent.com/refractionPOINT/lc-ai/master/marketplace/plugins/lc-essentials/SKILLS_SUMMARY.md
These index files contain links to all available documentation. Parse the links to discover:
After fetching index files, extract the file paths from links in the markdown content:
[text](path/to/file.md) or [:icon: text](path/to/file.md)Based on what you discovered in the index files, fetch the specific documentation:
# Construct URLs dynamically from discovered paths
WebFetch: {base_url}/{discovered_path}
Fetch multiple relevant files in parallel - don't stop at one file.
User: "How do I write D&R rules?"
1. Discover structure:
WebFetch: https://raw.githubusercontent.com/refractionPOINT/documentation/master/docs/index.md
-> Parse the markdown to find links related to "Detection", "Response", "D&R", "rules"
-> Discover paths like: limacharlie/doc/Detection_and_Response/detection-and-response-rules.md
2. Fetch discovered docs (in parallel):
WebFetch: https://raw.githubusercontent.com/refractionPOINT/documentation/master/docs/{discovered_path_1}
WebFetch: https://raw.githubusercontent.com/refractionPOINT/documentation/master/docs/{discovered_path_2}
(paths extracted from index file links)
3. Respond with comprehensive answer combining all sources