agent-skill-manager 2.3.0 → 2.5.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 +25 -37
- package/data/bundles/content-writing.json +30 -0
- package/data/bundles/devops.json +30 -0
- package/data/bundles/frontend-dev.json +35 -0
- package/data/bundles/ios-release.json +30 -0
- package/data/skill-index/antonbabenko_terraform-skill.json +146 -0
- package/data/skill-index/google_skills.json +1790 -0
- package/data/skill-index/luongnv89_asm.json +73 -0
- package/data/skill-index-resources.json +28 -1
- package/dist/agent-skill-manager.js +442 -431
- package/dist/chunk-7BMOBFGJ.js +2 -0
- package/dist/chunk-GOI5LV72.js +3 -0
- package/dist/chunk-PVEAYTE2.js +3 -0
- package/dist/chunk-QY4LTOTR.js +19 -0
- package/dist/config-55HAAFSH.js +2 -0
- package/dist/devtools-W557IAG7.js +8 -0
- package/dist/lock-SOHBB4N3.js +2 -0
- package/dist/src-YK2KIAU7.js +108 -0
- package/package.json +55 -21
- package/scripts/postinstall.cjs +3 -7
- package/dist/chunk-76faq0t9.js +0 -93
- package/dist/chunk-83zxj8cj.js +0 -3
- package/dist/chunk-chw0sgjp.js +0 -3
- package/dist/chunk-dtg819nd.js +0 -19
- package/dist/highlights-eq9cgrbb.scm +0 -604
- package/dist/highlights-ghv9g403.scm +0 -205
- package/dist/highlights-hk7bwhj4.scm +0 -284
- package/dist/highlights-r812a2qc.scm +0 -150
- package/dist/highlights-x6tmsnaa.scm +0 -115
- package/dist/injections-73j83es3.scm +0 -27
- package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/tree-sitter-zig-e78zbjpm.wasm +0 -0
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<a href="https://github.com/luongnv89/agent-skill-manager/stargazers"><img src="https://img.shields.io/github/stars/luongnv89/agent-skill-manager.svg?style=social" alt="GitHub stars" /></a>
|
|
13
13
|
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License" /></a>
|
|
14
14
|
<a href="https://github.com/luongnv89/agent-skill-manager/actions"><img src="https://github.com/luongnv89/agent-skill-manager/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
|
|
15
|
-
<a href="https://
|
|
15
|
+
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/Node.js-%E2%89%A5%2018-339933.svg" alt="Node.js" /></a>
|
|
16
16
|
</p>
|
|
17
17
|
|
|
18
18
|
<h1 align="center">One tool to manage every AI agent's skills</h1>
|
|
@@ -72,7 +72,7 @@ The more AI agents you use, the worse this gets. Every new tool adds another ski
|
|
|
72
72
|
|
|
73
73
|
## How it works
|
|
74
74
|
|
|
75
|
-
1. **Install `asm`** — one command via npm
|
|
75
|
+
1. **Install `asm`** — one command via npm or curl
|
|
76
76
|
2. **Run `asm`** — it auto-discovers skills across all configured agent directories
|
|
77
77
|
3. **Manage everything** — install, search, inspect, audit, and uninstall skills from the TUI or CLI
|
|
78
78
|
4. **Stay safe** — security scan skills before installing, detect duplicates, and clean up with confidence
|
|
@@ -402,7 +402,7 @@ If multiple authors publish a skill with the same name, `asm` shows a disambigua
|
|
|
402
402
|
npm install -g agent-skill-manager
|
|
403
403
|
```
|
|
404
404
|
|
|
405
|
-
>
|
|
405
|
+
> Runs on **Node.js ≥ 18** for both the CLI and the interactive TUI. No other runtime required.
|
|
406
406
|
|
|
407
407
|
### One-liner install
|
|
408
408
|
|
|
@@ -410,7 +410,7 @@ npm install -g agent-skill-manager
|
|
|
410
410
|
curl -sSL https://raw.githubusercontent.com/luongnv89/agent-skill-manager/main/install.sh | bash
|
|
411
411
|
```
|
|
412
412
|
|
|
413
|
-
This installs
|
|
413
|
+
This installs `agent-skill-manager` globally. Then just run:
|
|
414
414
|
|
|
415
415
|
```bash
|
|
416
416
|
asm
|
|
@@ -420,27 +420,15 @@ asm
|
|
|
420
420
|
<a href="#cli-commands"><strong>See All Commands →</strong></a>
|
|
421
421
|
</p>
|
|
422
422
|
|
|
423
|
-
### Pick one package manager
|
|
424
|
-
|
|
425
|
-
Install `asm` via **either** `npm` **or** `bun` — not both. Each global install drops an `asm` binary in a different directory (`/opt/homebrew/bin/asm` via npm, `~/.bun/bin/asm` via bun), and shells resolve whichever appears first on `PATH`. An older install can silently shadow a fresh upgrade: you run `asm --version` and still see the old version even though the upgrade succeeded.
|
|
426
|
-
|
|
427
423
|
<a id="troubleshooting"></a>
|
|
428
424
|
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
**Fix:** remove the duplicate install.
|
|
425
|
+
### Shadowed installs
|
|
432
426
|
|
|
433
|
-
|
|
434
|
-
# If you're switching to npm:
|
|
435
|
-
bun remove -g agent-skill-manager
|
|
436
|
-
|
|
437
|
-
# If you're switching to bun:
|
|
438
|
-
npm uninstall -g agent-skill-manager
|
|
439
|
-
```
|
|
427
|
+
If you have multiple `asm` binaries on `PATH` (for example, a leftover install from an older package manager), shells resolve whichever appears first and a fresh upgrade can be silently shadowed.
|
|
440
428
|
|
|
441
|
-
|
|
429
|
+
**Diagnose:** `asm --version` detects and warns when it sees multiple `asm` binaries on `PATH`. For a full report, run `asm doctor` — it lists the resolved path and any shadowed installs.
|
|
442
430
|
|
|
443
|
-
|
|
431
|
+
**Fix:** remove the stale install with your package manager, then re-run `asm --version` to confirm only one binary is left.
|
|
444
432
|
|
|
445
433
|
---
|
|
446
434
|
|
|
@@ -525,7 +513,7 @@ Need a tool not listed? Add a custom provider entry to the config.
|
|
|
525
513
|
Yes. `asm` is MIT licensed and free forever. No accounts, no telemetry, no paywalls.
|
|
526
514
|
|
|
527
515
|
**Is it actively maintained?**
|
|
528
|
-
v2.
|
|
516
|
+
v2.5.0 shipped on April 24, 2026. The project has had 38 releases. Check the [changelog](docs/CHANGELOG.md) for the full history.
|
|
529
517
|
|
|
530
518
|
**Which AI agents does it support?**
|
|
531
519
|
18 providers built-in: Claude Code, Codex, OpenClaw, Cursor, Windsurf, Cline, Roo Code, Continue, GitHub Copilot, Aider, OpenCode, Zed, Augment, Amp, Gemini CLI, Google Antigravity, Hermes, and a generic Agents provider. All 18 are enabled by default; disable any you don't need via `asm config edit`. You can also add any custom agent that stores skills as directories with a `SKILL.md` file.
|
|
@@ -1053,19 +1041,19 @@ asm init my-skill -p claude
|
|
|
1053
1041
|
```bash
|
|
1054
1042
|
git clone https://github.com/luongnv89/agent-skill-manager.git
|
|
1055
1043
|
cd agent-skill-manager
|
|
1056
|
-
|
|
1044
|
+
npm install
|
|
1057
1045
|
```
|
|
1058
1046
|
|
|
1059
1047
|
Bundle to `dist/`:
|
|
1060
1048
|
|
|
1061
1049
|
```bash
|
|
1062
|
-
|
|
1050
|
+
npm run build
|
|
1063
1051
|
```
|
|
1064
1052
|
|
|
1065
1053
|
Run from source (development):
|
|
1066
1054
|
|
|
1067
1055
|
```bash
|
|
1068
|
-
|
|
1056
|
+
npm start
|
|
1069
1057
|
```
|
|
1070
1058
|
|
|
1071
1059
|
### Advanced Install
|
|
@@ -1098,7 +1086,7 @@ agent-skill-manager/
|
|
|
1098
1086
|
├── scripts/
|
|
1099
1087
|
│ └── build.ts # Build script with version injection
|
|
1100
1088
|
├── src/
|
|
1101
|
-
│ ├── index.
|
|
1089
|
+
│ ├── index.tsx # TUI app bootstrap & keyboard handling (ink)
|
|
1102
1090
|
│ ├── cli.ts # CLI command parser & dispatcher
|
|
1103
1091
|
│ ├── config.ts # Config loading & saving
|
|
1104
1092
|
│ ├── scanner.ts # Skill directory scanning & filtering
|
|
@@ -1113,13 +1101,13 @@ agent-skill-manager/
|
|
|
1113
1101
|
│ │ ├── frontmatter.ts # SKILL.md frontmatter parser
|
|
1114
1102
|
│ │ └── editor.ts # $EDITOR command parser
|
|
1115
1103
|
│ └── views/
|
|
1116
|
-
│ ├── dashboard.
|
|
1117
|
-
│ ├── skill-list.
|
|
1118
|
-
│ ├── skill-detail.
|
|
1119
|
-
│ ├── confirm.
|
|
1120
|
-
│ ├── duplicates.
|
|
1121
|
-
│ ├── config.
|
|
1122
|
-
│ └── help.
|
|
1104
|
+
│ ├── dashboard.tsx # Main dashboard layout
|
|
1105
|
+
│ ├── skill-list.tsx # Scrollable skill list
|
|
1106
|
+
│ ├── skill-detail.tsx # Skill detail view
|
|
1107
|
+
│ ├── confirm.tsx # Uninstall confirmation dialog
|
|
1108
|
+
│ ├── duplicates.tsx # Duplicate audit view
|
|
1109
|
+
│ ├── config.tsx # In-TUI config editor
|
|
1110
|
+
│ └── help.tsx # Help view
|
|
1123
1111
|
├── docs/ # Extended documentation
|
|
1124
1112
|
│ ├── ARCHITECTURE.md # System design & data flow
|
|
1125
1113
|
│ ├── DEVELOPMENT.md # Local setup & debugging
|
|
@@ -1140,11 +1128,11 @@ agent-skill-manager/
|
|
|
1140
1128
|
<details>
|
|
1141
1129
|
<summary><strong>Tech Stack</strong></summary>
|
|
1142
1130
|
|
|
1143
|
-
- **Runtime:**
|
|
1144
|
-
- **Language:** TypeScript (ESNext, strict mode)
|
|
1145
|
-
- **Build:**
|
|
1146
|
-
- **TUI Framework:** [
|
|
1147
|
-
- **Testing:**
|
|
1131
|
+
- **Runtime:** Node.js ≥ 18 (CLI and TUI both run on Node alone)
|
|
1132
|
+
- **Language:** TypeScript + TSX (ESNext, strict mode)
|
|
1133
|
+
- **Build:** esbuild (ships pre-built via npm)
|
|
1134
|
+
- **TUI Framework:** [Ink](https://github.com/vadimdemedes/ink) + [@inkjs/ui](https://github.com/vadimdemedes/ink-ui)
|
|
1135
|
+
- **Testing:** Vitest (+ ink-testing-library for TUI)
|
|
1148
1136
|
- **CI:** GitHub Actions + pre-commit hooks
|
|
1149
1137
|
|
|
1150
1138
|
</details>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"name": "content-writing",
|
|
4
|
+
"description": "Content creation and marketing skills: blog drafting, social media posts, Reddit writing, and SEO optimization.",
|
|
5
|
+
"author": "ASM",
|
|
6
|
+
"createdAt": "2025-01-01T00:00:00.000Z",
|
|
7
|
+
"tags": ["content", "marketing", "social-media", "seo"],
|
|
8
|
+
"skills": [
|
|
9
|
+
{
|
|
10
|
+
"name": "blog-draft",
|
|
11
|
+
"installUrl": "github:luongnv89/skills:skills/blog-draft",
|
|
12
|
+
"description": "Draft SEO-optimized blog posts from ideas or outlines"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "x-post-generator",
|
|
16
|
+
"installUrl": "github:luongnv89/skills:skills/x-post-generator",
|
|
17
|
+
"description": "Generate copy-paste-ready X (Twitter) posts"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "reddit-writer",
|
|
21
|
+
"installUrl": "github:luongnv89/skills:skills/reddit-writer",
|
|
22
|
+
"description": "Generate authentic Reddit posts and replies"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "seo-ai-optimizer",
|
|
26
|
+
"installUrl": "github:luongnv89/skills:skills/seo-ai-optimizer",
|
|
27
|
+
"description": "Audit and optimize website codebases for search engine visibility"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"name": "devops",
|
|
4
|
+
"description": "DevOps workflow skills: CI/CD pipeline setup, release management, code review, and security review.",
|
|
5
|
+
"author": "ASM",
|
|
6
|
+
"createdAt": "2025-01-01T00:00:00.000Z",
|
|
7
|
+
"tags": ["devops", "ci-cd", "release", "security"],
|
|
8
|
+
"skills": [
|
|
9
|
+
{
|
|
10
|
+
"name": "devops-pipeline",
|
|
11
|
+
"installUrl": "github:luongnv89/skills:skills/devops-pipeline",
|
|
12
|
+
"description": "Implement pre-commit hooks and lean GitHub Actions CI/CD pipelines"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "release-manager",
|
|
16
|
+
"installUrl": "github:luongnv89/skills:skills/release-manager",
|
|
17
|
+
"description": "Automate the full release lifecycle"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "code-review",
|
|
21
|
+
"installUrl": "github:luongnv89/skills:skills/code-review",
|
|
22
|
+
"description": "Review code changes for bugs, security issues, and best practices"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "security-review",
|
|
26
|
+
"installUrl": "github:affaan-m/everything-claude-code:skills/security-review",
|
|
27
|
+
"description": "Complete a security review of the codebase"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"name": "frontend-dev",
|
|
4
|
+
"description": "Essential skills for frontend development: UI design, UX review, QA testing, browsing, and code review.",
|
|
5
|
+
"author": "ASM",
|
|
6
|
+
"createdAt": "2025-01-01T00:00:00.000Z",
|
|
7
|
+
"tags": ["frontend", "design", "qa", "web"],
|
|
8
|
+
"skills": [
|
|
9
|
+
{
|
|
10
|
+
"name": "frontend-design",
|
|
11
|
+
"installUrl": "github:luongnv89/skills:skills/frontend-design",
|
|
12
|
+
"description": "Design and implement production-grade frontend components and UI pages"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "dont-make-me-think",
|
|
16
|
+
"installUrl": "github:luongnv89/skills:skills/dont-make-me-think",
|
|
17
|
+
"description": "Review UI for usability issues using Don't Make Me Think principles"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "qa",
|
|
21
|
+
"installUrl": "github:mattpocock/skills:qa",
|
|
22
|
+
"description": "Systematically QA test a web application"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "browse",
|
|
26
|
+
"installUrl": "github:luongnv89/skills:skills/browse",
|
|
27
|
+
"description": "Fast headless browser for QA testing and site dogfooding"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "code-review",
|
|
31
|
+
"installUrl": "github:luongnv89/skills:skills/code-review",
|
|
32
|
+
"description": "Review code changes for bugs, security issues, and best practices"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"name": "ios-release",
|
|
4
|
+
"description": "iOS app release workflow: release management, App Store review checks, release notes, and VS Code extension publishing.",
|
|
5
|
+
"author": "ASM",
|
|
6
|
+
"createdAt": "2025-01-01T00:00:00.000Z",
|
|
7
|
+
"tags": ["ios", "mobile", "release", "appstore"],
|
|
8
|
+
"skills": [
|
|
9
|
+
{
|
|
10
|
+
"name": "release-manager",
|
|
11
|
+
"installUrl": "github:luongnv89/skills:skills/release-manager",
|
|
12
|
+
"description": "Automate the full release lifecycle"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "appstore-review-checker",
|
|
16
|
+
"installUrl": "github:luongnv89/skills:skills/appstore-review-checker",
|
|
17
|
+
"description": "Audit iOS/macOS app projects against App Store Review Guidelines"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "release-notes",
|
|
21
|
+
"installUrl": "github:luongnv89/skills:skills/release-notes",
|
|
22
|
+
"description": "Generate release notes from git commits and GitHub PRs/issues"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "vscode-extension-publisher",
|
|
26
|
+
"installUrl": "github:luongnv89/skills:skills/vscode-extension-publisher",
|
|
27
|
+
"description": "Publish VS Code extensions to the Visual Studio Marketplace"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
{
|
|
2
|
+
"repoUrl": "https://github.com/antonbabenko/terraform-skill.git",
|
|
3
|
+
"owner": "antonbabenko",
|
|
4
|
+
"repo": "terraform-skill",
|
|
5
|
+
"updatedAt": "2026-04-24T05:21:41.936Z",
|
|
6
|
+
"skillCount": 1,
|
|
7
|
+
"skills": [
|
|
8
|
+
{
|
|
9
|
+
"name": "terraform-skill",
|
|
10
|
+
"description": "Use when writing, reviewing, or debugging Terraform/OpenTofu modules, tests, CI, scans, or state ops — diagnoses failure mode (identity churn, secrets, blast radius, CI drift, state corruption) with version-aware guards.",
|
|
11
|
+
"version": "1.8.0",
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"creator": "",
|
|
14
|
+
"compatibility": "",
|
|
15
|
+
"allowedTools": [],
|
|
16
|
+
"installUrl": "github:antonbabenko/terraform-skill:skills/terraform-skill",
|
|
17
|
+
"relPath": "skills/terraform-skill",
|
|
18
|
+
"verified": true,
|
|
19
|
+
"tokenCount": 4111,
|
|
20
|
+
"evalSummary": {
|
|
21
|
+
"overallScore": 79,
|
|
22
|
+
"grade": "C",
|
|
23
|
+
"categories": [
|
|
24
|
+
{
|
|
25
|
+
"id": "structure",
|
|
26
|
+
"name": "Structure & completeness",
|
|
27
|
+
"score": 9,
|
|
28
|
+
"max": 10
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "description",
|
|
32
|
+
"name": "Description quality",
|
|
33
|
+
"score": 7,
|
|
34
|
+
"max": 10
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "prompt-engineering",
|
|
38
|
+
"name": "Prompt engineering",
|
|
39
|
+
"score": 10,
|
|
40
|
+
"max": 10
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "context-efficiency",
|
|
44
|
+
"name": "Context efficiency",
|
|
45
|
+
"score": 7,
|
|
46
|
+
"max": 10
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "safety",
|
|
50
|
+
"name": "Safety & guardrails",
|
|
51
|
+
"score": 7,
|
|
52
|
+
"max": 10
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "testability",
|
|
56
|
+
"name": "Testability",
|
|
57
|
+
"score": 5,
|
|
58
|
+
"max": 10
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "naming",
|
|
62
|
+
"name": "Naming & conventions",
|
|
63
|
+
"score": 10,
|
|
64
|
+
"max": 10
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"evaluatedAt": "2026-04-24T05:21:41.933Z",
|
|
68
|
+
"evaluatedVersion": "1.8.0"
|
|
69
|
+
},
|
|
70
|
+
"evalSummaries": {
|
|
71
|
+
"quality": {
|
|
72
|
+
"providerId": "quality",
|
|
73
|
+
"providerVersion": "1.0.0",
|
|
74
|
+
"schemaVersion": 1,
|
|
75
|
+
"passed": true,
|
|
76
|
+
"overallScore": 79,
|
|
77
|
+
"grade": "C",
|
|
78
|
+
"categories": [
|
|
79
|
+
{
|
|
80
|
+
"id": "structure",
|
|
81
|
+
"name": "Structure & completeness",
|
|
82
|
+
"score": 9,
|
|
83
|
+
"max": 10
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"id": "description",
|
|
87
|
+
"name": "Description quality",
|
|
88
|
+
"score": 7,
|
|
89
|
+
"max": 10
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": "prompt-engineering",
|
|
93
|
+
"name": "Prompt engineering",
|
|
94
|
+
"score": 10,
|
|
95
|
+
"max": 10
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"id": "context-efficiency",
|
|
99
|
+
"name": "Context efficiency",
|
|
100
|
+
"score": 7,
|
|
101
|
+
"max": 10
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "safety",
|
|
105
|
+
"name": "Safety & guardrails",
|
|
106
|
+
"score": 7,
|
|
107
|
+
"max": 10
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "testability",
|
|
111
|
+
"name": "Testability",
|
|
112
|
+
"score": 5,
|
|
113
|
+
"max": 10
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "naming",
|
|
117
|
+
"name": "Naming & conventions",
|
|
118
|
+
"score": 10,
|
|
119
|
+
"max": 10
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"evaluatedAt": "2026-04-24T05:21:41.933Z",
|
|
123
|
+
"evaluatedVersion": "1.8.0"
|
|
124
|
+
},
|
|
125
|
+
"skill-best-practice": {
|
|
126
|
+
"providerId": "skill-best-practice",
|
|
127
|
+
"providerVersion": "1.0.0",
|
|
128
|
+
"schemaVersion": 1,
|
|
129
|
+
"passed": true,
|
|
130
|
+
"overallScore": 89,
|
|
131
|
+
"grade": "B",
|
|
132
|
+
"categories": [
|
|
133
|
+
{
|
|
134
|
+
"id": "validation",
|
|
135
|
+
"name": "Deterministic validation",
|
|
136
|
+
"score": 8,
|
|
137
|
+
"max": 9
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"evaluatedAt": "2026-04-24T05:21:41.933Z",
|
|
141
|
+
"evaluatedVersion": "1.8.0"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
}
|