-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Josemalyson Oliveira edited this page Jun 27, 2026
·
1 revision
This guide will help you install and use HES with your AI coding assistant.
- An AI coding assistant (Claude Code, Cursor, GitHub Copilot, etc.)
- Git installed on your system
- Basic familiarity with the command line
git clone https://github.com/josemalyson/hes.git
cd hes
./setupThe installer will:
- Detect installed AI tools
- Ask for scope (project/global/both)
- Copy the correct files per tool
- Auto-commit the changes
./setup --tools claude,cursor --scope project --target /path/to/project --yesCopy the skill files to your agent's directory:
# For Claude Code
cp -r skills/ ~/.claude/skills/hes/
cp SKILL.md ~/.claude/skills/hes/
# For Cursor
cp -r skills/ ~/.cursor/skills/hes/
cp SKILL.md ~/.cursor/skills/hes/| Agent | Location |
|---|---|
| Claude Code |
~/.claude/skills/hes/ or .claude/skills/hes/
|
| Cursor |
~/.cursor/skills/hes/ or .cursor/skills/hes/
|
| GitHub Copilot | .github/copilot-instructions.md |
| Windsurf | .windsurfrules |
| Gemini CLI | .agents/skills/hes/ |
| Codex CLI | .agents/skills/hes/ |
| Kiro | .kiro/skills/hes/ |
After installing, test that HES is working:
/hes status
You should see the current phase and project state.
/hes start
This will:
- Bootstrap the project if needed
- Ask for the feature name
- Begin the DISCOVERY phase
HES will guide you through each phase:
- DISCOVERY — Elicit business rules
- SPEC — Write BDD scenarios
- DESIGN — Make architecture decisions
- DATA — Design data model
- RED — Write tests first
- GREEN — Implement code
- SECURITY — Run security scans
- REVIEW — Code review
- DONE — Feature complete
/hes status
See Commands for a complete list of all 26 HES commands.
- Architecture — Learn about HES's technical architecture
- Phases — Understand the 10-phase workflow
- Rules — Read the 34 rules
- Skills — Explore the skill files
Last updated: June 2026