@olegkoval/agent-skills 1.11.0 → 1.11.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/.claude-plugin/plugin.json +1 -1
- package/.kiro/steering/open-source-publisher.md +21 -0
- package/.windsurf/rules/open-source-publisher.md +21 -0
- package/package.json +1 -1
- package/packages/software-development/open-source-publisher/SKILL.md +22 -1
- package/packages/software-development/open-source-publisher/adapters/claude/skills/open-source-publisher/SKILL.md +22 -1
- package/packages/software-development/open-source-publisher/adapters/cursor/skills/open-source-publisher/SKILL.md +22 -1
- package/packages/software-development/open-source-publisher/adapters/kiro/steering/open-source-publisher.md +21 -0
- package/packages/software-development/open-source-publisher/adapters/windsurf/rules/open-source-publisher.md +21 -0
|
@@ -105,6 +105,27 @@ Rules:
|
|
|
105
105
|
|
|
106
106
|
Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
|
|
107
107
|
|
|
108
|
+
Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
|
|
109
|
+
|
|
110
|
+
### `logo-generator` Installation
|
|
111
|
+
|
|
112
|
+
The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
npx skills add https://github.com/op7418/logo-generator-skill.git
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
If automatic installation is unavailable, clone it into the Claude skills directory:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
|
|
122
|
+
cd ~/.claude/skills/logo-generator
|
|
123
|
+
pip install -r requirements.txt
|
|
124
|
+
cp .env.example .env
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
|
|
128
|
+
|
|
108
129
|
Icon rules:
|
|
109
130
|
|
|
110
131
|
- Use one clear metaphor from the project domain, not a collage.
|
|
@@ -104,6 +104,27 @@ Rules:
|
|
|
104
104
|
|
|
105
105
|
Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
|
|
106
106
|
|
|
107
|
+
Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
|
|
108
|
+
|
|
109
|
+
### `logo-generator` Installation
|
|
110
|
+
|
|
111
|
+
The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
npx skills add https://github.com/op7418/logo-generator-skill.git
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
If automatic installation is unavailable, clone it into the Claude skills directory:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
|
|
121
|
+
cd ~/.claude/skills/logo-generator
|
|
122
|
+
pip install -r requirements.txt
|
|
123
|
+
cp .env.example .env
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
|
|
127
|
+
|
|
107
128
|
Icon rules:
|
|
108
129
|
|
|
109
130
|
- Use one clear metaphor from the project domain, not a collage.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: open-source-publisher
|
|
3
|
-
description: Prepare an open-source repository for polished public publishing. Use when a user asks to publish, open-source, launch, polish, package, brand, or make a GitHub project presentable with a minimal project icon, social preview image, GitHub Pages landing page, standardized README, essential shields, CI/CD quality gates, release automation checks, and optional donation setup.
|
|
3
|
+
description: Prepare an open-source repository for polished public publishing. Use when a user asks to publish, open-source, launch, polish, package, brand, or make a GitHub project presentable with a minimal project icon, social preview image, GitHub Pages landing page, standardized README, essential shields, CI/CD quality gates, release automation checks, and optional donation setup. Prefer the external `logo-generator` skill for icon generation when available.
|
|
4
4
|
license: MIT
|
|
5
5
|
allowed-tools: Bash, Read, Write, Edit, WebSearch, WebFetch
|
|
6
6
|
compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools. Requires a writable git repository; browser or image rendering tools are useful for visual validation.
|
|
@@ -117,6 +117,27 @@ Rules:
|
|
|
117
117
|
|
|
118
118
|
Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
|
|
119
119
|
|
|
120
|
+
Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
|
|
121
|
+
|
|
122
|
+
### `logo-generator` Installation
|
|
123
|
+
|
|
124
|
+
The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
npx skills add https://github.com/op7418/logo-generator-skill.git
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
If automatic installation is unavailable, clone it into the Claude skills directory:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
|
|
134
|
+
cd ~/.claude/skills/logo-generator
|
|
135
|
+
pip install -r requirements.txt
|
|
136
|
+
cp .env.example .env
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
|
|
140
|
+
|
|
120
141
|
Icon rules:
|
|
121
142
|
|
|
122
143
|
- Use one clear metaphor from the project domain, not a collage.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: open-source-publisher
|
|
3
|
-
description: Prepare an open-source repository for polished public publishing. Use when a user asks to publish, open-source, launch, polish, package, brand, or make a GitHub project presentable with a minimal project icon, social preview image, GitHub Pages landing page, standardized README, essential shields, CI/CD quality gates, release automation checks, and optional donation setup.
|
|
3
|
+
description: Prepare an open-source repository for polished public publishing. Use when a user asks to publish, open-source, launch, polish, package, brand, or make a GitHub project presentable with a minimal project icon, social preview image, GitHub Pages landing page, standardized README, essential shields, CI/CD quality gates, release automation checks, and optional donation setup. Prefer the external `logo-generator` skill for icon generation when available.
|
|
4
4
|
license: MIT
|
|
5
5
|
allowed-tools: Bash, Read, Write, Edit, WebSearch, WebFetch
|
|
6
6
|
compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools. Requires a writable git repository; browser or image rendering tools are useful for visual validation.
|
|
@@ -118,6 +118,27 @@ Rules:
|
|
|
118
118
|
|
|
119
119
|
Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
|
|
120
120
|
|
|
121
|
+
Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
|
|
122
|
+
|
|
123
|
+
### `logo-generator` Installation
|
|
124
|
+
|
|
125
|
+
The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
npx skills add https://github.com/op7418/logo-generator-skill.git
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
If automatic installation is unavailable, clone it into the Claude skills directory:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
|
|
135
|
+
cd ~/.claude/skills/logo-generator
|
|
136
|
+
pip install -r requirements.txt
|
|
137
|
+
cp .env.example .env
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
|
|
141
|
+
|
|
121
142
|
Icon rules:
|
|
122
143
|
|
|
123
144
|
- Use one clear metaphor from the project domain, not a collage.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: open-source-publisher
|
|
3
|
-
description: Prepare an open-source repository for polished public publishing. Use when a user asks to publish, open-source, launch, polish, package, brand, or make a GitHub project presentable with a minimal project icon, social preview image, GitHub Pages landing page, standardized README, essential shields, CI/CD quality gates, release automation checks, and optional donation setup.
|
|
3
|
+
description: Prepare an open-source repository for polished public publishing. Use when a user asks to publish, open-source, launch, polish, package, brand, or make a GitHub project presentable with a minimal project icon, social preview image, GitHub Pages landing page, standardized README, essential shields, CI/CD quality gates, release automation checks, and optional donation setup. Prefer the external `logo-generator` skill for icon generation when available.
|
|
4
4
|
license: MIT
|
|
5
5
|
allowed-tools: Bash, Read, Write, Edit, WebSearch, WebFetch
|
|
6
6
|
compatibility: Codex, Claude Code, Cursor, GitHub Copilot, Windsurf, Kiro, and other Agent Skills compatible tools. Requires a writable git repository; browser or image rendering tools are useful for visual validation.
|
|
@@ -118,6 +118,27 @@ Rules:
|
|
|
118
118
|
|
|
119
119
|
Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
|
|
120
120
|
|
|
121
|
+
Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
|
|
122
|
+
|
|
123
|
+
### `logo-generator` Installation
|
|
124
|
+
|
|
125
|
+
The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
npx skills add https://github.com/op7418/logo-generator-skill.git
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
If automatic installation is unavailable, clone it into the Claude skills directory:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
|
|
135
|
+
cd ~/.claude/skills/logo-generator
|
|
136
|
+
pip install -r requirements.txt
|
|
137
|
+
cp .env.example .env
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
|
|
141
|
+
|
|
121
142
|
Icon rules:
|
|
122
143
|
|
|
123
144
|
- Use one clear metaphor from the project domain, not a collage.
|
|
@@ -104,6 +104,27 @@ Rules:
|
|
|
104
104
|
|
|
105
105
|
Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
|
|
106
106
|
|
|
107
|
+
Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
|
|
108
|
+
|
|
109
|
+
### `logo-generator` Installation
|
|
110
|
+
|
|
111
|
+
The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
npx skills add https://github.com/op7418/logo-generator-skill.git
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
If automatic installation is unavailable, clone it into the Claude skills directory:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
|
|
121
|
+
cd ~/.claude/skills/logo-generator
|
|
122
|
+
pip install -r requirements.txt
|
|
123
|
+
cp .env.example .env
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
|
|
127
|
+
|
|
107
128
|
Icon rules:
|
|
108
129
|
|
|
109
130
|
- Use one clear metaphor from the project domain, not a collage.
|
|
@@ -103,6 +103,27 @@ Rules:
|
|
|
103
103
|
|
|
104
104
|
Create a simple, recognizable SVG logo from the repository's essence. Prefer `logo.svg` and also render `logo.png` so the icon can be reused in README assets, release artifacts, and platform-specific previews.
|
|
105
105
|
|
|
106
|
+
Use the external `logo-generator` skill first for icon generation when it is installed (see `logo-generator` Installation below). If it is not installed, follow the manual SVG guidance below and commit both the editable SVG and rendered PNG when practical.
|
|
107
|
+
|
|
108
|
+
### `logo-generator` Installation
|
|
109
|
+
|
|
110
|
+
The `logo-generator` skill is external and is not bundled with this repository. Install it separately from <https://github.com/op7418/logo-generator-skill> before relying on it:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
npx skills add https://github.com/op7418/logo-generator-skill.git
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
If automatic installation is unavailable, clone it into the Claude skills directory:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
git clone https://github.com/op7418/logo-generator-skill.git ~/.claude/skills/logo-generator
|
|
120
|
+
cd ~/.claude/skills/logo-generator
|
|
121
|
+
pip install -r requirements.txt
|
|
122
|
+
cp .env.example .env
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Then add `GEMINI_API_KEY` to `.env` and restart the agent runtime so the skill is discoverable.
|
|
126
|
+
|
|
106
127
|
Icon rules:
|
|
107
128
|
|
|
108
129
|
- Use one clear metaphor from the project domain, not a collage.
|