mdpi-hypernetwork-archetype

Classify users into eight behavioral archetypes using Score, Sentiment, and Toxicity axes.

13|2|Updated Feb 10, 2026
One-click install
npx skills add https://github.com/aaddrick/written-voice-replication --skill mdpi-hypernetwork-archetype-aaddrick
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mdpi-hypernetwork-archetype
Source: https://github.com/aaddrick/written-voice-replication/tree/main/.claude/skills/mdpi-hypernetwork-archetype
Command: npx skills add https://github.com/aaddrick/written-voice-replication --skill mdpi-hypernetwork-archetype-aaddrick

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pandas, numpy, nltk, detoxify.

What problem does it solve? Segmenting users in online communities by a single metric hides important behavioral differences. This Skill classifies users along three independent normalized axes (Score, Sentiment, Toxicity) into eight behavioral archetypes (HHH through LLL), producing reproducible, threshold-documented segmentation of community engagement patterns. ## Core Features & Use Cases - Three-Axis Classification: Computes and normalizes Score (engagement), Sentiment (VADER), and Toxicity (Detoxify/Perspective API) axes to [0, 1], then assigns High/Low labels per axis. - Typicality Scoring: Measures how strongly each user exemplifies their assigned archetype, flagging boundary users near thresholds. - Fallback Handling: Supports two-axis classification when one axis is missing and enforces minimum corpus sizes (30+ users) for reliable distributional analysis. - Use Case: Given a Reddit export with comment text and scores, classify 500 users into archetypes, identify that 40% are HHL (constructive contributors) while 8% are LLH (marginalized antagonists), and write a full report to docs/analysis/14-mdpi-hypernetwork-archetype.md. ## Quick Start Use the mdpi-hypernetwork-archetype skill to classify the users in my Reddit comment corpus into behavioral archetypes and write the analysis report.

Frequently Asked Questions about mdpi-hypernetwork-archetype

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I classify users into behavioral archetypes from Reddit data?

Compute per-user mean engagement score, VADER compound sentiment, and Detoxify toxicity, normalize each axis to [0, 1], then split each axis at a threshold (0.5 or corpus median) into High/Low. The three labels combine into an archetype like HHL or LLH.

What is the difference between sentiment and toxicity in user classification?

Sentiment measures affective valence (positive vs negative tone) while toxicity measures probability of harmful language. They are independent: a comment can be positive but toxic ("Hell yeah, that's awesome!") or negative but civil ("I respectfully disagree").

Should I use Detoxify or Perspective API for toxicity scoring?

Detoxify (unitary/toxic-bert) is the preferred option, providing multilabel toxicity probabilities in [0, 1] without rate limits. Perspective API also outputs [0, 1] probabilities but is rate-limited. Both require documenting the model version for reproducibility.

What is the minimum number of users needed for archetype classification?

At least 30 users are required; below that, report individual axis scores without archetype assignment. Corpora of 100-499 users are adequate, while 500+ users support full analysis with all eight archetypes meaningfully populated.

What happens when one axis of data is missing?

Fall back to two-axis classification on a 2x2 grid, such as Score x Sentiment when toxicity is unavailable. Document which axis was missing and which archetype distinctions could not be made.

Why should archetypes not be treated as personality types?

Archetypes describe behavioral patterns observed in a specific time period, not stable traits or identities. Users can shift archetypes over time, and small threshold changes can reassign boundary users, so labels are snapshots rather than identities.