
Hax
- Updated July 6, 2026
- haxtheweb/claudehax
hax is a Claude Code skill in the AI & Agent Building category. Use HAX CLI commands from Claude Code
Key points
- hax
- AI & Agent Building
- AI-coding skill
Hax by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add haxtheweb/claudehax/plugin install hax@claudehaxAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | July 6, 2026 |
|---|---|
| Repository | haxtheweb/claudehax ↗ |
What it does
Use HAX CLI commands from Claude Code
README.md
ClaudeHAX Claude Code Plugin Marketplace
ClaudeHAX is a Claude Code plugin that teaches Claude how to work with HAX sites, HAX CLI commands, and HAX web components.
Once installed, users can ask Claude to:
- Create pages
- Create courses
- Update content
- Add assessments
- Add quizzes
- Add videos
- Use HAX web components
- Analyze existing HAX sites
- Suggest improvements
- Build educational content
using a simple command:
/hax
Requirements
Before installing ClaudeHAX, make sure the following are installed.
1. Claude Code
Install Claude Code and verify it works:
claude --version
2. Node.js
Node.js 22+ recommended.
Verify:
node -v
3. npm
Verify:
npm -v
4. HAX CLI
Install globally:
npm install -g @haxtheweb/create
Verify:
hax --help
Important
Do NOT use:
npx hax
That resolves to a different npm package.
Use:
npx @haxtheweb/create
or the globally installed:
hax
command.
Install ClaudeHAX Marketplace
Inside Claude Code:
/plugin marketplace add djfusco/claudehax
Install the plugin:
/plugin install hax@claudehax
Verify installation:
/plugin list
You should see:
hax
Example Commands
Create pages:
/hax add 3 pages about iguanas
Analyze a site:
/hax analyze this site and suggest 20 new pages
Add a quiz:
/hax add a multiple choice quiz to this page based on the page content
Add flash cards:
/hax find a page that would benefit from flash cards and add 5 flash cards using the best HAX web component
Add a quiz to a specific page:
/hax add a quiz to the Penn State University page
Add a video:
/hax find a YouTube video and add it to the Ohio State University page
Add interactive learning content:
/hax add an interactive check-for-understanding section to the iguana overview page using HAX web components, not plain HTML
Recommend components:
/hax inspect the available HAX web components and recommend 10 components that would improve this site
Create a lesson:
/hax create a mini lesson page about reptile habitats and include at least two HAX web components from the elements reference
Updating ClaudeHAX
When a new version of ClaudeHAX is released:
/plugin update hax
This updates:
- HAX CLI knowledge
- HAX web component knowledge
- HAX workflows
- HAX examples
- HAX best practices
Troubleshooting
Plugin installed but /hax does not exist
Verify:
/plugin list
If HAX is missing:
/plugin install hax@claudehax
Marketplace installation fails
Verify internet access and confirm:
/plugin marketplace add djfusco/claudehax
is spelled correctly.
hax command not found
Install the HAX CLI:
npm install -g @haxtheweb/create
Then verify:
hax --help
Node.js version too old
Check:
node -v
Upgrade to Node.js 22+ if needed.
Plugin behavior seems outdated
Update the plugin:
/plugin update hax
Claude is not using the latest HAX commands or web components
The plugin only knows what exists in the current plugin repository version.
The maintainer must:
npm run refresh:docs
git add .
git commit -m "Refresh HAX plugin docs"
git push
Then users update:
/plugin update hax
For Plugin Maintainers
Refresh generated documentation:
npm run refresh:docs
This updates:
plugins/hax/skills/hax/docs/hax-cli-reference.md
plugins/hax/skills/hax/docs/hax-elements-reference.md
The CLI reference is generated from:
npx @haxtheweb/create --help
npx @haxtheweb/create site --help
The web component reference is generated from:
https://github.com/haxtheweb/webcomponents/tree/master/elements
Release updates:
npm run refresh:docs
git add .
git commit -m "Refresh HAX plugin docs"
git push
Users can then run:
/plugin update hax
Validate
claude plugin validate .