-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Helix works with Claude Code, Copilot CLI, Gemini CLI, Cursor, Windsurf, and any AI that can read Markdown. See Using with Other AI Tools for the full compatibility guide.
claude plugin marketplace add Thitic9203/helix
claude plugin install helixVerify:
claude plugins list | grep helixOpen a new session and type /helix to see the phase menu.
git clone https://github.com/Thitic9203/helix /tmp/helix-install
for d in /tmp/helix-install/skills/*/; do
cp -r "$d" ~/.agents/skills/helix-$(basename "$d")/
doneVerify:
ls ~/.agents/skills/ | grep helixInvoke in a session: @helix-analyze
git clone https://github.com/Thitic9203/helix /tmp/helix-install
mkdir -p ~/.gemini/skills
for d in /tmp/helix-install/skills/*/; do
cp -r "$d" ~/.gemini/skills/helix-$(basename "$d")/
doneVerify:
ls ~/.gemini/skills/ | grep helixInvoke in a session: /skill helix-analyze
Copy individual skills as rule files into your tool's rules directory:
git clone https://github.com/Thitic9203/helix /tmp/helix-install
mkdir -p .cursor/rules # or .windsurf/rules
for skill in analyze plan execute test deploy review; do
cp /tmp/helix-install/skills/$skill/SKILL.md .cursor/rules/helix-$skill.mdc
doneClone the repo and paste the SKILL.md content for any phase directly into your AI's context or system prompt. No tooling required.
Tip: Copy both
SKILL.mdand the.mdknowledge reference files in the same directory for the best results. Knowledge files contain the patterns and checklists the skill relies on.
git clone https://github.com/Thitic9203/helix
cat helix/skills/analyze/SKILL.md
# paste into your AI chatclaude plugins update helixcd /path/to/helix && git pull origin main
# Re-run the copy commands for your platformclaude plugins uninstall helixRemove the skill directories you copied (~/.agents/skills/helix-*/, ~/.gemini/skills/helix-*/, etc.)
See Troubleshooting if something doesn't work.