@263hub/create-skeleton
v0.4.1
Published
Bootstrap a new Hub app — run `npm create @263hub/skeleton@latest my-app`.
Maintainers
Readme
@263/create-hub
Bootstrap a new Hub app from your terminal.
npm create @263/hub@latest my-app
cd my-app
npm install
npm run buildYou get:
manifest.json— declared app identity, routes, jobs, pricing, permissions.src/index.tsx— a working React entry that uses the Hub SDK + shell.package.json,tsconfig.json,.gitignore.- Agent-friendly project rules:
CLAUDE.md,AGENTS.md,.cursor/rules/hub.mdc,.github/copilot-instructions.md.
Options
npm create @263/hub@latest <dir> [--slug=<slug>] [--name="App Name"]<dir>— target directory (required; will be created if missing).--slug— app slug (lowercase letters, digits, hyphens). Defaults to the directory's basename.--name— display name. Defaults to a title-cased slug.
Publishing your app
- Build:
npm run build→dist/bundle.js. - Create the app at https://developer.263.co.zw/apps.
- Upload via CLI:
npx hub upload --app=<slug> --version=<semver>(or use the upload form on the app page).
