Skip to content

Commit 00abe95

Browse files
committed
docs: drop "coding" from agent description and prefix /plugin commands with claude
Reword "AI coding agents" / "AI 코딩 에이전트" to "AI agents" / "AI 에이전트" everywhere it appeared — these skills target Korean writing, not coding specifically. Files touched: README.md, README_EN.md, AGENTS.md, .claude-plugin/marketplace.json. Also prefix the Claude Code plugin install examples with `claude` so the command works pasted straight into a regular terminal: claude /plugin marketplace add daleseo/korean-skills claude /plugin install korean-skills@korean-skills
1 parent fe6432e commit 00abe95

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "https://github.com/DaleSeo"
66
},
77
"metadata": {
8-
"description": "Korean language skills for AI coding agents: humanizer, grammar-checker, style-guide",
8+
"description": "Korean language skills for AI agents: humanizer, grammar-checker, style-guide",
99
"version": "1.0.0"
1010
},
1111
"plugins": [

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Repository Overview
66

7-
This repository provides Korean language skills for AI coding agents (Claude Code, Cursor, Windsurf, etc.) that support the Agent Skills format. Each skill is a self-contained module with documentation, reference materials, and examples.
7+
This repository provides Korean language skills for AI agents (Claude Code, Cursor, Windsurf, etc.) that support the Agent Skills format. Each skill is a self-contained module with documentation, reference materials, and examples.
88

99
## Repository Structure
1010

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# 한국어 스킬
22

3-
> AI 코딩 에이전트를 위한 한국어 스킬 모음
3+
> AI 에이전트를 위한 한국어 스킬 모음
44
55
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
66
[![Skills](https://img.shields.io/badge/skills-3-green.svg)](#스킬)
77

88
**[English](./README_EN.md)** 🇺🇸
99

10-
Claude Code, Cursor, Windsurf 등 Agent Skills 형식을 지원하는 AI 코딩 에이전트에서 사용할 수 있는 한국어 특화 스킬을 제공합니다.
10+
Claude Code, Cursor, Windsurf 등 Agent Skills 형식을 지원하는 AI 에이전트에서 사용할 수 있는 한국어 특화 스킬을 제공합니다.
1111

1212
## 빠른 시작
1313

@@ -31,14 +31,14 @@ npx skills add daleseo/korean-skills@style-guide
3131

3232
먼저 마켓플레이스를 추가합니다.
3333

34-
```
35-
/plugin marketplace add daleseo/korean-skills
34+
```bash
35+
claude /plugin marketplace add daleseo/korean-skills
3636
```
3737

3838
그다음 플러그인을 설치합니다.
3939

40-
```
41-
/plugin install korean-skills@korean-skills
40+
```bash
41+
claude /plugin install korean-skills@korean-skills
4242
```
4343

4444
설치하면 다음 슬래시 명령어로 각 스킬을 호출할 수 있습니다.
@@ -81,7 +81,7 @@ gh skill preview daleseo/korean-skills
8181
| `gh skill install daleseo/korean-skills <name>` | 가장 최근 태그 릴리스 |
8282
| `gh skill install daleseo/korean-skills <name> --pin v1.0.0` | 특정 릴리스 고정 (자동 업데이트 제외) |
8383
| `npx skills add daleseo/korean-skills@<name>` | `main` 최신 콘텐츠 (태그 없음) |
84-
| Claude Code 플러그인 (`/plugin install`) | 최신 플러그인 버전 |
84+
| Claude Code 플러그인 (`claude /plugin install`) | 최신 플러그인 버전 |
8585

8686
안정성이 필요하면 `gh skill install … --pin vX.Y.Z`로 고정하세요. 고정된 스킬은 `gh skill upgrade` 대상에서 제외되므로 의도적으로만 업그레이드됩니다. 최신 콘텐츠가 필요하면 다른 경로들이 `main` HEAD를 그대로 추적합니다.
8787

README_EN.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Korean Skills
22

3-
> Korean language skills for AI coding agents
3+
> Korean language skills for AI agents
44
55
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
66
[![Skills](https://img.shields.io/badge/skills-3-green.svg)](#skills)
77

88
**[한국어 문서](./README.md)** 🇰🇷
99

10-
This repository provides Korean language skills for AI coding agents (Claude Code, Cursor, Windsurf, etc.) supporting the Agent Skills format.
10+
This repository provides Korean language skills for AI agents (Claude Code, Cursor, Windsurf, etc.) supporting the Agent Skills format.
1111

1212
## Quick Start
1313

@@ -31,14 +31,14 @@ You can also install the skills as a [Claude Code plugin](https://code.claude.co
3131

3232
First, add the marketplace:
3333

34-
```
35-
/plugin marketplace add daleseo/korean-skills
34+
```bash
35+
claude /plugin marketplace add daleseo/korean-skills
3636
```
3737

3838
Then, install the plugin:
3939

40-
```
41-
/plugin install korean-skills@korean-skills
40+
```bash
41+
claude /plugin install korean-skills@korean-skills
4242
```
4343

4444
Once installed, the skills are available as namespaced slash commands:
@@ -81,7 +81,7 @@ Releases are tagged with semver and published automatically whenever `.claude-pl
8181
| `gh skill install daleseo/korean-skills <name>` | Latest tagged release |
8282
| `gh skill install daleseo/korean-skills <name> --pin v1.0.0` | Pinned to a specific release (skipped during updates) |
8383
| `npx skills add daleseo/korean-skills@<name>` | Latest content from `main` (no tag) |
84-
| Claude Code plugin (`/plugin install`) | Latest plugin version |
84+
| Claude Code plugin (`claude /plugin install`) | Latest plugin version |
8585

8686
If you need stability, pin via `gh skill install … --pin vX.Y.Z`. Pinned skills are skipped during `gh skill upgrade`, so you upgrade deliberately. For the freshest content, the other paths track `main` HEAD directly.
8787

0 commit comments

Comments
 (0)