sheepit-ai 0.1.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -27
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,41 +1,29 @@
1
- # sheepit-ai
1
+ <div align="center">
2
2
 
3
- This package is an installer shim for the Sheepit CLI.
3
+ # sheepit-ai
4
4
 
5
- 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.
5
+ _Unscoped installer alias for the Sheepit CLI._
6
6
 
7
- ## Install
7
+ [![npm version](https://img.shields.io/npm/v/sheepit-ai)](https://www.npmjs.com/package/sheepit-ai)
8
+ [![license](https://img.shields.io/npm/l/sheepit-ai)](./LICENSE)
8
9
 
9
- ```sh
10
- npm install -g sheepit-ai
11
- # or
12
- pnpm add -g sheepit-ai
13
- # or
14
- yarn global add sheepit-ai
15
- ```
10
+ </div>
16
11
 
17
- Then run:
12
+ This package exists so `npm install -g sheepit-ai` works without the scope. It depends on [`@sheepit-ai/cli`](https://www.npmjs.com/package/@sheepit-ai/cli) and re-exposes its `sheepit` binary.
18
13
 
19
- ```sh
14
+ ```bash
15
+ npm install -g sheepit-ai
20
16
  sheepit --help
21
17
  ```
22
18
 
23
- Or run it once without installing:
19
+ To depend on the CLI directly, install the scoped package:
24
20
 
25
- ```sh
26
- npx sheepit-ai --help
27
- # or
28
- pnpm dlx sheepit-ai --help
21
+ ```bash
22
+ npm install -D @sheepit-ai/cli
29
23
  ```
30
24
 
31
- ## What this package contains
32
-
33
- - `bin.js` — a tiny stub that spawns the real CLI entry from `@sheepit-ai/cli`.
34
-
35
- That's it. The actual CLI implementation lives in [`@sheepit-ai/cli`](https://www.npmjs.com/package/@sheepit-ai/cli). Source: [`packages/cli/`](https://github.com/goatech-ai/GoaTech/tree/main/packages/cli).
36
-
37
- ## Why a shim package?
25
+ See [`@sheepit-ai/cli`](https://www.npmjs.com/package/@sheepit-ai/cli) for full documentation.
38
26
 
39
- 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.
27
+ ## License
40
28
 
41
- The shim's `@sheepit-ai/cli` dependency is pinned to an exact version — both packages are bumped together on each release.
29
+ MIT. Copyright (c) 2026 GoaTech AI LLC.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sheepit-ai",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "Installs the Sheepit CLI. Re-exports the `sheepit` binary from @sheepit-ai/cli so `npm install -g sheepit-ai` works.",
5
5
  "license": "MIT",
6
6
  "author": "GoaTech AI LLC",
@@ -34,7 +34,7 @@
34
34
  "LICENSE"
35
35
  ],
36
36
  "dependencies": {
37
- "@sheepit-ai/cli": "0.1.0"
37
+ "@sheepit-ai/cli": "0.3.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"