Skip to main content

Tag: Featured

An AI agent's context window filling with tokens as knowledge overhead competes with the space left for the model to reason.

The Context Window Is the Constraint

As enterprises move from chat assistants to production agent systems, a quiet architectural truth is surfacing: the binding constraint on an agent is not the intelligence of the model. It is the context window — and the context window is denominated in tokens.

Every rule, definition, and governance constraint an agent must operate under has to enter the model as tokens. There is no side channel. This piece traces a single causal chain that most knowledge-management strategies ignore: how text becomes tokens, why tokens govern the real economics of inference through the key-value cache, and why the format you choose to represent enterprise knowledge is therefore both an efficiency decision and a reasoning-quality decision — not a documentation one. It is the argument behind SIGN™ (Sigil Intelligence Graph Notation), an open specification originated at Career Highways, illustrated here with measurements against our full ~200-document canon.

Tokens are the unit of consumption

A language model cannot operate on letters or words directly; it operates on numbers. Before any text reaches the model it is segmented into tokens — typically subword chunks — and each token maps to an integer ID drawn from the model’s fixed vocabulary. Common words often become a single token; rarer strings are assembled from smaller pieces. In English, a token averages roughly three-quarters of a word, though this varies substantially with language, code, and numeric content and should be treated as a rule of thumb rather than a constant.

The consequence is that structure is not free. Punctuation, delimiters, and repeated field names are all tokenized exactly like meaningful content. A model is, mechanically, a next-token predictor rolling forward one vocabulary entry at a time — and it pays, in every sense, for each token it must carry. The question ‘how do we represent knowledge for an agent?’ is, underneath, the question ‘how many tokens does that knowledge cost, on every single call?’

The KV cache: why token count governs cost, latency, and memory

To understand why token count is so consequential, look at how autoregressive generation actually runs. The core operation of attention projects each token into a query, a key, and a value. To generate the next token, the model compares the current query against the keys of every prior token and blends their values accordingly. Naively, producing a sequence of length N would recompute every token’s projections at every step — work that scales with the square of the sequence length.

The standard optimization is the key-value cache. A token’s key and value never change once it is in the sequence, so they are computed once and stored. Each new step then processes only the single new token and reads the rest from cache, collapsing per-step work and making generation practical. Essentially every production inference stack relies on it.

The catch is where that cache lives and how it grows. The KV cache must sit in fast accelerator memory for the entire lifetime of a request, and its size grows linearly with the number of tokens in context and linearly with the number of concurrent requests. Model weights are a fixed, one-time cost; the KV cache is a per-request, per-token cost that stacks. On long contexts under real concurrency, it can rival or exceed the memory footprint of the weights themselves, and it is frequently the true reason a deployment runs out of memory or slows down — not model size, but the aggregate weight of the caches.

This reframes what a token in the context window costs. It is not merely input billed once. Each token is persistent accelerator memory held for the duration of the request, and it contributes to latency. And critically, every token spent on knowledge overhead is a token unavailable for the model’s own reasoning — a point we return to below. In an agentic enterprise running many calls per day, the representation of knowledge becomes a first-order driver of cost, throughput, hardware ceiling, and the room left to think.

The representation tax

If tokens are the currency and the KV cache is the reason they are expensive, then the encoding of enterprise knowledge is an efficiency lever hiding in plain sight. The formats teams reach for were each designed for a different consumer, and none for the agent context window as the primary unit of consumption.

Approach Limitation for agent knowledge
JSON Machine-readable but token-heavy. A large share of tokens is structural noise — braces, quotes, and field names repeated on every record — carrying no domain meaning. Weak at expressing relationships, constraints, or inference.
Raw markdown Token-efficient but structurally untyped. An agent cannot reliably distinguish a hard constraint from a property or a description, and there is no relationship model.
RDF / OWL Semantically rigorous but adoption-hostile: verbose syntax, heavy toolchain, and sparse presence in model training data, so models are not fluent in it.
Prompt engineering Fast but ungoverned — unversioned, unauditable, and non-reusable. It does not survive scale.

The gap is not a syntax preference. It is that typed, governed knowledge and low token cost have been treated as mutually exclusive. Structure-rich formats are expensive; cheap formats are unstructured. That trade-off is the tax.

What it costs across a real corpus

SIGN is a knowledge-contract notation designed against the agent context window as its target. Its central move is the use of sigils — compact, single-glyph markers — to carry type and structure densely, so that entities, properties, relationships, constraints, inference rules, and provenance can be expressed with the fidelity of a knowledge format without the structural-noise premium a serialization format like JSON imposes.

Rather than lean on a single hand-picked document, we measured the effect across our entire canon — 198 documents with one-to-one markdown-to-SIGN coverage. Encoding the corpus in SIGN rather than markdown reduces it from roughly 372,000 tokens to roughly 275,000: about a 26% reduction against a format that is already lean, and a far larger reduction against the JSON many teams would otherwise inject.

Corpus Markdown SIGN Savings
Canon core (44 docs) 109,600 87,900 20%
Tenant canon (154 docs) 262,200 187,100 29%
Combined (198 docs) 371,700 275,000 26%

The corpus-level average hides a more useful signal: SIGN’s™ savings track structural density. Prose-dominant material compresses least — general commons and domain documents land around 85% of their markdown size — because there is little structural overhead to remove. Highly structured, governance-heavy material compresses most: our top-level governance charter falls to roughly 45% of its markdown size, since that is exactly the content where typed declarations, relationships, and constraints would otherwise carry the heaviest scaffolding. The rule of thumb for builders: the more typed and relational your knowledge, the more a purpose-built notation returns.

A note on measurement

These figures are estimates from modern subword tokenizers, not official counts from a specific production model. We bracketed the corpus with two independent tokenizers; they agree to within about 0.6%, and tokenizer choice does not move the comparison. As a known property of this class of tokenizer, absolute counts tend to run somewhat below a frontier model’s own tokenizer on prose — plausibly on the order of 10–20% higher in the real model, more on heavily structured text — so treat the absolute totals as a floor and the ratios as the durable result. What is invariant under any tokenizer is the comparison itself: the format runs about three-quarters the size of markdown overall, and the savings concentrate in structured content.

From token savings to reasoning headroom

Efficiency is only half the story, and arguably the smaller half. The more consequential effect is on how well an agent can reason over its knowledge — and this arrives through two distinct channels.

The first is representational. Markdown gives an agent text to retrieve; a typed notation gives it structure to reason over. When a constraint is explicitly marked as a constraint, a relationship as a governed predicate, and a fact as asserted-versus-inferred with its provenance attached, the agent is not left inferring the shape of the knowledge from prose formatting. It can distinguish a rule it must enforce from a property it may use, traverse declared relationships rather than pattern-match across paragraphs, and weight a fact by its derivation rather than by how confidently it happens to be phrased. Each of these removes a class of misread that untyped text invites — the failure mode where an agent treats a hard mutex as a soft suggestion, or an inferred claim as ground truth.

The second channel is budgetary, and it ties directly back to the KV cache. Modern reasoning models do their best work by spending tokens to think — intermediate reasoning, self-checking, working through constraints. That reasoning competes for the same finite context window, and the same cache memory, as the knowledge you inject. Every token reclaimed from knowledge overhead is a token returned to the model’s reasoning budget. A roughly one-quarter reduction in the resident cost of the canon is not merely cheaper; it widens the headroom in which the model can actually reason before it hits the wall — and it does so on every invocation, so the effect compounds with agent volume rather than being paid once.

We want to be precise about the nature of this claim. The representational and budgetary arguments are mechanistic — they follow from how typed knowledge and finite context windows work — not from a controlled reasoning-quality benchmark, which we have not yet run. The honest next step is measurement: paired evaluations that hold the model and task fixed while varying only the knowledge encoding, scoring constraint adherence, correct inference, and error rate. The token economics are measured; the reasoning uplift is, for now, a well-grounded hypothesis we intend to test rather than a number we will quote.

Implications for builders

For CTOs and researchers standing up agent platforms, the practical takeaway is to treat knowledge representation as an infrastructure decision measured in tokens, not a formatting choice — and to recognize that the same decision governs how much room the model has to think. Instrument the token cost of your injected knowledge, treat that cost as recurring KV-cache pressure rather than a one-time input charge, and prefer representations that hold typing and governance without the structural-noise premium.

SIGN™ is one answer, published as an open specification under the Apache 2.0 license so it can be evaluated, measured, and adopted on its merits. Whatever notation a team lands on, the underlying discipline is the same: in the agentic enterprise, the context window is the constraint, tokens are how you spend against it, and the format of your knowledge determines both what you pay and how well your agents can reason within what remains.

Layered stack diagram of a company operating system built on AI — engine, connectors, a governed core of canon and rules, a toolkit of skills, standing operations, and the cockpit screen at the top.

The CEO Operating System

The old investing adage is to make money while you sleep. I want more than that. I want the company to run while I sleep — to our standards, our context, our policies — whether the work in front of it is done by a person, a person with AI, or automated outright.

Most people treat AI like a vending machine: feed it a question, take the answer, walk away. I built mine to run the company.

Over the past month I have assembled what I can only describe as an operating system: a layered stack, built on Claude, that does the work a company generates so I can spend my time on the work only a CEO can do. It has the same shape as the operating system on the device you are reading this on — and that shape is the point. I will walk it layer by layer and show how each one is built.

What an operating system is for

An operating system earns its keep by doing two things at once. It abstracts the machine, so you work at a high level instead of flipping bits. And it governs access, so the things that must be reliable stay reliable no matter what runs on top.

Hold onto that word: governance. Almost everything that separates my system from a clever assistant — or a second brain — comes down to it: a privileged, trusted core that decides what is true and what is allowed, with everything else running above it. Strip the governance out and you do not have an operating system. You have a chatbot with good intentions.

Here is the full stack.

Bottom-to-top diagram of the CEO Operating System: engine (Claude) and MCP wiring, a governed core of company canon and the SIGN rulebook, a governed toolkit, standing operations, and the cockpit screen, with the CEO deciding at the top."

The engine

At the very bottom is the reasoning the whole system runs on — and after a real search, that is Claude. I did not start here. We worked through Copilot, then Perplexity, then ChatGPT, and settled on Claude.  It is not that the others can’t do this, it is that Claude is the only one that could operate every layer of this stack — a connected through-line from the engine to the screen. It reaches our systems of record, runs the skills, executes the scheduled processes, and holds to our standards across all of it. The others answer questions. Claude runs the system.

Above the engine is the wiring — the connectors that let the system reach the tools the business already runs on, through MCP. I deliberately think of these by category, not brand: the CRM, the financial system, the HRIS, the email and messaging layer, any system of record. The goal is a true driver layer — that you can swap a tool underneath and everything above keeps calling the same operations while the wiring handles the translation. We are not quite there yet, but that is the direction.

These connectors have one property worth flagging now: some can write back, and some can only read. That single difference decides whether a whole process can finish inside the system or stalls at the screen you were trying to leave. I will come back to it.

The governed core

The next two layers are the ones almost everyone skips — or cannot implement — and they are the entire reason this works. They are also where our proprietary IP lives. Together they are the governed core: the trusted context the system runs on, and the rules that govern what it may do.

Start with canon. Every operating system has a file system — a structured, persistent record of what the machine knows. Ours is our company canon: our single source of truth. It is our trusted business context — definitions, strategy, standards, the design system, operating concepts — written down once and treated as authoritative. It is not a folder of notes, our Sharepoint or a Google Drive connected to the system. Our canon is consulted in a strict order of precedence, so the system always reaches for the most authoritative context available before anything lower down: true canon first, company data, and then other ranked sources.

Canon is the thing you actually run a company on, and it is what lets you automate a process with confidence. When a function needs a fact or a standard, it reads from canon. Other systems may not invent an answer outright, but without a governed source of truth you never know which version you will get — the whole junk drawer is on the table to choose from. Canon takes the junk drawer away.

Then the rules. A real operating system does not let every program do everything; it has a protected mode that gates privileged actions so one misbehaving program cannot corrupt the machine. Ours are governed by SIGN — a specification language we built to encode our policies, standards, data and boundaries in an explicit, machine-checkable form. The rules do not just sit in a document; SIGN’s guidelines let agents reason over our enterprise knowledge in a governed manner — so when the system acts, it is reasoning within the lines we have drawn, not improvising around them. Changing a policy or the ruleset in SIGN is itself governed — proposed, reviewed, and published to the system — so the boundaries stay authoritative instead of drifting.

A concrete one: a process can review a deal and recommend moving it forward, but it cannot advance a deal past Qualified to Buy on its own. That takes me. The intelligence on top can propose; it cannot cross the line the rulebook draws. Recommendation is cheap; authority is governed.

The toolkit

On top of the governed core sit the core functions — the system calls. I started here, with the mundane things I was spending an inordinate amount of time on: finding information, transforming it, storing it, sharing it. Find, transform, store, share, review — the small, reliable operations everything else is built from.

These are skills I built once and now invoke constantly, and the important thing about them is what they govern. One does not just write a document — it writes in our voice. One does not just make a deck — it makes one to our brand standard. One takes a messy contract and standardizes it to our format, clause by clause. These skills carry the voice and the standards into every output, so find happens in a precedented way and transform lands on brand every time, no matter who runs it.

Because each skill reads from canon and obeys the rulebook, the same skill produces the same quality for anyone in the company.  

Standing operations

Above the toolkit is where the system stops waiting to be asked.

These are standing operations — processes I built once that now run on a schedule or a trigger, each chaining the toolkit’s functions into real work. The system does research and writes first drafts of articles. It reviews the week’s news and social and drafts the posts. It reviews my pipeline and flags what has stalled. It handles customer and prospect follow-up, prepping me before a meeting and capturing commitments after. Every Monday morning a dashboard assembles itself from live CRM and financial data and lands in my inbox before I am awake.

None of these is a prompt I retype. Each is a standing process — scheduled or triggered — that runs the toolkit’s functions on its own. And this is not only mine: everyone in the company builds their processes on the same toolkit, composing the same governed functions into the work their role needs. One shared foundation, many processes.

The round trip

