Skip to content

Commit f0211ef

Browse files
michalharakalclaude
andcommitted
Rename repo to skainet-coding-skills
Repo will live at github.com/SKaiNET-developers/skainet-coding-skills. "coding-skills" is clear about the audience (AI coding agents) without locking the marketplace to a specific vendor format — Claude Code today, Cursor / Aider / future agents tomorrow. Plugin names stay as-is since they're Claude-Code-specific artifacts. Updates: README title + install snippet, both plugin.json homepage and repository URLs, marketplace.json name, CONTRIBUTING clone instructions, the verify-citations workflow's checkout path, and the tools script help text. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent c1b0612 commit f0211ef

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "skainet-skills-marketplace",
2+
"name": "skainet-coding-skills",
33
"owner": {
44
"name": "SKaiNET community"
55
},

.github/workflows/verify-citations.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
verify:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: Check out skainet-skills
13+
- name: Check out skainet-coding-skills
1414
uses: actions/checkout@v4
1515
with:
16-
path: skainet-skills
16+
path: skainet-coding-skills
1717

1818
- name: Check out SKaiNET (sibling)
1919
uses: actions/checkout@v4
@@ -28,5 +28,5 @@ jobs:
2828
python-version: "3.12"
2929

3030
- name: Run citation check
31-
working-directory: skainet-skills
31+
working-directory: skainet-coding-skills
3232
run: python3 tools/verify-citations.py --skainet-root ../SKaiNET

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to skainet-skills
1+
# Contributing to skainet-coding-skills
22

33
Thanks for helping make the SKaiNET skill set better. This guide covers how skills are structured, the citation rules, the eval format, and the local checks before opening a PR.
44

@@ -124,10 +124,10 @@ Aim for 3–5 scenarios per skill — enough to catch regressions, not so many t
124124

125125
```sh
126126
# Clone the marketplace and SKaiNET as siblings
127-
git clone https://github.com/SKaiNET-developers/skainet-skills.git
127+
git clone https://github.com/SKaiNET-developers/skainet-coding-skills.git
128128
git clone https://github.com/SKaiNET-developers/SKaiNET.git
129129

130-
cd skainet-skills
130+
cd skainet-coding-skills
131131

132132
# Run the citation check
133133
python3 tools/verify-citations.py
@@ -136,7 +136,7 @@ python3 tools/verify-citations.py
136136
Install the plugins locally to dogfood your changes:
137137

138138
```text
139-
/plugin marketplace add /path/to/skainet-skills
139+
/plugin marketplace add /path/to/skainet-coding-skills
140140
/plugin install skainet-contributor-skills
141141
/plugin install skainet-consumer-skills
142142
```

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# skainet-skills
1+
# skainet-coding-skills
22

33
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
44

@@ -39,17 +39,17 @@ For developers **using SKaiNET as a library** in their own Kotlin / Java / Andro
3939
In any Claude Code session:
4040

4141
```text
42-
/plugin marketplace add SKaiNET-developers/skainet-skills
42+
/plugin marketplace add SKaiNET-developers/skainet-coding-skills
4343
/plugin install skainet-contributor-skills
4444
/plugin install skainet-consumer-skills
4545
```
4646

4747
Or clone locally and point at the working tree:
4848

4949
```sh
50-
git clone https://github.com/SKaiNET-developers/skainet-skills.git
50+
git clone https://github.com/SKaiNET-developers/skainet-coding-skills.git
5151
# then in Claude Code:
52-
/plugin marketplace add /path/to/skainet-skills
52+
/plugin marketplace add /path/to/skainet-coding-skills
5353
```
5454

5555
## Repository layout

skainet-consumer-skills/.claude-plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"name": "SKaiNET-developers",
77
"url": "https://github.com/SKaiNET-developers"
88
},
9-
"homepage": "https://github.com/SKaiNET-developers/skainet-skills",
10-
"repository": "https://github.com/SKaiNET-developers/skainet-skills",
9+
"homepage": "https://github.com/SKaiNET-developers/skainet-coding-skills",
10+
"repository": "https://github.com/SKaiNET-developers/skainet-coding-skills",
1111
"license": "Apache-2.0",
1212
"keywords": [
1313
"skainet",

skainet-contributor-skills/.claude-plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"name": "SKaiNET-developers",
77
"url": "https://github.com/SKaiNET-developers"
88
},
9-
"homepage": "https://github.com/SKaiNET-developers/skainet-skills",
10-
"repository": "https://github.com/SKaiNET-developers/skainet-skills",
9+
"homepage": "https://github.com/SKaiNET-developers/skainet-coding-skills",
10+
"repository": "https://github.com/SKaiNET-developers/skainet-coding-skills",
1111
"license": "Apache-2.0",
1212
"keywords": [
1313
"skainet",

tools/verify-citations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def main() -> int:
5252
"--repo-root",
5353
type=Path,
5454
default=Path(__file__).resolve().parent.parent,
55-
help="Path to skainet-skills repo root. Defaults to the parent of this script's directory.",
55+
help="Path to skainet-coding-skills repo root. Defaults to the parent of this script's directory.",
5656
)
5757
args = parser.parse_args()
5858

0 commit comments

Comments
 (0)