apple-agent-kit 0.1.0 → 0.1.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 +31 -0
- package/package.json +16 -1
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# apple-agent-kit
|
|
2
|
+
|
|
3
|
+
Installer for the **Apple Agent Kit** Claude Code plugin — a spec-first knowledge system for AI coding agents developing Apple platform applications.
|
|
4
|
+
|
|
5
|
+
## What this does
|
|
6
|
+
|
|
7
|
+
Running the installer:
|
|
8
|
+
|
|
9
|
+
1. Adds the [Apple Agent Kit](https://github.com/caglarbaranbora/Apple-Agent-Kit) repository as a Claude Code plugin marketplace.
|
|
10
|
+
2. Installs the `apple-agent-kit` plugin from it.
|
|
11
|
+
|
|
12
|
+
After that, the plugin's Skills and Knowledge Contracts are available inside your Claude Code sessions.
|
|
13
|
+
|
|
14
|
+
## Prerequisites
|
|
15
|
+
|
|
16
|
+
- [Claude Code](https://docs.claude.com/claude-code) CLI (`claude`) already installed and on your `PATH`.
|
|
17
|
+
- Node.js >= 18.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx apple-agent-kit
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Full documentation
|
|
26
|
+
|
|
27
|
+
See the [main repository](https://github.com/caglarbaranbora/Apple-Agent-Kit) for architecture, Knowledge Contract format, and contributing guide.
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
Source-available under the [PolyForm Strict License 1.0.0](https://github.com/caglarbaranbora/Apple-Agent-Kit/blob/main/LICENSE). Use it; don't redistribute, republish, or resell it.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apple-agent-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Installs the Apple Agent Kit Claude Code plugin via the claude CLI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"apple-agent-kit": "bin/install.js"
|
|
@@ -9,6 +9,21 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/caglarbaranbora/Apple-Agent-Kit.git"
|
|
11
11
|
},
|
|
12
|
+
"homepage": "https://github.com/caglarbaranbora/Apple-Agent-Kit#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/caglarbaranbora/Apple-Agent-Kit/issues"
|
|
15
|
+
},
|
|
16
|
+
"author": "caglarbaranbora",
|
|
17
|
+
"license": "PolyForm-Strict-1.0.0",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"claude-code",
|
|
20
|
+
"claude-code-plugin",
|
|
21
|
+
"apple",
|
|
22
|
+
"swift",
|
|
23
|
+
"swiftui",
|
|
24
|
+
"ios",
|
|
25
|
+
"ai-agent"
|
|
26
|
+
],
|
|
12
27
|
"engines": {
|
|
13
28
|
"node": ">=18"
|
|
14
29
|
}
|