Skip to content

Latest commit

 

History

History
153 lines (104 loc) · 5.1 KB

File metadata and controls

153 lines (104 loc) · 5.1 KB

Installation Guide

Claude Code (Primary)

Option A — Plugin Manager (recommended)

claude plugin install https://github.com/geledek/enterprise-ai-transformation-skills

Restart Claude Code. All 16 skills activate automatically.

Option B — Manual Clone

git clone https://github.com/geledek/enterprise-ai-transformation-skills.git \
  ~/.claude/plugins/enterprise-ai-transformation-skills

Restart Claude Code — it auto-discovers plugins in ~/.claude/plugins/.

Verify Installation

After restart, test each skill with its trigger phrase. Skills are grouped by bucket:

General — diagnostics & strategy

Skill Trigger phrase
general-use-case-discovery "Where should we point AI first across our function?"
general-idea-diagnostic "Should we pursue this AI idea?"
general-maturity-assessment "Where are we on the AI maturity curve?"
general-peer-cases "Has anyone else done this before?"
general-roi-gate "Run the ROI gate on this AI investment"

Process — pilot, ship, observe

Skill Trigger phrase
process-pilot-design "Design a 90-day AI pilot for [X]"
process-productionization "How do we move this prototype to production?"
process-portfolio-observability "What is each AI initiative actually returning?"

Tech — stack, sourcing, deployment, agents

Skill Trigger phrase
tech-stack-diagnostic "Diagnose our AI tech stack"
tech-buy-vs-build "Should we build or buy this AI capability?"
tech-data-deployment "Where can this data legally run?"
tech-agent-guardrail "Check governance on this AI agent deployment"

People — leadership, workforce, frontline

Skill Trigger phrase
people-readiness-conversation "Surface AI readiness gaps in our leadership team"
people-literacy-curriculum "Build a role-based AI literacy curriculum"
people-frontline-engagement "How do we engage skeptical frontline experts?"
people-tool-selection "Which AI tool should I teach this group?"

Claude Desktop

  1. Open Claude Desktop → Customization (left sidebar)
  2. Click Add plugin (+) → Create PluginAdd MarketplaceAdd from a repository
  3. Paste this URL when prompted: https://github.com/geledek/enterprise-ai-transformation-skills
  4. Restart Claude Desktop. All 16 skills activate automatically from their trigger phrases.

Requires a paid plan (Pro, Max, Team, or Enterprise). See Claude plugin docs.


ChatGPT

Option A — Native Skills (if available on your plan)

  1. Go to chatgpt.com → Explore skills or open Settings → Skills
  2. Click Add skill from URL (if shown) and paste: https://github.com/geledek/enterprise-ai-transformation-skills

See OpenAI skills docs for current plan availability.

Option B — Custom GPT (no code required, always available)

  1. Create a new GPT at chat.openai.com/gpts
  2. In Instructions, paste the full content of any skill's SKILL.md
  3. In Knowledge, upload the relevant files from references/
  4. Set the Conversation Starter to the skill's trigger phrase
  5. Repeat per skill, or combine up to 4 skills into one GPT

Limitation: Custom GPTs don't auto-trigger on phrase matching — you'll need to explicitly invoke the skill in conversation.


Grok CLI

Option A — Marketplace install

Add this repo as a marketplace source in ~/.grok/config.toml:

[[marketplace.sources]]
url = "https://github.com/geledek/enterprise-ai-transformation-skills"

Then browse and install from the Marketplace tab in the Grok TUI, or run:

grok plugin install enterprise-ai-transformation-skills

Option B — Manual clone

git clone https://github.com/geledek/enterprise-ai-transformation-skills.git \
  ~/.grok/plugins/enterprise-ai-transformation-skills

Grok auto-discovers plugins in ~/.grok/plugins/. Skills appear as /skill-name slash commands.

See Grok skills & plugins docs.


Claude.ai Projects (no install required)

For users without a paid Claude Code or Desktop plan:

  1. Create a new Project at claude.ai
  2. Open Project Instructions
  3. Paste the contents of any skill's README.md from this repo
  4. Upload relevant files from references/ as Project Knowledge

This loads one skill per Project. Skills activate on their trigger phrases.


Updating

Claude Code (plugin manager install):

claude plugin update enterprise-ai-transformation-skills

Claude Desktop: remove the plugin (Customization → your plugin → remove), then repeat the install steps above. Restart after updating.

Manual clone (Claude Code, Grok, or fork):

git pull origin main

If you've forked the repo and added your own references, merge upstream changes selectively — don't overwrite your local additions.