Claude Skills Walkthrough
Description
Demonstrate how to install, use, and create Claude marketplaces, plugins, and skills.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Claude Skills Walkthrough
References
1. Marketplace Commands
Register a marketplace so Claude Code knows where to find plugins:
claude plugin marketplace add tailored-agentic-units/tau-marketplace
This points Claude Code at the repo's `.claude-plugin/marketplace.json` — the root manifest that declares all available plugins.
2. Installing Plugins
From the UI
- Run
/pluginsin Claude Code - The marketplace appears with its available plugins listed
- Select a plugin to install it
From the CLI
[!NOTE] You can use the `-s` flag to explicitly set the scope of the installed plugin (defaults to `user` scope).
claude plugin install dev-workflow@tau-marketplace
claude plugin install github-cli@tau-marketplace
claude plugin install go-patterns@tau-marketplace
claude plugin install iterative-dev@tau-marketplace
claude plugin install project-management@tau-marketplace
Enabling in a Project
Add the installed skills to `.claude/settings.json`:
{
"permissions": {
"allow": [
"Skill(dev-workflow:dev-workflow)",
"Skill(github-cli:github-cli)",
"Skill(go-patterns:go-patterns)",
"Skill(iterative-dev:iterative-dev)",
"Skill(project-management:project-management)"
]
}
}
The format is `Skill(plugin-name:skill-name)`.
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development