This is the property I flagged earlier: a process only completes if the system can write back, not just read.

Pulling data out of a tool is easy. The test is whether you can push the result back in — close the loop — without a human re-keying it through a screen. When that round trip works, an entire workflow can run inside the system: read the data, do the work, write the result back to the system of record, automate the whole thing.

This is why I run my task list in Notion and draft in Superhuman. I read, transform, write back, and let the process run end to end. When the round trip is open, a tool becomes a place the system can operate, not just observe. I say more in a companion piece about what this means for the tools that don’t allow it — because it is a bigger deal than it first appears.

The cockpit

The top layer is the one I touch.

This is the screen — where I stop operating the machine and start operating the business. I ask how we are doing, and the system pulls the live picture: pipeline, cash, what is stalled, where risk is concentrating. I do not assemble the report. I read it, and then I do the part that is actually mine — decide, delegate, set direction. And when I need something built, I reach straight past the screen and call any function in the toolkit on demand.

Everything below this layer exists so that this layer is all I have to touch.

Why this works

Step back, and the value is not where most people look. The engine is Claude — extraordinary, and available to anyone. The connectors are standard. The screen I talk to is the easy part, and the standing processes are just the toolkit on a schedule. Strip all of that away and what is left — the part nobody can copy from us — is the governed core: our canon and our rules, written in SIGN and reached over MCP.

Canon, SIGN, and the wiring that lets them act: that is the differentiator. It is also why automation is trustworthy here and brittle elsewhere. A second brain, or an agent loose in a folder, has the engine and the apps and the screen; what it lacks is a governed core, so it drifts. Ours does not, because every layer above reads from trusted context and obeys encoded rules.

And because the core is governed rather than personal, this is not really my operating system. It is the company’s operating system. The same context, the same standards, the same rules are available to anyone — so the business runs the same way no matter who is at the keyboard, and whether the work is done by a person, a person with AI, or fully automated.

Which is the whole ambition. The old adage is to make money while you sleep. I want more than that — I want the company to run while I sleep, to our context and our standards and our policies, and then to hand me, in the morning, only the decisions that were ever really mine.

Overflowing drawer of notes illustrating why a second brain becomes a graveyard of unused ideas

A Second Brain Won’t Run Your Company

Everyone is building a second brain. 

The promise is seductive: capture enough — notes, links, highlights, clever prompts — and clarity will follow. It rarely does. The notes pile up. The folders multiply. Six months in, you are scrolling a junk drawer you never open. One honest practitioner admitted to thousands of notes in his system and almost nothing ever turned into finished work. That is not a system. It is a graveyard with good intentions.

I went a different way. I built an operating system to run our company — a governed, layered stack I describe in full in a companion piece – CEO Operating System. This article is about why that beats the thing everyone else is building.

A machine brain is not your brain

Start with the metaphor itself, because it hides the problem.

A second brain sounds like an extension of your mind. It isn’t. It is a machine’s brain, and a machine knows nothing about how you want things done until you tell it — every preference, every standard, every rule, every time. The moment you take that seriously, you discover that telling a machine everything you want, reliably, on every run, has a name. It is structure. It is governance. It is a framework.

Which means the work of making a borrowed brain trustworthy is the work of building an operating system. The brain is not an alternative to the OS. The brain is what you get when you skip the OS and hope.

What the brain is missing

Put a real framework next to a second brain and the gaps are structural, not cosmetic.

No kernel. A second brain is all user space — notes, links, an agent rummaging through them. There is no privileged, governed core that decides what is true and what is allowed. A real system has one: enterprise knowledge and a governance layer sitting underneath everything. A brain cannot enforce a rule on itself. An operating system can.

No protected mode. The newer, AI-native versions hand an agent the keys to the whole vault and hope it behaves. There is no boundary it cannot cross. A real operating system gates authority — it can recommend advancing a deal but cannot cross the line on its own. That is not a feature bolted on. It is a property of being an OS.

It confuses memory with thinking. The whole genre treats remembering as the goal — capture more, store better. Even the clever setups bolt reasoning on top of one undifferentiated pile. An operating system separates the record from the reasoning: the reliable things stay reliable because they do not live in the same place as the improvising.

It rots. A drawer fills with junk because nothing governs what goes in or whether it is still true. That is the graveyard, and it is the metaphor failing in public. A governed record with a rulebook does not accumulate noise the same way. Structure is what stops the rot, and a brain has none.

Where the brain metaphor is actually fine

I am not going to pretend the idea is worthless, because it isn’t.

For an individual capturing ideas, the second brain works. The founding insight — your mind is for having ideas, not holding them — is true, and offloading memory is real value. The metaphor isn’t wrong. It is just small. It tops out at personal note-taking. It was never trying to run an enterprise, so beating it on governance is partly beating it at a game it never entered.

And the AI-native crowd — the ones putting an agent inside the notes, giving it an operating manual, letting it act and write back — are closer than the rest. That pattern is a genuine step up. Where they stop is the bottom of the stack: loose files in a folder instead of a governed record. They have built the top two layers and skipped the governed core — the canon and the rulebook — which is exactly the part that makes the difference.

The honest cost

An operating system is heavier than a brain. A second brain is something one person stands up in an afternoon with a folder and a markdown file. A real one depends on enterprise knowledge, a specification language, governed connectors, and a rulebook. That is infrastructure, not a weekend project.

I will not pretend otherwise — because the weight is the point. A drawer is light because it does nothing. The moment you want a system that runs the work and that you can trust unattended, you need a governed core, and that costs something to build. The brain stays light by staying passive. I traded lightness for a machine that actually operates.

The gap nobody is talking about

There is one more difference, and it is the one that should make a few software companies nervous.

A system of record only completes a process if you can read and write it. Most connectors are read-only. You can pull data out, but you cannot write back — to Microsoft To Do, to Teams, to plenty of others — which means you cannot round-trip a full workflow through the agent. The process dead-ends at the very screen you were trying to leave behind.

That sounds like an integration nit. It is actually a market threat. The switching cost of a system of record was always that everyone knows the screens. But once an agent can write directly into the record, the screens leave the daily path — and the moat goes with them. Suddenly the question is not which interface my team knows, but which system lets me push data in, read it back, and automate the loop.

That is why I moved my task list to a tool that round-trips and draft my mail in one that writes to drafts, while the read-only options in my current system sat untouched. I did not switch because the screens were better. I switched because one let the system operate and the other only let it look. Every system of record that stays read-only is teaching its customers the same lesson — and inviting the same replacement.

What to build instead

A second brain helps you remember. An operating system lets you run the company and step away from the machine — because the things that must be reliable are governed, and only the things that benefit from judgment are left to you.

If you are pouring hours into a second brain and wondering why you still feel buried, that is the reason. You have been building memory. Build a machine that runs instead. I laid out the full framework in the companion piece; and the part that makes it work isn’t the engine or the apps everyone has. It’s the governed core almost no one builds.

software-eating-the-world

Intent Engineering: Software Was Never the Point

If software has eaten the world, what are we still feeding it?

