Skip to content

Commit 61d47fe

Browse files
committed
Docs for skill install
1 parent 246f810 commit 61d47fe

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

css/site3.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,9 @@ article h3, article h4 {
375375
color: var(--body-color2);
376376
font-weight: normal;
377377
}
378+
article h3.install-option {
379+
font-weight: 700;
380+
}
378381
::placeholder {
379382
color: var(--fg-placeholder);
380383
opacity: 1;

docs/agents/skills.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -163,31 +163,31 @@ <h2 id="available">Available skill</h2>
163163

164164
<h2 id="installation">Installation</h2>
165165

166-
<h3 id="clone-symlink">Option A - Clone and symlink (recommended)</h3>
167-
<pre class="code">
166+
<h3 class="install-option" id="clone-symlink">Option A - Clone and symlink (recommended)</h3>
167+
<pre class="sh">
168168
git clone https://github.com/ebean-orm/skills.git ~/.agents/ebean-skills
169169
mkdir -p ~/.agents/skills
170170
ln -sf ~/.agents/ebean-skills/ebean-orm ~/.agents/skills/ebean-orm
171171
</pre>
172172
<p>To update:</p>
173-
<pre class="code">
173+
<pre class="sh">
174174
cd ~/.agents/ebean-skills && git pull
175175
</pre>
176176

177-
<h3 id="copy-install">Option B - Clone and copy into the skills directory</h3>
178-
<pre class="code">
177+
<h3 class="install-option" id="copy-install">Option B - Clone and copy into the skills directory</h3>
178+
<pre class="sh">
179179
git clone https://github.com/ebean-orm/skills.git /tmp/ebean-skills
180180
mkdir -p ~/.agents/skills
181181
cp -r /tmp/ebean-skills/ebean-orm ~/.agents/skills/ebean-orm
182182
rm -rf /tmp/ebean-skills
183183
</pre>
184184

185-
<h3 id="project-level">Option C - Project-level installation</h3>
185+
<h3 class="install-option" id="project-level">Option C - Project-level installation</h3>
186186
<p>
187187
To make the skill available to everyone working on a specific project, copy it into a checked-in
188188
<code>.agents/skills</code> directory.
189189
</p>
190-
<pre class="code">
190+
<pre class="sh">
191191
# from your project root
192192
git clone https://github.com/ebean-orm/skills.git /tmp/ebean-skills
193193
mkdir -p .agents/skills
@@ -200,7 +200,7 @@ <h2 id="verification">Verification</h2>
200200
<p>
201201
After installation, verify that the skill is visible to your coding tool. In pi:
202202
</p>
203-
<pre class="code">
203+
<pre class="sh">
204204
/skills
205205
</pre>
206206
<p>

0 commit comments

Comments
 (0)