Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Conf Skill Creator

DSecurity

Creates skills for installing software and configuring computers. Use when asked to create a new skill for machine setup, software installation, update or removal, or system configuration.

76 stars
0 votes
0 copies
1 views
Added 2/8/2026
developmentjavascriptjavashellbashnodegit

Works with

terminal

Security Analysis

D43/100
criticalPipes output to a shell interpreter
highPerforms destructive filesystem operations
criticalModifies startup scripts or system services for persistence
criticalModifies startup scripts or system services for persistence
criticalDownloads and executes remote scripts — classic supply chain attack

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add majiayu000/claude-skill-registry --skill conf-skill-creator --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Conf Skill Creator?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Conf Skill Creator
[![Security: D — Skills Directory](https://www.skillsdirectory.com/api/skills/majiayu000-conf-skill-creator/badge)](https://www.skillsdirectory.com/skills/majiayu000-conf-skill-creator)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: conf-skill-creator
description: Creates skills for installing software and configuring computers. Use when asked to create a new skill for machine setup, software installation, update or removal, or system configuration.
---

# Creating Computer Configuration Skills

When creating a new skill for installing software or configuring a computer:

## Structure
Create the skill in `.claude/skills/<skill-name>/SKILL.md`

## Required Frontmatter
```yaml
---
name: skill-name
description: Brief description of what this installs/configures
---
```

## Instructions to Include

1. **Prerequisites** - What must be installed first (e.g., Homebrew, apt)
2. **Installation commands** - The exact commands to run
3. **Configuration steps** - Any post-install configuration needed
4. **Verification** - How to confirm success
5. **Update** - How to update to newer versions
6. **Uninstallation** - How to remove the software and clean up configuration files

## Example Skill

```yaml
---
name: install-node
description: Installs Node.js via nvm. Use when setting up Node.js or JavaScript development.
---

## Prerequisites
- macOS or Linux
- curl installed

## Installation
1. Install nvm: `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash`
2. Restart terminal or run: `source ~/.bashrc`
3. Install Node: `nvm install --lts`

## Verify
Run `node --version` to confirm installation.

## Update
- Update nvm itself: `cd ~/.nvm && git fetch --tags && git checkout $(git describe --tags --abbrev=0)`
- Install newer Node version: `nvm install --lts` (keeps previous versions)
- Switch to new version: `nvm use --lts`
- Set new default: `nvm alias default <version>`

## Uninstall
1. Remove installed Node versions: `nvm uninstall <version>` or `nvm uninstall --lts`
2. Remove nvm itself:
   - Delete nvm directory: `rm -rf ~/.nvm`
   - Remove nvm lines from shell config (`~/.bashrc`, `~/.zshrc`, or `~/.profile`)
3. Restart terminal to apply changes
```

## Guidelines
- Keep skills focused on one tool or configuration
- Use Homebrew on macOS, apt on Debian/Ubuntu
- Include rollback steps for complex changes
- Prefer idempotent commands that can safely re-run
- Always include update instructions for upgrading to newer versions
- Always include uninstall instructions covering both software removal and config cleanup

Attribution

majiayu000majiayu000
View sourceMore from majiayu000 →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →