apple-docs 1.0.0 → 1.0.1
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 +16 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# apple-docs
|
|
1
|
+
# apple-docs
|
|
2
2
|
|
|
3
3
|
CLI for querying Apple Developer Documentation. Searches docs, browses frameworks, WWDC videos, sample code, and more.
|
|
4
4
|
|
|
@@ -7,13 +7,23 @@ Built on top of [apple-docs-mcp](https://github.com/kimsungwhee/apple-docs-mcp)
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
11
|
-
cd apple-docs-cli
|
|
12
|
-
npm install
|
|
13
|
-
npm run build
|
|
14
|
-
npm link
|
|
10
|
+
npm i -g apple-docs
|
|
15
11
|
```
|
|
16
12
|
|
|
13
|
+
Or run directly:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx apple-docs search "SwiftUI List"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Claude Code Skill
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx skills add mtcnbzks/apple-docs-cli
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Then use `/apple-docs` in Claude Code to query Apple documentation.
|
|
26
|
+
|
|
17
27
|
## Usage
|
|
18
28
|
|
|
19
29
|
```
|
package/package.json
CHANGED