From valency
Use when the user asks about a researcher's work, publications, research areas, collaborators, or academic profile. Triggers on questions like 'who is X', 'what does X work on', 'show me X's papers', or 'tell me about X' in a research context. Also invokable as /valency:profile <author_name>.
How this skill is triggered — by the user, by Claude, or both
Slash command
/valency:profileThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Build a comprehensive profile for the given researcher.
Build a comprehensive profile for the given researcher.
The user provides an author name (e.g., "Yoshua Bengio", "Y. LeCun", "Sara Walker").
Execute these steps in order. Use the Valency MCP tools (see CLAUDE.md for tool name mapping).
Call get_author_profile with:
author (string): the author name provided by the userThis returns summary stats including top categories, publication timeline, co-author count, and total papers.
If no results are found, tell the user the author was not found and suggest checking the spelling or trying a partial name. Stop here.
Call search_by_author with:
author (string): the author namelimit (integer): 10sort_by (string): "citations"strict_mode (string): "fuzzy"This returns the author's top papers sorted by citation count.
Call batch_author_categories with:
authors (array of strings): a JSON array containing the author name, e.g. ["David W. Hogg"]max_categories (integer): 10This returns the category distribution for the author's publications.
Call find_coauthors with:
author (string): the author namelimit (integer): 10This returns the author's most frequent collaborators with co-publication counts.
Present the results in this structure:
A brief block with:
A table of the top 5 categories from Step 3:
| Category | Papers |
|---|---|
| cs.LG | 42 |
| ... | ... |
A numbered list of up to 10 papers from Step 2. For each paper show:
A table of up to 5 collaborators from Step 4:
| Collaborator | Co-authored papers |
|---|---|
| Name | 15 |
| ... | ... |
/valency:network <author_name> — map their collaboration network/valency:similar <paper_id> — find papers similar to their top work (use the ID of their most-cited paper)Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub valency-oss/valency-claude-plugin --plugin valency