@groupby/ai-dev 0.5.20 → 0.5.22
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 +56 -0
- package/dist/index.js +885 -124
- package/package.json +2 -2
- package/skills/README.md +42 -1
- package/teams/rangers/third-party/mattpocock/grilling/SKILL.md +28 -0
- package/teams/rangers/third-party/mattpocock/grilling/skill-meta.yml +14 -0
- package/teams/snpd/qa-skills/README.md +256 -0
- package/teams/snpd/qa-skills/be-github-actions-qa/SKILL.md +354 -0
- package/teams/snpd/qa-skills/bug-report/SKILL.md +155 -0
- package/teams/snpd/qa-skills/failed-test-triage/SKILL.md +158 -0
- package/teams/snpd/qa-skills/fe-github-actions-qa/SKILL.md +252 -0
- package/teams/snpd/qa-skills/postman-qa/SKILL.md +157 -0
- package/teams/snpd/qa-skills/qa-checklist/SKILL.md +146 -0
- package/teams/snpd/qa-skills/qa-test-plan/SKILL.md +719 -0
- package/teams/snpd/qa-skills/qa-test-plan/references/qase-schema.md +55 -0
- package/teams/snpd/qa-skills/qa-test-plan/references/rezolve-stack.md +52 -0
package/README.md
CHANGED
|
@@ -44,6 +44,18 @@ npx @groupby/ai-dev list teams # List teams and content counts
|
|
|
44
44
|
npx @groupby/ai-dev install skill <skill-name>
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
+
### Update installed content
|
|
48
|
+
|
|
49
|
+
Rerun the same install command after a new package version publishes. The
|
|
50
|
+
installer is additive and idempotent: it skips unchanged files, prompts on
|
|
51
|
+
conflicts, and honors `--force` or `--skip-existing` for non-interactive
|
|
52
|
+
updates. Use `--dry-run` to preview first.
|
|
53
|
+
|
|
54
|
+
```sh
|
|
55
|
+
npx @groupby/ai-dev install team <team-name> --dry-run
|
|
56
|
+
npx @groupby/ai-dev install team <team-name> --force
|
|
57
|
+
```
|
|
58
|
+
|
|
47
59
|
### Install all team content
|
|
48
60
|
|
|
49
61
|
```sh
|
|
@@ -58,6 +70,23 @@ Installing a specific team or toolset skill also installs resources from that
|
|
|
58
70
|
skill's owning team or toolset. You will also be prompted to optionally include
|
|
59
71
|
skills from the shared library.
|
|
60
72
|
|
|
73
|
+
### Third-party skills
|
|
74
|
+
|
|
75
|
+
Third-party skills are external skills vendored into a team's folder, each
|
|
76
|
+
carrying a `skill-meta.yml` provenance sidecar and an evaluation status. They are
|
|
77
|
+
gated by that status:
|
|
78
|
+
|
|
79
|
+
- `recommended` skills install (and update) automatically on every team install.
|
|
80
|
+
- `evaluating` skills are held back; opt in with `--include-evaluating`.
|
|
81
|
+
- `deprecated` skills are held back; opt in with `--include-deprecated`.
|
|
82
|
+
|
|
83
|
+
In `list` output these skills show a status marker, for example
|
|
84
|
+
`grilling [evaluating] mattpocock/skills@6654f6b`.
|
|
85
|
+
|
|
86
|
+
```sh
|
|
87
|
+
npx @groupby/ai-dev install team <team-name> --include-evaluating
|
|
88
|
+
```
|
|
89
|
+
|
|
61
90
|
### Options
|
|
62
91
|
|
|
63
92
|
| Flag | Description |
|
|
@@ -67,6 +96,10 @@ skills from the shared library.
|
|
|
67
96
|
| `--dry-run` | Preview what would be installed without writing files |
|
|
68
97
|
| `--force` | Overwrite existing files without prompting |
|
|
69
98
|
| `--skip-existing` | Skip files that already exist |
|
|
99
|
+
| `--clients <list>` | Write client stubs non-interactively: `copilot`, `claude`, `codex` (comma-separated), or `all` |
|
|
100
|
+
| `--include-library` | Include shared library skills without prompting (use with `--clients`) |
|
|
101
|
+
| `--include-evaluating` | Also install third-party skills with `evaluating` status |
|
|
102
|
+
| `--include-deprecated` | Also install third-party skills with `deprecated` status |
|
|
70
103
|
|
|
71
104
|
`--ai-dir` is resolved relative to `--target` and is intentionally flexible.
|
|
72
105
|
Parent-directory segments such as `../shared-ai` are supported so teams can keep
|
|
@@ -76,6 +109,29 @@ Direct `install` subcommands use these options instead of prompting for a
|
|
|
76
109
|
location. Interactive mode (`npx @groupby/ai-dev`) prompts for the AI content
|
|
77
110
|
directory before showing the final install summary.
|
|
78
111
|
|
|
112
|
+
### Non-interactive (one-shot) installs
|
|
113
|
+
|
|
114
|
+
By default the installer prompts for which client stubs to write (and, for team
|
|
115
|
+
installs, whether to include library skills). Pass `--clients` to skip those
|
|
116
|
+
prompts and target clients explicitly, regardless of which are detected in the
|
|
117
|
+
project:
|
|
118
|
+
|
|
119
|
+
```sh
|
|
120
|
+
# Install a team for all three clients with no prompts
|
|
121
|
+
npx @groupby/ai-dev install team <team-name> --clients all
|
|
122
|
+
|
|
123
|
+
# Pick specific clients, and include library skills too
|
|
124
|
+
npx @groupby/ai-dev install team <team-name> --clients copilot,claude --include-library
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
`--clients` accepts `all` or a comma-separated list of `copilot`, `claude`, and
|
|
128
|
+
`codex` (case-insensitive). At least one client is required. Combine with
|
|
129
|
+
`--force` or `--skip-existing` for a fully unattended update.
|
|
130
|
+
|
|
131
|
+
Without `--clients`, a non-interactive terminal (piped, CI, or an agent shell)
|
|
132
|
+
cannot show the client picker, so the installer falls back to the clients it
|
|
133
|
+
detects in the target project and prints a notice. Pass `--clients` to override.
|
|
134
|
+
|
|
79
135
|
## How it works
|
|
80
136
|
|
|
81
137
|
1. **Discovery** — The CLI scans bundled `skills/`, `teams/`, and `toolsets/` directories for `SKILL.md` files, team prompts, team resources, and other team content folders.
|