소스 정보
- 저장소
- osolmaz/onurpi
- 최근 소스 활동
- 2026년 8월 17일 10:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/osolmaz/onurpi --skill agent-blurb명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | agent-blurb |
| description | Write README prompts that tell coding agents how to adopt a tool. |
Use this skill to write a short README blurb that a human can copy into a coding agent. Default to the shortest prompt that still tells the agent what to use, where to start, what to ask, and how to verify.
text code block so GitHub renders a clean
copyable block.AGENT_ENTRYPOINT.md, install doc, README section, or stable raw URL when
the repo has one.Group the blurb with the existing install, quickstart, or setup instructions. Do not create several separate agent sections.
Good section names:
## Quick setup: tell your agent about <Tool>## Quick setup - tell your agent about <Tool>### Ask your coding agent (recommended)### Agent-assisted setupUse a top-level quick setup section when the README has no install section yet. Use a subsection when the README already has an install, quickstart, or setup section.
Add or update an agent entrypoint when the tool needs a repeatable operational workflow, safety boundaries, validation steps, or final reporting expectations. Do not create one for a tiny one-shot prompt where a README anchor is enough.
Use this pattern:
docs/AGENT_ENTRYPOINT.md as the source of truth for agents.AGENTS.md with a short pointer to that entrypoint.Keep the entrypoint operational rather than promotional. It should usually cover:
Keep AGENTS.md short. It should route agents to the entrypoint and add only
repo-specific rules that are enforceable or important locally. Do not duplicate
the full entrypoint there.
Keep the README prompt short once an entrypoint exists. The prompt should state the desired outcome, point to the entrypoint before asking for changes, and tell the agent to follow it and report unsupported setup or missing choices.
docs/AGENT_ENTRYPOINT.md and a
short root AGENTS.md pointer before editing the README prompt.text block.### Ask your coding agent (recommended)
Copy this block and paste it into your coding agent when you want it to
<outcome>.
```text
Use <Tool> to <outcome> for this project.
Attention agent: start here before changing files:
<url-or-path>
Inspect the existing setup, update it in place, verify with <checks>, and
ask me only for missing choices: <choices>.
```
Add safety lines only when they are relevant:
```text
Ask before destructive changes or external writes. Never ask me to paste
secrets into chat; use placeholders or local files.
```
Prefer an even shorter prompt when the project already has a strong agent entrypoint:
## Quick Setup: Tell Your Agent About <Tool>
Copy this block into your coding agent to use <Tool> in this repository.
```text
Use <Tool> to <outcome> for this project.
Attention agent: start with this file before changing files:
<raw-url-or-repo-path>
Follow it exactly. Report if the requested setup is unsupported.
```
For new entrypoints, keep examples schematic and adapt the section names to the tool:
# Agent Entrypoint
Attention agent: start here when you are asked to use <Tool> for <outcome>.
## Operating Rules
## First Pass
## Run Or Configure The Tool
## Inspect Results
## Apply Changes
## Validation
## Final Report