Three steps: browse, copy, and paste into your agent.사용 3단계: 카테고리에서 고르고, 원문을 복사하고, 에이전트에 붙여넣습니다.
Proven agent tools, one copy away.검증된 에이전트 도구를 복사 한 번으로 바로.
Prompts, skills, hooks, and configs for Claude Code, Codex, Gemini CLI, and other AI coding agents, curated in one place.
Browse without installing anything, then copy the original and use it as-is.Claude Code · Codex · Gemini CLI 등 AI 코딩 에이전트에 바로 붙여 넣는 프롬프트·스킬·훅·설정을 한곳에 모았습니다.
설치 없이 둘러보고, 마음에 드는 항목의 원문을 복사해 그대로 쓰세요.
# 2 · copy the original source# 2 · 상세 페이지에서 원문을 복사한 뒤
$ pbpaste > ~/.claude/skills/diagnose/SKILL.md
# 3 · use it in your agent# 3 · 에이전트에서 바로 호출
> /diagnose
New here?처음이세요?
It takes three steps: browse, copy, paste.세 단계면 됩니다: 고르고, 복사하고, 붙여넣기.
How it works
Before you start: install an AI coding agent such as Claude Code, Codex, or Gemini CLI.준비물: Claude Code · Codex · Gemini CLI 같은 AI 코딩 에이전트가 먼저 설치돼 있어야 합니다.
01
Browse고르기
Find what you need in the sidebar, the categories below, or by searching for a keyword.왼쪽 사이드바나 아래 카테고리에서 필요한 도구를 찾습니다. 검색창에 키워드를 넣어도 됩니다.
02
Copy복사
Open an item and use “Copy original” to put its ready-to-use source on your clipboard.상세 페이지의 “원문 복사” 버튼을 누르면 바로 쓸 수 있는 원문이 클립보드에 담깁니다.
03
Use붙여넣기
Paste it into an agent folder such as ~/.claude/skills/, or directly into your chat.에이전트 설정 폴더(예: ~/.claude/skills/)에 붙여넣거나, 채팅창에 그대로 붙여 넣으면 끝입니다.
A hand-picked starter kit, installed with one prompt.프롬프트 하나로 설치하는 엄선된 스타터 키트.
Developer picks
Paste the prompt below into Claude Code, Codex, Gemini CLI, or another coding agent.
It installs the recommended skills and shared rules under ~/.agents/,
connects every detected CLI, and updates anything already installed.아래 프롬프트를 쓰는 코딩 에이전트(Claude Code · Codex · Gemini CLI …) 채팅창에 그대로 붙여넣으면,
추천 스킬 한 묶음과 공통 규칙을 ~/.agents/ 한곳에 설치하고
설치된 모든 CLI에 자동으로 연결합니다. 이미 있으면 최신으로 업데이트합니다.
Paste into your agent한 방 설치 프롬프트
Set up or refresh my default coding-agent environment from https://github.com/cskwork/pi-setup-public.
The default harness is pi. The default Z.ai model is GLM-5.3-Flash, which accepts text and images natively.
Work autonomously and make the process idempotent. Preserve user-owned files and settings unless the
pi-setup installer explicitly owns them. Never print credentials. Report real verification output.
1. Detect the operating system and shell.
- Supported: macOS, Linux, and Windows.
- On Windows, prefer PowerShell for bootstrap commands. pi itself uses Git Bash internally.
2. Ensure Node.js 22+ and npm are available.
- First run `node -v` and `npm -v`.
- If Node is missing or older than 22, use the platform package manager when available.
- If no safe package manager is available, stop and tell me to install Node 22 from https://nodejs.org.
3. Ensure pi is installed.
- Check with `pi --version`.
- If missing, run:
`npm install -g --ignore-scripts @earendil-works/pi-coding-agent`
- Re-run `pi --version`. If the command is still missing, report the npm global prefix and ask me to
open a new terminal. Do not patch PATH silently.
4. Clone or update pi-setup at `~/pi-setup-public`.
- Canonical remote: `https://github.com/cskwork/pi-setup-public.git`.
- If the directory is absent, clone it.
- If it is a clean clone of that remote, run `git pull --ff-only`.
- If it has local changes, do not discard them. Report the diff summary and continue with the local tree.
- If the path exists but is not that repository, move it to a timestamped backup path before cloning.
- Never use `git reset --hard`, `git clean`, or `rm -rf`.
5. Validate the checked-out setup before installing.
- `models.json` must declare model id `glm-5.3-flash` with input types `text` and `image`.
- The configured default model must be `glm-5.3-flash` on provider `zai`.
- If any check fails, stop installation and report that pi-setup is stale. Do not invent a local workaround.
6. Run the repository installer.
- macOS/Linux/Git Bash: `~/pi-setup-public/install.sh`.
- Windows PowerShell: run the documented Windows path from the repository README; do not translate the
shell script by guessing.
- The installer backs up replaced files and links or copies `~/.pi/agent` configuration from the repo.
7. Share the operating instructions with every coding agent on this machine.
- `~/pi-setup-public/AGENTS.md` is the operating contract: orient, options, delegate, plan, execute,
verify, report. Plan confirmation is the last human gate; the agent runs the rest on its own and
stops only for data loss, public APIs, security, or migrations.
- The installer already links it into `~/.pi/agent/AGENTS.md`. Link the same file into each other agent
you use, and skip any directory whose agent is not installed:
`ln -sfn ~/pi-setup-public/AGENTS.md ~/.claude/CLAUDE.md`
`ln -sfn ~/pi-setup-public/AGENTS.md ~/.codex/AGENTS.md`
`ln -sfn ~/pi-setup-public/AGENTS.md ~/.gemini/GEMINI.md`
`ln -sfn ~/pi-setup-public/AGENTS.md ~/.config/opencode/AGENTS.md`
- If a target is an existing regular file rather than a symlink, move it to a timestamped backup first
and report the path. Never overwrite my own instructions in place.
- On Windows, symlinks need Developer Mode or an admin terminal. Copy the file instead and tell me the
copy will drift.
8. Check authentication without exposing a key.
- Run `pi auth check --provider zai`.
- If it is not ready, tell me to run `pi auth`, log in to Z.ai, restart pi, and rerun this prompt.
- Never ask me to paste an API key into chat.
9. Verify the installed setup with real commands.
- `pi --version`
- `pi auth check --provider zai`
- `pi --list-models zai` and confirm `glm-5.3-flash` appears.
- Parse `~/.pi/agent/models.json` and confirm `glm-5.3-flash` has both `text` and `image` inputs.
- Resolve every operating-instruction link from step 7 and confirm each one points at
`~/pi-setup-public/AGENTS.md`.
- `pi list` and report the installed package count.
- If Z.ai auth is ready, run a text round trip:
`pi -p "reply with exactly: PI-SETUP-OK" --no-session`
- If a local image is available, run one native multimodal probe by asking GLM-5.3-Flash to read it.
Do not install an image adapter if no image is available; report that the image probe was skipped.
10. Finish with a numbered report.
- State the OS and shell.
- State the pi and Node versions.
- State whether pi-setup was cloned, updated, or already current.
- State which agents now read the operating instructions, and which were skipped because they are absent.
- State whether Z.ai authentication and text/image capability were verified or remain user actions.
- State the backup path created by the installer, if any.
- Do not commit or push either repository.
Installs each skill, updates if present추천 스킬을 ~/.agents/skills/ 에 설치 (있으면 최신화)
One shared system prompt for every tool공통 시스템 프롬프트 AGENTS.md 를 한곳에
Auto-symlinks into every CLI you have설치된 모든 CLI에 자동 심링크
Scripts that fire before or after a tool runs to block or polish it (e.g. stop a dangerous git command).도구 실행 전후에 끼어들어 막거나 다듬는 자동 스크립트 (예: 위험한 git 명령 차단).
Open-source apps and products for startups and solo founders — wikis, project management, meeting tools, design editors, hiring tools.1인 기업·스타트업에 유용한 오픈소스 앱·프로덕트 — 위키, 프로젝트 관리, 회의록, 디자인 도구, 채용 도구 등.