Intro0:00
Hi everyone. I'm Yogi, I work at FactSet as Principal AI Engineer. We are a financial data and research company. I'm going to talk about how to build skill-centric agentic products, and I'm going to post slides so you don't have to keep taking photos.
So that's my ex handle, YogiNotTheBear.
So let's connect there, and let's begin.
So in the last year's talk in this very conference, I talked about blueprints and what blueprints were really a simple set of steps or recipe that you can hand over to agents so that agent doesn't have to discover its path every time.
And when I look back, it was simply a skill in a very naive form. And a lot has changed since then. Anthropic has shipped skills in last year October and even warned us not to build agents. But on serious note, since Anthropic had already open sourced the skills, there was no point in trying to maintain our own standards.
So we moved away from blueprints and just adopted skills fully. And this talk really inspired me to build skill-centric agent, and I'm going to share some of my learnings from that journey.
So a quick raise of hands, how many of you really build skills here?
So almost all of you. Now lower your hands if you have built that only in context of Claude code and codex, and raise your hand if you have built your own harness and added skills to that.
So okay, so I see a few hands. So reason I'm asking is when I see most of the online discourse, it's about coding harnesses and skills in context of the coding agents and how to write great skills. So we need that, but today I'm not going to talk about that.
Agentic Focus2:39
What I'm going to focus on is skills in the context of agentic products and how to you really add support for skills in your own harness and how to scale it at enterprise scale.
So traditionally, product used to look like this, a surface made of screens, buttons, forms, and dashboards. The user navigated this UI. But nowadays, we are seeing more and more these kind of interfaces where agent is at the forefront.
The user either talks to the agent or agent behind the scene is the main decision maker, helping users navigate your product. Now if the agent becomes the main interface for your product, then where do features live?
New Features3:37
This framing of who, what, and how really helps to answer that question. Prompts define who the agent is, tools define what it can connect to, and skills really tell you how a task gets done. And this is the great place to keep your business logic that shapes your agent's behavior.
So skills are the new features, and you can see this with this example. So equity research and wealth management are two very important workflows in finance, and these all used to be the buttons, dropdowns, and screens, and now they are merely skills.
One of the most underrated things about skills, especially when talking about agentic products, is how it has enabled to build skills for anyone who has good understanding of the product. So if skills are new features and these new features can be shipped by anyone in the company, the question is what's the role of engineer then?
The role of engineer is shifting from shipping features to shipping harnesses. Harnesses that are smooth vehicles for your skills to run. But before diving into that, let's just get to the basics and try to understand what skill is.
Inside a Skill5:04
The dictionary meaning of skill is the ability to do something well. And what it means is that your model can live without it, but it obviously going to do better in presence of skill. A better definition for agent skill is a standardized way to teach AI agents how to do a specific task well.
And a simple skill could contain just like a markdown, but a very complex can have multiple references to the files and executable scripts.
The skill.md is the heart of your skill. Name and description in the front matter are the key things that will help you to discover the skill, and the business logic and instruction goes into the body of the skill, and which will also contain references to the files and scripts.
Skill Registry6:04
So let's see how to add a skill support in your harness. So what do you need to do like a bare minimum skill in your harness? You only need these three things, like skill registry, a system prompt, and a basic file read tool.
If you are running scripts, then obviously you are going to need either Bash or maybe a code running sandbox environment. But this is the bare minimum requirement for adding support of skills like in your harness. A simple skill registry looks like this.
So what is a skill registry? It's just like collection of skills with their name, description, and path. And we are going to see this with three example skills. Company research skill, which is supposed to do a very basic web search for a company and produce a markdown.
A report HTML skill that will turn the markdown into an HTML. A report PDF skill that will take that markdown and turn into PDF.
Now how does really the agent discover the skill? So you have your registry, then you form a skill concatenating the name, description, path, and put it in your system prompt. So if you notice, we are only using the name and description path in the system prompt and not the skill body.
And that's what they call about is progressive disclosure. Agent is going to read the skills and only pick the skills that it is going to read and follow the instructions from there. And then you need your agentic loop that will run this system prompt.
Progressive Disclosure7:40
Here we are keeping track of all the messages
in that messages array, and we are going to call the model with messages and agent tools. And for every turn, it's either looking for like making a tool call, and all the tool calls get appended to the messages.
And if there is no tool call, we are just going to output the end of the
program and going to show the output. So in this case, what does agent see in our example? So it sees that the skills that are available, and then the activation part is when it looks for the company research skill.
For take this example of if you're asking to publish a report of NVDI, it is going to call company research, do the web searches, and then use the build report skill to produce the report HTML. And the output looks like something like this.
Now what are the learnings from some of this is the descriptions are really the routing signals. And what I mean by that, if you noticed, I had like two different skills, report HTML and report PDF, but when I showed the example, you saw only HTML.
Routing Signals9:08
And the reason is I have this description saying that use the skill only when user ask for a PDF report. Focus on this word PDF,right? So that is the trigger word that helps agent to know which skill to pick.
And that's why descriptions are called routing signals. And it's very important to keep your descriptions aligned to the user request and not about the skill itself. It's also important to keep your descriptions distinct enough so that agent doesn't get confused.
And make sure don't let your skills get stale because these are the reasons why your skills don't get triggered. One more very important difference between skills when we talk in agentic product context is most of the skills are only model driven.
Because for non-technical users, we are not adding that cognitive load to remember them to keep the track of all the skills.
Another learning that I had was cut by user intent and not by data model. So when I started building the skill library, I had very narrow use cases. So add skill for estimation analysis or add for fundamentals, but I got real use cases.
And those use cases were not reflecting the data model. Those were really about the real use cases, and I had to refactor this multiple times. And that is okay,right? You start simply with narrow use cases, and as you discover more use cases, you start refactoring your skill library.
So in practice, it means that instead of having an estimate analysis skill, you should have earning preparation skill. Instead of having a skill for news and analyst
rating skill, you should have a pre-market preparation skill.
So we updated our
Evals Needed11:42
stack to a new model, and our agent start failing because it was not obeying the skills. Nothing was changed, not a single line in the skill was changed, but still it failed. And when we digged under the hood what was happening, it was that this new model was very focusing on beginning of the skill.
And we had very critical instruction at the end of the skill. So that's why it's very important to run evals, and skills without evals are really just wishful thinking. Skills are not the documentation, and a lot of people treat them like that, and skills are really the contracts versioned to a model.
So whenever you're upgrading a model, make sure to rerun your evals.
So when you have a few skills, showing them in the system prompt really works, but as soon as you start growing your skill stack, this falls apart. When you have more than 10 skills, maybe that's a good point to start thinking about how can you shortlist the skills that you're going to add to the system prompt.
Scaling Up12:44
And this could mean just like having embeddings and have similarity search and shortlist those skills or a smaller model that can shortlist the skills and add to the system prompt. The real trouble really starts when you have hundreds of skills.
At that point, you really need hierarchy of skills and metadata filters and the governance in the place to keep your library searchable and coherent.
So there are like five aspects of skill library governance, and these are admission, ownership, boundaries, life cycle, and coherence. Sounds very enterprise-y,right? But each of these really answer like a very core question, and we will get to that in a second.
Governance13:41
But when you hear governance, it really doesn't need to be a red tape bottleneck. It really depends on how you're implementing it, how much automation is in place with proper human in the loop. And the good news is that we can borrow a lot of good practices from code and apply them to the skills.
And these coding practices like has worked for decades.
So what does admission even mean? What it means that should this skill even exist, or it should go to an already existing skill. And in practice, we build automated get for the registries with human in the loop, and this is very analogous to how we do the PR review process.
Who maintains your skill? Just like how features are maintained by application teams, we need skills to be maintained by application teams. And like code owners, we need to have dedicated skill owners like named maintainers for your skills.
What happens to the skill over time? You need to have semantic version of the skills, and also whenever you're getting rid of skills, you need to have deprecation warnings and make sure that your changes are reflected in the change logs.
So when you have a large number of skills, the library should still make sense. And just like features are cohesive in a good product, we need to make sure that we are conducting periodic audits and skill validation checks so that your skills would really make sense.
Whenever you have a lot of skills, it's important to have the allowlist tools in the skills, and your tools are supposed to be access control. And this is very important to keep the correct boundaries around skills.
So what are the main takeaways? The main takeaways are skills are the features in your agentic products. Our role is shifting from features that is shipping features to shipping harnesses. And routing mechanism doesn't get tuned as you scale.
Takeaways16:31
It changes the mechanism itself. And at enterprise scale, the skill library governance is really non-negotiable.
That was my talk. Thank you very much for listening.





