@groupby/ai-dev 0.3.0 → 0.4.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.
- package/README.md +7 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Or install as a dev dependency:
|
|
|
18
18
|
npm install --save-dev @groupby/ai-dev
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
> Requires Node.js >=
|
|
21
|
+
> Requires Node.js >= 20
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
@@ -62,6 +62,11 @@ When installing a team's skills, you will be prompted to optionally include skil
|
|
|
62
62
|
| `--force` | Overwrite existing files without prompting |
|
|
63
63
|
| `--skip-existing` | Skip files that already exist |
|
|
64
64
|
|
|
65
|
+
`--ai-dir` is resolved relative to `--target` and is intentionally flexible.
|
|
66
|
+
Parent-directory segments such as `../shared-ai` are supported so teams can keep
|
|
67
|
+
AI docs in a workspace-level or shared location while client stubs stay in the
|
|
68
|
+
target project. Use `--dry-run` first when trying a new install layout.
|
|
69
|
+
|
|
65
70
|
## How it works
|
|
66
71
|
|
|
67
72
|
1. **Discovery** — The CLI scans bundled `skills/` and `teams/` directories for `SKILL.md` files and reads their YAML frontmatter (name, description, etc.).
|
|
@@ -84,7 +89,7 @@ When installing a team's skills, you will be prompted to optionally include skil
|
|
|
84
89
|
# Install dependencies
|
|
85
90
|
npm install
|
|
86
91
|
|
|
87
|
-
# Build (also copies skills
|
|
92
|
+
# Build (also copies skills/, teams/, and toolsets/ from the repo root)
|
|
88
93
|
npm run build
|
|
89
94
|
|
|
90
95
|
# Output is in dist/
|