Skip to main content

FOR EVERYONE

Install

Setup is two lines. You install the plugin once on your machine, then run one command inside each project you want it in.

claude-kit is a licensed product of tuempresa.digital. Your license grants access to the marketplace repo below; install it the same way once that access is in place.

1. Install the plugin

In Claude Code:

claude plugin marketplace add tuempresadigital/claude-kit
claude plugin install claude-kit@claude-kit-marketplace

That's the one-time part. The kit is now available everywhere.

2. Set up a project

Open any project and run:

/kit-init

It asks a few friendly questions — which profile, which repo, whether to turn on the task board, memory, and which language — then scaffolds a tailored .claude/ and a CLAUDE.md for that project.

Preview first

Want to look before anything is written? Run /kit-init and ask it to preview, or use --dry-run. It prints exactly which files it would create and writes nothing. A safe first look.

A note on "per project"

claude-kit is per project — you run /kit-init inside each project so it gets its own self-contained .claude/. In a workspace or monorepo, set up each project separately rather than once at the root. /kit-init notices whether you're in a single project or a folder of several and recommends accordingly.

Why per-project? Two reasons:

  • It travels with the repo. The project's agents, skills, rules, and settings all live in .claude/. Commit that folder and your whole team shares the exact same setup.
  • Clean memory. Each project maps to its own memory "wing," so decisions and context never bleed between projects.

Staying up to date

When the kit improves, update the plugin:

claude plugin marketplace update claude-kit-marketplace
claude plugin update claude-kit@claude-kit-marketplace

Restart Claude Code to apply. Then, inside a project, /kit-update brings the new features into that project — safely, adding what's new without touching your customizations.

Run it without the plugin

The engine is a plain bash script. With your license, you have access to the private repo, so you can clone and run it directly:

git clone https://github.com/tuempresadigital/claude-kit ~/.claude-kit
cd /path/to/your/project
~/.claude-kit/scripts/init.sh --profile software --repo me/my-app --name "My App"

Requirements: gh (authenticated, with repo access from your license), jq, perl, git, and bash 3.2+ (macOS's system bash is fine).

Where to go next