tsk Skills Marketplace
February 26, 2026 · View on GitHub
This repository serves as a Claude Code skills marketplace, providing installable skills that teach Claude how to work with tsk. Skills follow the Agent Skills open standard.
Installing Skills
Add the marketplace
In Claude Code, add the tsk repository as a plugin marketplace:
/plugin marketplace add dtormoen/tsk-tsk
Install a skill
Browse and install individual skills:
/plugin install tsk-help@dtormoen/tsk-tsk
Manual installation
You can also copy skills directly. Replace tsk-help with any skill name from the Available Skills table below:
# User-level (available in all projects)
cp -r skills/tsk-help/skills/tsk-help ~/.claude/skills/
# Project-level (available only in this project)
cp -r skills/tsk-help/skills/tsk-help .claude/skills/
Available Skills
| Skill | Description |
|---|---|
tsk-help | Teaches Claude core tsk commands for delegating tasks to AI agents |
tsk-config | Guides users through configuring tsk Docker container images |
tsk-add | Queues a development task from the current conversation using tsk add |
Contributing a New Skill
Directory structure
Each skill is a plugin directory under skills/:
skills/
└── your-skill-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
└── skills/
└── your-skill-name/
└── SKILL.md # Skill content (Agent Skills format)
plugin.json
Minimal metadata for the plugin:
{
"name": "your-skill-name",
"description": "Brief description of what this skill does.",
"author": {
"name": "Your Name"
}
}
SKILL.md
The skill file uses YAML frontmatter followed by markdown content:
---
name: your-skill-name
description: When to activate this skill (max 1024 chars).
---
# Your Skill Title
Markdown content teaching Claude the skill...
Naming rules
- Max 64 characters
- Lowercase letters, numbers, and hyphens only
- Cannot contain "anthropic" or "claude"
- Description must be non-empty, max 1024 characters
Submitting
- Create your skill directory under
skills/ - Include
plugin.jsonandSKILL.mdas shown above - Add your plugin to
.claude-plugin/marketplace.jsonin thepluginsarray - Open a pull request