Maintenance cycles. Feature requests. Integration projects. Licensing renewals. Migration roadmaps. Security patches. Technical debt that compounds quietly behind endless roadmaps. Engagement initiatives and champions to get people to actually use the thing you spent eighteen months building. And then, when the world moves faster than the software can follow — replacement projects that start the entire cycle over again.

At some point the software stopped serving the organization. The organization started serving the software.

We’ve all felt this. The budgets keep growing. The timelines keep extending. The goal is just one more release away. And somewhere between the last digital transformation and the current AI initiative, a quiet and uncomfortable question took root.

When does it stop?


We Never Wanted the Software

We wanted its promise, fulfilled.

Not the platform. Not the application. Not the system of record or the workflow engine or the analytics dashboard.

You wanted value. Outcomes. Velocity. Security. Maybe, if we’re being honest, hope — the feeling that this time the technology would finally close the gap between where the organization was and where it needed to be.

Software was always the means to those ends. Never the end itself. But somewhere along the way the means became the end. The roadmap became the strategy. The delivery became the goal. The software — the thing that was supposed to serve the outcome — became the thing the entire organization oriented itself around serving.

We didn’t notice the substitution happening. We were too busy feeding the machine to ask whether the machine was still feeding us.


The Machine Has an Appetite

Durable software — software built to last, to be maintained, to be extended — is not designed to end. Every feature request is a budget line. Every integration is a services engagement. Every new release creates a forcing function to stay current or fall behind. Every migration is a multi-year commitment dressed up as an upgrade.

The machine was designed to be fed. Perpetually.

And then someone handed the machine a slogan.


Every company is a software company.

It was the most effective piece of industry mythology ever produced. Compelling enough that boards repeated it. Convincing enough that executives built org charts around it. Pervasive enough that an entire generation of business leaders came to believe that the depth of their software investment was the measure of their competitive position.

It was also, to be direct about it, self-serving nonsense.

Coca-Cola is a beverage company. Mayo Clinic is a healthcare company. Boeing is an aerospace company. The software was supposed to make them better at the thing they actually are. Instead, the slogan flipped the relationship — and suddenly the software wasn’t serving the business, the business was justifying the software.

Entire services industries emerged to reinforce it. Consulting firms. System integrators. Implementation partners. Managed service providers. Armies of specialists whose entire practice exists not to create new outcomes but to keep existing systems running, current, and integrated with the other existing systems that also need keeping. The machine didn’t just develop an appetite — it developed an ecosystem to make sure the appetite was never left unsatisfied.

Organizations now spend between sixty and eighty percent of their IT budgets maintaining systems that already exist. That leaves twenty cents of every dollar for anything new.


Read that again. Eighty percent. Feeding the machine. Twenty percent for everything else.

The machine didn’t just eat the world. It convinced us that feeding it was our purpose.

And the people inside organizations learned to feed it too. Whole teams exist not to create new outcomes but to maintain what’s already there. Engineering cycles that could be pointed at new problems are consumed by the gravitational pull of systems that already exist. The most talented people in your technology organization spend meaningful portions of their careers in service of software that it too gluttonous to ignore.

We worry about AI becoming conscious and taking over the world. Meanwhile our entire global financial transaction system runs on COBOL — a programming language older than the moon landing, maintained by a shrinking pool of specialists whose average age climbs a little higher every year.

So it goes.

Durable software doesn’t retire gracefully. It accumulates. It integrates with other durable software until the architecture looks less like a technology strategy and more like sedimentary rock — layer upon layer of decisions made by people who have long since left, calcified into systems nobody fully understands and everyone is afraid to touch.

The average enterprise runs hundreds of applications. A meaningful percentage of them exist not because they’re delivering outcomes but because stopping is hard, starting over is expensive, and the machine is already running.

So you keep feeding it.


The Shift That Changes the Question

AI is being sold to you right now as a way to build software faster.

That is true. It is also the least interesting thing about what is actually happening.

The more important shift, the one that should change how you think about every technology budget you control, is this.

When AI can assemble software on demand to fulfill a specific outcome and dissolve it when the moment passes, software stops needing to be durable.


Read that again slowly. Software no longer needs to live forever.

The application assembled to answer your CFO’s question this morning doesn’t need to exist this afternoon. The workflow constructed to process this quarter’s supplier contracts doesn’t need to outlive this quarter. The interface built to surface a specific insight for a specific decision doesn’t need a maintenance cycle because it was never meant to last.

Software becomes temporal. Built for the moment. Gone when the moment ends.

And when software becomes temporal, the question that has haunted every technology budget for thirty years finally has an answer.

It stops when the moment passes.

No maintenance cycle. No technical debt. No migration project. No feeding.

The machine doesn’t get to eat this one.


Every Event Needs a Venue

Here is where most AI conversations end too soon, and where the real work begins.

Temporal software doesn’t assemble itself from nothing. It needs something underneath it. A durable foundation of organizational knowledge, governed context, and intelligent infrastructure that every temporary application inherits at the moment it’s built.

Think about an event center.

A rodeo on Saturday. A symphony on Sunday. A corporate conference the following weekend. A graduation ceremony after that. Four completely different events for four completely different audiences, all running on the same foundation. The same floor. The same rigging. The same power infrastructure, the same acoustics, the same loading docks and safety systems.

Nobody rebuilds the venue between events. The venue was never the point. The event was. But without the venue, there is no event.

Every organization running temporal software needs a venue. A durable foundation that makes every temporary event possible. The governed intelligence layer that sits between cloud infrastructure and the software assembled on demand to serve your outcomes.

That venue isn’t a product you buy off a shelf today. It isn’t a feature inside your cloud provider’s console. It doesn’t exist yet in any mature form, which is precisely why organizations are deploying AI and still not getting the outcomes they were promised.


They’re booking events without a venue.

The good news is that the venue has a clear architecture. At the bottom sits your cloud foundation — the compute and storage you already pay for. Above that sits the intent layer — the universal engine that orchestrates, governs, classifies, and delivers every AI-bearing interaction with accountability and precision. Nothing runs without governance. Nothing decides without auditability. Nothing executes outside the boundaries the organization has defined.

Above that sits domain context, the knowledge, ontology, and operating reality that makes the venue intelligent for your specific industry and your specific organization. The regulatory canon your industry operates within. The terminology your domain uses. The way your organization specifically runs, your processes, your constraints, your history. This is what makes temporal software feel native rather than generic. The event center that knows it hosts rodeos is rigged differently than one that only hosts graduations.

And on top of all of it, the event, temporal software. Assembled on demand. Fit to the moment. Discarded when the moment passes. Inheriting everything beneath it without needing to be told what it inherited.

The outcome arrives. The software dissolves. The venue remains.

Ready for the next event.


The Engineer Who Owns the Venue

This shift doesn’t eliminate engineers. It redefines what the best ones are for.

The engineers who built the systems we’ve spent thirty years feeding weren’t doing it wrong. They were doing it right, for the constraints that existed at the time. They deserve that acknowledgment. They built real things that did real work. Some of those systems, bless their COBOL hearts, are still running.

But the engineers who matter most in the model that’s coming aren’t building applications. They’re building the venue. Designing the foundation that makes every temporal event possible. Governing the knowledge layer that gives assembled software its intelligence and its constraints. Defining the boundaries that ensure every outcome delivered is trustworthy, auditable, and accountable.

