Fetches public GitHub repositories from a specific account and generates an organized update.md file.
Install
mkdir -p .claude/skills/pull-parsiya && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13417" && unzip -o skill.zip -d .claude/skills/pull-parsiya && rm skill.zipInstalls to .claude/skills/pull-parsiya
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Fetch all public source repos from github.com/parsiya, filter out forks and non-code repos, and create update.md. Use when: updating repo catalog, fetching new repos, generating update.md, /pull.Key capabilities
- →Fetch all public source repositories from github.com/parsiya
- →Filter out forks and non-code repositories
- →Create update.md with categorized entries for new repos
- →Classify and categorize each repository based on metadata
- →Exclude non-code repositories by adding them to exclude-repos.md
How it works
The skill runs a Python script to fetch public source repositories, filters them, classifies them based on metadata, and generates an update.md file with categorized entries.
Inputs & outputs
When to use pull
- →Cataloging new repositories
- →Regenerating repository summary files
- →Syncing repo metadata
- →Identifying non-code projects for exclusion
About this skill
Get Repository Info
Fetch all public, non-fork (source) repositories from a GitHub account and
create update.md in the repository root with categorized entries when new
repos exist.
When to Use
- Cataloging new repos that need to be added to this repository
- Regenerating the update.md file with fresh data from GitHub
Script Reference
See scripts/README.md for script details and outputs.
Procedure
Run the fetch script:
- Run from the workspace root:
python .github/skills/pull/scripts/fetch_repos.py - Use
--dry-runto list new repos without fetching or writing files. - Review the script output for the summary.
- If the script fails, reports 0 new repos, or every repo has
ERROR:markers, stop and ask before continuing.
Classify and categorize each repo in update.md:
- For each repo, inspect the
README:field first. - If
README:points to a file path, read that README and check the metadata (Language, Topics, Homepage). - If
README:isERROR:, classify using metadata only. If the category is unclear, stop and ask before continuing. If it is NOT a code repo(e.g., website/blog, GitHub Pages, Hugo content-only site, profile README, slides without code):- Add the repo name to exclude-repos.md on its own line.
- Remove it from update.md.
If it IS a code repo, assign a category:- Check existing categories in README.md (
##section headings). - Use an existing category if it fits, otherwise create a new one.
- Check existing categories in README.md (
- Pay attention to repos with
ERROR:markers — they may need manual review.
Rewrite update.mdwith categorized entries:# Category Name ## repo-name https://github.com/parsiya/repo-name Description from GitHub. blog link: URL (if found in repo README or Homepage field) blog title: Title (if found in repo README)
- Group repos by category (
#heading) with each repo as##. - If you are creating a new category, clearly mention it.
- Include the GitHub URL, description, and any blog links found in the repo's README or Homepage field.
- Remove the metadata fields (Language, Topics, README path) — those were just for classification.
Report summary: Tell the user how many repos were found, how many were filtered out, and how many are in update.md.
When not to use it
- →When fetching private repositories
- →When the user wants to manually categorize all repositories
- →When the user does not want to generate an update.md file
Limitations
- →Only fetches public source repositories from github.com/parsiya.
- →Requires manual classification if the category is unclear or README is an error.
- →Non-code repositories must be manually added to exclude-repos.md.
How it compares
This skill automates the process of cataloging and categorizing GitHub repositories, including filtering and generating a structured update file, unlike manual repository tracking.
Compared to similar skills
pull side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| pull (this skill) | 0 | 3mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| openspec-onboard | 10 | 6mo | Review | Beginner |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by parsiya
View all by parsiya →You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
skill-sync
KyleKing
Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.
github-workflow-automation
ruvnet
Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.