sheepit-ai
v0.1.0
Published
Installs the Sheepit CLI. Re-exports the `sheepit` binary from @sheepit-ai/cli so `npm install -g sheepit-ai` works.
Maintainers
Readme
sheepit-ai
This package is an installer shim for the Sheepit CLI.
It exists so that npm install -g sheepit-ai works the same as npm install -g @sheepit-ai/cli. It declares @sheepit-ai/cli as a dependency and re-exports its sheepit binary.
Install
npm install -g sheepit-ai
# or
pnpm add -g sheepit-ai
# or
yarn global add sheepit-aiThen run:
sheepit --helpOr run it once without installing:
npx sheepit-ai --help
# or
pnpm dlx sheepit-ai --helpWhat this package contains
bin.js— a tiny stub that spawns the real CLI entry from@sheepit-ai/cli.
That's it. The actual CLI implementation lives in @sheepit-ai/cli. Source: packages/cli/.
Why a shim package?
The CLI's binary is named sheepit. The bare unscoped package name sheepit on npm is owned by an unrelated maintainer, so we publish under the (also-brand-aligned) name sheepit-ai — matching both the org @sheepit-ai/* and the domain sheepit.ai. The shim reserves this unscoped name and forwards to the scoped real package.
The shim's @sheepit-ai/cli dependency is pinned to an exact version — both packages are bumped together on each release.
