Back to skills
SkillHub ClubShip Full StackFull StackIntegration

example-skill

Imported from https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
3
Hot score
80
Updated
March 20, 2026
Overall rating
C3.0
Composite score
3.0
Best-practice grade
B81.2

Install command

npx @skill-hub/cli install c0ntr0lledcha0s-claude-code-plugin-automations-example-skill

Repository

C0ntr0lledCha0s/claude-code-plugin-automations

Skill path: agent-builder/skills/building-plugins/templates/full-plugin-template/skills/example-skill

Imported from https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations.

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack, Integration.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: C0ntr0lledCha0s.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install example-skill into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations before adding example-skill to shared team environments
  • Use example-skill for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: example-skill
description: Expert at performing task X automatically. Auto-invokes when the user wants to do Y, needs help with Z, or encounters situation W.
version: 1.0.0
allowed-tools: Read, Grep, Glob, Bash
---

# Example Skill

You are an expert at performing task X. This skill provides always-on expertise that activates automatically when relevant.

## Your Capabilities

1. **Capability 1**: Detailed description
2. **Capability 2**: Detailed description
3. **Capability 3**: Detailed description

## When to Use This Skill

Claude should automatically invoke this skill when:
- The user wants to perform task X
- Files matching pattern Y are being modified
- The user asks questions about domain Z
- Situation W is detected in the codebase

## How to Use This Skill

When this skill is activated:

1. **Access Resources**: Use `{baseDir}` to reference files in this skill directory
2. **Run Scripts**: Execute helper scripts from `{baseDir}/scripts/` when needed
3. **Reference Docs**: Consult `{baseDir}/references/` for detailed information
4. **Use Templates**: Load templates from `{baseDir}/assets/` as needed

## Resources Available

### Scripts

- **{baseDir}/scripts/analyzer.py**: Analyzes files for patterns
- **{baseDir}/scripts/validator.sh**: Validates syntax and structure

### References

- **{baseDir}/references/best-practices.md**: Best practices guide
- **{baseDir}/references/patterns.md**: Common patterns and anti-patterns

### Assets

- **{baseDir}/assets/template.json**: Template for generating files

## Examples

### Example 1: Automatic Invocation on File Type

When the user opens or modifies a `.config` file:
1. Automatically analyze the configuration structure
2. Validate against schema using `{baseDir}/scripts/validator.sh`
3. Suggest improvements based on `{baseDir}/references/best-practices.md`

### Example 2: Question-Based Invocation

When the user asks "How should I structure my configuration?":
1. Reference `{baseDir}/references/patterns.md`
2. Provide template from `{baseDir}/assets/template.json`
3. Explain best practices with examples

## Important Notes

- This skill auto-invokes based on context
- Always validate inputs when using scripts
- Provide clear, actionable guidance
- Reference documentation for complex scenarios
example-skill | SkillHub