installing-skills

$npx mdskill add oaustegard/claude-skills/installing-skills

Install external skills from GitHub into the local skills directory.

  • Enables agents to access new capabilities without manual setup.
  • Depends on GitHub API and raw.githubusercontent.com for data.
  • Automatically detects missing skills and triggers installation.
  • Updates system skill lists immediately after successful installation.

SKILL.md

.github/skills/installing-skillsView on GitHub ↗
---
name: installing-skills
description: Install skills from github.com/oaustegard/claude-skills into /mnt/skills/user. Use when user mentions "install skills", "load skills", "add skills", "update skills", "refresh skills", or references a skill not currently installed.
---

# Installing Skills

Install skills from github.com/oaustegard/claude-skills to `/mnt/skills/user`, making them available in the current and future conversations.

## Execution

Run the installation script:

```bash
bash /mnt/skills/user/installing-skills/scripts/install.sh
```

The script:
- Fetches repository contents via GitHub API
- Downloads SKILL.md for each skill directory
- Reports installed/updated/skipped counts
- Excludes: templates, .github, .claude, .uploads directories

## Network Requirements

Requires access to:
- `api.github.com` - Repository structure listing
- `raw.githubusercontent.com` - File downloads

If blocked, report the specific endpoint and suggest checking network settings.

## Triggers

Execute installation automatically when:
- User explicitly requests skill installation/update
- User references a skill not present in `/mnt/skills/user`
- User mentions missing capabilities that match known skill patterns

After installation, proceed with user's original request.

## Verification

Installed skills appear in system's `<available_skills>` automatically. Manual verification:

```bash
ls /mnt/skills/user
```

## Manual Installation

For single skills or testing:

```bash
mkdir -p /mnt/skills/user/{skill-name}
curl -s "https://raw.githubusercontent.com/oaustegard/claude-skills/main/{skill-name}/SKILL.md" \
  -o "/mnt/skills/user/{skill-name}/SKILL.md"
```

More from oaustegard/claude-skills

SkillDescription
accessing-github-reposGitHub repository access in containerized environments using REST API and credential detection. Use when git clone fails, or when accessing private repos/writing files via API.
api-credentialsSecurely manages API credentials for multiple providers (Anthropic Claude, Google Gemini, GitHub). Use when skills need to access stored API keys for external service invocations.
asking-questionsGuidance for asking clarifying questions when user requests are ambiguous, have multiple valid approaches, or require critical decisions. Use when implementation choices exist that could significantly affect outcomes.
browsing-blueskyBrowse Bluesky content via API and firehose - search posts, fetch user activity, sample trending topics, read feeds and lists, analyze and categorize accounts. Supports authenticated access for personalized feeds. Use for Bluesky research, user monitoring, trend analysis, feed reading, firehose sampling, account categorization.
building-github-indexGenerate progressive disclosure indexes for GitHub repositories to use as Claude project knowledge. Use when setting up projects referencing external documentation, creating searchable indexes of technical blogs or knowledge bases, combining multiple repos into one index, or when user mentions "index", "github repo", "project knowledge", or "documentation reference".
categorizing-bsky-accountsAnalyze and categorize Bluesky accounts by topic using keyword extraction. Use when users mention Bluesky account analysis, following/follower lists, topic discovery, account curation, or network analysis.
chartingSelect the right Python charting library (seaborn, matplotlib, graphviz) and produce publication-quality static visualizations. Use when creating charts, plots, graphs, diagrams, heatmaps, visualizations from data, or when choosing between matplotlib/seaborn/graphviz. Also triggers for network diagrams, flowcharts, dependency trees, state machines, and entity-relationship diagrams. For interactive browser-rendered charts or uploaded data exploration, defer to charting-vega-lite instead.
charting-vega-liteCreate interactive data visualizations using Vega-Lite declarative JSON grammar. Supports 20+ chart types (bar, line, scatter, histogram, boxplot, grouped/stacked variations, etc.) via templates and programmatic builders. Use when users upload data for charting, request specific chart types, or mention visualizations. Produces portable JSON specs with inline data islands that work in Claude artifacts and can be adapted for production.
check-toolsValidates development tool installations across Python, Node.js, Java, Go, Rust, C/C++, Git, and system utilities. Use when verifying environments or troubleshooting dependencies.
cloning-projectExports project instructions and knowledge files from the current Claude project. Use when users want to clone, copy, backup, or export a project's configuration and files.