agent-hub-control
v0.1.0
Published
Official CLI for Houflow Agent Hub — discover, clone, export and run published managed agents from any terminal or AI coding agent (Codex, Claude, Cursor).
Maintainers
Readme
agent-hub-control
Official CLI for Houflow Agent Hub — discover, inspect, export, clone and run published managed agents from any terminal or AI coding agent (Codex, Claude, Cursor).
Vendor-neutral: it talks to the Agent Hub control plane over plain HTTPS, so any agent or script can install it and consume the public agent catalog.
Install
npm i -g agent-hub-control
# or run without installing:
npx agent-hub-control listings catalogConfiguration
export AGENT_HUB_CONTROL_BASE_URL="https://agent.houflow.com" # control endpoint
export AGENT_HUB_API_KEY="ahk_..." # for authenticated actions
export AGENT_HUB_WORKSPACE_ID="wks_..." # target workspace for clonecatalog, get and export are public (no key). mine and clone require an API key.
Published agent catalog
# Browse the public catalog
agent-hub-control listings catalog
# Inspect one listing (consumption snippets + export formats)
agent-hub-control listings get 诗词试卷设计师
# Export the agent config in any format: json | yaml | ts | python | cli | md
agent-hub-control listings export 诗词试卷设计师 --format yaml
# Clone a published agent into your own workspace
agent-hub-control listings clone 诗词试卷设计师 \
--api-key "$AGENT_HUB_API_KEY" \
--workspace "$AGENT_HUB_WORKSPACE_ID"
# List the agents you have published
agent-hub-control listings mine --api-key "$AGENT_HUB_API_KEY"Use an agent inside Codex / Claude / Cursor (no install)
Prefer zero-install portability? Export the Markdown "copy prompt" and paste the system prompt into your coding agent's instructions — it behaves as that agent with no API key or CLI required:
npx agent-hub-control listings export <slug> --format mdLicense
MIT
