Skip to content

Quick Start Guide

Get started with Talent Factory Claude Code Plugins in 5 minutes.

1. Add Marketplace (30 seconds)

In your project, create .claude/settings.json:

JSON
{
  "extraKnownMarketplaces": {
    "talent-factory": {
      "source": {
        "source": "github",
        "repo": "talent-factory/claude-plugins"
      }
    }
  }
}

2. Open Claude Code (10 seconds)

Bash
cd your-project
claude

Trust the repository when prompted.

3. Install Plugins (1 minute)

Text Only
1
2
3
4
/plugin
→ Browse Plugins
→ talent-factory
→ Select plugins to install

4. Enable Plugins (30 seconds)

Add to .claude/settings.json:

JSON
1
2
3
4
5
6
7
{
  "extraKnownMarketplaces": { /* ... */ },
  "enabledPlugins": {
    "git-workflow@talent-factory": true,
    "education@talent-factory": true
  }
}

5. Try It Out (2 minutes)

Git Workflow

Text Only
/commit
Follow prompts to create a professional commit.

Education

Text Only
/explain-code
Get detailed code explanations.

Core Utilities

Text Only
/check-commands
Validate your command files.

For Students

JSON
1
2
3
4
5
6
7
{
  "enabledPlugins": {
    "education@talent-factory": true,
    "code-quality@talent-factory": true,
    "git-workflow@talent-factory": true
  }
}

For Teams

JSON
1
2
3
4
5
6
7
{
  "enabledPlugins": {
    "git-workflow@talent-factory": true,
    "project-management@talent-factory": true,
    "code-quality@talent-factory": true
  }
}

For Solo Developers

JSON
1
2
3
4
5
6
7
{
  "enabledPlugins": {
    "git-workflow@talent-factory": true,
    "code-quality@talent-factory": true,
    "core@talent-factory": true
  }
}

Next Steps

Need Help?


Time invested: 5 minutes
Productivity boost: Immediate 🚀