skillrepo 4.8.2 → 4.8.3

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 CHANGED
@@ -92,7 +92,7 @@ and just write the config + gitignore.
92
92
  ```json
93
93
  {
94
94
  "action": "initialized",
95
- "account": { "slug": "...", "id": "...", "tier": "free|pro|enterprise" },
95
+ "account": { "slug": "...", "id": "...", "tier": "publisher|developer|team" },
96
96
  "config": { "action": "created|updated|unchanged" },
97
97
  "vendors": ["claudeCode", "cursor", "..."],
98
98
  "mcp": {
@@ -279,8 +279,9 @@ from the server to your local library.
279
279
 
280
280
  Limits: total multipart body ≤ 4.5 MB, per-file path depth ≤ 5
281
281
  segments, executable/archive extensions blocked (full list in
282
- `src/lib/skills/constants.ts`). Anti-abuse rate limit: 5/min and
283
- 30/hr on Publisher; 30/min and 500/hr on Team.
282
+ `src/lib/skills/constants.ts`). Anti-abuse rate limit: 6/min and
283
+ 100/hr on Developer; 30/min and 500/hr on Team. (`push` needs a
284
+ write-scoped access key, which starts on the Developer plan.)
284
285
 
285
286
  Flags:
286
287
 
@@ -318,8 +319,8 @@ the CLI exits `4 / scope` with `code: publish_not_permitted`. The same
318
319
 
319
320
  Publish-only preconditions that surface as exit `5 / validation`:
320
321
 
321
- - `namespace_unset` — the account's name still equals its
322
- auto-generated slug; customize the namespace first.
322
+ - `namespace_unset` — the account's handle is still the
323
+ auto-generated placeholder; choose an Author ID in Settings first.
323
324
  - `analysis_pending` — safety analysis hasn't completed (only fires
324
325
  where analysis is enabled).
325
326
  - `safety_grade_too_low` — the skill's safety grade is `F`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillrepo",
3
- "version": "4.8.2",
3
+ "version": "4.8.3",
4
4
  "description": "Pull-based CLI for agent skills — init, sync, search, add, remove your library from any IDE",
5
5
  "type": "module",
6
6
  "bin": {
@@ -220,7 +220,7 @@ describe("runPublish — error paths", () => {
220
220
  server.setPublishResponse("alice", "my-skill", {
221
221
  status: 422,
222
222
  body: {
223
- error: "Set up your account namespace before publishing.",
223
+ error: "Choose your Author ID before publishing.",
224
224
  code: "namespace_unset",
225
225
  },
226
226
  });
@@ -229,7 +229,7 @@ describe("runPublish — error paths", () => {
229
229
  (err) =>
230
230
  err instanceof CliError &&
231
231
  err.exitCode === EXIT_VALIDATION &&
232
- /account namespace/.test(err.message),
232
+ /Author ID/.test(err.message),
233
233
  );
234
234
  });
235
235