@guanxintec/agent-store-cli
v0.1.0
Published
Agent Store deployment CLI for local coding agents.
Maintainers
Readme
Agent Store CLI
Agent Store CLI lets local coding agents such as Claude Code and Codex deploy a local project to Agent Store with a short natural-language request.
Install
npm install -g @guanxintec/agent-store-cli@latest
agent-store skill installThen start a new chat in your coding agent and say:
帮我部署一下For the first deployment, the agent should ask you to confirm:
- the project English name, also called
appSlug - whether the app needs a platform-managed MySQL database
For later deployments in the same project directory, the agent should reuse .agent-store/config.json and redeploy the existing Agent Store project.
Login
agent-store login
agent-store whoamiThe token is stored in ~/.agent-store/config.json.
Common Commands
agent-store doctor
agent-store deploy --create --slug my-app --yes
agent-store deploy --create --slug my-app --with-db --yes
agent-store status
agent-store redeploy
agent-store diagnoseSkill
The npm package includes the Agent Store skill at:
skills/agent-store-cli/SKILL.mdInstall it with:
agent-store skill installThe skill teaches the coding agent to:
- check login with
agent-store whoami - check project binding with
agent-store status - ask for first-deploy confirmation before creating an app
- run
agent-store doctor - deploy or redeploy through the CLI
- pull raw failed logs with
agent-store diagnose - explain the issue before modifying local code
Website Setup Guide
For beginner-friendly installation, ask your coding agent to read:
https://agent-store.guanxintec.com/skill-setup.mdRequirements
- Node.js 18 or newer
- npm
- an Agent Store account
