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@axhub

If 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

CommandUse
/axhub:appsList/manage apps (destructive actions need confirmation)
/axhub:deploy · /axhub:배포Deploy the current app (Korean alias included)
/axhub:statusCheck deploy status (auto-watch)
/axhub:logsView deploy logs (build/runtime, streamable)
/axhub:loginLog in (browser OAuth, token paste when headless)
/axhub:doctorDiagnose install/auth/version
/axhub:updateUpdate the CLI (signature-verified)
/axhub:helpSlash 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

SkillWhat it does
setupFirst-time onboarding — install CLI, log in, check environment, in order
install-cliAuto-install the axhub CLI via the official installer
authLog in/out, token status, check account
profileView/switch profile and connection (company)
workspaceView your workspaces (companies), membership, details
doctorDiagnose install, auth, and version compatibility
inspectCheck local axhub.yaml, CLI config, deploy details, error codes
updateCheck and apply axhub CLI updates
upgradeUpgrade the plugin itself
enable-statuslineTurn on the status line
clarifyAsk back to narrow down an ambiguous request
routing-statsView plugin routing stats and usage analytics

Apps & deploy

SkillWhat it does
initCreate a new app — template to repo to first deploy
migrateBring an existing project into axhub and deploy it
appsList and manage apps (destructive actions need confirmation)
browseBrowse public marketplace apps and bootstrap templates
app-lifecycleFork, suspend, and resume apps
githubConnect/disconnect an app and a GitHub repo
deployDeploy the current branch
statusCheck deploy progress and status (auto-watch)
logsView build and runtime logs
openOpen a deployed app in the browser
verifyConfirm with evidence that a deploy is really live
traceTrace why a deploy failed
axhub-diagnoseAuto-diagnose and self-heal deploy/test failures
recoverUndo the last deploy / restore a previous version
rollbackActually roll back to a specific earlier deploy
publishSubmit your app to the marketplace for review

Data & access

SkillWhat it does
envView/add/delete environment variables (secrets entered safely)
tablesManage app dynamic tables, columns, permissions, rows
dataSearch the data catalog, safe SQL reads, aggregates
apisView the available API/endpoint catalog and call it (after confirmation)
connectorsRegister/edit/delete external DB connectors, refresh credentials
resourcesOrganize gateway resources (external DB tables/views) by name, namespace, tags
my-resourcesView the full inventory of resources you can access
teamInvite teammates, view invites, grant/receive app access

Quality & dev

SkillWhat it does
axhub-debugRoot-cause analysis (debugging)
axhub-reviewCode/PR review (bugs, performance, security, style)
axhub-shipPR/release prep, write the PR description
axhub-tddGuide TDD cycles (failing test first → pass → refactor)
axhub-planPlan large structural changes and analyze impact
using-axhub-qualityQuality auto-mode (routes review/debug/ship)
karpathy-guidelinesInject coding principles like small diffs and test-first

Quality agents

Three dedicated agents help with coding work.

AgentWhat it does
axhub-debuggerNarrows down a bug's root cause with hypotheses and evidence.
axhub-reviewerReviews changed code for bugs, performance, security, and style.
axhub-shipperWrites 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