@aiforui/install 0.1.0 → 0.1.1

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 +0 -44
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,44 +0,0 @@
1
- # @aiforui/install
2
-
3
- Installs [aiforui.dev](https://aiforui.dev) agent skills into every supported
4
- coding agent on your machine: Claude Code, Cursor, Codex, Amp, Gemini CLI,
5
- OpenCode, Windsurf, and Antigravity.
6
-
7
- ## Usage
8
-
9
- Grab your personal install command from [aiforui.dev](https://aiforui.dev)
10
- (it includes your token), then run it:
11
-
12
- ```bash
13
- npx @aiforui/install --token=<token>
14
- ```
15
-
16
- Preselect skills by passing their ids:
17
-
18
- ```bash
19
- npx @aiforui/install --token=<token> typography color
20
- ```
21
-
22
- Non-interactive (installs everything you own, keeps default names):
23
-
24
- ```bash
25
- npx @aiforui/install --token=<token> -y
26
- ```
27
-
28
- ## How it works
29
-
30
- - The CLI detects which coding agents are installed by looking for their
31
- config directories under your home directory.
32
- - It fetches the skill files from aiforui.dev, authenticated by your
33
- per-user token. Entitlement is checked live against your purchase, so the
34
- same command keeps working as new skills are added.
35
- - Skills are written into each agent's skills directory (for Windsurf, the
36
- skill is appended to `global_rules.md`).
37
-
38
- ## Development
39
-
40
- Point the CLI at a local or preview deployment:
41
-
42
- ```bash
43
- node bin/cli.js --token=<token> --api=http://localhost:3000
44
- ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiforui/install",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Install aiforui.dev agent skills into Claude Code, Cursor, Codex, Amp, Windsurf, Gemini CLI, OpenCode, and Antigravity.",
5
5
  "bin": {
6
6
  "aiforui-installer": "bin/cli.js"