Source: https://github.com/aipoch/medical-research-skills
LinkedIn Optimizer for Healthcare Professionals
Optimize LinkedIn profiles for doctors, physicians, nurses, and healthcare professionals to enhance professional visibility and career opportunities.
When to Use
- Use this skill when the task needs Use when optimizing LinkedIn profiles for doctors, physicians, nurses, healthcare professionals, or medical researchers. Crafts compelling headlines, writes professional summaries, integrates healthcare keywords, and builds personal branding for medical careers.
- Use this skill for other tasks that require explicit assumptions, bounded scope, and a reproducible output format.
- Use this skill when the response must stay inside the documented task boundary instead of expanding into adjacent work.
Key Features
- Scope-focused workflow aligned to: Use when optimizing LinkedIn profiles for doctors, physicians, nurses, healthcare professionals, or medical researchers. Crafts compelling headlines, writes professional summaries, integrates healthcare keywords, and builds personal branding for medical careers.
- Packaged executable path(s):
scripts/main.py.
- Reference material available in
references/ for task-specific guidance.
- Structured execution path designed to keep outputs consistent and reviewable.
Dependencies
Python: 3.10+. Repository baseline for current packaged skills.
Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.
Example Usage
cd "20260318/scientific-skills/Academic Writing/linkedin-optimizer"
python -m py_compile scripts/main.py
python scripts/main.py --help
Example run plan:
- Confirm the user input, output path, and any required config values.
- Edit the in-file
CONFIG block or documented parameters if the script uses fixed settings.
- Run
python scripts/main.py with the validated inputs.
- Review the generated output and return the final artifact with any assumptions called out.
Implementation Details
See ## Workflow above for related details.
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
- Primary implementation surface:
scripts/main.py.
- Reference guidance:
references/ contains supporting rules, prompts, or checklists.
- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
Quick Check
Use this command to verify that the packaged script entry point can be parsed before deeper execution.
python -m py_compile scripts/main.py
Audit-Ready Commands
Use these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.
python -m py_compile scripts/main.py
python scripts/main.py
Workflow
- Confirm the user objective, required inputs, and non-negotiable constraints before doing detailed work.
- Validate that the request matches the documented scope and stop early if the task would require unsupported assumptions.
- Use the packaged script path or the documented reasoning path with only the inputs that are actually available.
- Return a structured result that separates assumptions, deliverables, risks, and unresolved items.
- If execution fails or inputs are incomplete, switch to the fallback path and state exactly what blocked full completion.
Quick Start
from scripts.linkedin_optimizer import LinkedInOptimizer
optimizer = LinkedInOptimizer()
# Generate optimized profile content
profile = optimizer.optimize(
role="Cardiologist",
specialty="Interventional Cardiology",
achievements=["Published 15+ peer-reviewed papers", "Led clinical trial for novel stent"],
years_experience=12
)
print(profile.headline)
print(profile.about_section)
Core Capabilities
1. Headline Optimization
optimizer = LinkedInOptimizer()
headline = optimizer.generate_headline(
title="Board-Certified Cardiologist",
specialty="Heart Failure & Transplant",
differentiator="Clinical Researcher"
)
# Output: "Board-Certified Cardiologist | Heart Failure & Transplant Specialist | Clinical Researcher"
Headline Formulas:
Title | Specialty | Differentiator
Role | Key Skill | Mission
Credentials | Focus Area | Value Proposition
2. About Section Writing
about = optimizer.write_about_section(
role="Oncologist",
approach="Patient-centered care with precision medicine",
expertise=["Immunotherapy", "Clinical trials", "Palliative care"],
achievements=["Treated 1000+ patients", "Principal investigator on 5 trials"]
)
About Section Structure:
- Opening Hook (2-3 sentences) - Who you help and how
- Expertise Areas (bullet points) - Key skills and specialties
- Key Achievements (bullet points) - Quantified accomplishments
- Call to Action - How to connect
Example:
I'm a board-certified oncologist dedicated to advancing cancer treatment through precision medicine and immunotherapy. With over 10 years of experience, I specialize in developing personalized treatment plans that improve patient outcomes while maintaining quality of life.
Areas of Expertise:
- Immunotherapy and targeted therapy
- Clinical trial design and implementation
- Palliative care integration
- Multi-disciplinary team leadership
Key Achievements:
- Treated 1000+ cancer patients with 85% positive outcomes
- Principal investigator on 5 Phase II/III clinical trials
- Published 20+ peer-reviewed papers on novel treatment protocols
Let's Connect: Open to collaborations on clinical research and discussing innovative treatment approaches.
3. Keyword Integration
keywords = optimizer.suggest_keywords(
specialty="Emergency Medicine",
role="ER Physician",
target_audience=["Recruiters", "Hospital administrators", "Medical device companies"]
)
High-Value Keywords by Specialty:
| Specialty |
Primary Keywords |
Secondary Keywords |
| Cardiology |
Cardiologist, Interventional Cardiology, Heart Failure |
Clinical Cardiology, Cardiac Catheterization |
| Oncology |
Oncologist, Medical Oncology, Cancer Treatment |
Immunotherapy, Precision Medicine |
| Surgery |
Surgeon, General Surgery, Minimally Invasive |
Robotic Surgery, Laparoscopic |
| Pediatrics |
Pediatrician, Child Health, Developmental Medicine |
Neonatology, Pediatric Emergency |
| Research |
Clinical Research, Principal Investigator, FDA Trials |
Drug Development, Protocol Design |
4. Experience Section Optimization
experiences = optimizer.optimize_experiences([
{
"title": "Attending Physician",
"organization": "Mayo Clinic",
"duration": "2019-Present",
"achievements": ["Reduced readmission rates by 25%", "Implemented new protocol"]
}
])
Experience Formula:
- Action verb + What you did + Result/Impact
- Example: "Implemented early discharge protocol reducing average length of stay by 2.3 days and saving $500K annually"
CLI Usage
# Optimize complete profile
python scripts/linkedin_optimizer.py \
--role "Neurologist" \
--specialty "Movement Disorders" \
--achievements "Published 10 papers, Led Parkinson's clinic" \
--output profile.json
# Generate only headline
python scripts/linkedin_optimizer.py \
--mode headline \
--title "Emergency Medicine Physician" \
--specialty "Trauma & Critical Care"
Common Patterns
See references/linkedin-examples.md for detailed examples:
- Academic Physician Profile
- Private Practice Doctor
- Medical Researcher
- Healthcare Executive
- Resident/Fellow Profile
Quality Checklist
Before Optimization:
After Optimization:
References
references/linkedin-examples.md - Profile examples by specialty
references/keywords-by-specialty.json - Keyword database
references/headline-templates.md - Headline formulas
Skill ID: 201 | Version: 1.0 | License: MIT
Output Requirements
Every final response should make these items explicit when they are relevant:
- Objective or requested deliverable
- Inputs used and assumptions introduced
- Workflow or decision path
- Core result, recommendation, or artifact
- Constraints, risks, caveats, or validation needs
- Unresolved items and next-step checks
Error Handling
- If required inputs are missing, state exactly which fields are missing and request only the minimum additional information.
- If the task goes outside the documented scope, stop instead of guessing or silently widening the assignment.
- If
scripts/main.py fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.
- Do not fabricate files, citations, data, search results, or execution outcomes.
Input Validation
This skill accepts requests that match the documented purpose of linkedin-optimizer and include enough context to complete the workflow safely.
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:
linkedin-optimizer only handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.
Response Template
Use the following fixed structure for non-trivial requests:
- Objective
- Inputs Received
- Assumptions
- Workflow
- Deliverable
- Risks and Limits
- Next Checks
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.
1---2name: linkedin-optimizer3description: Use when optimizing LinkedIn profiles for doctors, physicians, nurses, healthcare professionals, or medical researchers. Crafts compelling headlines, writes professional summaries, integrates healthcare keywords, and builds personal branding for medical careers.4license: MIT5---6> **Source**: [https://github.com/aipoch/medical-research-skills](https://github.com/aipoch/medical-research-skills)
7
8# LinkedIn Optimizer for Healthcare Professionals
9
10Optimize LinkedIn profiles for doctors, physicians, nurses, and healthcare professionals to enhance professional visibility and career opportunities.
11
12## When to Use
13
14- Use this skill when the task needs Use when optimizing LinkedIn profiles for doctors, physicians, nurses, healthcare professionals, or medical researchers. Crafts compelling headlines, writes professional summaries, integrates healthcare keywords, and builds personal branding for medical careers.
15- Use this skill for other tasks that require explicit assumptions, bounded scope, and a reproducible output format.
16- Use this skill when the response must stay inside the documented task boundary instead of expanding into adjacent work.
17
18## Key Features
19
20- Scope-focused workflow aligned to: Use when optimizing LinkedIn profiles for doctors, physicians, nurses, healthcare professionals, or medical researchers. Crafts compelling headlines, writes professional summaries, integrates healthcare keywords, and builds personal branding for medical careers.
21- Packaged executable path(s): `scripts/main.py`.
22- Reference material available in `references/` for task-specific guidance.
23- Structured execution path designed to keep outputs consistent and reviewable.
24
25## Dependencies
26
27- `Python`: `3.10+`. Repository baseline for current packaged skills.
28- `Third-party packages`: `not explicitly version-pinned in this skill package`. Add pinned versions if this skill needs stricter environment control.
29
30## Example Usage
31
32```bash
33cd "20260318/scientific-skills/Academic Writing/linkedin-optimizer"
34python -m py_compile scripts/main.py
35python scripts/main.py --help
36```
37
38Example run plan:
391. Confirm the user input, output path, and any required config values.
402. Edit the in-file `CONFIG` block or documented parameters if the script uses fixed settings.
413. Run `python scripts/main.py` with the validated inputs.
424. Review the generated output and return the final artifact with any assumptions called out.
43
44## Implementation Details
45
46See `## Workflow` above for related details.
47
48- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
49- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
50- Primary implementation surface: `scripts/main.py`.
51- Reference guidance: `references/` contains supporting rules, prompts, or checklists.
52- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
53- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
54
55## Quick Check
56
57Use this command to verify that the packaged script entry point can be parsed before deeper execution.
58
59```bash
60python -m py_compile scripts/main.py
61```
62
63## Audit-Ready Commands
64
65Use these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.
66
67```bash
68python -m py_compile scripts/main.py
69python scripts/main.py
70```
71
72## Workflow
73
741. Confirm the user objective, required inputs, and non-negotiable constraints before doing detailed work.
752. Validate that the request matches the documented scope and stop early if the task would require unsupported assumptions.
763. Use the packaged script path or the documented reasoning path with only the inputs that are actually available.
774. Return a structured result that separates assumptions, deliverables, risks, and unresolved items.
785. If execution fails or inputs are incomplete, switch to the fallback path and state exactly what blocked full completion.
79
80## Quick Start
81
82```python
83from scripts.linkedin_optimizer import LinkedInOptimizer
84
85optimizer = LinkedInOptimizer()
86
87# Generate optimized profile content
88profile = optimizer.optimize(
89 role="Cardiologist",
90 specialty="Interventional Cardiology",
91 achievements=["Published 15+ peer-reviewed papers", "Led clinical trial for novel stent"],
92 years_experience=12
93)
94
95print(profile.headline)
96print(profile.about_section)
97```
98
99## Core Capabilities
100
101### 1. Headline Optimization
102
103```python
104optimizer = LinkedInOptimizer()
105headline = optimizer.generate_headline(
106 title="Board-Certified Cardiologist",
107 specialty="Heart Failure & Transplant",
108 differentiator="Clinical Researcher"
109)
110
111# Output: "Board-Certified Cardiologist | Heart Failure & Transplant Specialist | Clinical Researcher"
112```
113
114**Headline Formulas:**
115- `Title | Specialty | Differentiator`
116- `Role | Key Skill | Mission`
117- `Credentials | Focus Area | Value Proposition`
118
119### 2. About Section Writing
120
121```python
122about = optimizer.write_about_section(
123 role="Oncologist",
124 approach="Patient-centered care with precision medicine",
125 expertise=["Immunotherapy", "Clinical trials", "Palliative care"],
126 achievements=["Treated 1000+ patients", "Principal investigator on 5 trials"]
127)
128```
129
130**About Section Structure:**
1311. **Opening Hook** (2-3 sentences) - Who you help and how
1322. **Expertise Areas** (bullet points) - Key skills and specialties
1333. **Key Achievements** (bullet points) - Quantified accomplishments
1344. **Call to Action** - How to connect
135
136**Example:**
137> I'm a board-certified oncologist dedicated to advancing cancer treatment through precision medicine and immunotherapy. With over 10 years of experience, I specialize in developing personalized treatment plans that improve patient outcomes while maintaining quality of life.
138>
139> **Areas of Expertise:**
140> - Immunotherapy and targeted therapy
141> - Clinical trial design and implementation
142> - Palliative care integration
143> - Multi-disciplinary team leadership
144>
145> **Key Achievements:**
146> - Treated 1000+ cancer patients with 85% positive outcomes
147> - Principal investigator on 5 Phase II/III clinical trials
148> - Published 20+ peer-reviewed papers on novel treatment protocols
149>
150> **Let's Connect:** Open to collaborations on clinical research and discussing innovative treatment approaches.
151
152### 3. Keyword Integration
153
154```python
155keywords = optimizer.suggest_keywords(
156 specialty="Emergency Medicine",
157 role="ER Physician",
158 target_audience=["Recruiters", "Hospital administrators", "Medical device companies"]
159)
160```
161
162**High-Value Keywords by Specialty:**
163
164| Specialty | Primary Keywords | Secondary Keywords |
165|-----------|-----------------|-------------------|
166| Cardiology | Cardiologist, Interventional Cardiology, Heart Failure | Clinical Cardiology, Cardiac Catheterization |
167| Oncology | Oncologist, Medical Oncology, Cancer Treatment | Immunotherapy, Precision Medicine |
168| Surgery | Surgeon, General Surgery, Minimally Invasive | Robotic Surgery, Laparoscopic |
169| Pediatrics | Pediatrician, Child Health, Developmental Medicine | Neonatology, Pediatric Emergency |
170| Research | Clinical Research, Principal Investigator, FDA Trials | Drug Development, Protocol Design |
171
172### 4. Experience Section Optimization
173
174```python
175experiences = optimizer.optimize_experiences([
176 {
177 "title": "Attending Physician",
178 "organization": "Mayo Clinic",
179 "duration": "2019-Present",
180 "achievements": ["Reduced readmission rates by 25%", "Implemented new protocol"]
181 }
182])
183```
184
185**Experience Formula:**
186- **Action verb** + **What you did** + **Result/Impact**
187- Example: "Implemented early discharge protocol reducing average length of stay by 2.3 days and saving $500K annually"
188
189## CLI Usage
190
191```text
192
193# Optimize complete profile
194python scripts/linkedin_optimizer.py \
195 --role "Neurologist" \
196 --specialty "Movement Disorders" \
197 --achievements "Published 10 papers, Led Parkinson's clinic" \
198 --output profile.json
199
200# Generate only headline
201python scripts/linkedin_optimizer.py \
202 --mode headline \
203 --title "Emergency Medicine Physician" \
204 --specialty "Trauma & Critical Care"
205```
206
207## Common Patterns
208
209See `references/linkedin-examples.md` for detailed examples:
210- Academic Physician Profile
211- Private Practice Doctor
212- Medical Researcher
213- Healthcare Executive
214- Resident/Fellow Profile
215
216## Quality Checklist
217
218**Before Optimization:**
219- [ ] Define target audience (recruiters, patients, collaborators)
220- [ ] List 3-5 key achievements with metrics
221- [ ] Identify unique value proposition
222
223**After Optimization:**
224- [ ] Headline under 220 characters
225- [ ] About section includes keywords naturally
226- [ ] All claims are verifiable
227- [ ] Call to action is clear
228
229## References
230
231- `references/linkedin-examples.md` - Profile examples by specialty
232- `references/keywords-by-specialty.json` - Keyword database
233- `references/headline-templates.md` - Headline formulas
234
235---
236
237**Skill ID**: 201 | **Version**: 1.0 | **License**: MIT
238
239## Output Requirements
240
241Every final response should make these items explicit when they are relevant:
242
243- Objective or requested deliverable
244- Inputs used and assumptions introduced
245- Workflow or decision path
246- Core result, recommendation, or artifact
247- Constraints, risks, caveats, or validation needs
248- Unresolved items and next-step checks
249
250## Error Handling
251
252- If required inputs are missing, state exactly which fields are missing and request only the minimum additional information.
253- If the task goes outside the documented scope, stop instead of guessing or silently widening the assignment.
254- If `scripts/main.py` fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.
255- Do not fabricate files, citations, data, search results, or execution outcomes.
256
257## Input Validation
258
259This skill accepts requests that match the documented purpose of `linkedin-optimizer` and include enough context to complete the workflow safely.
260
261Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:
262
263> `linkedin-optimizer` only handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.
264
265## Response Template
266
267Use the following fixed structure for non-trivial requests:
268
2691. Objective
2702. Inputs Received
2713. Assumptions
2724. Workflow
2735. Deliverable
2746. Risks and Limits
2757. Next Checks
276
277If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.