@ichintansoni/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/LICENSE +21 -0
- package/README.md +42 -0
- package/dist/bin.js +1613 -0
- package/dist/bin.js.map +1 -0
- package/package.json +69 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 skills-master contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
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 @ichintansoni/skills-master init
|
|
12
|
+
npx @ichintansoni/skills-master add swiftui-navigation swiftdata-modeling --with-pairs
|
|
13
|
+
npx @ichintansoni/skills-master list --class code # browse the catalog
|
|
14
|
+
npx @ichintansoni/skills-master search navigation
|
|
15
|
+
npx @ichintansoni/skills-master update # pull newer skill versions
|
|
16
|
+
npx @ichintansoni/skills-master remove swiftui-sheets
|
|
17
|
+
npx @ichintansoni/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.
|