Claude Skills Walkthrough banner
JaimeStill JaimeStill

Claude Skills Walkthrough

Development community

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

  1. Run /plugins in Claude Code
  2. The marketplace appears with its available plugins listed
  3. 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)`.