Claude Code Plugin
Install, slash commands, what you can ask in natural language, quality agents, and safety gates
The axhub plugin turns plain-language Korean/English into axhub commands inside Claude Code and runs them. Natural language is the main path; slash commands are there when you want to be explicit. It currently has 43 natural-language skills, 8 slash commands (plus a Korean /배포 alias), and 3 quality agents.
Install
Enter these two lines in the Claude Code prompt, one at a time.
/plugin marketplace add jocoding-ax-partners/axhub
/plugin install axhub@axhubIf the CLI isn't installed, the install step points you to the official installer (https://cli.axhub.ai). New here? Just say "set up axhub" and it handles install and login in one go.
Slash commands
| Command | Use |
|---|---|
/axhub:apps | List/manage apps (destructive actions need confirmation) |
/axhub:deploy · /axhub:배포 | Deploy the current app (Korean alias included) |
/axhub:status | Check deploy status (auto-watch) |
/axhub:logs | View deploy logs (build/runtime, streamable) |
/axhub:login | Log in (browser OAuth, token paste when headless) |
/axhub:doctor | Diagnose install/auth/version |
/axhub:update | Update the CLI (signature-verified) |
/axhub:help | Slash command menu |
What you can ask for
Every natural-language skill. You don't need to memorize the names — just say what you want and it routes to the right one. Use this to look up what's available.
Setup & environment
| Skill | What it does |
|---|---|
setup | First-time onboarding — install CLI, log in, check environment, in order |
install-cli | Auto-install the axhub CLI via the official installer |
auth | Log in/out, token status, check account |
profile | View/switch profile and connection (company) |
workspace | View your workspaces (companies), membership, details |
doctor | Diagnose install, auth, and version compatibility |
inspect | Check local axhub.yaml, CLI config, deploy details, error codes |
update | Check and apply axhub CLI updates |
upgrade | Upgrade the plugin itself |
enable-statusline | Turn on the status line |
clarify | Ask back to narrow down an ambiguous request |
routing-stats | View plugin routing stats and usage analytics |
Apps & deploy
| Skill | What it does |
|---|---|
init | Create a new app — template to repo to first deploy |
migrate | Bring an existing project into axhub and deploy it |
apps | List and manage apps (destructive actions need confirmation) |
browse | Browse public marketplace apps and bootstrap templates |
app-lifecycle | Fork, suspend, and resume apps |
github | Connect/disconnect an app and a GitHub repo |
deploy | Deploy the current branch |
status | Check deploy progress and status (auto-watch) |
logs | View build and runtime logs |
open | Open a deployed app in the browser |
verify | Confirm with evidence that a deploy is really live |
trace | Trace why a deploy failed |
axhub-diagnose | Auto-diagnose and self-heal deploy/test failures |
recover | Undo the last deploy / restore a previous version |
rollback | Actually roll back to a specific earlier deploy |
publish | Submit your app to the marketplace for review |
Data & access
| Skill | What it does |
|---|---|
env | View/add/delete environment variables (secrets entered safely) |
tables | Manage app dynamic tables, columns, permissions, rows |
data | Search the data catalog, safe SQL reads, aggregates |
apis | View the available API/endpoint catalog and call it (after confirmation) |
connectors | Register/edit/delete external DB connectors, refresh credentials |
resources | Organize gateway resources (external DB tables/views) by name, namespace, tags |
my-resources | View the full inventory of resources you can access |
team | Invite teammates, view invites, grant/receive app access |
Quality & dev
| Skill | What it does |
|---|---|
axhub-debug | Root-cause analysis (debugging) |
axhub-review | Code/PR review (bugs, performance, security, style) |
axhub-ship | PR/release prep, write the PR description |
axhub-tdd | Guide TDD cycles (failing test first → pass → refactor) |
axhub-plan | Plan large structural changes and analyze impact |
using-axhub-quality | Quality auto-mode (routes review/debug/ship) |
karpathy-guidelines | Inject coding principles like small diffs and test-first |
Quality agents
Three dedicated agents help with coding work.
| Agent | What it does |
|---|---|
| axhub-debugger | Narrows down a bug's root cause with hypotheses and evidence. |
| axhub-reviewer | Reviews changed code for bugs, performance, security, and style. |
| axhub-shipper | Writes a PR description from your commit history and diff. |
Safety
- Hard-to-undo actions (delete, deploy) show you what they'll do and ask for confirmation first.
- Most changes preview by default; actually running them needs a separate approval.
- Secrets are entered so they're never exposed on screen or in the command line.
- Deploy, recovery, and rollback confirm which app and company before running.
Example phrases
set up axhub for the first time
log me into axhub
what apps do I have?
create a new Next.js app
connect this repo to the demo app
deploy it
show me the latest deploy logs
trace why it failed
add a DATABASE_URL environment variable
create a todos table
suspend the app