https://github.com/eyedroot/marketplace
for Claude Code, Codex
https://github.com/eyedroot/marketplace
Last synced: 3 days ago
JSON representation
for Claude Code, Codex
- Host: GitHub
- URL: https://github.com/eyedroot/marketplace
- Owner: eyedroot
- License: mit
- Created: 2026-05-15T05:20:32.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-22T02:21:28.000Z (28 days ago)
- Last Synced: 2026-05-22T11:45:04.153Z (28 days ago)
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eyedroot-marketplace
- 비즈([@eyedroot](https://github.com/eyedroot))의 personal plugin marketplace
- 글쓰기 스타일, 업무 자동화 등 개인용 plugin / skill 모음
- **claude-code**와 **codex** 양쪽에서 동작하도록 SKILL.md 표준 포맷으로 작성
## 포함된 plugin
- `bullet-style`
- bullet과 indent로 한국어 글을 구조화하는 스타일 plugin
- 포함 skill
- `bullet-notes`
- bullet 중심 구조화
- 두괄식
- 간단명료한 명사형 종결 어미
- `with-codex`
- Workflow plugin that wraps Claude's primary pass and Codex's cross-verification under one slash command
- Included command
- `/with-codex`
- Primary Claude pass
- Auto-routes to `/codex:rescue` when stuck, `/codex:review` when done
- Reports agreements and disagreements between the two agents explicitly
## 설치
### Claude Code
- 원격 마켓플레이스로 등록 (GitHub push 후 가능)
```bash
/plugin marketplace add eyedroot/eyedroot-marketplace
/plugin install bullet-style@eyedroot
```
- 로컬 경로로 등록 (개발 / 테스트용)
```bash
/plugin marketplace add /path/to/eyedroot-marketplace
```
### Codex CLI
- codex는 두 경로에서 SKILL.md를 탐색해요
- `~/.codex/skills/`
- 전역 (모든 codex 세션에서 적용)
- `/.agents/skills/`
- 프로젝트 단위 (해당 repo에서만 적용)
- 마켓플레이스 내부 skill을 그대로 심볼릭 링크하면 양쪽에서 같은 파일을 공유할 수 있어요
#### 전역 설치
```bash
git clone https://github.com/eyedroot/eyedroot-marketplace.git
cd eyedroot-marketplace
mkdir -p ~/.codex/skills
ln -s "$(pwd)/plugins/bullet-style/skills/bullet-notes" ~/.codex/skills/bullet-notes
```
#### 프로젝트 단위 설치
```bash
cd
mkdir -p .agents/skills
ln -s /path/to/eyedroot-marketplace/plugins/bullet-style/skills/bullet-notes .agents/skills/bullet-notes
```
## 디렉토리 구조
- 마켓플레이스 루트
- `.claude-plugin/marketplace.json` — 등록된 plugin 목록
- `plugins//` — plugin 본체가 들어가는 위치
- plugin 디렉토리 내부 규칙
- `.claude-plugin/plugin.json` — plugin 메타데이터
- `README.md` — 설치 안내, 사용법
- 구성요소별 디렉토리 (필요한 것만 두면 됨)
- `skills//SKILL.md` — claude-code · codex 공용 skill
- `commands/.md` — claude-code 슬래시 명령
- `agents/`, `hooks/`, `mcp/` — 다른 Claude Code 구성요소도 동일 패턴
## 호환성 노트
- SKILL.md frontmatter 스키마
- 필수 필드
- `name`
- `description`
- claude-code와 codex가 동일 스키마 사용
- 양쪽 전용 필드는 현재 시점 기준 없음
- 결과적으로 같은 SKILL.md 파일을 양쪽에서 그대로 재사용 가능
- 자동 설치 범위
- claude-code
- 마켓플레이스 명령어로 자동 설치
- codex
- 수동 심볼릭 링크 필요 (위 설치 안내 참조)
## 참고
- claude-code 마켓플레이스 문서
- https://code.claude.com/docs/en/plugin-marketplaces
- claude-code plugin 레퍼런스
- https://code.claude.com/docs/en/plugins-reference
- codex Agent Skills 문서
- https://developers.openai.com/codex/skills
## 라이선스
- MIT
> 자기다운 도구가 결국 가장 자주 손에 잡히는 법이라, 이 마켓플레이스는 비즈 본인을 위한 도구함이에요.