thalida's personal Claude Code skills
npx claudepluginhub thalida/skillslidathalida's personal Claude Code skills
thalida's personal Claude Code skills plugin.
Custom skills that extend Claude Code's behavior. Skills are model-invoked — Claude automatically uses them based on task context (no manual slash command needed).
claude plugin marketplace add thalida/skillslida
claude plugin install skillslida@skillslida
Start a new Claude Code session — skills will be available immediately.
Clone this repo:
git clone https://github.com/thalida/skillslida ~/Documents/Repos/skillslida
Register it as a marketplace and install:
claude plugin marketplace add ~/Documents/Repos/skillslida
claude plugin install skillslida@skillslida
Start a new Claude Code session — skills will be available immediately.
Since the plugin installs from this local directory, edits to skill files take effect on the next Claude Code session — no reinstall needed.
skillslida/
├── .claude-plugin/
│ ├── plugin.json # Plugin metadata
│ └── marketplace.json # Marketplace manifest (for local installation)
├── skills/
│ └── <skill-name>/
│ └── SKILL.md # Skill definition
└── README.md
Create a new directory under skills/:
mkdir -p skills/<skill-name>
Create skills/<skill-name>/SKILL.md with frontmatter:
---
name: skillslida:<skill-name>
description: Describe when Claude should use this skill (trigger conditions, keywords, phrases).
---
# Skill Title
Instructions for Claude...
Bump the version in .claude-plugin/plugin.json and .claude-plugin/marketplace.json, then commit and push:
git add skills/<skill-name>/ .claude-plugin/
git commit -m "feat: add <skill-name> skill"
git push
This is a public repo. Do not commit:
settings.local.json or any .local files