Agent skill · Data & Analytics

data-training-manager

Manage AI training data, monitor content freshness, detect repetition, and update training samples for continuous learning. Use when managing training data, checking content quality, updating AI models, or preventing repetitive content.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill data-training-manager --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Allowed tools: ReadWriteBash(python:*)
Path: skills/ai-ml/data-training-manager/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Data Training Manager Continuous learning system for managing AI training data, monitoring content freshness, and preventing repetitive outputs. ## Overview Maintain high-quality AI outputs through: - **Training Data Management** - Add, update, remove training samples - **Freshness Monitoring** - Detect stale and repetitive content - **Quality Scoring** - Track performance of training samples - **Continuous Learning** - Automatically update based on engagement - **Trend Analysis** - Identify patterns in successful content ## Quick Start ### 1. Check Training Data Freshness ```python from src.freshness_monitor import FreshnessMonitor monitor = FreshnessMonitor() # Check if generated content is fresh score = monitor.check_freshness( generated_text="gm to data contributors who deserve equity...", threshold=0.7 # 70% uniqueness required ) if score < 0.7: print("⚠️ Content too similar to existing samples") else: print("✅ Content is fresh!") ``` ### 2. Add New Training Sample ```python from src.continuous_learning import ContinuousLearningSystem learning = ContinuousLearningSystem() # Add high-performing tweet learning.add_sample( text="gm to everyone building on @base 💙", type="gm",

What's inside
Steps it walks through
  1. Overview
  2. Quick Start
  3. 1. Check Training Data Freshness
  4. 2. Add New Training Sample
  5. 3. Manage Training Data
  6. Training Data Structure
  7. Sample Format
  8. Training Files
  9. Freshness Monitoring
  10. How It Works
  11. Usage
  12. Freshness Thresholds
  13. Continuous Learning System
  14. Auto-Update from Performance
Ships with 1 file
  • metadata.json
Commands it runs
Check freshness of all samples
python scripts/manage_training.py check
View statistics
python scripts/manage_training.py stats
Add new sample
python scripts/manage_training.py add \
Checking gm_posts.json...
Checking codatta_insights.json...
Overall freshness: 93%
Training Data Statistics
More from claude-skill-registry
All skills →
About this skill
What does the data-training-manager skill do?

Manage AI training data, monitor content freshness, detect repetition, and update training samples for continuous learning. Use when managing training data, checking content quality, updating AI models, or preventing repetitive content.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill data-training-manager --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going