← 返回 Skills 市场
153
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkedin-optimizer
功能描述
Use when optimizing LinkedIn profiles for doctors, physicians, nurses, healthcare professionals, or medical researchers. Crafts compelling headlines, writes...
使用说明 (SKILL.md)
\r
LinkedIn Optimizer for Healthcare Professionals\r
\r Optimize LinkedIn profiles for doctors, physicians, nurses, and healthcare professionals to enhance professional visibility and career opportunities.\r \r
When to Use\r
\r
- 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.\r
- Use this skill for other tasks that require explicit assumptions, bounded scope, and a reproducible output format.\r
- Use this skill when the response must stay inside the documented task boundary instead of expanding into adjacent work.\r \r
Key Features\r
\r
- 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.\r
- Packaged executable path(s):
scripts/main.py.\r - Reference material available in
references/for task-specific guidance.\r - Structured execution path designed to keep outputs consistent and reviewable.\r \r
Dependencies\r
\r
Python:3.10+. Repository baseline for current packaged skills.\rThird-party packages:not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.\r \r
Example Usage\r
\r
cd "20260318/scientific-skills/Academic Writing/linkedin-optimizer"\r
python -m py_compile scripts/main.py\r
python scripts/main.py --help\r
```\r
\r
Example run plan:\r
1. Confirm the user input, output path, and any required config values.\r
2. Edit the in-file `CONFIG` block or documented parameters if the script uses fixed settings.\r
3. Run `python scripts/main.py` with the validated inputs.\r
4. Review the generated output and return the final artifact with any assumptions called out.\r
\r
## Implementation Details\r
\r
See `## Workflow` above for related details.\r
\r
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.\r
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.\r
- Primary implementation surface: `scripts/main.py`.\r
- Reference guidance: `references/` contains supporting rules, prompts, or checklists.\r
- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.\r
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.\r
\r
## Quick Check\r
\r
Use this command to verify that the packaged script entry point can be parsed before deeper execution.\r
\r
```bash\r
python -m py_compile scripts/main.py\r
```\r
\r
## Audit-Ready Commands\r
\r
Use these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.\r
\r
```bash\r
python -m py_compile scripts/main.py\r
python scripts/main.py\r
```\r
\r
## Workflow\r
\r
1. Confirm the user objective, required inputs, and non-negotiable constraints before doing detailed work.\r
2. Validate that the request matches the documented scope and stop early if the task would require unsupported assumptions.\r
3. Use the packaged script path or the documented reasoning path with only the inputs that are actually available.\r
4. Return a structured result that separates assumptions, deliverables, risks, and unresolved items.\r
5. If execution fails or inputs are incomplete, switch to the fallback path and state exactly what blocked full completion.\r
\r
## Quick Start\r
\r
```python\r
from scripts.linkedin_optimizer import LinkedInOptimizer\r
\r
optimizer = LinkedInOptimizer()\r
\r
# Generate optimized profile content\r
profile = optimizer.optimize(\r
role="Cardiologist",\r
specialty="Interventional Cardiology",\r
achievements=["Published 15+ peer-reviewed papers", "Led clinical trial for novel stent"],\r
years_experience=12\r
)\r
\r
print(profile.headline)\r
print(profile.about_section)\r
```\r
\r
## Core Capabilities\r
\r
### 1. Headline Optimization\r
\r
```python\r
optimizer = LinkedInOptimizer()\r
headline = optimizer.generate_headline(\r
title="Board-Certified Cardiologist",\r
specialty="Heart Failure & Transplant",\r
differentiator="Clinical Researcher"\r
)\r
\r
# Output: "Board-Certified Cardiologist | Heart Failure & Transplant Specialist | Clinical Researcher"\r
```\r
\r
**Headline Formulas:**\r
- `Title | Specialty | Differentiator`\r
- `Role | Key Skill | Mission`\r
- `Credentials | Focus Area | Value Proposition`\r
\r
### 2. About Section Writing\r
\r
```python\r
about = optimizer.write_about_section(\r
role="Oncologist",\r
approach="Patient-centered care with precision medicine",\r
expertise=["Immunotherapy", "Clinical trials", "Palliative care"],\r
achievements=["Treated 1000+ patients", "Principal investigator on 5 trials"]\r
)\r
```\r
\r
**About Section Structure:**\r
1. **Opening Hook** (2-3 sentences) - Who you help and how\r
2. **Expertise Areas** (bullet points) - Key skills and specialties\r
3. **Key Achievements** (bullet points) - Quantified accomplishments\r
4. **Call to Action** - How to connect\r
\r
**Example:**\r
> 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.\r
>\r
> **Areas of Expertise:**\r
> - Immunotherapy and targeted therapy\r
> - Clinical trial design and implementation\r
> - Palliative care integration\r
> - Multi-disciplinary team leadership\r
>\r
> **Key Achievements:**\r
> - Treated 1000+ cancer patients with 85% positive outcomes\r
> - Principal investigator on 5 Phase II/III clinical trials\r
> - Published 20+ peer-reviewed papers on novel treatment protocols\r
>\r
> **Let's Connect:** Open to collaborations on clinical research and discussing innovative treatment approaches.\r
\r
### 3. Keyword Integration\r
\r
```python\r
keywords = optimizer.suggest_keywords(\r
specialty="Emergency Medicine",\r
role="ER Physician",\r
target_audience=["Recruiters", "Hospital administrators", "Medical device companies"]\r
)\r
```\r
\r
**High-Value Keywords by Specialty:**\r
\r
| Specialty | Primary Keywords | Secondary Keywords |\r
|-----------|-----------------|-------------------|\r
| Cardiology | Cardiologist, Interventional Cardiology, Heart Failure | Clinical Cardiology, Cardiac Catheterization |\r
| Oncology | Oncologist, Medical Oncology, Cancer Treatment | Immunotherapy, Precision Medicine |\r
| Surgery | Surgeon, General Surgery, Minimally Invasive | Robotic Surgery, Laparoscopic |\r
| Pediatrics | Pediatrician, Child Health, Developmental Medicine | Neonatology, Pediatric Emergency |\r
| Research | Clinical Research, Principal Investigator, FDA Trials | Drug Development, Protocol Design |\r
\r
### 4. Experience Section Optimization\r
\r
```python\r
experiences = optimizer.optimize_experiences([\r
{\r
"title": "Attending Physician",\r
"organization": "Mayo Clinic",\r
"duration": "2019-Present",\r
"achievements": ["Reduced readmission rates by 25%", "Implemented new protocol"]\r
}\r
])\r
```\r
\r
**Experience Formula:**\r
- **Action verb** + **What you did** + **Result/Impact**\r
- Example: "Implemented early discharge protocol reducing average length of stay by 2.3 days and saving $500K annually"\r
\r
## CLI Usage\r
\r
```text\r
\r
# Optimize complete profile\r
python scripts/linkedin_optimizer.py \\r
--role "Neurologist" \\r
--specialty "Movement Disorders" \\r
--achievements "Published 10 papers, Led Parkinson's clinic" \\r
--output profile.json\r
\r
# Generate only headline\r
python scripts/linkedin_optimizer.py \\r
--mode headline \\r
--title "Emergency Medicine Physician" \\r
--specialty "Trauma & Critical Care"\r
```\r
\r
## Common Patterns\r
\r
See `references/linkedin-examples.md` for detailed examples:\r
- Academic Physician Profile\r
- Private Practice Doctor\r
- Medical Researcher\r
- Healthcare Executive\r
- Resident/Fellow Profile\r
\r
## Quality Checklist\r
\r
**Before Optimization:**\r
- [ ] Define target audience (recruiters, patients, collaborators)\r
- [ ] List 3-5 key achievements with metrics\r
- [ ] Identify unique value proposition\r
\r
**After Optimization:**\r
- [ ] Headline under 220 characters\r
- [ ] About section includes keywords naturally\r
- [ ] All claims are verifiable\r
- [ ] Call to action is clear\r
\r
## References\r
\r
- `references/linkedin-examples.md` - Profile examples by specialty\r
- `references/keywords-by-specialty.json` - Keyword database\r
- `references/headline-templates.md` - Headline formulas\r
\r
---\r
\r
**Skill ID**: 201 | **Version**: 1.0 | **License**: MIT\r
\r
## Output Requirements\r
\r
Every final response should make these items explicit when they are relevant:\r
\r
- Objective or requested deliverable\r
- Inputs used and assumptions introduced\r
- Workflow or decision path\r
- Core result, recommendation, or artifact\r
- Constraints, risks, caveats, or validation needs\r
- Unresolved items and next-step checks\r
\r
## Error Handling\r
\r
- If required inputs are missing, state exactly which fields are missing and request only the minimum additional information.\r
- If the task goes outside the documented scope, stop instead of guessing or silently widening the assignment.\r
- If `scripts/main.py` fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.\r
- Do not fabricate files, citations, data, search results, or execution outcomes.\r
\r
## Input Validation\r
\r
This skill accepts requests that match the documented purpose of `linkedin-optimizer` and include enough context to complete the workflow safely.\r
\r
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:\r
\r
> `linkedin-optimizer` only handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.\r
\r
## Response Template\r
\r
Use the following fixed structure for non-trivial requests:\r
\r
1. Objective\r
2. Inputs Received\r
3. Assumptions\r
4. Workflow\r
5. Deliverable\r
6. Risks and Limits\r
7. Next Checks\r
\r
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.\r
安全使用建议
This package appears small and coherent, but before installing: (1) verify origin since there's no homepage and the owner is an opaque ID; (2) inspect scripts/main.py yourself (it is short and benign); (3) run python -m py_compile scripts/main.py and run it in a sandbox or isolated environment first; (4) note the SKILL.md has small documentation mismatches (module import path and a referenced CONFIG block) — these are not dangerous but you may need to adjust invocation; (5) do not paste any PHI or patient-identifying information into the skill (it handles profile text only); and (6) if you plan to use this in production, pin Python package versions and source-control the code so you can audit future changes.
能力评估
Purpose & Capability
Name/description (LinkedIn profile optimization for healthcare professionals) matches the provided code and instructions. The packaged script (scripts/main.py) implements headline/about/keyword generation consistent with the stated purpose, and no unrelated capabilities (cloud access, system administration, network exfiltration) are requested.
Instruction Scope
Runtime instructions stay within the stated scope (compile/run the provided script, confirm inputs/output path). Minor inconsistencies: the Quick Start shows import from scripts.linkedin_optimizer (module not present) while the executable path is scripts/main.py; SKILL.md also mentions editing a CONFIG block though the script contains no explicit CONFIG section. These are documentation mismatches but do not imply extra privileges or hidden actions.
Install Mechanism
No install spec is present (instruction-only with a small packaged script). This is low-risk: nothing is downloaded or extracted from external URLs and no package managers are invoked.
Credentials
The skill declares no required environment variables, no credentials, and no config paths. The code also does not read environment variables or request secrets. This is proportionate to a small text-generation utility.
Persistence & Privilege
The skill does not request permanent presence (always is false) and does not claim to modify agent/system configuration. Autonomous invocation is allowed by default but is not combined here with broad credentials or suspicious behavior.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linkedin-optimizer - 安装完成后,直接呼叫该 Skill 的名称或使用
/linkedin-optimizer触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the linkedin-optimizer skill for healthcare professionals.
- Optimizes LinkedIn profiles for doctors, nurses, physicians, healthcare professionals, and medical researchers.
- Automatically generates compelling headlines, professional summaries, and experience section content tailored to the medical field.
- Integrates relevant healthcare keywords and personal branding strategies.
- Includes scriptable workflow (scripts/main.py) and reference materials for consistent, reviewable output.
- Provides both programmatic and CLI examples for ease of use.
元数据
常见问题
LinkedIn Optimizer 是什么?
Use when optimizing LinkedIn profiles for doctors, physicians, nurses, healthcare professionals, or medical researchers. Crafts compelling headlines, writes... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 153 次。
如何安装 LinkedIn Optimizer?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkedin-optimizer」即可一键安装,无需额外配置。
LinkedIn Optimizer 是免费的吗?
是的,LinkedIn Optimizer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
LinkedIn Optimizer 支持哪些平台?
LinkedIn Optimizer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 LinkedIn Optimizer?
由 AIpoch(@aipoch-ai)开发并维护,当前版本 v1.0.0。
推荐 Skills