docs: add skill install quickstart

This commit is contained in:
yaojingang
2026-07-06 08:10:46 +08:00
parent c37915e4f6
commit 4eb11f923d
5 changed files with 70 additions and 0 deletions
+14
View File
@@ -180,6 +180,20 @@ Boundary: this is single-reviewer blind preference evidence. It is not provider-
## Quick Start
Install the skill globally for Codex first:
```bash
npx -y skills add yaojingang/yao-meta-skill -a codex -g -y
```
To install it for every supported agent, replace `-a codex` with `-a '*'`:
```bash
npx -y skills add yaojingang/yao-meta-skill -a '*' -g -y
```
After installation, restart the client. Then ask for tasks such as "create a skill from this workflow", "improve this existing skill", "evaluate this skill", or "add evals to this skill" to trigger `yao-meta-skill`.
1. Describe the workflow, prompt set, or repeated task you want to turn into a skill.
2. Start with a short, human intent dialogue so the real job, outputs, exclusions, constraints, and standards are explicit.
3. Let `quickstart` clarify intent first, then run silent benchmark scan and reference synthesis; it only surfaces explicit questions when intent is still unclear or when there is a real design conflict.
+14
View File
@@ -69,6 +69,20 @@ Formule du score pondéré : `sum(score / 10 * poids)`.
## Démarrage rapide
Pour utiliser cette skill directement dans Codex, installez-la d'abord dans les skills globales :
```bash
npx -y skills add yaojingang/yao-meta-skill -a codex -g -y
```
Pour l'installer dans tous les agents pris en charge, remplacez `-a codex` par `-a '*'` :
```bash
npx -y skills add yaojingang/yao-meta-skill -a '*' -g -y
```
Après l'installation, redémarrez le client. Demandez ensuite des tâches comme "create a skill from this workflow", "improve this existing skill", "evaluate this skill" ou "add evals to this skill" pour déclencher `yao-meta-skill`.
1. Décrivez le workflow, l'ensemble de prompts ou la tâche répétée que vous voulez transformer en skill.
2. Commencez par un court dialogue d'intention plus humain pour clarifier le vrai travail, les sorties attendues, les exclusions, les contraintes et les standards qui comptent pour vous.
3. Laissez d'abord `quickstart` clarifier l'intention, puis lancer silencieusement benchmark scan et reference synthesis ; des questions explicites ne remontent que si l'intention reste ambiguë ou si deux directions de conception se contredisent réellement.
+14
View File
@@ -69,6 +69,20 @@ flowchart LR
## クイックスタート
Codex でこの skill を直接使う場合は、まず global skills にインストールします。
```bash
npx -y skills add yaojingang/yao-meta-skill -a codex -g -y
```
対応しているすべての agent にインストールする場合は、`-a codex``-a '*'` に置き換えます。
```bash
npx -y skills add yaojingang/yao-meta-skill -a '*' -g -y
```
インストール後にクライアントを再起動してください。その後、"create a skill from this workflow"、"improve this existing skill"、"evaluate this skill"、"add evals to this skill" のような依頼で `yao-meta-skill` を起動できます。
1. skill 化したい workflow、prompt 集合、または反復タスクを説明します。
2. まず短いが人間味のある intent dialogue で、実際の job、outputs、boundary、constraints、重視する品質基準を明確にします。
3. まず `quickstart` で意図を澄ませ、その後 benchmark scan と reference synthesis を静かに実行します。意図がまだ曖昧なとき、または設計ルートに本当の衝突があるときだけ、追加確認を明示します。
+14
View File
@@ -69,6 +69,20 @@ flowchart LR
## Быстрый старт
Чтобы использовать эту skill напрямую в Codex, сначала установите ее в global skills:
```bash
npx -y skills add yaojingang/yao-meta-skill -a codex -g -y
```
Чтобы установить ее во все поддерживаемые agents, замените `-a codex` на `-a '*'`:
```bash
npx -y skills add yaojingang/yao-meta-skill -a '*' -g -y
```
После установки перезапустите клиент. Затем используйте запросы вроде "create a skill from this workflow", "improve this existing skill", "evaluate this skill" или "add evals to this skill", чтобы вызвать `yao-meta-skill`.
1. Опишите workflow, набор prompts или повторяющуюся задачу, которую хотите превратить в skill.
2. Сначала проведите короткий, но более человечный intent dialogue, чтобы уточнить реальную job-to-be-done, outputs, exclusions, constraints и те стандарты качества, которые для вас важны.
3. Сначала позвольте `quickstart` прояснить намерение, затем тихо выполнить benchmark scan и reference synthesis. Явные уточнения поднимаются только тогда, когда intent все еще неясен или между маршрутами проектирования есть реальный конфликт.
+14
View File
@@ -160,6 +160,20 @@ flowchart LR
## 快速开始
如果你想直接在 Codex 里使用这个 skill,先安装到全局 skills
```bash
npx -y skills add yaojingang/yao-meta-skill -a codex -g -y
```
如果要安装到全部支持的 agent,把 `-a codex` 换成 `-a '*'`
```bash
npx -y skills add yaojingang/yao-meta-skill -a '*' -g -y
```
安装完成后重启客户端,再用“创建 skill”“改进已有 skill”“评估 skill”“给 skill 增加 eval”这类任务触发 `yao-meta-skill`
1. 先描述你想沉淀成 skill 的 workflow、prompt 集合或重复任务。
2. 先做一轮简短但更有人味的意图对话,把真实任务、输出物、边界、约束和你在意的质量标准说清楚。
3. 先让 `quickstart` 澄清意图,再静默跑 benchmark scan 和 reference synthesis;只有当意图还不清楚,或者设计路线真的冲突时,才会显式继续追问或让你拍板。