These aren’t software engineers in the traditional sense. They’re intent engineers. Their job isn’t to build the event, it’s to ensure the venue can host any event worth hosting.

The measure of their work isn’t features shipped or systems maintained. Its outcomes delivered reliably, at the moment they’re needed, without the organization serving the software to get them.

The craft doesn’t disappear. It moves upstream. And the engineers talented enough to make that move will find themselves building something that compounds, a foundation that gets more capable with every event it hosts, instead of something that calcifies.


Two Budgets. One Choice.

Every line item in your technology budget belongs to one of two categories now.

The first invests in the venue and events — the durable foundation that compounds. The intent layer. The knowledge-architecture. The governed context that makes temporal software intelligent from the moment it’s assembled. This investment gets more valuable over time. Every outcome delivered on top of it makes the venue smarter. Every domain added makes it more capable. This is the budget that builds leverage.

The second feeds the beast — the durable software artifacts, the maintenance cycles, the integration projects, the feeding. This budget doesn’t compound. It sustains. And in a world where temporal software can fulfill the same outcomes on demand, sustaining durable artifacts is a choice, not a necessity.

Most organizations will keep both budgets for a while. That’s fine. The transition is real and it takes time.

But the ratio is a decision. And right now most organizations are running it backwards — eighty percent sustaining what exists, twenty percent building what’s next. The venue model flips that ratio. Slowly at first. Then faster than anyone expects.

The question isn’t whether you can afford to build the venue.

It’s whether you can afford to keep feeding the machine instead.


The Decision in Front of You

Software was never the point. The outcome was.

We built durable software because it was the only path to the outcome, and then spent decades maintaining the path long after better paths became possible. We bought the slogan. We fed the machine. We called it strategy.

The engineers who built those systems were talented and dedicated and largely given no alternative. The executives who funded them were trying to solve real problems with the tools available. Everyone involved was doing their honest best inside a model that was designed, whether anyone intended it or not, to perpetuate itself.

That model is ending.

Not because anyone decided to end it. Because the constraint that created it, software as the only path to the outcome, no longer exists. AI doesn’t just make software faster. It makes software optional. And when software becomes optional, durable software becomes a choice you’re making consciously, with full awareness of what it costs.

The organizations that understand this first will stop feeding the machine and start building the venue. They will point their best engineers at the foundation rather than the features. They will measure technology investment by outcomes compounded rather than systems maintained.

The ones that don’t will keep feeding.

The machine is patient. It has always been patient. It will take everything you give it and ask for more and the invoices will keep arriving and the roadmaps will keep extending and the promises will keep landing just one more release away.

When does it stop?

That’s your decision now.

case-study-skills-for-chicago

Skills for Chicago Receives Richard L. Duchossois Foundation Grant to Launch Military-to-Civilian Career Pathways Initiative

Skills for Chicago Receives Grant from the Richard L Duchossois Foundation to Launch Military-to-Civilian Career Pathways Initiative Using Career Highways

Chicago, IL — June 17, 2026 Skills for Chicago today announced it has received a $225,000 grant from the Richard L Duchossois Foundation (RLD Foundation) to launch the first phase of a military-to-civilian career pathways initiative designed to translate military experience into skills, career pathways, and job opportunities using the Career Highways platform.

Each year, more than 200,000 service members transition to civilian life, yet a majority struggle to transfer their military experience into language civilian employers understand, many veterans leave their first job within a year due to poor fit. This initiative addresses that gap by combining veteran-focused career coaching, employer engagement, community recruitment and a structured skills-based technology system that connects military experience to civilian careers with greater precision and scale.

The RLD Foundation is committed to supporting veterans and their successful reintegration into civilian life. This investment enables the initial development and deployment of a scalable, technology-driven solution, with additional phases planned to expand reach and impact as further funding is secured.

Through this initiative, Skills for Chicago will leverage Career Highways to:

  • Translate military occupations (MOS/AFSC) into a structured skills framework, capturing both technical and leadership capabilities
  • Map veterans to in-demand civilian careers aligned to their skills, interests, and market demand
  • Identify skill gaps and deliver targeted upskilling pathways
  • Provide job readiness tools, including AI-powered resumes, career path visualization, and interview preparation
  • Connect veterans directly to employers seeking skilled, job-ready talent

Skills for Chicago has already demonstrated measurable success using Career Highways to improve hiring outcomes by aligning skills to roles and increasing job fit for both candidates and employers. This initiative extends that model to veterans, where the need for accurate skill translation and career alignment is especially acute.

“Veterans bring exceptional leadership, discipline, and technical expertise, but too often those strengths are not clearly understood in the civilian workforce,” said Bridget Altenburg, CEO of Skills for Chicago and a U.S. military veteran. “This initiative allows us to begin building a solution that translates that experience into clear career pathways and real employment outcomes, with the goal of scaling to reach far more veterans over time.”

By integrating this military-focused capability into its model, Skills for Chicago will expand its services to better support veterans while providing employers with a more reliable way to identify and hire veteran talent.

Career Highways will support the effort by mapping military roles into a structured skills framework, helping veterans better understand how their military experience connects to civilian roles, career pathways, skill gaps, and targeted upskilling opportunities.

“As a veteran, I’ve experienced how difficult it can be to translate military experience into civilian careers,” said Joe Shepherd, Chief Product Officer at Career Highways and a U.S. military veteran. “This first phase establishes the foundation for a scalable system that connects military skills to the workforce—unlocking better outcomes for veterans and stronger talent pipelines for employers.”

The need for more effective veteran workforce solutions remains significant, and this initiative represents an important step toward addressing that gap through structured, skills-based career pathways.

About Skills for Chicago

Skills for Chicago is a nonprofit workforce development organization that connects unemployed and underemployed job seekers with leading employers across the Chicago region using a skills-based hiring approach.

About the Richard L Duchossois Foundation

The Richard L Duchossois Foundation invests in strategic initiatives that support veterans, workforce development, and community impact, with a focus on creating long-term opportunity and economic mobility.

About the Career Highways

Career Highways is a workforce strategy and technology company that helps large, complex organizations design and activate transparent, skills-based career pathways at enterprise scale. The company provides services and tools—including Skills Intelligence—that digitize job architecture, map skills to roles, and translate workforce data into clear pathways for mobility, upskilling, and planning. By combining AI-enabled insight with human expertise, Career Highways supports informed decision-making around talent development, internal movement, and the evolving impact of technology on work. Built for organizations navigating workforce transformation, Career Highways brings rigor, clarity, and structure to career development in the modern enterprise.

Media Contact:
Bridget Altenburg
For Skills Chicago
[email protected] 

Philip Robertson, Impact Partners
For Career Highways
[email protected]

human-ai-future-workforce

The Future of Work Isn’t Human vs. AI. It’s Human + AI.

For years, conversations about artificial intelligence have centered around a single question:

“Will AI replace jobs?”

It’s a reasonable concern. Headlines often focus on automation, layoffs, and the growing capabilities of AI systems. But as organizations move from experimentation to implementation, a different reality is emerging.

The future of work is not about replacing people with technology.

It’s about redefining how people and technology work together.

The organizations gaining the greatest advantage from AI aren’t removing humans from the process. They’re empowering humans with better tools, faster access to information, and more efficient workflows.

The companies that understand this distinction will be the ones that thrive in the coming decade.

The Great Workforce Transformation

Every major technological shift changes the nature of work.

The industrial revolution transformed manufacturing. The internet transformed communication. Cloud technology transformed business operations.

Artificial intelligence is now transforming knowledge work.

Many routine tasks that once consumed hours of employee time can now be completed in minutes. Administrative functions, data analysis, content creation, scheduling, reporting, and information gathering are increasingly being augmented by AI-powered systems.

This doesn’t eliminate the need for people.

It changes where people create value.

Organizations are discovering that their competitive advantage is no longer found in performing routine tasks faster than competitors. Instead, advantage comes from the ability to think strategically, innovate, solve complex problems, and make informed decisions.

Why Entry-Level Work Is Changing

One of the most significant workforce shifts is occurring at the entry level.

Historically, many professionals began their careers performing administrative and repetitive tasks while learning the fundamentals of their industry.

Today, many of those tasks can be completed by AI systems.

This creates a challenge for organizations and workforce leaders.

How do we develop future leaders if traditional entry points into the workforce continue to evolve?

Forward-thinking organizations are already beginning to rethink onboarding, training, mentorship, and career development. The companies that solve this challenge will build stronger leadership pipelines than their competitors.

The Skills Becoming More Valuable

As AI becomes more capable, uniquely human skills become increasingly important.

Technology can process information.

Humans provide judgment.

Technology can generate recommendations.

Humans make decisions.

Technology can automate tasks.

Humans build trust, inspire teams, and navigate uncertainty.

The most valuable workforce skills over the next decade will likely include:

  • Critical thinking
  • Complex problem solving
  • Leadership
  • Emotional intelligence
  • Adaptability
  • Strategic decision-making
  • Collaboration
  • Communication
  • AI fluency

Organizations that invest in these capabilities will be better positioned to adapt to future disruptions.

The Leaders Winning with AI

The most successful organizations are approaching AI differently.

Rather than asking:

“How can we replace people?”

They are asking:

“How can we help our people accomplish more?”

The results are often significant.

When AI is used to augment employees rather than replace them, organizations frequently experience improvements in productivity, efficiency, and employee satisfaction.

The focus shifts from cost reduction to value creation.

This is where long-term competitive advantage is built.

The Real Opportunity Ahead

The future workforce will not be defined by humans or AI.

It will be defined by humans working alongside AI.

Organizations that embrace this reality will create stronger teams, more resilient operations, and greater opportunities for innovation.

The challenge for business leaders is no longer deciding whether AI will impact their workforce.

That question has already been answered.

The real question is whether their organization is preparing employees to succeed in an environment where technology amplifies human potential.

Those who answer that question successfully won’t simply adapt to the future of work.

They’ll help shape it.


Is Your Organization Ready for the Human + AI Workforce?

Career Highways works with organizations to help leaders navigate workforce transformation, talent strategy, and the evolving future of work.

Connect with our team to discuss how your organization can prepare for the next generation of workforce challenges and opportunities.

career-highways-associated-press

Career Highways Named Businessolver Pinnacle Partner

Career Highways Named Businessolver Pinnacle Partner Advancing New Standard for Career Health for Workforce and Benefits Intelligence

Partnership connects benefits, career growth, skills intelligence and workforce planning to help employers build more transparent skills-based organizations

DENVER, CO — Businessolver®, the leader in anticipatory benefits and HR technology, expands the Pinnacle Partners program with Career Highways, the leader in AI-powered skills-based workforce intelligence and career pathway technology. The partnership adds career health to Businessolver’s extensive lineup of voluntary carriers and point solutions. 

“We’re excited to bring even more wellbeing options to our clients with the addition of Career Highways,” said Jen Greean, Director of Partner Relations at Businessolver. “Intentional career progression and talent retention is an important part of helping our clients deliver better outcomes for their employees and their organizations.”

More organizations are recognizing career health as a new model for connecting benefits, career development, decision-making, workforce intelligence and planning into a more unified system for total wellbeing. Through Businessolver’s Pinnacle Partner Program, Career Highways offers a high-impact, enterprise-ready product that extends value beyond traditional benefits administration, enabling organizations to connect benefits engagement with career trajectory, skills development, and workforce planning. 

“Organizations are suddenly finding themselves in a new era where benefits, careers, and workforce planning can no longer operate in separate systems,” said Liz Eversoll, CEO at Career Highways. “Career Highways and Businessolver unifies those domains giving employers a single, intelligent framework to drive engagement, retention, and internal mobility at scale. The partnership demonstrates how AI can be used in a practical, people-centered way to improve transparency, strengthen retention and create more meaningful career mobility.”

Defining the Career Health Category

The partnership addresses a critical gap in the market: While benefits platforms and HR systems provide transactional support, they do not connect career trajectory, skills, and long-term workforce decisions.

Career Highways and Businessolver close that gap by delivering a unified intelligence layer that:

  • Connects career pathways, skills, and workforce data with benefits and financial decisions
  • Enables employees to make informed, forward-looking decisions about their careers and wellbeing
  • Provides employers with real-time visibility into workforce capabilities, gaps, and risks
  • Transforms benefits platforms into continuous engagement and decision intelligence systems

This integrated model defines career health—a new approach to managing workforce performance, employee growth, and long-term organizational outcomes.

“Career Highways has given us a consistent skills intelligence foundation for defining roles, aligning skills, and empowering employees to understand their career opportunities, accelerating our job architecture and strengthening how we develop and plan our workforce,” said Dr. Ashley Ellis, Vice President of Employee Engagement at Businessolver. 

Businessolver, who collaborates with Fortune 500 companies including Aflac, MetLife, Cigna, The Hartford and Prudential amongst many others, partnered with Career Highways to modernize its job architecture and establish a consistent foundation for roles, skills and career pathways across the enterprise. Using Career Highways’ AI-driven skills intelligence platform, Businessolver standardized role definitions, accelerated the creation and normalization of job descriptions and gave employees clearer visibility into the skills required for current and future roles.

Delivering Measurable Workforce Outcomes

The partnership builds on Career Highways’ successful enterprise implementation within Businessolver. By deploying Career Highways’ AI-powered platform, Businessolver established a scalable, skills-based foundation across its workforce, resulting in:

  • 75% faster job architecture implementation, reducing timelines from over 12 months to approximately 3 months
  • 95% reduction in manual role and skills creation effort
  • 2–4 hours saved per role through automation
  • 95% of employees reporting improved understanding of career pathways and required skills

Extending Benefits into Workforce Intelligence

As a Pinnacle Partner, Career Highways integrates into Businessolver’s ecosystem to extend benefits platforms into career health and workforce intelligence systems. Together, the companies enable organizations to:

  • Align benefits with career stage, progression, and future trajectory
  • Drive internal mobility and reskilling through transparent career pathways
  • Improve retention and engagement by reducing career ambiguity
  • Optimize workforce investment decisions with integrated intelligence
  • Deliver enterprise-level insights across workforce cost, productivity, and risk

