ascelerate-skill 0.11.1 → 0.12.2

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.
Files changed (2) hide show
  1. package/README.md +45 -0
  2. package/package.json +18 -1
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # ascelerate-skill
2
+
3
+ The AI coding skill for [**ascelerate**](https://github.com/keremerkan/ascelerate) — a Swift command-line tool for the App Store Connect API.
4
+
5
+ It teaches your AI coding agent how to drive the `ascelerate` CLI: app submissions, localizations, screenshots, builds, provisioning, in-app purchases, subscriptions, customer reviews, in-app events, custom product pages, and release workflows.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npx ascelerate-skill
11
+ ```
12
+
13
+ You'll get an interactive picker for whichever agents are installed on your machine:
14
+
15
+ - **Claude Code** → `~/.claude/skills/ascelerate/SKILL.md`
16
+ - **Cursor** → `~/.cursor/rules/ascelerate.md`
17
+ - **Windsurf** → `~/.windsurf/rules/ascelerate.md`
18
+ - **GitHub Copilot** → `~/.github/instructions/ascelerate.md`
19
+
20
+ The installer fetches the latest skill file from GitHub each time, so you always get the current version.
21
+
22
+ ## Uninstall
23
+
24
+ ```bash
25
+ npx ascelerate-skill --uninstall
26
+ ```
27
+
28
+ ## Already have the CLI?
29
+
30
+ If you've installed the `ascelerate` binary, you can install or update the skill for your agents directly — no `npx` needed:
31
+
32
+ ```bash
33
+ ascelerate install-skill # install/update for every detected agent
34
+ ascelerate install-skill --all # include all supported agents (e.g. Copilot)
35
+ ascelerate install-skill --uninstall
36
+ ```
37
+
38
+ It auto-detects **Claude Code**, **Cursor**, and **Windsurf**, installs/updates the skill for each (and **GitHub Copilot** with `--all`), and stamps each install with the version so the CLI can tell you when the skill is out of date.
39
+
40
+ ## Links
41
+
42
+ - **ascelerate** CLI: https://github.com/keremerkan/ascelerate
43
+ - **Documentation**: https://ascelerate.dev
44
+
45
+ MIT © Kerem Erkan
package/package.json CHANGED
@@ -1,9 +1,26 @@
1
1
  {
2
2
  "name": "ascelerate-skill",
3
- "version": "0.11.1",
3
+ "version": "0.12.2",
4
4
  "description": "ascelerate skill for AI coding agents (Claude Code, Cursor, Windsurf, Copilot)",
5
+ "keywords": [
6
+ "ascelerate",
7
+ "app-store-connect",
8
+ "app-store",
9
+ "ios",
10
+ "asc",
11
+ "app-review",
12
+ "claude-code",
13
+ "cursor",
14
+ "windsurf",
15
+ "github-copilot",
16
+ "ai",
17
+ "skill",
18
+ "cli",
19
+ "fastlane-alternative"
20
+ ],
5
21
  "license": "MIT",
6
22
  "author": "Kerem Erkan",
23
+ "homepage": "https://ascelerate.dev",
7
24
  "repository": {
8
25
  "type": "git",
9
26
  "url": "git+https://github.com/keremerkan/ascelerate.git",