openskills agency

fetch, assemble and deploy the skills you need from the sources you trust

select from a curated list of humans, organizations and companies
group the skills by category and give your agents and subagents only the skills needed for their current task

Loading skills...
Skill Creator
Category
Summary
URL
License
Trust
(GitHub stars)
Loading skills data...

🚀 Do this yourself with the repos you trust

  1. Install Python 3.7+
  2. Create GitHub Personal Access Token (fine-grained)
  3. Clone the repository
    git clone https://github.com/openskillsagent/htdocs.git
    cd agency
  4. Create a .env file
    echo "GITHUB_TOKEN=your_github_token_here" > .env
  5. Adjust scraper/repos.json file with the repositories you want to scrape (format: "owner/repo")
  6. Run the scraper
    cd scraper
    pip install -r requirements.txt
    python scrape_skills.py
  7. Serve the website
    cd ../public
    python -m http.server 8000

This will

  1. Install Python dependencies
  2. Fetch all SKILL.md files from configured repositories
  3. Extract metadata (license, commit ID, summary)
  4. Auto-generate 2-5 tags per skill
  5. Fetch GitHub stars for trust metrics
  6. Generate public/skills-data.json
  7. Serve the website locally on http://localhost:8000