home / skills / arustydev / ai / template-new-skill
/legacy/skills/template-new-skill
This skill generates a ready-to-use skeleton template for a new Claude Code Skill, including read-only file access, search utilities, and file discovery.
npx playbooks add skill arustydev/ai --skill template-new-skillReview the files below or copy the command above to add this skill to your agents.
---
name: template-new-skill
description: Generate a skeleton template for a new Claude Code Skill.
allowed-tools: Read, Grep, Glob, Bash:just
id: B90F6D72-BB47-434C-8BDC-3C880E13AC9A
---
# Template New Skill
This Skill provides read-only file access.
## Instructions
1. Use Read to view file contents
2. Use Grep to search within files
3. Use Glob to find files by pattern
## Requirements
Packages must be installed in your environment:
```bash
NAME="skill name here" \
SCOPE="personal||project" \
DESC="Some description of the skill here" \
just init
```
This skill generates a minimal skeleton template for a new Claude Code Skill focused on Jupyter Notebook projects. It provides the basic file layout, simple instructions, and a small set of commands to bootstrap a personal or project-scoped skill. The template is read-only and intended as a starting point for developers to customize.
The skill inspects repository files using read-only operations: it can open files to show contents, grep to search inside files, and glob to list files by pattern. It returns a concise skeleton including a name, scope, description placeholders, and a basic initialization command to run in a shell. The output is intended to be copied into a new project and edited to match the developer’s needs.