skill-metadata.json
{
"documents": {
"SKILL.md": {
"kind": "entrypoint",
"title": "LinkedIn URL Lookup",
"tags": [
"recipe"
],
"providers": []
}
}
}
code.deepline.com · 공식 웹
오탐을 방지하기 위해 이름과 회사명을 기반으로 한 LinkedIn 프로필 URL을 엄격한 신원 확인 절차를 거쳐 확인합니다.
웹에서 배포되는 스킬입니다. 원문 페이지의 설치 안내 ↗를 따라주세요.
skill-metadata.json{
"documents": {
"SKILL.md": {
"kind": "entrypoint",
"title": "LinkedIn URL Lookup",
"tags": [
"recipe"
],
"providers": []
}
}
}
SKILL.md--- name: linkedin-url-lookup description: "Resolve LinkedIn profile URLs from name + company with strict identity validation to avoid false positives." --- # LinkedIn URL Lookup ## Quick Start ```bash npm install -g deepline # Fallback for secure sandboxes: mkdir -p "$HOME/.local" && npm config set prefix "$HOME/.local" && export PATH="$HOME/.local/bin:$PATH" && npm install -g deepline --registry https://code.deepline.com/api/v2/npm/ deepline auth register --wait auto deepline auth wait --timeout 120 # completes Cowork/browser approval; no-op if already connected deepline auth status deepline -h ``` This is a recipe shortcut. It pre-selects the linkedin-url-lookup recipe but the **deepline-gtm governs the entire session**. ## Execution order 1. **Invoke `deepline-gtm`** using the Skill tool. 2. **Follow the meta-skill's full routing instructions** - analyze the user's complete prompt and load every sub-doc the meta-skill tells you to. Do not skip docs just because a recipe is pre-selected. 3. **Follow the meta-skill's routing gate for this recipe.** Read the linkedin-url-lookup recipe at `../deepline-gtm/recipes/linkedin-url-lookup.md` (relative to this file) only when that gate routes you to it. Conditional access and safety checks still apply. The recipe only covers one part of the task. The meta-skill handles everything else the user asked for.