Welcome to Grok Skill.
Grok Skill is a collection of skills, slash commands, and AI subagents that drop into your local Grok and turn it into a coordinated engineering and marketing team. This page gets you from purchase to first shipped feature.
Install in 5 minutes
After checkout you'll receive an email with your private GitHub access. Clone the kit and run the installer:
# clone your kit (replace with your kit name) git clone github.com/grok-skill/engineer.git # run the installer cd engineer && ./install.sh
The installer drops skills, commands, and agent definitions into your ~/.grok directory. It's non-destructive — anything you've already set up there stays exactly as it was.
Tip: if you bought the Combo, run both installers. They share an orchestration layer that lets the engineering agents hand off to marketing agents (and vice versa).
Your first skill call
Open any project and start Grok:
cd ~/my-app grok
Now try a slash command. /plan is a good first one — it analyses your repo and proposes a structured approach to whatever you ask:
grok › /plan add user authentication with magic links
Grok will spin up the relevant subagents (@backend-architect, @auth-engineer, @db-engineer), scan your codebase, and come back with a numbered plan. Approve it with /cook to start the actual implementation.
Skills
A skill is a focused capability — "write a migration," "audit a Stripe webhook," "draft a cold email." Each skill is a small markdown file that primes Grok with the right context, conventions, and guardrails.
- Skills are auto-loaded based on what you're doing.
- You can call any skill explicitly:
@skill:migration-write - Skills are plain markdown — edit them, fork them, override them.
Slash commands
Slash commands are higher-level entry points. They orchestrate skills and agents to get something concrete done. The most-used ones:
/plan— analyse and propose a structured approach./cook— execute the plan, agent by agent./review— code review of the last change with our review agent./ship— pre-flight checks & PR-ready summary.
Subagents
Subagents are specialist personas Grok delegates to. Each one has a narrow remit and a stricter prompt than your default model. They're declared in ~/.grok/agents/ and any of them can be invoked directly:
grok › "@backend-architect — sketch the data model for a multi-tenant CRM"
Configuration
Everything is text files. To change the default model the kit uses, edit ~/.grok/config.toml:
[default] model = "grok-4-heavy" context_budget = 128000 [skills] auto_load = true
Updating
Pull from the repo and re-run the installer:
cd ~/grok-skill/engineer && git pull && ./install.sh
Your local overrides in ~/.grok/local/ are preserved on every update.
Uninstalling
Run ./uninstall.sh from the kit folder. It removes every file the installer added and leaves anything else in ~/.grok untouched.
Support
Stuck? The fastest path is our Discord — most questions are answered by another builder within minutes. For account or billing issues, email help@grok-skill.cc and we'll be back to you within one business day.
Last updated · May 8, 2026 · Edit this page on GitHub →