-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
thitichaya edited this page May 2, 2026
·
7 revisions
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 plugins install helix@https://github.com/Thitic9203/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")/
donegit 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")/
doneCopy 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.
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.