Skip to content

Instantly share code, notes, and snippets.

@blanks88
Last active January 22, 2026 23:51
Show Gist options
  • Select an option

  • Save blanks88/c6fb95eb5d8776c7a907cab80ca24288 to your computer and use it in GitHub Desktop.

Select an option

Save blanks88/c6fb95eb5d8776c7a907cab80ca24288 to your computer and use it in GitHub Desktop.
CreativOS skill installation instructions for Claude Code

CreativOS Skill Installation Instructions

Follow these steps to install the CreativOS skill for Claude Code.

Step 1: Clone the repository

git clone git@github.com:blanks88/creativOS.git ~/.creativos

Step 2: Copy skill to Claude Code skills directory

mkdir -p ~/.claude/skills
cp -r ~/.creativos/skills/creativos ~/.claude/skills/

Step 3: Install the Python CLI tool (required)

The CLI is required for the skill to function. It provides the creativos commands used to scaffold, validate, and generate code.

pip install ~/.creativos

Or with pipx for isolated environment:

pipx install ~/.creativos

Step 4: Verify installation

Check the skill is installed:

ls ~/.claude/skills/creativos/SKILL.md

Check the CLI is available:

creativos --version

Done

The CreativOS skill is now installed. It will be available in Claude Code for .NET Clean Architecture CQRS projects.

To use it, mention creating entities, commands, queries, or DataLoaders for .NET Clean Architecture projects, and the skill will be invoked automatically.


Uninstall

Uninstall Claude Code Skill

rm -rf ~/.claude/skills/creativos

Uninstall CLI

If installed with pip:

pip uninstall creativos

If installed with pipx:

pipx uninstall creativos

Remove cloned repository (optional)

rm -rf ~/.creativos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment