<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Skills library on core-agent</title><link>https://go-steer.github.io/core-agent/docs/skills-library/</link><description>Recent content in Skills library on core-agent</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://go-steer.github.io/core-agent/docs/skills-library/index.xml" rel="self" type="application/rss+xml"/><item><title>cli-setup skill</title><link>https://go-steer.github.io/core-agent/docs/skills-library/cli-setup/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://go-steer.github.io/core-agent/docs/skills-library/cli-setup/</guid><description>&lt;p&gt;The &lt;code&gt;cli-setup&lt;/code&gt; skill walks a user through configuring &lt;code&gt;core-agent&lt;/code&gt; for interactive use. It&amp;rsquo;s bundled in &lt;a href="https://github.com/go-steer/core-agent/tree/main/SKILLS/cli-setup"&gt;&lt;code&gt;SKILLS/cli-setup/&lt;/code&gt;&lt;/a&gt; at the repo root.&lt;/p&gt;
&lt;h2 id="what-it-covers"&gt;What it covers&lt;/h2&gt;
&lt;p&gt;The four customization layers, in order:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Provider + model&lt;/strong&gt; — &lt;code&gt;.agents/config.json&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Personality&lt;/strong&gt; — &lt;code&gt;AGENTS.md&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Skills&lt;/strong&gt; — &lt;code&gt;.agents/skills/&amp;lt;name&amp;gt;/SKILL.md&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Tools&lt;/strong&gt; — built-ins + MCP servers&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Plus permission posture (&lt;code&gt;ask&lt;/code&gt; / &lt;code&gt;allow&lt;/code&gt; / &lt;code&gt;yolo&lt;/code&gt; modes, allowlist patterns) and the verify-it-works step.&lt;/p&gt;
&lt;h2 id="triggers"&gt;Triggers&lt;/h2&gt;
&lt;p&gt;The skill&amp;rsquo;s description lists the verbatim phrasings the agent will match. The most common:&lt;/p&gt;</description></item><item><title>autonomous-setup skill</title><link>https://go-steer.github.io/core-agent/docs/skills-library/autonomous-setup/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://go-steer.github.io/core-agent/docs/skills-library/autonomous-setup/</guid><description>&lt;p&gt;The &lt;code&gt;autonomous-setup&lt;/code&gt; skill walks a user through configuring an unattended &lt;code&gt;core-agent&lt;/code&gt; — single-agent monitor or multi-agent team. Bundled in &lt;a href="https://github.com/go-steer/core-agent/tree/main/SKILLS/autonomous-setup"&gt;&lt;code&gt;SKILLS/autonomous-setup/&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="what-it-covers"&gt;What it covers&lt;/h2&gt;
&lt;p&gt;A 9-step runbook:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Decide if autonomous actually fits (vs interactive + attach)&lt;/li&gt;
&lt;li&gt;Define the goal crisply&lt;/li&gt;
&lt;li&gt;Pick single-agent or multi-agent shape&lt;/li&gt;
&lt;li&gt;Bound the run with budget caps&lt;/li&gt;
&lt;li&gt;Write &lt;code&gt;AGENTS.md&lt;/code&gt; with unattended discipline&lt;/li&gt;
&lt;li&gt;Set headless permission posture&lt;/li&gt;
&lt;li&gt;Wire durable sessions&lt;/li&gt;
&lt;li&gt;Write the Go driver&lt;/li&gt;
&lt;li&gt;Test end-to-end before deployment&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The runbook is non-linear; the agent picks references based on which path the user is on.&lt;/p&gt;</description></item><item><title>library-embedding skill</title><link>https://go-steer.github.io/core-agent/docs/skills-library/library-embedding/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://go-steer.github.io/core-agent/docs/skills-library/library-embedding/</guid><description>&lt;p&gt;The &lt;code&gt;library-embedding&lt;/code&gt; skill walks a Go developer through embedding &lt;code&gt;core-agent&lt;/code&gt; in their own binary. Bundled in &lt;a href="https://github.com/go-steer/core-agent/tree/main/SKILLS/library-embedding"&gt;&lt;code&gt;SKILLS/library-embedding/&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="what-it-covers"&gt;What it covers&lt;/h2&gt;
&lt;p&gt;A 5-step runbook:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Confirm the use case (CLI use vs library use)&lt;/li&gt;
&lt;li&gt;Show the minimal embed (20-line &amp;ldquo;hello world&amp;rdquo;)&lt;/li&gt;
&lt;li&gt;Identify which extension point the user needs&lt;/li&gt;
&lt;li&gt;Show a full worked example for non-trivial embeddings&lt;/li&gt;
&lt;li&gt;Discuss long-term maintenance (&lt;code&gt;go.mod&lt;/code&gt; pinning, breaking-change policy)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The extension points covered include &lt;code&gt;Prompter&lt;/code&gt;, custom tools, custom &lt;code&gt;Provider&lt;/code&gt;, custom &lt;code&gt;session.Service&lt;/code&gt;, &lt;code&gt;Compactor&lt;/code&gt; / &lt;code&gt;Checkpointer&lt;/code&gt;, &lt;code&gt;BackgroundAgentManager&lt;/code&gt;, and &lt;code&gt;RemoteAgentSpawner&lt;/code&gt;.&lt;/p&gt;</description></item></channel></rss>