add-new-skills-to-workflow

Add new skills to an existing workflow and update all related documentation. Use when user wants to add skills from GitHub URLs to a workflow (e.g., "add this skill to the workflow", "为工作流添加技能"). Triggers on adding skills to workflows, updating workflow documentation after skill additions.

181 stars

Best use case

add-new-skills-to-workflow is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Add new skills to an existing workflow and update all related documentation. Use when user wants to add skills from GitHub URLs to a workflow (e.g., "add this skill to the workflow", "为工作流添加技能"). Triggers on adding skills to workflows, updating workflow documentation after skill additions.

Teams using add-new-skills-to-workflow should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/add-new-skills-to-workflow/SKILL.md --create-dirs "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/add-new-skills-to-workflow/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/add-new-skills-to-workflow/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How add-new-skills-to-workflow Compares

Feature / Agentadd-new-skills-to-workflowStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Add new skills to an existing workflow and update all related documentation. Use when user wants to add skills from GitHub URLs to a workflow (e.g., "add this skill to the workflow", "为工作流添加技能"). Triggers on adding skills to workflows, updating workflow documentation after skill additions.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Add New Skills to Workflow

Add skills from GitHub to an existing workflow and update all related documentation.

## Workflow

### Step 1: Download Skills

Use skill-downloader to download skills from GitHub:

```bash
python .claude/skills/skill-downloader/scripts/download_from_github.py <repo-url> <skill-path> --output <workflow-path>/.claude/skills/
```

**Parse GitHub URL:**
- `https://github.com/user/repo/blob/main/path/to/skill` → repo: `https://github.com/user/repo`, skill-path: `path/to/skill`
- `https://github.com/user/repo/tree/main/.claude/skills/my-skill` → repo: `https://github.com/user/repo`, skill-path: `.claude/skills/my-skill`

**Example:**
```bash
# For URL: https://github.com/XIYO/zheon/blob/main/.claude/skills/slidev
python .claude/skills/skill-downloader/scripts/download_from_github.py https://github.com/XIYO/zheon .claude/skills/slidev --output ./workflows/talk-to-slidev-workflow/.claude/skills/

# Use --force to overwrite existing
python .claude/skills/skill-downloader/scripts/download_from_github.py <repo> <path> --output <target> --force
```

### Step 2: Read Downloaded Skill

Read the downloaded `SKILL.md` to understand:
- Skill name and description
- What category it belongs to
- How it fits into the workflow pipeline

### Step 3: Update skill-source.json

Add the new skill entry to `workflows/<name>/.claude/skill-source.json`:

```json
{
  "skill-name": {
    "source": "https://github.com/user/repo",
    "path": "path/to/skill"
  }
}
```

### Step 4: Update Documentation

Update these files (all that exist for the workflow):

| File | Updates Required |
|------|------------------|
| `workflows/<name>/.claude/skill-source.json` | Add new skill source entry |
| `workflows/<name>/README.md` | Skill count, skill table, pipeline |
| `workflows/<name>/README_cn.md` | Same as above (Chinese) |
| `workflows/<name>/AGENTS.md` | Available skills list, recommended sequences |
| `website/content/en/workflows/<name>.mdx` | Skill count, skill table, pipeline |
| `website/content/zh/workflows/<name>.mdx` | Same as above (Chinese) |
| `README.md` (root) | Skill count in workflow table |
| `README_cn.md` (root) | Same as above (Chinese) |

### Documentation Update Checklist

1. **Skill Count**: Update total count (e.g., "18 skills" → "20 skills")
   - Quick install comment
   - Section header
   - Description text

2. **Skill Table**: Add new skill row in appropriate category
   ```markdown
   | `skill-name` | Brief description of what it does |
   ```

3. **Pipeline**: Add skill to relevant stage if applicable
   ```
   Stage X: Category
   ├── existing-skill → Description
   └── new-skill → Description
   ```

4. **AGENTS.md**: Add to available skills and update recommended sequences

5. **Root README**: Update skill count in workflow overview table

## Example: Adding Skills to talk-to-slidev-workflow

**Given:** Add `slidev` and `slidev-presentations` skills

**Step 1:** Download
```bash
python .claude/skills/skill-downloader/scripts/download_from_github.py https://github.com/XIYO/zheon .claude/skills/slidev --output ./workflows/talk-to-slidev-workflow/.claude/skills/
python .claude/skills/skill-downloader/scripts/download_from_github.py https://github.com/clearfunction/cf-devtools skills/slidev-presentations --output ./workflows/talk-to-slidev-workflow/.claude/skills/
```

**Step 2:** Read downloaded skills to understand their purpose

**Step 3:** Update skill-source.json with new skill entries

**Step 4:** Update all 8 files:
- Update skill-source.json with source info
- Update skill count
- Add new category with skill table
- Update pipeline to reference new skills
- Update AGENTS.md skill lists and sequences
- Update root README skill count

Related Skills

thor-skills

159
from majiayu000/claude-skill-registry

An entry point and router for AI agents to manage various THOR-related cybersecurity tasks, including running scans, analyzing logs, troubleshooting, and maintenance.

SecurityClaude

/mnt/data2/nhlstats/.github/skills/adding-new-sport/SKILL.md

181
from majiayu000/claude-skill-registry

```markdown

add-workflow

181
from majiayu000/claude-skill-registry

Guide for adding a new RolloutWorkflow to AReaL. Use when user wants to create a new workflow.

adb-workflow-orchestrator

181
from majiayu000/claude-skill-registry

TOON workflow orchestration engine for coordinating ADB automation scripts across phases with error recovery

adaptive-workflows

181
from majiayu000/claude-skill-registry

Self-learning workflow system that tracks what works best for your use cases. Records experiment results, suggests optimizations, creates custom templates, and builds a personal knowledge base. Use to learn from experience and optimize your LLM workflows over time.

act-workflow-syntax

181
from majiayu000/claude-skill-registry

Use when creating or modifying GitHub Actions workflow files. Provides guidance on workflow syntax, triggers, jobs, steps, and expressions for creating valid GitHub Actions workflows that can be tested locally with act.

accounts-payable-workflow

181
from majiayu000/claude-skill-registry

Эксперт AP workflow. Используй для процессов кредиторской задолженности, invoice processing, three-way matching и payment automation.

SKILL.md — Skill para workflow Access/VBA (Export → Trabajo → Sync → Compilar → ERD → Cierre)

181
from majiayu000/claude-skill-registry

## Objetivo

DSA Skills

181
from majiayu000/claude-skill-registry

| Topic | Score (out of 10) |

1k-git-workflow

181
from majiayu000/claude-skill-registry

Git workflow and conventions for OneKey development. Use when creating branches, committing code, or creating PRs. Triggers on git, branch, commit, PR, pull request, merge, workflow.

git-workflow

181
from majiayu000/claude-skill-registry

Git 版本控制与协作专家,涵盖 GitHub/Gitee 平台操作、Conventional Commits 规范及 PR/MR 最佳实践。

gitops-workflow

181
from majiayu000/claude-skill-registry

Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deployments, or setting up declarative infrastructure management.