agent-skill-manager 1.17.0 → 1.20.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 +171 -45
- package/data/skill-index/Affitor_affiliate-skills.json +1 -1
- package/data/skill-index/Eronred_aso-skills.json +1 -1
- package/data/skill-index/GPTomics_bioSkills.json +26 -2
- package/data/skill-index/Galaxy-Dawn_claude-scholar.json +1 -1
- package/data/skill-index/Imbad0202_academic-research-skills.json +57 -0
- package/data/skill-index/K-Dense-AI_claude-scientific-skills.json +165 -9
- package/data/skill-index/Leonxlnx_taste-skill.json +1 -1
- package/data/skill-index/Master-cai_Research-Paper-Writing-Skills.json +1 -1
- package/data/skill-index/MiniMax-AI_skills.json +50 -2
- package/data/skill-index/affaan-m_everything-claude-code.json +1 -1
- package/data/skill-index/alirezarezvani_claude-skills.json +5421 -0
- package/data/skill-index/anthropics_skills.json +1 -1
- package/data/skill-index/bytedance_deer-flow.json +2 -2
- package/data/skill-index/coreyhaines31_marketingskills.json +1 -1
- package/data/skill-index/github_awesome-copilot.json +99 -3
- package/data/skill-index/himself65_finance-skills.json +3 -3
- package/data/skill-index/kemiljk_fluid-design.json +1 -1
- package/data/skill-index/kepano_obsidian-skills.json +1 -1
- package/data/skill-index/luongnv89_skills.json +37 -37
- package/data/skill-index/mattpocock_skills.json +14 -2
- package/data/skill-index/nextlevelbuilder_ui-ux-pro-max-skill.json +1 -1
- package/data/skill-index/obra_superpowers.json +1 -1
- package/data/skill-index/sickn33_antigravity-awesome-skills.json +223 -7
- package/data/skill-index/slavingia_skills.json +14 -2
- package/data/skill-index-resources.json +19 -1
- package/dist/agent-skill-manager.js +442 -283
- package/dist/chunk-2qybtcgb.js +3 -0
- package/dist/chunk-b38qq69j.js +3 -0
- package/dist/chunk-jexzjtx5.js +15 -0
- package/dist/{chunk-n7f2ekqj.js → chunk-w4et4kfd.js} +1 -1
- package/package.json +2 -2
- package/dist/chunk-75kgtp8z.js +0 -14
- package/dist/chunk-t6myftbf.js +0 -3
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<p align="center">
|
|
26
26
|
<a href="#get-started-in-30-seconds"><strong>Get Started in 30 Seconds →</strong></a>
|
|
27
27
|
|
|
|
28
|
-
<a href="https://luongnv.com/asm/"><strong>Browse 2,
|
|
28
|
+
<a href="https://luongnv.com/asm/"><strong>Browse 2,800+ Skills Online →</strong></a>
|
|
29
29
|
</p>
|
|
30
30
|
|
|
31
31
|
---
|
|
@@ -61,7 +61,7 @@ The more AI agents you use, the worse this gets. Every new tool adds another ski
|
|
|
61
61
|
- **See everything at once** — List, search, and filter skills across all providers and scopes from one dashboard. No more `ls`-ing through hidden directories.
|
|
62
62
|
- **Install from GitHub in one command** — `asm install github:user/repo` handles cloning, validation, and placement. Supports single-skill repos, multi-skill collections, subfolder URLs, and private repos via SSH.
|
|
63
63
|
- **Catch problems before they bite** — Built-in security scanning flags dangerous patterns (shell execution, network access, credential exposure, obfuscation) before you install. Duplicate audit finds and cleans redundant skills across providers.
|
|
64
|
-
- **Create and
|
|
64
|
+
- **Create, test, and publish skills** — Scaffold new skills with `asm init`, symlink them for live development with `asm link`, audit for security issues, verify metadata, and publish to the [ASM Registry](https://github.com/luongnv89/asm-registry) with a single command. [See the full local dev workflow ↓](#build-test-and-ship-your-own-skills)
|
|
65
65
|
- **Works with every major agent** — 17 providers built-in: Claude Code, Codex, OpenClaw, Cursor, Windsurf, Cline, Roo Code, Continue, GitHub Copilot, Aider, OpenCode, Zed, Augment, Amp, Gemini CLI, Google Antigravity, and a generic Agents provider. Add custom providers in seconds via config.
|
|
66
66
|
- **Two interfaces, one tool** — Full interactive TUI with keyboard navigation, search, and detail views. Or use the CLI with `--json` for scripting and automation.
|
|
67
67
|
|
|
@@ -116,19 +116,49 @@ This creates a `my-skill/SKILL.md` with valid YAML frontmatter and a markdown te
|
|
|
116
116
|
|
|
117
117
|
### 2. Develop with live reload via symlink
|
|
118
118
|
|
|
119
|
-
|
|
119
|
+
`asm link` creates a symlink from your local skill directory into an agent's skill folder. Because it's a symlink, every edit you make to the source is immediately visible to the agent — no reinstall needed.
|
|
120
|
+
|
|
121
|
+
#### Target a specific tool
|
|
120
122
|
|
|
121
123
|
```bash
|
|
124
|
+
# Link into Claude Code
|
|
122
125
|
asm link ./my-skill -p claude
|
|
126
|
+
|
|
127
|
+
# Link into Codex
|
|
128
|
+
asm link ./my-skill -p codex
|
|
129
|
+
|
|
130
|
+
# Interactive — pick the tool from a prompt
|
|
131
|
+
asm link ./my-skill
|
|
123
132
|
```
|
|
124
133
|
|
|
125
|
-
|
|
134
|
+
#### Link multiple skills at once
|
|
135
|
+
|
|
136
|
+
Pass several paths in a single command to link them all in one step:
|
|
126
137
|
|
|
127
138
|
```bash
|
|
128
|
-
asm link ./
|
|
139
|
+
asm link ./skill-a ./skill-b ./skill-c -p claude
|
|
129
140
|
```
|
|
130
141
|
|
|
131
|
-
|
|
142
|
+
You can also point at a folder that contains multiple skills (each in its own subdirectory with a `SKILL.md`):
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
# Link every skill found inside ./my-skills-folder
|
|
146
|
+
asm link ./my-skills-folder -p claude
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
#### Override the symlink name
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
asm link ./my-skill --name my-alias -p claude
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
#### Force-overwrite an existing symlink
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
asm link ./my-skill -p claude --force
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Edit the source files — changes are reflected immediately in the agent. This is the fastest iteration loop for skill development.
|
|
132
162
|
|
|
133
163
|
### 3. Audit your skill for security issues
|
|
134
164
|
|
|
@@ -202,6 +232,41 @@ asm install github:you/awesome-skill -p claude --yes --json
|
|
|
202
232
|
|
|
203
233
|
This catches issues that local development misses — broken repo structure, missing files, invalid frontmatter in a clean install context.
|
|
204
234
|
|
|
235
|
+
### 6. Publish to the ASM Registry
|
|
236
|
+
|
|
237
|
+
Once your skill is ready and on GitHub, submit it to the [ASM Registry](https://github.com/luongnv89/asm-registry) so anyone can install it by name:
|
|
238
|
+
|
|
239
|
+
```bash
|
|
240
|
+
asm publish ./my-skill
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
This runs a security audit, generates a signed manifest, forks the registry, and opens a pull request automatically. Once merged, your skill is globally discoverable:
|
|
244
|
+
|
|
245
|
+
```bash
|
|
246
|
+
# Anyone can install it by name — no URL needed
|
|
247
|
+
asm install my-skill
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
Preview what the manifest will look like before submitting:
|
|
251
|
+
|
|
252
|
+
```bash
|
|
253
|
+
asm publish --dry-run ./my-skill
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
Override security warnings (caution: review findings first):
|
|
257
|
+
|
|
258
|
+
```bash
|
|
259
|
+
asm publish --force ./my-skill
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
Skip confirmation in CI:
|
|
263
|
+
|
|
264
|
+
```bash
|
|
265
|
+
asm publish --yes ./my-skill
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
> **Requires:** [`gh` CLI](https://cli.github.com) authenticated with `gh auth login`. The publish command uses `gh` to fork the registry, create a branch, write the manifest, and open the PR — all without leaving your terminal.
|
|
269
|
+
|
|
205
270
|
### Typical local development workflow
|
|
206
271
|
|
|
207
272
|
1. **Scaffold** — `asm init awesome-skill -p claude`
|
|
@@ -212,6 +277,7 @@ This catches issues that local development misses — broken repo structure, mis
|
|
|
212
277
|
6. **Verify metadata** — `asm inspect awesome-skill`
|
|
213
278
|
7. Push to GitHub
|
|
214
279
|
8. **Verify install flow** — `asm install github:you/awesome-skill`
|
|
280
|
+
9. **Publish to registry** — `asm publish ./awesome-skill`
|
|
215
281
|
|
|
216
282
|
Whether you're building skills for yourself or publishing them for the community, `asm` gives you the full create → develop → audit → ship pipeline in one tool.
|
|
217
283
|
|
|
@@ -253,6 +319,60 @@ Each indexed skill in the output JSON includes `"verified": true` or `"verified"
|
|
|
253
319
|
|
|
254
320
|
---
|
|
255
321
|
|
|
322
|
+
## ASM Registry — Install and Publish Skills by Name
|
|
323
|
+
|
|
324
|
+
The [ASM Registry](https://github.com/luongnv89/asm-registry) is the curated index of community-published skills. Once a skill is listed, anyone can install it by name — no GitHub URL needed.
|
|
325
|
+
|
|
326
|
+
### Install from the registry
|
|
327
|
+
|
|
328
|
+
```bash
|
|
329
|
+
# Install by bare name (searches the registry)
|
|
330
|
+
asm install code-review
|
|
331
|
+
|
|
332
|
+
# Install by scoped name (author/skill — always unambiguous)
|
|
333
|
+
asm install luongnv89/code-review
|
|
334
|
+
|
|
335
|
+
# Force a fresh registry fetch (bypasses the 1-hour cache)
|
|
336
|
+
asm install code-review --no-cache
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
`asm install` resolves the name against the registry index, downloads the manifest, clones the exact pinned commit, and installs the skill to your agent.
|
|
340
|
+
|
|
341
|
+
### Publish your skill to the registry
|
|
342
|
+
|
|
343
|
+
```bash
|
|
344
|
+
asm publish ./my-skill
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
The publish pipeline:
|
|
348
|
+
|
|
349
|
+
1. **Validates** your `SKILL.md` frontmatter (name, description, version)
|
|
350
|
+
2. **Security audit** — blocks dangerous skills automatically; warns on risky patterns
|
|
351
|
+
3. **Generates a manifest** with the current commit SHA and a `skill_path` for multi-skill repos
|
|
352
|
+
4. **Opens a PR** against [luongnv89/asm-registry](https://github.com/luongnv89/asm-registry) via the `gh` CLI
|
|
353
|
+
|
|
354
|
+
The registry CI validates schema, checks author identity, runs a duplicate check, typosquat detection, and an independent security scan before any maintainer reviews. Once merged, the index rebuilds automatically and your skill is live.
|
|
355
|
+
|
|
356
|
+
| Flag | Description |
|
|
357
|
+
| ----------- | ------------------------------------------ |
|
|
358
|
+
| `--dry-run` | Preview the manifest without creating a PR |
|
|
359
|
+
| `--force` | Override warning-level security findings |
|
|
360
|
+
| `--yes` | Skip the confirmation prompt |
|
|
361
|
+
| `--machine` | Output as a machine-readable JSON envelope |
|
|
362
|
+
|
|
363
|
+
### How registry resolution works
|
|
364
|
+
|
|
365
|
+
When you run `asm install code-review`:
|
|
366
|
+
|
|
367
|
+
1. `asm` fetches the registry index (cached for 1 hour at `~/.config/agent-skill-manager/registry-cache.json`)
|
|
368
|
+
2. Finds the manifest for `code-review` — including the pinned `commit` and `skill_path`
|
|
369
|
+
3. Clones the repository at that exact commit and navigates to the skill subdirectory
|
|
370
|
+
4. Installs as if you had run `asm install github:author/repo#commit:skill_path`
|
|
371
|
+
|
|
372
|
+
If multiple authors publish a skill with the same name, `asm` shows a disambiguation prompt. Use a scoped name (`author/skill`) to skip it.
|
|
373
|
+
|
|
374
|
+
---
|
|
375
|
+
|
|
256
376
|
## Get Started in 30 Seconds
|
|
257
377
|
|
|
258
378
|
### npm (recommended)
|
|
@@ -283,23 +403,24 @@ asm
|
|
|
283
403
|
|
|
284
404
|
## Open-Source Skill Collections
|
|
285
405
|
|
|
286
|
-
A curated list of skill repositories you can install with a single command. Over **2,
|
|
287
|
-
|
|
288
|
-
> **Last updated:** 2026-03-
|
|
289
|
-
|
|
290
|
-
| Repository | Description
|
|
291
|
-
| ----------------------------------------------------------------------------------- |
|
|
292
|
-
| [anthropic-skills](https://github.com/anthropics/skills) | Official Agent Skills from Anthropic
|
|
293
|
-
| [superpowers](https://github.com/obra/superpowers) | Agentic skills framework & development methodology
|
|
294
|
-
| [everything-claude-code](https://github.com/affaan-m/everything-claude-code) | Performance optimization system for Claude Code, Codex, and beyond
|
|
295
|
-
| [agency-agents](https://github.com/msitarzewski/agency-agents) | Specialized expert agents with personality and proven deliverables
|
|
296
|
-
| [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | Design intelligence for building professional UI/UX
|
|
297
|
-
| [antigravity-awesome-skills](https://github.com/sickn33/antigravity-awesome-skills) | 1,000+ battle-tested skills for Claude Code, Cursor, and more
|
|
298
|
-
| [marketingskills](https://github.com/coreyhaines31/marketingskills) | Marketing skills — CRO, copywriting, SEO, analytics, growth
|
|
299
|
-
| [agentskills](https://github.com/agentskills/agentskills) | Specification and documentation for Agent Skills
|
|
300
|
-
| [
|
|
301
|
-
| [
|
|
302
|
-
| [skills](https://github.com/
|
|
406
|
+
A curated list of skill repositories you can install with a single command. Over **2,800 skills** available across these collections:
|
|
407
|
+
|
|
408
|
+
> **Last updated:** 2026-03-28
|
|
409
|
+
|
|
410
|
+
| Repository | Description | Stars | Skills |
|
|
411
|
+
| ----------------------------------------------------------------------------------- | ------------------------------------------------------------------- | -----: | -----: |
|
|
412
|
+
| [anthropic-skills](https://github.com/anthropics/skills) | Official Agent Skills from Anthropic | 95,957 | 18 |
|
|
413
|
+
| [superpowers](https://github.com/obra/superpowers) | Agentic skills framework & development methodology | 89,816 | 14 |
|
|
414
|
+
| [everything-claude-code](https://github.com/affaan-m/everything-claude-code) | Performance optimization system for Claude Code, Codex, and beyond | 81,392 | 183 |
|
|
415
|
+
| [agency-agents](https://github.com/msitarzewski/agency-agents) | Specialized expert agents with personality and proven deliverables | 50,749 | — |
|
|
416
|
+
| [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | Design intelligence for building professional UI/UX | 43,112 | 7 |
|
|
417
|
+
| [antigravity-awesome-skills](https://github.com/sickn33/antigravity-awesome-skills) | 1,000+ battle-tested skills for Claude Code, Cursor, and more | 25,047 | 1,322 |
|
|
418
|
+
| [marketingskills](https://github.com/coreyhaines31/marketingskills) | Marketing skills — CRO, copywriting, SEO, analytics, growth | 14,099 | 33 |
|
|
419
|
+
| [agentskills](https://github.com/agentskills/agentskills) | Specification and documentation for Agent Skills | 13,342 | — |
|
|
420
|
+
| [claude-skills](https://github.com/alirezarezvani/claude-skills) | 192 skills for engineering, marketing, product, compliance, C-level | 7,434 | 451 |
|
|
421
|
+
| [taste-skill](https://github.com/Leonxlnx/taste-skill) | Gives your AI good taste — stops generic, boring output | 3,389 | 7 |
|
|
422
|
+
| [affiliate-skills](https://github.com/Affitor/affiliate-skills) | Full affiliate marketing funnel: research to deploy | 99 | 48 |
|
|
423
|
+
| [skills](https://github.com/luongnv89/skills) | Reusable skills to supercharge your AI agents | 1 | 35 |
|
|
303
424
|
|
|
304
425
|
Install any collection with an interactive picker:
|
|
305
426
|
|
|
@@ -360,7 +481,7 @@ Need a tool not listed? Add a custom provider entry to the config.
|
|
|
360
481
|
Yes. `asm` is MIT licensed and free forever. No accounts, no telemetry, no paywalls.
|
|
361
482
|
|
|
362
483
|
**Is it actively maintained?**
|
|
363
|
-
v1.
|
|
484
|
+
v1.20.0 shipped on April 12, 2026. The project has had 29 releases. Check the [changelog](docs/CHANGELOG.md) for the full history.
|
|
364
485
|
|
|
365
486
|
**Which AI agents does it support?**
|
|
366
487
|
17 providers built-in: Claude Code, Codex, OpenClaw, Cursor, Windsurf, Cline, Roo Code, Continue, GitHub Copilot, Aider, OpenCode, Zed, Augment, Amp, Gemini CLI, Google Antigravity, and a generic Agents provider. All 17 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.
|
|
@@ -412,27 +533,28 @@ asm
|
|
|
412
533
|
|
|
413
534
|
### Commands
|
|
414
535
|
|
|
415
|
-
| Command | Description
|
|
416
|
-
| ------------------------------- |
|
|
417
|
-
| `asm list` | List all discovered skills
|
|
418
|
-
| `asm search <query>` | Search by name/description/provider
|
|
419
|
-
| `asm inspect <skill-name>` | Show detailed info for a skill
|
|
420
|
-
| `asm install <source>` | Install a skill from GitHub
|
|
421
|
-
| `asm
|
|
422
|
-
| `asm
|
|
423
|
-
| `asm
|
|
424
|
-
| `asm
|
|
425
|
-
| `asm audit
|
|
426
|
-
| `asm
|
|
427
|
-
| `asm
|
|
428
|
-
| `asm
|
|
429
|
-
| `asm index
|
|
430
|
-
| `asm index
|
|
431
|
-
| `asm index
|
|
432
|
-
| `asm
|
|
433
|
-
| `asm config
|
|
434
|
-
| `asm config
|
|
435
|
-
| `asm config
|
|
536
|
+
| Command | Description |
|
|
537
|
+
| ------------------------------- | ----------------------------------------------------- |
|
|
538
|
+
| `asm list` | List all discovered skills |
|
|
539
|
+
| `asm search <query>` | Search by name/description/provider |
|
|
540
|
+
| `asm inspect <skill-name>` | Show detailed info for a skill |
|
|
541
|
+
| `asm install <source>` | Install a skill from GitHub or the registry |
|
|
542
|
+
| `asm publish [path]` | Publish a skill to the ASM Registry |
|
|
543
|
+
| `asm uninstall <skill-name>` | Remove a skill (with confirmation) |
|
|
544
|
+
| `asm init <name>` | Scaffold a new skill with SKILL.md template |
|
|
545
|
+
| `asm link <path> [<path2> ...]` | Symlink one or more local skills for live development |
|
|
546
|
+
| `asm audit` | Detect duplicate skills |
|
|
547
|
+
| `asm audit security <name>` | Run security audit on a skill |
|
|
548
|
+
| `asm stats` | Show aggregate skill metrics dashboard |
|
|
549
|
+
| `asm export` | Export skill inventory as JSON manifest |
|
|
550
|
+
| `asm index ingest <repo>` | Index a skill repo for searching |
|
|
551
|
+
| `asm index search <query>` | Search indexed skills |
|
|
552
|
+
| `asm index list` | List indexed repositories |
|
|
553
|
+
| `asm index remove <owner/repo>` | Remove a repo from the index |
|
|
554
|
+
| `asm config show` | Print current config |
|
|
555
|
+
| `asm config path` | Print config file path |
|
|
556
|
+
| `asm config reset` | Reset config to defaults |
|
|
557
|
+
| `asm config edit` | Open config in $EDITOR |
|
|
436
558
|
|
|
437
559
|
### Global Options
|
|
438
560
|
|
|
@@ -491,7 +613,11 @@ asm init my-skill -p claude
|
|
|
491
613
|
```
|
|
492
614
|
|
|
493
615
|
```bash
|
|
616
|
+
# Link globally (available in all projects)
|
|
494
617
|
asm link ./my-skill -p claude
|
|
618
|
+
|
|
619
|
+
# Link multiple skills at once
|
|
620
|
+
asm link ./skill-a ./skill-b -p claude
|
|
495
621
|
```
|
|
496
622
|
|
|
497
623
|
```bash
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"repoUrl": "https://github.com/GPTomics/bioSkills.git",
|
|
3
3
|
"owner": "GPTomics",
|
|
4
4
|
"repo": "bioSkills",
|
|
5
|
-
"updatedAt": "2026-03-
|
|
6
|
-
"skillCount":
|
|
5
|
+
"updatedAt": "2026-03-27T23:21:36.781Z",
|
|
6
|
+
"skillCount": 426,
|
|
7
7
|
"skills": [
|
|
8
8
|
{
|
|
9
9
|
"name": "bio-admet-prediction",
|
|
@@ -101,6 +101,18 @@
|
|
|
101
101
|
"relPath": "alignment/pairwise-alignment",
|
|
102
102
|
"verified": true
|
|
103
103
|
},
|
|
104
|
+
{
|
|
105
|
+
"name": "bio-alignment-sorting",
|
|
106
|
+
"description": "Sort alignment files by coordinate or read name using samtools and pysam. Use when preparing BAM files for indexing, variant calling, or paired-end analysis.",
|
|
107
|
+
"version": "0.0.0",
|
|
108
|
+
"license": "",
|
|
109
|
+
"creator": "",
|
|
110
|
+
"compatibility": "",
|
|
111
|
+
"allowedTools": [],
|
|
112
|
+
"installUrl": "github:GPTomics/bioSkills:alignment-files/alignment-sorting",
|
|
113
|
+
"relPath": "alignment-files/alignment-sorting",
|
|
114
|
+
"verified": true
|
|
115
|
+
},
|
|
104
116
|
{
|
|
105
117
|
"name": "bio-alignment-validation",
|
|
106
118
|
"description": "Validate alignment quality with insert size distribution, proper pairing rates, GC bias, strand balance, and other post-alignment metrics. Use when verifying alignment data quality before variant calling or quantification.",
|
|
@@ -2921,6 +2933,18 @@
|
|
|
2921
2933
|
"relPath": "phasing-imputation/haplotype-phasing",
|
|
2922
2934
|
"verified": true
|
|
2923
2935
|
},
|
|
2936
|
+
{
|
|
2937
|
+
"name": "bio-phasing-imputation-imputation-qc",
|
|
2938
|
+
"description": "Quality control of phasing and imputation results. Filter by INFO scores, assess accuracy, and prepare imputed data for downstream analysis. Use when filtering low-quality imputed variants or validating imputation accuracy before GWAS.",
|
|
2939
|
+
"version": "0.0.0",
|
|
2940
|
+
"license": "",
|
|
2941
|
+
"creator": "",
|
|
2942
|
+
"compatibility": "",
|
|
2943
|
+
"allowedTools": [],
|
|
2944
|
+
"installUrl": "github:GPTomics/bioSkills:phasing-imputation/imputation-qc",
|
|
2945
|
+
"relPath": "phasing-imputation/imputation-qc",
|
|
2946
|
+
"verified": true
|
|
2947
|
+
},
|
|
2924
2948
|
{
|
|
2925
2949
|
"name": "bio-phasing-imputation-reference-panels",
|
|
2926
2950
|
"description": "Download, prepare, and manage reference panels for phasing and imputation. Covers 1000 Genomes, HRC, and TOPMed panels. Use when setting up imputation infrastructure or selecting appropriate reference panels for target populations.",
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"repoUrl": "https://github.com/Imbad0202/academic-research-skills.git",
|
|
3
|
+
"owner": "Imbad0202",
|
|
4
|
+
"repo": "academic-research-skills",
|
|
5
|
+
"updatedAt": "2026-03-28T00:12:34.567Z",
|
|
6
|
+
"skillCount": 4,
|
|
7
|
+
"skills": [
|
|
8
|
+
{
|
|
9
|
+
"name": "academic-paper-reviewer",
|
|
10
|
+
"description": "Multi-perspective academic paper review with dynamic reviewer personas. Simulates 5 independent reviewers (EIC + 3 peer reviewers + Devil's Advocate) with field-specific expertise.",
|
|
11
|
+
"version": "1.4",
|
|
12
|
+
"license": "",
|
|
13
|
+
"creator": "",
|
|
14
|
+
"compatibility": "",
|
|
15
|
+
"allowedTools": [],
|
|
16
|
+
"installUrl": "github:Imbad0202/academic-research-skills:academic-paper-reviewer",
|
|
17
|
+
"relPath": "academic-paper-reviewer",
|
|
18
|
+
"verified": false
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "academic-paper",
|
|
22
|
+
"description": "Academic paper writing skill with 12-agent pipeline. Supports IMRaD, literature review, theoretical, case study, policy brief, and conference paper structures.",
|
|
23
|
+
"version": "2.5",
|
|
24
|
+
"license": "",
|
|
25
|
+
"creator": "",
|
|
26
|
+
"compatibility": "",
|
|
27
|
+
"allowedTools": [],
|
|
28
|
+
"installUrl": "github:Imbad0202/academic-research-skills:academic-paper",
|
|
29
|
+
"relPath": "academic-paper",
|
|
30
|
+
"verified": false
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "academic-pipeline",
|
|
34
|
+
"description": "Orchestrator for the full academic research pipeline: research, write, integrity check, review, revise, re-review, re-revise, final integrity check, finalize.",
|
|
35
|
+
"version": "2.7",
|
|
36
|
+
"license": "",
|
|
37
|
+
"creator": "",
|
|
38
|
+
"compatibility": "",
|
|
39
|
+
"allowedTools": [],
|
|
40
|
+
"installUrl": "github:Imbad0202/academic-research-skills:academic-pipeline",
|
|
41
|
+
"relPath": "academic-pipeline",
|
|
42
|
+
"verified": false
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "deep-research",
|
|
46
|
+
"description": "Universal deep research agent team. 13-agent pipeline for rigorous academic research on any topic. 7 modes: full research, quick brief, paper review, lit-review, fact-check, Socratic guided research, and systematic review.",
|
|
47
|
+
"version": "2.4",
|
|
48
|
+
"license": "",
|
|
49
|
+
"creator": "",
|
|
50
|
+
"compatibility": "",
|
|
51
|
+
"allowedTools": [],
|
|
52
|
+
"installUrl": "github:Imbad0202/academic-research-skills:deep-research",
|
|
53
|
+
"relPath": "deep-research",
|
|
54
|
+
"verified": false
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|