Claude Tools / Plugins / skills

Plugins · michaelboeding/skills

skills

Personal collection of agent skills using the open SKILL.md standard

CLEARED_STATICclaude-onlyv5.27.0

Pipeline results

Coverage

CLEARED_STATIC

Tests run

7 / 8

Portability

Claude-only

Type

Plugins

Tests & results

What the pipeline checked

TestStateResult or reason
eligibilityranall eligibility checks passed
dedupranunique -- no near-duplicate found
clocran54140 code lines / 241 files
secretsranno secret patterns matched
egressran14 lexical match(es) — FLAG-INFO (C-01: semantic analysis deferred to v2)
injectionranno patterns matched (confidence: STANDARD)
required-fieldsranrequired fields present: name, version, description
behaviouraldeferredbehavioural assessment deferred (v1): Python with non-stdlib imports (committed-only policy): [('skills/xlsx/recalc.py', 'openpyxl'), ('skills/image-generation/scripts/openai_image.py', 'mimetypes')]

What's inside

Components found

agents/builder-solver-1.md
componentmedium
agents/builder-solver-10.md
componentmedium
agents/builder-solver-2.md
componentmedium
agents/builder-solver-3.md
componentmedium
agents/builder-solver-4.md
componentmedium
agents/builder-solver-5.md
componentmedium
agents/builder-solver-6.md
componentmedium
agents/builder-solver-7.md
componentmedium
agents/builder-solver-8.md
componentmedium
agents/builder-solver-9.md
componentmedium
agents/debug-solver-1.md
componentmedium
agents/debug-solver-10.md
componentmedium
agents/debug-solver-2.md
componentmedium
agents/debug-solver-3.md
componentmedium
agents/debug-solver-4.md
componentmedium
agents/debug-solver-5.md
componentmedium
agents/debug-solver-6.md
componentmedium
agents/debug-solver-7.md
componentmedium
agents/debug-solver-8.md
componentmedium
agents/debug-solver-9.md
componentmedium

Coverage

Not assessed

  • behavioural execution not run
  • egress patterns logged (FLAG-INFO): 14 lexical match(es)

README

From the repository

# Skills

> **Version 5.27.0** - Added walkthrough-script-agent: generate timed walkthrough video scripts for app features

Personal collection of agent skills using the open [SKILL.md standard](https://agentskills.io). Works with Claude Code and other AI assistants.

## Installation

### Claude Code

```bash
# Add the marketplace
/plugin marketplace add michaelboeding/skills

# Install the plugin
/plugin install skills@michaelboeding-skills
```

### Other Tools

Copy the `skills/` folder to your project or follow your tool's skill installation docs.

---

## Python Dependencies

Many skills require Python packages. Run the install script:

```bash
# From the skills directory
./scripts/install.sh
```

Or install manually:

```bash
pip install -r requirements.txt
```

**Requirements:**
- Python 3.10+ (for `google-genai` package)
- pip

**What gets installed:**

| Package | Version | Used By |
|---------|---------|---------|
| `google-genai` | ≥1.0.0 | image-generation, video-generation, voice-generation, music-generation |
| `matplotlib` | ≥3.7.0 | chart-generation |
| `numpy` | ≥1.24.0 | chart-generation |
| `python-pptx` | ≥0.6.21 | slide-generation |
| `Pillow` | ≥10.0.0 | slide-

← Back to Plugins