This collaboration reflects a broader shift in HR technology—from fragmented systems to unified intelligence platforms that support both employee decisions and enterprise strategy.

Career Highways joins an exclusive group of pre-integrated, market-leading voluntary benefits and solution partners that include: Accolade, Aetna, Aflac, ARAG, Benifex, Calibrate, Carrot, Cigna, Claritev, Counsel, Hello Heart, LegalShield, Lincoln Financial Group, Metlife, NortonLifeLock, Pets Best, PetPartners, Prudential, PTO Exchange, Recoop, Rightway, Securian, Sword, The Hartford, The Standard, Transamerica, Transitions Benefit Group, and Voya.

About the Pinnacle Partner Program   

Launched in 2019, Businessolver’s Pinnacle Partners program helps employers expand their benefits offerings with vetted, pre-integrated partners. The program enhances data exchange, simplifies enrollment, and ensures a seamless experience for HR teams and employees alike.

About Businessolver 

Since 1998, Businessolver has delivered market-changing benefits technology that empowers empathetic service supported by an intrinsic responsiveness to client needs. The company creates client programs that maximize benefits program investment, minimize risk exposure, and engage employees with easy-to-use solutions and communication tools to assist them in making wise and cost-efficient benefits selections. Founded by HR professionals, Businessolver’s unwavering service-oriented culture and secure SaaS platform provide measurable success in its mission to provide complete client delight.    

For employers navigating rising claims costs, fragmented point solutions, and low utilization of existing benefits, Counsel becomes the organization’s responsible front door to healthcare. By intelligently triaging care from the first interaction, Counsel resolves more concerns without unnecessary escalation, reduces avoidable in-person care and downstream claims costs, and increases ROI across the existing benefits ecosystem by routing members to the right benefit at the right time based on an employer’s benefits design. 

ABOUT CAREER HIGHWAYS

Career Highways is a workforce strategy and technology company that helps large, complex organizations design and activate transparent, skills-based career pathways at enterprise scale. The company provides services and tools—including Skills Intelligence—that digitize job architecture, map skills to roles, and translates workforce data into clear pathways for mobility, upskilling, and planning. By combining AI-enabled insight with human expertise, Career Highways supports informed decision-making around talent development, internal movement, and the evolving impact of technology on work. Built for organizations navigating workforce transformation, Career Highways brings rigor, clarity, and structure to career development in the modern enterprise.

To learn more about Career Highways, please visit CareerHighways.com.

Media contacts:

Katie Carroll, VP of Product Marketing and Strategy
Businessolver

[email protected]

Philip Robertson, Impact Partners
For Career Highways
[email protected]

career-highways-associated-press

Career Highways Announces SkillXP to Help Enterprises Turn Learning Investments Into Workforce Capability

Companies bought courses; SkillXP connects learning to skills, roles and career pathways enabling organizations to reskill in age of AI

MADISON, WI – April 15, 2026

“Organizations cannot build AI-era workforce capability on top of disconnected learning systems,” said Liz Eversoll, CEO of Career Highways. “For years, companies have treated learning as a separate activity instead of part of the infrastructure of work. SkillXP changes that by connecting skills insight directly to development action—so employers can build the capabilities they need and understand the impact of those investments on their workforce.”

Career Highways has announced the launch of SkillXP, a new enterprise upskilling platform designed to help organizations turn learning investments into measurable workforce capability and business impact. As artificial intelligence accelerates change across the workplace, companies are under increasing pressure to reskill employees quickly and align development with evolving skill needs.

SkillXP addresses a long-standing gap in traditional learning systems by connecting learning directly to skills, roles, and career pathways. Powered by Career Highways’ Skills Intelligence, the platform maps learning experiences to real work, links them to assessments and certifications, and surfaces development opportunities that are relevant to both current roles and future growth.

By shifting from static course catalogs to a skills-driven model, SkillXP helps organizations bring greater structure, visibility, and accountability to workforce development. The platform enables employers to focus learning investments on the capabilities that matter most—supporting internal mobility, accelerating reskilling, and ensuring development efforts translate into tangible productivity gains in the age of AI.

View the full announcement

Cutting-Entry-Level-Jobs

Why Cutting Entry-Level Jobs Is the Most Expensive Savings You’ll Ever Make

“If the new hires aren’t there [to begin with], your talent pipeline is empty.”
— Liz Eversoll, CEO of Career Highways

A new article from Reworked explores the growing trend of companies reducing entry-level hiring in favor of AI-driven efficiency—and the costly long-term consequences of that decision.

While AI can handle many of the routine tasks traditionally assigned to junior employees, organizations that eliminate entry-level roles risk dismantling their internal talent pipelines. These early-career positions are critical for developing future leaders who understand company culture, workflows and decision-making processes. Without them, companies are forced to rely on external hires—who are more expensive, take longer to ramp up and are more likely to fail.

The article highlights real-world examples, including leadership struggles at major companies like Coca-Cola and Starbucks, to illustrate how weak succession pipelines can negatively impact performance and stability. It also emphasizes that entry-level roles should not disappear, but evolve—integrating AI while focusing human effort on critical thinking, oversight and innovation.

Forward-thinking organizations like IBM and Dropbox are already adapting by redesigning entry-level roles and investing more heavily in early-career talent. Experts warn that companies prioritizing short-term cost savings today may face significant leadership gaps in the future.

Read the full article here:

career-highways-itpro

Is AI Creating a Talent Pipeline Time Bomb?

“The real risk isn’t that AI eliminates human contribution,” says Liz Eversoll, CEO of Career Highways. “It’s that companies unintentionally erode their future talent pipeline by removing the very roles where emerging employees typically learn, stretch, and build foundational skills.”

As AI adoption accelerates, a new question is emerging for business leaders:
If entry-level roles shrink today, who becomes the senior leaders of tomorrow?

Recent research suggests this concern isn’t hypothetical. Studies show graduate hiring has declined, entry-level roles are being reduced in AI-exposed companies, and many enterprises now explore AI solutions before hiring humans. The short-term driver is clear — cost savings, speed, and scalability.

But the long-term implications may be far more significant.

The Entry-Level Squeeze

AI excels at repetitive, rules-based tasks — many of which historically formed the foundation of early-career work. As organizations deploy AI agents and automation tools, junior roles in research, analysis, operations, and support functions are increasingly compressed or redefined.

While some experts argue that hiring overall is slowing — not just junior hiring — the data shows a disproportionate impact on early-career positions. That shift could fundamentally reshape how organizations develop talent.

The concern isn’t simply about jobs disappearing. It’s about development pathways disappearing.

Why This Matters for the Future of Business

Entry-level roles have traditionally served as the training ground for future leaders. They are where employees build foundational skills, absorb company culture, develop judgment, and learn how work truly gets done.

When early-career pathways narrow, organizations may feel the consequences five to seven years later — in leadership gaps, technical depth shortages, and weakened cultural continuity.

In other words: optimizing for short-term efficiency could undermine long-term capability.

AI Is Not the Enemy — Design Is

The solution isn’t slowing AI adoption. It’s redesigning how work evolves alongside it.

