🎯

biome

🎯Skill

from beshkenadze/claude-skills-marketplace

VibeIndex|
What it does

Based on the README, I cannot definitively determine what the "biome" skill does specifically, as no details about its contents are provided in the repository description. The README explains the s...

πŸ“¦

Part of

beshkenadze/claude-skills-marketplace(25 items)

biome

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add beshkenadze/claude-skills-marketplace --skill biome
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Claude Skills Marketplace

A marketplace for Claude Agent Skills - organized packages of instructions, scripts, and resources that extend Claude's capabilities.

What Are Skills?

Agent Skills are directories containing a SKILL.md file that packages domain expertise and organizational knowledge for reuse across conversations. They enable Claude to perform specialized tasks by loading instructions, scripts, and resources dynamically.

Key Characteristics:

  • Model-invoked: Claude autonomously decides when to use them based on the description
  • Progressive disclosure: Only loads content when needed, optimizing token usage
  • Composable: Multiple focused skills work better together than one comprehensive skill

Quick Start

1. Create Your Skill Directory

```

my-skill/

β”œβ”€β”€ SKILL.md # Required - core instructions

β”œβ”€β”€ reference.md # Optional - additional documentation

β”œβ”€β”€ examples.md # Optional - usage examples

β”œβ”€β”€ scripts/ # Optional - executable code

└── templates/ # Optional - template files

```

2. Write Your SKILL.md

```yaml

---

name: your-skill-name

description: Brief description of what this Skill does and when to use it

---

# Your Skill Name

Instructions

Provide clear, step-by-step guidance for Claude.

Examples

Show concrete usage examples with inputs and outputs.

Guidelines

Best practices and constraints.

```

3. Install Your Skill

| Location | Scope |

|----------|-------|

| ~/.claude/skills/ | Personal - available across all projects |

| .claude/skills/ | Project - specific to repository |

SKILL.md Metadata Reference

| Field | Required | Constraints |

|-------|----------|-------------|

| name | Yes | Max 64 chars, lowercase letters, numbers, hyphens only |

| description | Yes | Max 1024 chars, explains function and trigger conditions |

| version | No | Semantic versioning (e.g., 1.0.0) |

| dependencies | No | List of required packages |

Progressive Disclosure Architecture

Skills implement three levels of information loading:

  1. Level 1 (Metadata): Name/description loaded into system prompt at startup
  2. Level 2 (Instructions): Full SKILL.md loads when Claude determines relevance
  3. Level 3+ (Resources): Additional files load only when referenced

This design keeps context consumption minimal while enabling unbounded skill complexity.

Best Practices

  • Focus: Create separate skills for different workflows
  • Clarity: Write specific descriptions for proper invocation
  • Simplicity: Start with markdown; add code only when needed
  • Examples: Include sample inputs and outputs
  • Versioning: Track changes systematically
  • Incremental Testing: Test after each significant change
  • Scale Structure: Split into separate files when SKILL.md grows unwieldy

Security Considerations

  • Install skills only from trusted sources
  • Audit bundled files and dependencies
  • Never hardcode sensitive information (API keys, passwords)
  • Review instructions directing Claude toward external connections

Repository Structure

```

claude-skills-marketplace/

β”œβ”€β”€ skills/ # Community skills

β”‚ β”œβ”€β”€ creative/ # Creative & design skills

β”‚ β”œβ”€β”€ development/ # Development & technical skills

β”‚ β”œβ”€β”€ enterprise/ # Enterprise & communication skills

β”‚ └── document/ # Document generation skills

β”œβ”€β”€ templates/ # Starter templates

β”‚ └── basic/

β”‚ └── SKILL.md

β”œβ”€β”€ docs/ # Documentation

β”‚ β”œβ”€β”€ CREATING_SKILLS.md

β”‚ β”œβ”€β”€ API_SKILLS.md

β”‚ └── SKILLS_BEST_PRACTICES.md

└── CONTRIBUTING.md

```

Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on submitting skills to the marketplace.

Resources

  • [Introducing Agent Skills | Anthropic](https://www.anthropic.com/news/skills)
  • [How to create custom Skills | Claude Help Center](https://support.claude.com/en/articles/12512198-how-to-create-custom-skills)
  • [GitHub - anthropics/skills](https://github.com/anthropics/skills)
  • [Equipping agents for the real world | Anthropic Engineering](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills)

License

MIT

More from this repository10

🎯
gitea-tea🎯Skill

Based on the repository README and the skill name "gitea-tea", I infer this skill likely: Manages or interacts with Gitea repositories, providing automated repository operations or information ret...

🎯
swiftui-developer🎯Skill

Based on the repository's README and the context of a Claude Code skill, the "swiftui-developer" skill likely: Provides expert guidance and code generation support for developing iOS and macOS app...

🎯
ios-hig-reference🎯Skill

Provides comprehensive reference and guidelines for Apple's iOS Human Interface Guidelines (HIG) to help developers design user-friendly and consistent iOS applications.

🎯
ios-design-workflow🎯Skill

Guides designers and developers through a structured iOS app design workflow, providing step-by-step instructions for creating user interfaces, wireframes, and design specifications.

🎯
ios-design-review🎯Skill

Conducts comprehensive design reviews for iOS applications, evaluating user interface, user experience, design consistency, and adherence to Apple's Human Interface Guidelines.

🎯
ios-swiftui-generator🎯Skill

Generates SwiftUI code templates and boilerplate for iOS app development, helping developers quickly scaffold user interfaces and components.

🎯
python-uv🎯Skill

Based on the repository's README and the skill name "python-uv", this skill likely helps Claude efficiently manage Python package installations and virtual environments using the modern `uv` packag...

🎯
typescript-advanced-types🎯Skill

Helps Claude understand and work with advanced TypeScript type system features like generics, conditional types, mapped types, and type inference techniques.

🎯
research-guide🎯Skill

Guides Claude through systematic, structured research methodologies, helping break down complex research tasks into organized, step-by-step workflows.

🎯
codex-code-review🎯Skill

Performs comprehensive code review analysis, identifying potential bugs, style issues, and improvement recommendations across different programming languages and codebases.