
youth-safety-review
by ncssm-robotics
Marketplace for Claude Plugins for FTC
SKILL.md
name: youth-safety-review description: >- Content appropriateness review for FTC student code. Activates when checking variable names, comments, and strings for inappropriate content before sharing. Use when reviewing code that students will see, checking for inappropriate language, or ensuring content is suitable for ages 12-18. license: MIT compatibility: Claude Code, Codex CLI, VS Code Copilot, Cursor metadata: author: ncssm-robotics category: tools allowed-tools: Read, Glob, Grep
FTC Youth Safety Review Checks
This skill defines content appropriateness checks for FTC marketplace skills. FTC participants are students ages 12-18, so all content should be appropriate for that audience.
Important: These checks flag items for human review. They do not auto-reject content because context matters. A mentor or maintainer should review flagged items.
Acceptable FTC Terms
These terms are ALLOWED despite potentially triggering filters:
| Term | Context |
|---|---|
kill, killer | Game mechanic (kill shot, killing it) |
attack, defense | Game strategy terms |
destroy | Game context (destroy opponent's stack) |
target | Vision targeting, game elements |
shoot, shooter | Game mechanisms |
score, scoring | Points and objectives |
dead | Battery dead, dead reckoning |
Language Checks (Warnings)
Flag for human review if detected in:
- Variable names
- Function/method names
- Class names
- Comments
- String literals
- File names
Profanity Detection
- No profanity in variable names
- No profanity in comments
- No profanity in string literals
- No l33tspeak variations of profanity
Inappropriate Naming
- Variable names don't contain inappropriate content
- Function names are professional
- Class names are appropriate
Insensitive Language
- No racial or ethnic slurs
- No gender-based insults
- No disability-related slurs
- No religious insults
Comment Review (Warnings)
Tone and Content
- Comments don't contain personal attacks
- Comments don't contain exclusionary language
- Comments don't reference inappropriate content
- TODO comments don't contain frustration venting
Humor
- Jokes are appropriate for all ages
- Sarcasm doesn't cross into inappropriate territory
- Pop culture references are age-appropriate
Personal Information (Errors)
These must be fixed - privacy is important.
Student Information
- No real student names in examples
- No student photos or identifying information
- No birth dates or ages
School Information
- No school names in examples (use "Team 12345" format)
- No school addresses
- No teacher/mentor names
Contact Information
- No email addresses in code or examples
- No phone numbers
- No social media handles (Twitter/X, Instagram, etc.)
Content Appropriateness (Warnings)
Topics to Avoid
- No references to alcohol or drugs
- No gambling references
- No dating/relationship content inappropriate for youth
- No violent content beyond game mechanics
- No political or religious advocacy
Example Content
- Examples use neutral/robot-related naming
- Sample data doesn't contain inappropriate content
- Test cases use appropriate test values
Severity Levels
| Level | Meaning | Action |
|---|---|---|
| Error | Must fix | Personal information, clear violations |
| Warning | Flag for review | Context-dependent, needs human judgment |
| Info | Suggestion | Style improvements |
Review Process
When flagging items:
- Quote the specific content - Show exactly what was flagged
- Explain why - What rule does it potentially violate
- Suggest alternative - Offer appropriate replacement
- Request human review - A mentor should make final call
Example Flags
Flagged (Context Review Needed)
// Variable name flagged
double killer_shot_power = 0.8; // "killer" flagged - is this game context?
Recommendation: Rename to scoring_shot_power for clarity.
Acceptable (No Flag)
// Game mechanic - acceptable
void scoreInHighBasket() { ... }
// Dead reckoning - acceptable
void driveByDeadReckoning() { ... }
Must Fix (Error)
// Personal information - must remove
// Created by John Smith, Central High School
String studentEmail = "john@school.edu";
Required: Remove personal information.
Running This Review
/review <skill-name> --type youth
Or as part of full review:
/review <skill-name>
See Also
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon