ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Remove AI writing tells from prose, headings, openings, and page structure. Use when writing or editing anything meant to read as human-written, including blog posts, site copy, documentation, README text, reports, PR descriptions, and emails. Trigger when the user mentions AI smell, AI tells, slop, em dashes, or prose sounding AI-written.
Use when preparing or updating an implementation plan, documentation, or specification before implementation, including choosing the right repository and applying SimpleDoc conventions.
Use when the user asks to implement a plan end-to-end, test it, run Pi Reviewer against the base branch in a loop until no P0/P1 issues remain, and make sure CI/CD is green before finishing.
SOC 職業分類に基づく
SKILL.md を表示中
| 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