AI SummaryEnables Claude to fetch and analyze design structure, components, and metadata directly from MasterGo design files via shared links. Useful for designers, developers, and design systems teams who need to programmatically extract design documentation.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "mastergo" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (12 files) mkdir -p .claude/skills/mastergo && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/SKILL.md "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_ar.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_ar.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_cn.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_cn.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_de.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_de.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_en.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_en.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_es.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_es.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_fr.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_fr.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_it.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_it.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_ja.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_ja.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_ko.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_ko.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_ru.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_ru.txt" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/mastergo/description_tw.txt "https://raw.githubusercontent.com/NeverSight/skills_feed/main/data/skills-md/jeasonstudio/mastergo-skills/mastergo/description_tw.txt" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Retrieve and analyze MasterGo design DSL data. Use when users provide MasterGo links (https://mastergo.com/file/xxx or /goto/xxx) to fetch design structure, component documentation, and DSL metadata.
Prerequisites
Environment variable required: `bash export MASTERGO_TOKEN="mg_your_token_here" ` Get token: MasterGo Settings > Security > Personal Access Token Requirements: Team Edition account, files in Team Projects (not Drafts).
MasterGo Skill
Retrieve and analyze design data from MasterGo files using self-contained Python scripts.
CRITICAL: Secure Token Handling
NEVER do this: • echo $MASTERGO_TOKEN - exposes secret in output • echo "Token: $MASTERGO_TOKEN" - exposes secret • printenv MASTERGO_TOKEN - exposes secret • Any command that prints the token value Secure verification method: `bash test -n "$MASTERGO_TOKEN" && echo "Token is set" || echo "Token is NOT set" ` This only prints whether the token exists, never its value.
Script Location
Scripts are in scripts/ relative to this SKILL.md file. Use absolute path when executing: ` {this_skill_directory}/scripts/mastergo_*.py `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster