# my-custom-skill > Brief description of what this skill does. Include trigger phrases like "do thing", "make stuff", "custom task". - Author: mautomo - Repository: Vandoko-ai/marketplace - Version: 20260201104758 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/Vandoko-ai/marketplace - Web: https://mule.run/skillshub/@@Vandoko-ai/marketplace~my-custom-skill:20260201104758 --- --- name: my-custom-skill description: Brief description of what this skill does. Include trigger phrases like "do thing", "make stuff", "custom task". allowed-tools: Read, Write, Glob, Grep user-invocable: true metadata: author: Your Name version: "1.0.0" token_budget: 1500 level: sub-agent --- # My Custom Skill Brief overview of what this skill accomplishes. ## Context Provide any project-specific context Claude needs to know: - **Tech Stack**: Next.js 16, React 19, TypeScript - **Project Structure**: Describe relevant directories - **Dependencies**: List any packages this skill works with ## Workflow Step-by-step process for completing tasks: ### 1. Analysis Phase First, analyze the request to understand: - What is the goal? - What files need to be modified? - Are there any constraints? ### 2. Implementation Phase Then implement the solution: - Create or modify the necessary files - Follow project conventions - Apply best practices ### 3. Validation Phase Finally, verify the work: - Check for syntax errors - Ensure tests pass (if applicable) - Confirm requirements are met ## Patterns ### Pattern 1: Basic Usage ```typescript // Example code pattern function example() { // Implementation } ``` ### Pattern 2: Advanced Usage ```typescript // More complex example async function advancedExample() { // Implementation } ``` ## Output Format Always output a structured JSON result: ```json { "task_type": "my-custom-skill", "summary": "Brief description of what was done", "files_created": ["path/to/file.ts"], "files_modified": ["path/to/existing.ts"], "next_steps": ["Optional follow-up actions"], "status": "complete" } ``` ## Rules ✅ DO: - Follow existing project conventions - Add appropriate comments - Handle edge cases - Provide clear output ❌ DON'T: - Override existing files without reason - Skip error handling - Hardcode values that should be configurable - Ignore project-specific patterns ## References If you have supporting documentation, place it in `references/` and reference it here: - `references/patterns.md` - Common patterns for this skill - `references/examples.md` - Working examples --- *Custom skill created for [Project Name]*