From b0e3c502f1c594e7ef946f40ada6c69bba8f4454 Mon Sep 17 00:00:00 2001 From: Ohlulu Date: Sun, 29 Mar 2026 10:36:13 -0700 Subject: [PATCH 1/2] feat: add pi package manager install support --- README.md | 11 ++++++++++- package.json | 6 ++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 package.json diff --git a/README.md b/README.md index 682611d..41be41c 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,16 @@ To automatically provide this Skill to everyone working in a repository, configu When team members open the project, Claude Code will prompt them to install the Skill. -### Option C: Manual install +### Option C: Using pi package manager + +Install via [pi](https://github.com/mariozechner/pi-mono): +```bash +pi install https://github.com/AvdLee/Swift-Testing-Agent-Skill +``` + +The skill will be available automatically in pi sessions. + +### Option D: Manual install 1) **Clone** this repository. 2) **Install or symlink** the `swift-testing-expert/` folder following your tool's official skills installation docs (see links below). 3) **Use your AI tool** as usual and ask it to use the "swift-testing-expert" skill for Swift Testing tasks. diff --git a/package.json b/package.json new file mode 100644 index 0000000..b9353b9 --- /dev/null +++ b/package.json @@ -0,0 +1,6 @@ +{ + "keywords": ["pi-package"], + "pi": { + "skills": ["./swift-testing-expert"] + } +} From f022915f728a006d7b7b19c4d9e35dc0db012156 Mon Sep 17 00:00:00 2001 From: Ohlulu Date: Mon, 30 Mar 2026 11:40:15 -0700 Subject: [PATCH 2/2] fix: correct pi-mono repository URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41be41c..24245c0 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ When team members open the project, Claude Code will prompt them to install the ### Option C: Using pi package manager -Install via [pi](https://github.com/mariozechner/pi-mono): +Install via [pi](https://github.com/badlogic/pi-mono): ```bash pi install https://github.com/AvdLee/Swift-Testing-Agent-Skill ```