| name | Categorize Profile |
| description | Tools and instructions for extracting LinkedIn profile data and categorizing connections based on a predefined strategy. |
Categorize Profile Skill
This skill helps in efficiently processing LinkedIn profiles to categorize connections according to the strategy.md document.
Components
- Extraction Script:
scripts/scrape_profile.js - A browser-side script to extract name, headline, experience, education, and recent posts.
- Analysis Logic: A set of criteria derived from
strategy.md to be applied to the extracted data.
Workflow
- Open Profile: Navigate to the LinkedIn profile URL.
- Extract Data: Run the extraction script in the browser console.
- Analyze: Use the extracted JSON data to determine the category.
- Check
profile.md for Peer/Alumnus matches.
- Check
strategy.md for professional role matches (Acquisition, Executive, Tech Leader, Contributor).
- If it's a Leader/Contributor, check recent posts in the extraction data.
- Update: Mark the category in
connections.md.
Data Schema
The extraction script returns:
{
"name": "Full Name",
"headline": "Current Professional Headline",
"experience": [{ "company": "...", "role": "..." }],
"education": [{ "school": "..." }],
"recentPosts": ["Post content 1", "Post content 2"]
}