skills-master 0.1.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 +42 -0
- package/dist/bin.js +1604 -0
- package/dist/bin.js.map +1 -0
- package/package.json +66 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# skills-master
|
|
2
|
+
|
|
3
|
+
**Install tool-agnostic, best-practice Apple development "skills" into any AI coding tool** — Claude Code, Cursor, GitHub Copilot, and the cross-tool [`AGENTS.md`](https://agents.md) standard — with one command.
|
|
4
|
+
|
|
5
|
+
Each skill is authored once and compiled into whatever format a given tool expects, so the same guidance reaches whatever you use. The first library covers **Apple platform development** (183 skills: SwiftUI, SwiftData, Swift concurrency, the Human Interface Guidelines, build & ship pipelines…), current to the 2026 "26" OS cycle and Swift 6.x, each with curated Documentation / HIG / WWDC / Sample-Code links.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# In your project — auto-detects which tools you use and writes the right files:
|
|
11
|
+
npx skills-master init
|
|
12
|
+
npx skills-master add swiftui-navigation swiftdata-modeling --with-pairs
|
|
13
|
+
npx skills-master list --class code # browse the catalog
|
|
14
|
+
npx skills-master search navigation
|
|
15
|
+
npx skills-master update # pull newer skill versions
|
|
16
|
+
npx skills-master remove swiftui-sheets
|
|
17
|
+
npx skills-master doctor # check installed skills for drift
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
`add` writes, per detected tool:
|
|
21
|
+
|
|
22
|
+
| Tool | Output |
|
|
23
|
+
|------|--------|
|
|
24
|
+
| Claude Code | `.claude/skills/<name>/SKILL.md` (+ on-demand `examples.md` / `checklist.md`) |
|
|
25
|
+
| Cursor | `.cursor/rules/<name>.mdc` (auto-attached on matching files) |
|
|
26
|
+
| GitHub Copilot | `.github/instructions/<name>.instructions.md` |
|
|
27
|
+
| AGENTS.md | a sentinel-marked block (your hand-written content is preserved) |
|
|
28
|
+
|
|
29
|
+
Flags: `--target claude,cursor,copilot,agents|all` · `--with-pairs` (also install the paired code↔design skill) · `--dry-run` · `--overwrite` · `--content <dir>` (use a local skills checkout) · `--ref <git-ref>`.
|
|
30
|
+
|
|
31
|
+
Claude Code users can alternatively install via the plugin marketplace:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
/plugin marketplace add github:iChintanSoni/skills-master
|
|
35
|
+
/plugin install skills-master-apple-code@skills-master
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## How it works
|
|
39
|
+
|
|
40
|
+
Content lives in the [skills-master repo](https://github.com/iChintanSoni/skills-master) and is fetched on demand; the CLI compiles each skill into your tools' formats and records what it installed in `skills-master.json` + a lockfile so `update`/`remove` stay surgical. Generated files are committed to your repo by default, so teammates' IDEs pick them up without running anything.
|
|
41
|
+
|
|
42
|
+
MIT licensed. Skill content is original prose that summarizes Apple's publicly documented best practices and links to the canonical docs — it does not reproduce Apple's copyrighted text or sample code.
|