{"id":65,"date":"2026-07-26T17:41:05","date_gmt":"2026-07-26T17:41:05","guid":{"rendered":"https:\/\/www.dobryakov.net\/blog\/65\/"},"modified":"2026-07-26T18:55:54","modified_gmt":"2026-07-26T18:55:54","slug":"skill-onboarding-governance","status":"publish","type":"post","link":"https:\/\/www.dobryakov.net\/blog\/65\/","title":{"rendered":"Why AI skills need onboarding if you can just copy them into the folder"},"content":{"rendered":"<p>Because copying markdown into a folder is not installing a package. It is a hire: a new slice of behavior enters the assistant and will collide with its neighbors tomorrow. A skill here is an instruction pack for an AI assistant (Claude Code \/ Cursor): frontmatter, rules, declared reads\/writes\/calls. While the intake path is empty, every new file under <code>.claude\/skills\/<\/code> is a silent hire with no interview and no record in the file.<\/p>\n<p><!--more--><\/p>\n<p>I&#x27;m building onboarding for skills. &quot;Grigory, are you serious? Just copy the skill into the project folder.&quot;<\/p>\n<p>Not quite.<\/p>\n<p>Three skills \u2014 elegant. Thirty \u2014 behavior starts drifting. The assistant writes in a different style today than yesterday. A command fires but does the wrong thing. A shared context file disappears. No stack trace, no exception, no log line. Just different behavior, and nobody can say which commit flipped it.<\/p>\n<p>Skills do not collide at the type level. They collide in behavior \u2014 hours or days after installation. Before they meet their neighbors, the conflict is invisible: each skill can be covered by evals and work flawlessly in isolation. That is why &quot;just copy it&quot; sounds reasonable \u2014 and why it breaks later.<\/p>\n<h2>Why this is a real problem<\/h2>\n<p>The pattern repeats:<\/p>\n<ol>\n<li><strong>Two skills both claim &quot;I write LinkedIn posts.&quot;<\/strong> The assistant picks one nondeterministically. Style drifts across publications.<\/li>\n<li><strong>Two skills write to the same shared state file.<\/strong> Last-write-wins quietly destroys accumulated context.<\/li>\n<li><strong>A new skill steps into a neighbor&#x27;s domain.<\/strong> You find out when downstream stops getting what it expects.<\/li>\n<li><strong>One skill calls four others freely.<\/strong> One edit propagates through the chain, burns 5\u00d7 the tokens, and breaks determinism.<\/li>\n<li><strong>Two &quot;finalizers&quot; both claim the last word.<\/strong> The artifact oscillates between their styles.<\/li>\n<\/ol>\n<p>These are not bugs in individual skills. The conflict happens where the skill meets its neighbors. Merging a third-party skill pack like <code>npm install<\/code> is hiring someone with no interview \u2014 and you pay for it not at merge time, but a week later, when the regression is already in daily flow.<\/p>\n<p>The metric that makes the hassle worth it: a conflict caught <strong>before<\/strong> the skill becomes part of how the team works.<\/p>\n<h2>What that looks like in practice<\/h2>\n<p>I built a skill that onboards other skills \u2014 <a href=\"https:\/\/github.com\/dobryakov\/ai-agent-onboarding\">ai-agent-onboarding<\/a>. Not because &quot;process says so,&quot; but because otherwise there is no moment where declared behavior is checked against observed behavior before the skill sits next to its neighbors.<\/p>\n<p>You type <code>\/onboard fb-post-writer<\/code>. The <code>onboard<\/code> skill reads <code>SKILL.md<\/code>, runs detectors, puts the candidate through a sandbox, collects findings, shows them to you, and only after confirmation writes a card into <code>.onboarding-registry\/<\/code>.<\/p>\n<p>The model is borrowed from HR for a reason. Hiring already has language for what skills still lack:<\/p>\n<table>\n<thead>\n<tr>\n<th>Hiring<\/th>\n<th>Skill onboarding<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>R\u00e9sum\u00e9<\/td>\n<td><code>SKILL.md<\/code> + frontmatter<\/td>\n<\/tr>\n<tr>\n<td>Interview<\/td>\n<td>Sandbox run on probe prompts<\/td>\n<\/tr>\n<tr>\n<td>Security clearance<\/td>\n<td>Levels L1\u2013L4<\/td>\n<\/tr>\n<tr>\n<td>Probation<\/td>\n<td>First N calls under closer watch<\/td>\n<\/tr>\n<tr>\n<td>Reporting line<\/td>\n<td>Domain finalizer<\/td>\n<\/tr>\n<tr>\n<td>Exit interview<\/td>\n<td>Archive record with removal reason<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The point of the sandbox interview: clearance is assigned by what the skill actually does, not by what it claims. A skill that advertises L2 but edits shared state is reclassified to L3 \u2014 because the harness will give it whatever <code>settings.json<\/code> already allows. Without that step you trust the r\u00e9sum\u00e9. With it you watch what the hire actually does on probation.<\/p>\n<p>In parallel, six conflict detectors (domain usurpation, tool collision, trigger overlap, output-path collision, spaghetti interactions, authority conflict) answer another why: where exactly the new skill will cross the ones already living in the project. Severity has three levels only \u2014 <code>block<\/code> \/ <code>warn<\/code> \/ <code>info<\/code>. More levels stop being a scale and become vibes.<\/p>\n<p>And one why in the other direction: the registry is <strong>advisory<\/strong>, not enforcement. It writes a card and recommends patches, but it does not block runtime. Hard-quarantining a vendor skill costs more than an ignored warning. Onboarding exists so the decision is conscious \u2014 not so automation forbids the team from working.<\/p>\n<p>The registry lives at <code>.onboarding-registry\/<\/code> in the project root, not under <code>.claude\/<\/code>: skills arrive from places the team does not control; the project&#x27;s opinion about them is versioned separately from the harness.<\/p>\n<p>Full methodology, tables, failure modes: <a href=\"https:\/\/www.dobryakov.net\/howto\/skill-onboarding-governance.html\">Skill onboarding governance howto<\/a>.<\/p>\n<h2>Where the motive fails<\/h2>\n<ul>\n<li><strong>Advisory does not block.<\/strong> A team can ignore the report and get the same conflict. There is no protection against indifference \u2014 that is a conscious choice for reversibility.<\/li>\n<li><strong>Detectors produce false positives<\/strong> on legitimate domain overlap (two writer skills for different platforms). <code>policies.md<\/code> helps, but it is manual work.<\/li>\n<li><strong>Lazy intake.<\/strong> Skills installed before <code>onboard<\/code> existed land in the registry as <code>lazy_intake: true<\/code> \u2014 incomplete data, no sandbox interview. Without an explicit re-onboarding they stay half-blind.<\/li>\n<li><strong>Sandbox \u2260 production.<\/strong> A skill that needs a live MCP to a private service degrades to a &quot;paper interview.&quot; Honest fallback; weaker findings.<\/li>\n<li><strong>L4 without a reviewer.<\/strong> The &quot;modifies the harness&quot; level escalates severity, but if nobody owns those changes, escalation becomes noise.<\/li>\n<\/ul>\n<p>Onboarding only pays off where the team will look at findings. If markdown still gets dropped into the folder with a shrug, process will not save you.<\/p>\n<h2>Who this &quot;why&quot; is for<\/h2>\n<p>CTOs, Heads of AI, tech leads, and architects scaling vibe-coding across a team and already pulling in third-party skill packs \u2014 vendor, shared library, personal toolbox. The question is not how to make a pretty registry. The question is why you let new assistant behavior land with no interview when human hiring already has a process.<\/p>\n<p>The neighboring layer is rules for the code the model writes: <a href=\"https:\/\/www.dobryakov.net\/howto\/cursor-rules-governance.html\">Cursor rules as governance<\/a>. That howto covers standards on model output. This one covers why intake discipline for a new component of the assistant&#x27;s own behavior is worth having. You usually need both.<\/p>\n<h2>Bottom line<\/h2>\n<p>A skill enters the project the way a person is hired: r\u00e9sum\u00e9, interview, probation, a record in the file. Not a discipline of prohibition \u2014 a discipline of introduction. Onboarding is not there because &quot;enterprise says so.&quot; It is there because without it you have no moment when the conflict is still visible \u2014 before it becomes &quot;behavior just changed.&quot;<\/p>\n<p>Repo: <a href=\"https:\/\/github.com\/dobryakov\/ai-agent-onboarding\">github.com\/dobryakov\/ai-agent-onboarding<\/a><\/p>\n<p>Howto: <a href=\"https:\/\/www.dobryakov.net\/howto\/skill-onboarding-governance.html\">dobryakov.net\/howto\/skill-onboarding-governance.html<\/a><\/p>\n<p><!-- ilj-pilot-related --><\/p>\n<p>Related: <a href=\"https:\/\/www.dobryakov.net\/blog\/71\/\">book-as-context<\/a> for subject-matter grounding, and agent security when a <a href=\"https:\/\/www.dobryakov.net\/blog\/63\/\">system prompt<\/a> is not enough.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Three skills are fine. Thirty \u2014 style drifts, shared state gets overwritten, behavior changes with no stack and no log line. Dropping markdown into `.claude\/skills\/` is a hire with no interview. Onboarding exists so you catch the conflict before it hits daily flow \u2014 not because process looks nice.<\/p>\n","protected":false},"author":0,"featured_media":66,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24,31],"tags":[26,30,29,35,34],"class_list":["post-65","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-engineering","category-governance","tag-ai-agents","tag-claude-code","tag-enterprise","tag-onboarding","tag-skills"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.dobryakov.net\/blog\/65\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Grigoriy Dobryakov - IT+AI Blog - Grigoriy Dobryakov&#039;s blog: management, development and testing\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Why AI skills need onboarding if you can just copy them into the folder\" \/>\n\t\t<meta property=\"og:description\" content=\"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.dobryakov.net\/blog\/65\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-07-26T17:41:05+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-26T18:55:54+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Why AI skills need onboarding if you can just copy them into the folder\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#blogposting\",\"name\":\"Why AI skills need onboarding if you can just copy them into the folder\",\"headline\":\"Why AI skills need onboarding if you can just copy them into the folder\",\"author\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/author\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/skill-onboarding-governance-1.jpg\",\"width\":1200,\"height\":630,\"caption\":\"Why AI skills need onboarding if you can just copy them into the folder\"},\"datePublished\":\"2026-07-26T17:41:05+00:00\",\"dateModified\":\"2026-07-26T18:55:54+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#webpage\"},\"articleSection\":\"AI Engineering, Governance, AI agents, Claude Code, enterprise, onboarding, skills\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/ai-engineering\\\/#listItem\",\"name\":\"AI Engineering\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/ai-engineering\\\/#listItem\",\"position\":2,\"name\":\"AI Engineering\",\"item\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/ai-engineering\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#listItem\",\"name\":\"Why AI skills need onboarding if you can just copy them into the folder\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#listItem\",\"position\":3,\"name\":\"Why AI skills need onboarding if you can just copy them into the folder\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/category\\\/ai-engineering\\\/#listItem\",\"name\":\"AI Engineering\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#organization\",\"name\":\"Grigoriy Dobryakov - IT+AI Blog\",\"description\":\"Grigoriy Dobryakov's blog: management, development and testing\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#webpage\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/\",\"name\":\"Why AI skills need onboarding if you can just copy them into the folder\",\"description\":\"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/author\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/author\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/skill-onboarding-governance-1.jpg\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#mainImage\",\"width\":1200,\"height\":630,\"caption\":\"Why AI skills need onboarding if you can just copy them into the folder\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/65\\\/#mainImage\"},\"datePublished\":\"2026-07-26T17:41:05+00:00\",\"dateModified\":\"2026-07-26T18:55:54+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/\",\"name\":\"Grigoriy Dobryakov - IT+AI Blog\",\"description\":\"Grigoriy Dobryakov's blog: management, development and testing\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dobryakov.net\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Why AI skills need onboarding if you can just copy them into the folder","description":"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.","canonical_url":"https:\/\/www.dobryakov.net\/blog\/65\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.dobryakov.net\/blog\/65\/#blogposting","name":"Why AI skills need onboarding if you can just copy them into the folder","headline":"Why AI skills need onboarding if you can just copy them into the folder","author":{"@id":"https:\/\/www.dobryakov.net\/blog\/author\/#author"},"publisher":{"@id":"https:\/\/www.dobryakov.net\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.dobryakov.net\/blog\/wp-content\/uploads\/2026\/07\/skill-onboarding-governance-1.jpg","width":1200,"height":630,"caption":"Why AI skills need onboarding if you can just copy them into the folder"},"datePublished":"2026-07-26T17:41:05+00:00","dateModified":"2026-07-26T18:55:54+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.dobryakov.net\/blog\/65\/#webpage"},"isPartOf":{"@id":"https:\/\/www.dobryakov.net\/blog\/65\/#webpage"},"articleSection":"AI Engineering, Governance, AI agents, Claude Code, enterprise, onboarding, skills"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dobryakov.net\/blog\/65\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.dobryakov.net\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/category\/ai-engineering\/#listItem","name":"AI Engineering"}},{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/category\/ai-engineering\/#listItem","position":2,"name":"AI Engineering","item":"https:\/\/www.dobryakov.net\/blog\/category\/ai-engineering\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/65\/#listItem","name":"Why AI skills need onboarding if you can just copy them into the folder"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/65\/#listItem","position":3,"name":"Why AI skills need onboarding if you can just copy them into the folder","previousItem":{"@type":"ListItem","@id":"https:\/\/www.dobryakov.net\/blog\/category\/ai-engineering\/#listItem","name":"AI Engineering"}}]},{"@type":"Organization","@id":"https:\/\/www.dobryakov.net\/blog\/#organization","name":"Grigoriy Dobryakov - IT+AI Blog","description":"Grigoriy Dobryakov's blog: management, development and testing","url":"https:\/\/www.dobryakov.net\/blog\/"},{"@type":"WebPage","@id":"https:\/\/www.dobryakov.net\/blog\/65\/#webpage","url":"https:\/\/www.dobryakov.net\/blog\/65\/","name":"Why AI skills need onboarding if you can just copy them into the folder","description":"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.dobryakov.net\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.dobryakov.net\/blog\/65\/#breadcrumblist"},"author":{"@id":"https:\/\/www.dobryakov.net\/blog\/author\/#author"},"creator":{"@id":"https:\/\/www.dobryakov.net\/blog\/author\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.dobryakov.net\/blog\/wp-content\/uploads\/2026\/07\/skill-onboarding-governance-1.jpg","@id":"https:\/\/www.dobryakov.net\/blog\/65\/#mainImage","width":1200,"height":630,"caption":"Why AI skills need onboarding if you can just copy them into the folder"},"primaryImageOfPage":{"@id":"https:\/\/www.dobryakov.net\/blog\/65\/#mainImage"},"datePublished":"2026-07-26T17:41:05+00:00","dateModified":"2026-07-26T18:55:54+00:00"},{"@type":"WebSite","@id":"https:\/\/www.dobryakov.net\/blog\/#website","url":"https:\/\/www.dobryakov.net\/blog\/","name":"Grigoriy Dobryakov - IT+AI Blog","description":"Grigoriy Dobryakov's blog: management, development and testing","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.dobryakov.net\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Grigoriy Dobryakov - IT+AI Blog - Grigoriy Dobryakov's blog: management, development and testing","og:type":"article","og:title":"Why AI skills need onboarding if you can just copy them into the folder","og:description":"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.","og:url":"https:\/\/www.dobryakov.net\/blog\/65\/","article:published_time":"2026-07-26T17:41:05+00:00","article:modified_time":"2026-07-26T18:55:54+00:00","twitter:card":"summary_large_image","twitter:title":"Why AI skills need onboarding if you can just copy them into the folder","twitter:description":"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding."},"aioseo_meta_data":{"post_id":"65","title":"Why AI skills need onboarding if you can just copy them into the folder","description":"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"Why AI skills need onboarding if you can just copy them into the folder","og_description":"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.","og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":"Why AI skills need onboarding if you can just copy them into the folder","twitter_description":"Why treat AI skills like hires, not npm install: behavior collisions, not type errors; clearance by observed behavior; advisory registry. Reference: ai-agent-onboarding.","schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-07-26 17:41:24","updated":"2026-07-26 19:01:07"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.dobryakov.net\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.dobryakov.net\/blog\/category\/ai-engineering\/\" title=\"AI Engineering\">AI Engineering<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tWhy AI skills need onboarding if you can just copy them into the folder\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.dobryakov.net\/blog"},{"label":"AI Engineering","link":"https:\/\/www.dobryakov.net\/blog\/category\/ai-engineering\/"},{"label":"Why AI skills need onboarding if you can just copy them into the folder","link":"https:\/\/www.dobryakov.net\/blog\/65\/"}],"_links":{"self":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/posts\/65","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/comments?post=65"}],"version-history":[{"count":2,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/posts\/65\/revisions"}],"predecessor-version":[{"id":73,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/posts\/65\/revisions\/73"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/media\/66"}],"wp:attachment":[{"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/media?parent=65"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/categories?post=65"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dobryakov.net\/blog\/wp-json\/wp\/v2\/tags?post=65"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}