Organizations that are navigating this shift successfully are using AI to augment skill development, not replace it. That requires:

  • Visibility into how skills are changing
  • Clear, skills-based job architecture
  • Transparent pathways into higher-value roles
  • Internal mobility strategies that evolve with automation

With the right skills intelligence, employers can see which skills are being automated, which are becoming more valuable, and how to deliberately guide employees into future-ready roles.

“This is a moment that calls for redesign, not retreat,” says Eversoll. “When organizations invest in skills visibility and internal mobility, AI becomes an engine for growing talent — not a barrier to entry.”

A Leadership Decision, Not Just a Technology One

A Leadership Decision, Not Just a Technology One

Read the full article to explore the research, expert perspectives, and what this means for the future workforce.

career-highways-associated-press

Career Highways Launches Skills Intelligence Platform to Help Employers Quantify AI’s Impact on Work

“AI is changing work faster than most organizations can redesign roles,” said Liz Eversoll, CEO of Career Highways. “Skills Intelligence gives leaders a practical way to see how work is evolving at the skill level and move quickly from insight to job architecture to career pathing—without relying on slow, manual processes.”

Career Highways has announced the launch of Skills Intelligence, a new self-serve platform that enables enterprises to assess how AI is changing work at the skill level—and turn those insights into action.

As AI adoption accelerates, organizations are discovering that traditional job architecture processes can’t keep pace. What once took years of consulting and manual effort can now be compressed into months. Skills Intelligence gives leaders a faster, more practical way to redesign roles, build career pathways, and become truly skills-based enterprises.

From Workforce Data to Actionable Insight

The platform analyzes everyday workforce inputs—including job descriptions, resumes, job postings, certifications, and training content—to extract and standardize skills into a governed taxonomy. Within minutes, organizations receive a Skills Analysis Report and an optional AI Impact Report showing where AI is augmenting, automating, or elevating work—skill by skill.

This clarity allows leaders to make deliberate decisions about:

  • Role design
  • Learning investment
  • Workforce planning
  • Internal mobility

Rather than reacting to AI disruption, organizations can proactively shape how work evolves.

Turning Insight into Job Architecture

Skills Intelligence doesn’t stop at analysis. The platform enables employers to quickly generate skilled roles, job architecture templates, and career pathways built on a living capability graph of hundreds of thousands of standardized roles, certifications, and training programs.

Protecting Human Capability in the Age of AI

Beyond efficiency, the platform addresses a deeper leadership challenge: ensuring AI enhances people rather than replacing them.

“When organizations replace humans with AI instead of enhancing those same people’s roles, they don’t just lose jobs — they lose culture, mentorship, and the next generation of leaders,” said Mark Kendall, Chief Revenue Officer at Career Highways.

By making AI’s impact visible at the skill level, Skills Intelligence helps enterprises preserve on-the-job learning pathways, strengthen leadership pipelines, and ensure automation builds long-term capability—not just short-term cost savings.

Read the full announcement to learn how Skills Intelligence helps organizations design transparent, skills-based career pathways at enterprise scale.

careeer-highways-skills-intelligence

Introducing Skills Intelligence: A Clear Way for CHROs to Quantify AI’s Impact on Work

Introducing Skills Intelligence: A Clear Way for CHROs to Quantify AI’s Impact on Work

If you’re a CHRO right now, you’re likely being asked:

  • Which roles are most exposed to AI?
  • Where will productivity actually increase?
  • What skills should we reskill, redeploy, or hire for?
  • How do we update job architecture without launching a two-year overhaul?

Most companies are experimenting with AI tools. Very few can clearly quantify what AI is doing to their workforce at the skill level.

That’s the gap we built Skills Intelligence to address.

AI Impacts Skills Before It Impacts Jobs

AI doesn’t eliminate entire jobs in one move. It shifts the skills inside them. Some tasks compress. Some expand. Some become more valuable.

If you only look at job titles, the change feels abstract. When you analyze work at the skill level, the signal becomes clear.

Skills Intelligence allows you to see which skills are automated, which are augmented, and which remain human-advantage. It also estimates productivity impact at the role level, so you can move beyond speculation and into measurable workforce planning.

This gives you something concrete to work with — not a narrative about AI, but structured insight you can defend in front of your board and your executive team.

Turning Insight Into Job Architecture

Insight alone is not useful unless it translates into action.

Once you understand how AI is shifting skills, you need to redesign roles and update career pathways to reflect that reality. Skills Intelligence connects AI exposure directly to job architecture. You can ingest roles, normalize skill data, quantify impact, and generate updated role structures aligned to future-state work.

What used to require a long, manual, consulting-heavy effort can now be structured and accelerated.

The work becomes governed and repeatable instead of reactive.

Why This Matters Now

Boards are asking about AI productivity. Leaders want ROI. Employees want clarity about how their roles will evolve.

Static job descriptions cannot answer those questions.

You need skill-level visibility that connects AI impact to workforce design. When you can see the shifts clearly, you can make deliberate decisions — where to invest, where to reskill, and how to evolve your architecture responsibly.

That is the difference between experimenting with AI and strategically leading through it.

Try It

Skills Intelligence is live and self-serve.

If you want to understand how AI is reshaping your roles — at the skill level — you can run the analysis directly.

career-highways-washington-examiner

Rising unemployment puts threat of AI competition in stark relief

In a national conversation about broken hiring systems, AI-driven screening, and growing frustration among job seekers, Liz Eversoll, CEO of Career Highways, points to a critical gap between policy intent and real-world execution. As governments signal support for skills-based hiring, employers still lack the infrastructure to operationalize those ideas at scale—leaving workers stuck in opaque, automated systems that fail to recognize real capability.

“Government can encourage skills-first practices, but employers need modern tools to put those policies into action. The future of work will be shaped by organizations that make skills transparent, pathways visible, and upskilling accessible to everyone.”
Liz Eversoll, CEO, Career Highways

Making the Job Market Human Again in the Age of AI
As unemployment climbs to its highest level in four years, the realities of today’s job market are becoming harder to ignore. In this Washington Examiner analysis, job seekers describe a hiring environment that feels increasingly impersonal, opaque, and unforgiving — especially for white-collar workers navigating AI-driven recruiting systems. While automation and AI promise efficiency, the article argues they have also amplified dysfunction, filtering out qualified candidates and overwhelming employers with volume rather than clarity. The core challenge, experts suggest, is not simply job creation, but restoring human judgment, transparency, and connection to a system that has drifted too far toward automation. This piece explores why re-centering people — not just technology — is critical to rebuilding trust and effectiveness in the modern labor market.

A recent Washington Examiner analysis underscores how rising unemployment is exposing deeper structural problems in today’s AI-driven hiring economy. As competition intensifies — particularly for white-collar roles — job seekers describe a labor market that feels increasingly automated, opaque, and disconnected from human judgment. While employers continue to invest in AI and efficiency tools, the article argues that hiring systems have become less effective at identifying real talent and more punishing for workers navigating them. The result is a growing call to rebalance technology with transparency, accountability, and human decision-making.

👉 Read the full article: “Making the Jobs Market More Human Again” on the Washington ExaminerDownload the PDF