Skip to main content
ClaudeWave
Skill235 estrellas del repoactualizado 3d ago

skill-sync

skill-sync manages bidirectional synchronization of Claude skills between a local installation and a GitHub repository serving as the canonical source. Use this skill to list available skills from the remote repo, install or update skills locally, push local skill modifications back to the repository via pull requests, or refresh the local cache of repository changes.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/jdrhyne/agent-skills /tmp/skill-sync && cp -r /tmp/skill-sync/clawdbot/skill-sync ~/.claude/skills/skill-sync
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Skill Sync

Manage skills from the shared GitHub repository with GitHub as canonical source of truth.

> Never commit secrets. Keep keys/tokens out of SKILL.md and scripts.

## Quick Reference

```bash
# List available skills in the repo
skill-sync list

# Install one skill
skill-sync install <skill-name>

# Install/update all skills from repo
skill-sync install --all

# Push a local skill update to repo via PR
skill-sync push <skill-name>

# Refresh local repo cache
skill-sync update
```

## Commands

### `skill-sync list`
Shows all skills available in the remote repository.

### `skill-sync install <name>`
Installs/updates a skill from repo into local skills directory.

### `skill-sync install --all`
Installs/updates all skills from repo.

### `skill-sync push <name>`
Pushes local skill changes via branch + PR (`gh` CLI).

### `skill-sync update`
Pulls latest repo changes without installing.

## Configuration

Default paths:
- Repo clone: `~/.agent-skills-repo`
- Local skills: `~/clawd/skills` (or `$CLAWD_SKILLS_DIR`)
- Remote: `https://github.com/jdrhyne/agent-skills.git`
auto-updaterSkill

Automatically update OpenClaw and selected skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.

clawdbot-release-checkSkill

Check for new OpenClaw releases and notify once per new version.

clawddocsSkill

OpenClaw documentation expert with decision tree navigation, search scripts, doc fetching, version tracking, and config snippets for all OpenClaw features

gallery-scraperSkill

Bulk download images from login-protected gallery websites using an attached browser session. Use when asked to scrape, download, or save images from authenticated gallery pages, extract full-size images from thumbnails, or batch download from multi-page galleries.

knowledge-graphSkill

Three-Layer Memory System — automatic fact extraction, entity-based knowledge graph, and weekly synthesis. Manages life/areas/ entities with atomic facts and living summaries.

self-improving-agentSkill

Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.

todo-trackerSkill

Persistent TODO scratch pad for tracking tasks across sessions. Use when user says "add to TODO", "what's on the TODO", "mark X done", "show TODO list", "remove from TODO", or asks about pending tasks. Also triggers on heartbeat to remind about stale items.

codexSkill

Use when the user asks to run Codex CLI (codex exec, codex resume) or references OpenAI Codex for code analysis, refactoring, or automated editing. Uses GPT-5.2 by default for state-of-the-art software engineering.