AI Engineer World's Fair 2026
Skills are new features: Building Skill-Centric Harness — Yogendra Miraje, FactSet
About this talk
FactSet's Yogendra Miraje argues that reusable agent skills are the new product features and that engineers should build the harnesses that execute them. He describes replacing proprietary blueprints with Anthropic's Agent Skills standard, implementing agentic loops and selective skill loading, routing financial-research and HTML/PDF report-generation tasks through skill descriptions, and governing enterprise skill registries with human-reviewed admission controls.
Chapters
- 0:00Introduction: FactSet, blueprints, and open Agent Skills
- 3:01Skills as features and engineers as harness builders
- 7:02Skill execution and financial report generation
- 9:07Description-based routing and instruction-placement pitfalls
- 14:34Skill admission, human review, and enterprise governance
Talk transcript
- 0:00
[on-hold music] Hi, everyone. I'm Yogi.
- 0:15
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, uh, taking photos.
- 0:34
So that's my X handle, [REDACTED:username]. Um, so let's connect there, and, uh, let's begin.
- 0:49
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.
- 1:10
And when I look back, it was simply a skill in a very naive form.
- 1:17
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
- 1:42
skills fully. And this talk really inspired me to build skill-centric agent, and I'm going to share some of my learnings from the journey.
- 1:55
So a quick raise of hands, how many of you really build skills here?
- 2:02
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, like, built your own harness and added, you know, skills to that.
- 2:19
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, you know, coding harnesses and skills in context of the coding agents and how to write great skills.
- 2:35
Like, so we need that, but today I'm not going to talk about that. What I'm going to focus on is skills in the context of agentic products and how do you really add support for skills in, in your own harness and how to scale it at enterprise scale.
- 2:55
So traditionally, product used to look like this, a surface made of screens,
- 3:01
buttons, forms, and dashboards. The user navigated this UI.
- 3:08
But nowadays, we are seeing more and more these kind of interfaces where agent is at the forefront.
- 3:15
The user either talks to the agent or agent behind the scene is the main decision-maker, helping users navigate your product.
- 3:26
Now, if the agent becomes the main interface for your product, then where do features live?
- 3: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.
- 3:53
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.
- 4:06
So equity research and wealth management are two very important workflows in, uh, finance, and these all used to be the buttons, drop-downs, and screens, and now they are merely skills.
- 4:23
One of the most, uh, underrated thing 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.
- 4:37
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?
- 4:47
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.
- 5:04
The dictionary meaning of skill is the ability to do something well, and what it means is that your model can live with it, without it, but it obviously gonna do better in presence of skill.
- 5:20
A better definition for agent skill is a standardized way to teach AI agents how to do a specific task well.
- 5:29
And a simple skill could contain just, like, a markdown, but a very complex can have multiple references to the files and executable scripts.
- 5:43
The skill.md is the heart of your skill. Name and description in the front matter are the key, uh, 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.
- 6:04
So let's see how to add a skill support in your harness.
- 6:08
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.
- 6:21
If you are running scripts, then obviously you're gonna need either Bash or maybe a code, uh, running sandbox environment. But this is the bare minimum requirement for adding support of skills like in your harness.
- 6:37
A simple skill registry looks like this. So what is a skill registry? It 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,
- 6:56
which is supposed to do a very basic web search for a company and produce a Markdown;
- 7:02
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.
- 7:15
Now, how does really the agent discover the skill? So you have your registry, then you form a skill concaten- concatenating the name description path and put it in your system prompt.
- 7:30
So if you notice, like we are only using the name and description path in, in the s- system prompt and not the skill body, and that's what, what they call about is progressive disclosure.
- 7:44
Agent is going to read the skills and only pick the skills that it is going to read and follow the instructions from there.
- 7:52
And then you need your agentic loop that will run the system prompt. Here, we are keeping track of all the messages in, uh, in that messages array, and we are going to call the model with messages and agent tools.
- 8:09
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 like no tool call, we are just gonna output the end of the, uh, program and going to show the output.
- 8:29
So in this case, what does like agent see in our example? So it sees that the skills that are available, and
- 8:40
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 r- report of NVIDIA, it is going to call company research, do the web searches, and then use the build report skill to produce the report HTML.
- 9:03
And the output looks like something like this.
- 9:07
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.
- 9:28
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.
- 9:51
And it's very important to keep your descriptions aligned to the user request and not a- about the skill itself.
- 10:04
It's also important to keep your descriptions distinct enough so that agent d- 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.
- 10:21
One more like very important difference between like skills when we talk in agentic product context is most of the skills are only mo- module three one because for non-technical user, we are not adding that cognitive load to remember them, uh, to keep the track of all the skills.
- 10:44
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 a skill for estimation analysis or add for fundamentals.
- 10:58
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?
- 11:14
You start simply with narrow use cases, and as you discover more use cases, you start refactoring your skill library.
- 11:23
So in practice, it means that, you know, instead of having an estimate analysis skill, you should have earning preparation skill. Instead of having a skill for news and analysis...
- 11:35
analyst rating skill, you should have a pre-market preference skill.
- 11:41
So we updated our, uh, stack to a new model, and our agent start, uh, failing because it was not obeying the skills. Nothing was changed, not a single line in the skill was changed, but still, it failed.
- 11:59
And when, when we digged under the hood, what was happening, it was that this like new model was very focusing on beginning of the skill. And- We had very critical instruction at the end of the skill.
- 12:15
So that's why it's very important to run evals, and skills without evals are really just wishful thinking.
- 12:24
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, uh, your evals.
- 12:43
So when you have, like, a few skills, shoving them in the system prompt really works, but as soon as you start growing your skill stack, this falls apart. When you have, like, more than ten skill, maybe that's, like, a good point to think-- start thinking about, you know, how can you shortlist the skills that you're gonna add
- 13:06
to the system prompt? 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.
- 13:20
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, uh, library searchable and coherent.
- 13:40
So there are like five aspect of skill library governance, and these are admission, ownership, boundaries, life cycle, and governance. Sounds very enterprise-y, right? But each of these really as- answer, like, a very core question,
- 14:01
and we will get to that in a second. 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.
- 14:19
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.
- 14:34
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 Git for the registries with human in the loop, and this is very analog-logous to how we do the PR review process.
- 14:58
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 a dedicated skill owners, like named maintainers for your skills.
- 15:17
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.
- 15:42
So when you have 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.
- 16:06
Whenever you have a lot of skills, it's important to have the allowlist tools in, in the skills, and your tools are supposed to be access control, and this is very important to keep the correct boundaries around skills.
- 16:30
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.
- 16:46
And routing mechanism doesn't get tuned as you scale. It changes the mechanism itself. And at enterprise scale, the skill library governance is really non-negotiable.
- 17:01
That was my talk. Thank you very much for listening. [audience applauding] [outro jingle]