Enrich a Github [DB] entry with GitHub API metadata (description, stars, language, cover image). Use when user wants to populate a GitHub repo entry with live metadata, enhance github entry, or add github info.
Enriches Notion GitHub database entries with live metadata from the GitHub API. Use when you need to populate a GitHub repo entry with current stars, language, description, and cover image.
/plugin marketplace add theflysurfer/claude-skills-marketplace/plugin install theflysurfer-claude-skills-marketplace@theflysurfer/claude-skills-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/enrich.pyEnrich Github [DB] entries with live metadata from GitHub API.
NOTION_TOKEN environment variable setGITHUB_TOKEN environment variable (optional, for higher rate limits)requests package: pip install requestsRun the enrichment script with a page ID or URL:
python ~/.claude/skills/notion-github-enhance-note/scripts/enrich.py <page_id_or_url>
Arguments:
page_id_or_url: Notion page ID (UUID) or full URL of Github [DB] entryExample:
python ~/.claude/skills/notion-github-enhance-note/scripts/enrich.py 12345678-1234-1234-1234-123456789abc
| Field | Source | Notes |
|---|---|---|
| Description | GitHub API | Repo description |
| Language | GitHub API | Primary language |
| Stars | GitHub API | Star count |
| Cover | OpenGraph | Social preview image |
Set GITHUB_TOKEN environment variable for higher limits:
export GITHUB_TOKEN=ghp_xxxxxxxxxxxx
| Error | Meaning |
|---|---|
NOT_REPO_URL | URL is org page or not a valid repo |
REPO_NOT_FOUND | Repository deleted or private |
RATE_LIMITED | GitHub API rate limit reached |
PAGE_NOT_FOUND | Invalid page ID or no access |
2cacdc04-12e3-81cc-a84e-fdbba086ab29This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.