skills/hr-network-analyst/SKILL.md
Professional network graph analyst identifying Gladwellian superconnectors, mavens, and influence brokers using betweenness centrality, structural holes theory, and multi-source network reconstruction. Activate on 'superconnectors', 'network analysis', 'who knows who', 'professional network', 'influence mapping', 'betweenness centrality'. NOT for surveillance, discrimination, stalking, privacy violation, or speculation without data.
npx skillsauth add curiositech/windags-skills hr-network-analystInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Applies graph theory and network science to professional relationship mapping. Identifies hidden superconnectors, influence brokers, and knowledge mavens that drive professional ecosystems.
Works with: career-biographer, competitive-cartographer, research-analyst, cv-creator
User: "Who are the key connectors in AI safety research?"
Process:
1. Define boundary: AI safety researchers, 2020-2024
2. Identify sources: arXiv, NeurIPS workshops, Twitter clusters
3. Compute centrality: betweenness (bridges), eigenvector (influence)
4. Classify by archetype: Connector, Maven, Broker
5. Output: Ranked list with network position rationale
Key principle: Most valuable people aren't always most famous—they connect otherwise disconnected worlds.
| Type | Network Signature | HR Value | |------|-------------------|----------| | Connector | High betweenness + degree, bridges clusters | Best for cross-domain referrals | | Maven | High in-degree, authoritative, creates content | Know who's good at what | | Salesman | High influence propagation, deal networks | Close candidates, navigate negotiation |
Full theory: See references/network-theory.md
| Metric | Meaning | When to Use | |--------|---------|-------------| | Betweenness | Controls information flow | Finding gatekeepers, brokers | | Degree | Raw connection count | Maximizing referral reach | | Eigenvector | Quality over quantity | Access to power, rising stars | | PageRank | Endorsed by important others | Thought leaders | | Closeness | Can reach anyone quickly | Information spreading |
Detailed workflows: See references/data-sources-implementation.md
| Source | Signal Strength | What to Extract | |--------|-----------------|-----------------| | Co-authorship | Very strong | Publication collaborations | | Conference co-panel | Strong | Speaking relationships | | GitHub co-repo | Medium-strong | Code collaboration | | LinkedIn connection | Medium | Professional links | | Twitter mutual | Weak | Social association |
Multi-source fusion: Weight and combine signals for robust network
What it looks like: Only looking at who has most connections Why wrong: High degree often = noise; connectors differ from popular Instead: Use betweenness for bridging, eigenvector for influence quality
What it looks like: Treating 5-year-old connections as current Why wrong: Networks evolve; old edges may be dead Instead: Recency-weight edges, verify currency
What it looks like: Using only LinkedIn data Why wrong: Missing relationships not on LinkedIn Instead: Multi-source fusion with source-appropriate weighting
What it looks like: High betweenness = valuable, regardless of domain Why wrong: Bridging irrelevant communities isn't useful Instead: Constrain analysis to relevant domain boundaries
Acceptable:
NOT Acceptable:
| Issue | Cause | Fix | |-------|-------|-----| | Can't find data | Domain small/private | Snowball sampling, surveys, adjacent communities | | False edges | Over-weighting weak signals | Require multiple signals, threshold weights | | Too large | Unconstrained boundary | K-core filtering, high-weight only | | Entity resolution | Same person, different names | Unique IDs (ORCID), manual verification |
references/algorithms.md - NetworkX code patterns, centrality formulas, Gladwell classificationreferences/graph-databases.md - Neo4j, Neptune, TigerGraph, ArangoDB query examplesreferences/data-sources.md - LinkedIn network data acquisition strategies, APIs, scraping, legal considerationsCore insight: Advantage comes from bridging otherwise disconnected groups, not from connections within dense clusters. — Ron Burt, Structural Holes Theory
tools
Building resilient distributed systems with circuit breakers, retries with full-jitter exponential backoff, retry budgets (per-request 3-attempt + per-client 10% ratio per Google SRE), deadline propagation, and the cascading-failure math (4 layers × 3 retries = 64x amplification). Grounded in Resilience4j, Microsoft Cloud Patterns, AWS Architecture Blog (Marc Brooker), and Google SRE Book.
testing
Designing HTTP cache headers that work correctly across browsers, CDNs, and shared proxies — `Cache-Control` directives per RFC 9111, `stale-while-revalidate` and `stale-if-error` per RFC 5861, the Vary header for varying responses, and surrogate keys for tag-based purging. Grounded in IETF RFCs and Cloudflare/Fastly docs.
development
Use when designing or fixing a Content Security Policy on a real site, choosing between nonce-based and hash-based CSP, adding strict-dynamic, debugging "Refused to execute inline script" errors, deploying CSP in report-only mode first, configuring report-to / report-uri, or auditing an existing policy for unsafe-inline / unsafe-eval / wildcards. Triggers: "CSP blocks legitimate inline script", strict-dynamic, nonce-{RANDOM}, sha256-{HASH}, object-src none, base-uri none, frame-ancestors, Trusted Types, X-Content-Security-Policy obsolete, report-only vs enforced. NOT for general HTTP security headers (HSTS, COOP/COEP), Trusted Types deep dive, CORS configuration, or building a WAF.
tools
Choosing and operating an HTTP API versioning strategy that doesn't break clients — Stripe's date-based pinned versions, the Deprecation/Sunset header pair (RFC 9745 + RFC 8594), URI vs header vs media-type approaches, and the version-transformer pattern. Grounded in Stripe's published architecture and IETF RFCs.