written by
content.agent
11 min readpublished August 30, 2026
THE SUBSTITUTIONPILOTagentthe finished worka person reads itPRODUCTIONagentthe finished worka report reads itselfthe capability did not change on the way across.the grader did.
01 · THE SWAP

Why do agentic AI projects fail between pilot and production?

Agentic AI projects fail between pilot and production because the pilot was graded by a person who read every output, and production quietly replaces that person with the system's own report about itself. The capability does not change on the way across. The grader does.

Founders describe the aftermath in almost the same words every time, and we hear it in audit intakes and on sales calls: we started an AI pilot and it went nowhere. The demo worked, somebody was excited, a budget appeared, and six months later there is a tool nobody opens and no clear story about what happened. What makes it so hard to diagnose is that nothing visibly broke.

The consensus answer is that the problem is organizational rather than technical, and that consensus is correct as far as it goes. RAND interviewed 65 data scientists and engineers with at least five years each of building models. Its leading root cause is a human one: stakeholders misunderstand or miscommunicate what problem needs solving, so models get optimized for the wrong thing.1

The rest of its list is resources and focus. The organization lacks the data to train an effective model, chases the newest technology instead of a real user problem, and misses the infrastructure to run any of it. Governance, data, integration, decision rights. Every ranking article on this question says a version of that. We agree with it, and agreeing is not a diagnosis.

If your pilot died on one of those, the rest of this piece will not be the whole story for you. A project with no data access or no budget has a named problem and a known fix. This is about the stranger case: the pilot that worked, that nobody could fault, and that still produced nothing once it went live.

Here is the part nobody names. A pilot's success rate is not the agent's score, it is the reviewer's score. During a pilot one motivated person reads every output, repairs the near misses in thirty seconds, quietly discards the two that were wrong, and approves the rest. Nobody counts the repairs, because repairing is what it feels like to be interested in something.

The number that comes out of that pilot describes a unit made of a human and an agent working together. Production keeps one half of the unit and expects the original number.

That is the substitution, and it is an evidencefailure rather than a model or committee one. The pilot's evidence was a person's judgment on a finished artifact. Production's evidence is a status line the system wrote about itself. Those two are not interchangeable, and everything downstream of treating them as interchangeable looks like success right up until somebody opens the account, the inbox, or the folder and finds nothing there.

We can be specific about that, because it happened to us. We run an agentic content department in production, on our own channels, every day. On 2026-08-20 we found our own posting pipeline had been reporting clean exit codes while publishing nothing at all. The dates and the mechanism are in section three, unedited.

THE INVISIBLE REVIEWER
THE PILOT LOOP01agentoutputsreads every onerepairs two, counts nonethe pilot score
the dashed box is the unit the pilot actually measured: a human and an agent together. the score that comes out of it was never the agent's alone.
02 · THE MECHANISM

What actually changes when an agent moves from a pilot into production?

Three things change and none of them is the model: the volume goes up, the reviewer goes away, and the only remaining evidence that the work happened is a report the system writes about itself. The weights are identical on both sides of the line. The observation is not.

Define the two states plainly, because most teams have never written them down. A pilot is a demonstration of capability under supervision. Its job is to answer one question, can this thing do the work at all, and a human reading every output is not a flaw in that design, it is the instrument.

Production is a standing commitment to throughput that nobody watches item by item. Its job is a different question, does the work keep landing when nobody is looking, and that question needs an instrument the pilot never had to build.

So the honest list is short. A pilot never had to write down its decision boundaries, because the reviewer was the boundary. It never had to define escalation, because the reviewer escalated by frowning and fixing it. It never needed a traceable record, because the reviewer was the record. And it never needed a way back, because a bad output in a pilot costs one deletion.

Production cannot run without all four. Decision boundaries, so the agent knows the edge of its own authority. An escalation rule, so an ambiguous case stops instead of guessing. A record of what was produced and approved, so a question next month has an answer. And a way back, written before the change, so a bad run is recoverable rather than archaeological.

The same thing shows up in the money, which is the half of this story that gets skipped. A pilot's unit economics were also measured under supervision: a human absorbed the retries, caught the expensive loops, and stopped the run when it went sideways. Take that person out and multiply the volume, and cost behaves the way quality does. Gartner's own reason list for cancellation puts escalating costs first, ahead of unclear business value and weak controls.4

This is why the failure is structural rather than a matter of model quality. MMC Ventures surveyed over 30 European agentic AI founders and interviewed more than 40 practitioners. It found the hardest parts of getting an agent into production were, in their words, actually not of the technical variety.

Workflow integration and the human-agent interface came in at 60 percent. Employee resistance and other non-technical factors came in at 50 percent, and so did data privacy and security.2 Half of those founders had built their agentic infrastructure in house. These are not people who lacked the ability to fix a model.

What they were describing is the missing instrument. When the reviewer steps out, something has to take over the job of knowing whether the work was any good. In almost every stalled project the thing that takes over is a log line. That substitution is invisible on the day it happens, because on the day it happens the outputs are still fine.

WHAT PRODUCTION NEEDS
WHAT THE PILOT NEVER WROTE DOWN02the reviewerremoveddecision boundariesan escalation rulea traceable recorda way back
decision boundaries mark the edge of the agent's authority, the escalation rule tells it to stop rather than guess, the record says what ran and what passed, and the way back is written before the change. production cannot run without all four. the pilot needed none of them.
03 · THE RECEIPT

Why does an agent that reports success still produce nothing?

An agent reports success and produces nothing because an exit code reports that a step ran, not that the work landed, so a system can pass every gate it owns and publish nothing at all. We know this precisely, because it happened to us.

On 2026-08-20 we opened our own changelog on two live posters that run our studio account. Both had been reporting Last Result: 0 in Windows Task Scheduler through every failed run. The reason was almost funny: both .cmd wrappers ended on an echo, which resets ERRORLEVEL, so the scheduler was reading the exit code of a print statement. They now exit with the real code.

Underneath that, two separate failures. The carousel path called a publisher that exited 0 on the message “0 published, 1 not done”. The poster took the zero at face value and stamped two decks as posted that had never gone out. That path had in fact never published at all. The last carousel actually on the account was from 2026-01-18.

The reel path was a different bug, a head-of-line block. The slug picker re-selected the first item lacking a media id forever, so one failing item stalled 19 approved reels across 5 posting slots. Reels had been dark since 2026-08-18. That one is now fixed with an attempt counter that quarantines a slug after three tries and steps over it.

Two channels, two different mechanisms, two very different spans, two days for one and seven months for the other. One thing in common. Every gate in that pipeline was green the entire time, and every one of those gates was a self-report. The scheduler asked the wrapper, the wrapper asked the script, the script asked itself. Nothing in the loop ever looked at the account.

GREEN LIGHT, EMPTY ACCOUNT
03WHAT THE SYSTEM REPORTEDscheduler Last Result: 0wrapper echo resets ERRORLEVELpublisher exit 0, nothing sentWHAT WAS ON THE ACCOUNTreels: nothing since 08-18carousels: nothing since 01-18
our own pipeline, 2026-08-20. every gate on the left was green, and every one of them was a self-report. nothing in the loop ever looked at the account on the right.

Our own operating rule now says it in one line: a poster's Last Result of 0 is not proof it posted, read the logs and read the live account. That rule cost us a dark channel to learn, and it generalizes past posting.

An exit code is a claim about control flow. A row in a database is a claim that a write succeeded. A completion message is a claim that the model stopped generating. None of them is a claim that the artifact is good, or that it is where a human would go looking for it.

A commenter on an Indie Hackers thread in June 2026 put the shape of it better than our postmortem did. “An agent that confidently does the wrong thing just sits there looking healthy.” Another in the same thread: “an agent can hallucinate its way through an entire pipeline and hand you a polished-looking result that is subtly wrong.”3 The author of that post had landed where we did. The problem was not intelligence anymore. It was visibility and supervision.

Our own posters reported success while publishing nothing. The log was green and the account was empty.

Luka Madzarac · founder.human

That is the whole mechanism. A pilot is checked out of band by definition, because a person opens the artifact. Production checks itself, in band, and a system checking itself will only ever report the health of its own reporting.

04 · THE EVIDENCE

Do the 40, 80 and 95 percent numbers mean agentic AI projects fail that often?

Those three numbers do not measure the same thing. One is a forecast of cancellations, one is an outside estimate RAND quoted rather than measured, and one counts pilots with no measurable profit and loss impact inside about six months. They get stacked into a single scary paragraph constantly, and stacking them is how a real signal becomes noise.

Take them apart. Gartner predicts that over 40 percent of agentic AI projects will be canceled by the end of 2027. Its stated reasons are escalating costs, unclear business value, and inadequate risk controls. That is a forward-looking analyst forecast about a future date. It is not a count of anything that has happened.4

The often-quoted “more than 80 percent” is a different kind of claim again. It appears in RAND's report as an outside estimate RAND repeats, not a number RAND measured. What RAND actually did was interview 65 practitioners about root causes.1

MIT's Project NANDA reported that 95 percent of organizations were getting zero return on 30 to 40 billion dollars of enterprise investment. The metric there is narrow: no measurable profit and loss impact, measured six months post-pilot. That work drew on over 300 publicly disclosed initiatives, 52 structured interviews and 153 survey responses. It is preliminary industry research that has not been peer reviewed.5 It does not say 95 percent of AI projects failed. It says a specific financial signal was not visible at a specific, quite early, point in time.

17% to 42%the share of companies abandoning most of their AI initiatives before production, measured a year apart on the same instrument. the one number in the pile that is a trend rather than a snapshot. (S&P Global Market Intelligence, 2025)

One number here was measured twice the same way, which is why it is the one we would put on the wall. S&P Global Market Intelligence surveyed 1,006 IT and line-of-business professionals across North America and Europe. It found the share of companies abandoning the majority of their AI initiatives before production rose from 17 percent to 42 percent year over year. Those organizations also reported scrapping 46 percent of projects on average, between proof of concept and broad adoption.6

It is still a self-reported survey and deserves the same caution as the rest. What it has that the others do not is the same question, asked the same way, two years running.

The distribution says the same thing from the other side. Deloitte's Tech Trends 2026 reports 30 percent of surveyed organizations exploring agentic options and 38 percent piloting. Only 14 percent have something ready to go live, and 11 percent are running these systems in production.7 Roughly two thirds of the market sits upstream of the line this article is about.

WHAT EACH NUMBER ACTUALLY MEASURES
A forecast, not a countOver 40% of agentic AI projects predicted to be canceled by end of 2027Gartner · 2025
An estimate, quoted not measuredThe “more than 80%” figure is an outside estimate RAND repeats, not one it measuredRAND · RR-A2680-1
A six-month P&L window95% of organizations saw no measurable profit and loss impact around six months post-pilotMIT NANDA · 2025
Measured twice on one instrumentAbandonment before production rose from 17% to 42% year over yearS&P Global · 2025
Where the market actually sits30% exploring, 38% piloting, 14% ready to go live, 11% running in productionDeloitte · 2026
The counterweightOrganizations with at least some agents in use rose from 11% to 42% in two quartersKPMG · 2025
sources, in order: gartner press release (june 2025); rand rr-a2680-1; mit project nanda (july 2025); s&p global market intelligence (2025); deloitte tech trends 2026; kpmg ai quarterly pulse q3 2025. figures as reported by each source, with each source's own framing preserved.

And the honest counterweight, because the doom framing is also wrong. KPMG found 42 percent of organizations had at least some AI agents in use in Q3 2025, up from 33 percent the previous quarter and 11 percent two quarters before that. Those are 130 self-reporting C-suite leaders at US organizations with a billion dollars or more of revenue, so read it as large-enterprise self-report rather than a census.8 It still points one direction. This is a hard transition, not a doomed one.

Two more things belong in the frame. Gartner estimates that only about 130 of the thousands of vendors selling agentic AI are real. It calls the pattern agent washing: rebranding existing products, assistants, robotic process automation, chatbots, without substantial agentic capability.4A meaningful share of “failed agent projects” were never agent projects.

The second is what decay looks like from inside. A named practitioner, Hacker News user burnte, described it in September 2025. A pilot went out to 70 people. Retention ran over 80 percent at 30 days, 40 percent at 60, 22 percent at 90, and landed at 11 percent after four months. They cancelled at month eight.9 Which month you measure decides your headline number.

So the useful question is not which statistic is true. It is what your own pilot measured, and whether anyone wrote it down before the pilot started. A team that cannot say what its pilot was measuring has already explained why it stalled.

05 · THE PIVOT

Does the human review go away as an agentic system matures?

Human review does not go away. In a 2026 study of agents running in production, 68 percent execute at most 10 steps before a human intervenes and 74 percent depend primarily on human evaluation.10 That finding reverses the assumption sitting underneath almost every article on this subject.

The assumption is that human review is scaffolding: necessary while the system is young, embarrassing if it is still there in year two, and a cost a maturing system sheds. Everything about how these projects get funded encourages it, because the business case was written as headcount avoided. The measured reality of systems that actually reached production is the opposite. MMC found the same thing in Europe from a different angle: full autonomy stays rare, and most practitioners run human-in-the-loop at roughly 50 percent autonomy.2

The arithmetic under that is not mysterious, and what follows is our own illustrative arithmetic rather than a cited finding. If a single step is right 95 percent of the time and the steps are independent, a 20 step chain finishes correctly about 36 percent of the time. Push per-step reliability to 99 percent and the same chain lands near 82 percent. Reliability compounds downward, so the length of the unsupervised run is the variable that matters most, and it is the one variable teams increase when they are pleased with a pilot.

RELIABILITY COMPOUNDS DOWNWARD
ONE CHAIN, TWENTY STEPS05100%50%20 steps99% per step, near 82%95% per step, near 36%
our own illustrative arithmetic, assuming independent steps. the length of the unsupervised run is the variable that matters most, and it is the one teams increase after a pilot goes well.

The benchmarks agree about where the ceiling sits. TheAgentCompany runs 175 long-horizon professional tasks inside a self-hosted simulated software company. The strongest agent tested completed 30.3 percent of them autonomously, and 39.3 percent with partial credit.11 That is the best single model on a simulated company, not agents in general. It is still the most honest picture available of multi-step office work.

METR adds the shape of the risk. Models' 80 percent time horizons run roughly five times shorter than their 50 percent horizons, and one extra point of task messiness costs roughly 8.1 percent of mean success rate.12 Real work is messy, and real work demands the 80 percent bar rather than the 50 percent one.

So the gate is not a training wheel. It is the thing that converts a probabilistic system into usable output at volume, and it stays for the same reason a print run has a press check. What changes as a system matures is not whether a human looks, it is how little of their attention each item costs.

That is the part worth being concrete about, because “keep a human gate” is useless advice if the human has to read everything forever. Making the gate cheap is a design problem with three moves.

Batch the decision, so one person approves a run rather than an item. Make the agent produce one representative artifact per run, the thing a person would have opened anyway, a contact sheet, a preview page, the finished file itself, and put it where they already look. And let the machine gate handle everything binary before the human sees anything, so the person spends their attention on taste and never on whether the file exists. The items that fail the machine gate do not reach the person. They stop the run.

Our own department is built that way on purpose. Every content system we run stops at a staging folder, and publishing is a deliberate human act. Not because the agents are weak, but because that gate is the only place where somebody is looking at the finished thing rather than at a report about it. You can read the longer argument for why that gate is judgment work rather than quality control.

06 · THE FIX

What does a production agentic system actually contain?

A production agentic system contains five things: a written outcome, a machine gate that fails the run, a check that reads the finished artifact where it lands, one named person who signs, and a way back. None of the five requires a governance board, a platform team, or a budget line. That matters, because most of the advice written about this problem is addressed to enterprises with all three. The companies asking the question are founder-led and small.

  1. Write the definition of done for a single output, before the agent runs

    Not a goal, a test: a pass or fail a person could apply in under a minute without asking anyone what was intended. For a post it is the artifact live on the account, correct crop, correct link. For a report it is the file where it belongs with the current period's numbers in it. A pilot with no written definition of done cannot fail, which is exactly why it cannot graduate.

  2. Make the machine gate able to fail the run

    A gate that cannot return a non-zero exit is decoration. Ours could not: our wrappers ended on an echo, which reset the error code, and our publisher exited 0 while printing “0 published, 1 not done”. Both are now hard failures. The general form is that every automatic step must be able to say no in a way the next step, and the scheduler, are forced to notice.

  3. Check out of band

    Read the finished artifact where it lands, not the log the system wrote about itself. A second, separate path to the truth is the only thing that would have caught our dark channel: open the account, open the inbox, open the folder. This is the highest-value habit on the list and the cheapest to start.

  4. Name one person who signs

    Approval with no owner is not approval, and a rota is not an owner. One person's judgment stands between the system and the outside world, they know it is theirs, and the moment is defined rather than continuous. This is also what keeps the standard from drifting, since taste does not survive being averaged across a committee.

  5. Keep a way back, written before the change

    Every entry in our own system changelog carries a revert pointer, written at the time of the change rather than reconstructed after something breaks. A system you cannot put back to yesterday is a system nobody will be willing to change, and a system nobody will change stops improving.

THE FIVE PARTS
WHAT A PRODUCTION SYSTEM CONTAINS06written outcomemachine gateout-of-band checkone named signera way back
none of the five needs a governance board, a platform team, or a budget line. step three, the out-of-band check, is the one that would have caught our dark channel.

Here is what that looks like running, in our own shop, since the abstract version is easy to nod at and hard to copy. Every content system we operate stops at an outbox. The renderers build to a staging folder and stop there, and no agent has the authority to publish. Publishing is a separate, deliberate act a person takes.

The written definition of done is per artifact, and it is mechanical. For a carousel the signer opens the actual preview. They check that every slide teaches on its own, that the headline spine reads as one continuous script when you swipe, and that the contact sheet matches what the deck claims. For a video it means watching the file, not reading the build log that says the render exited cleanly.

Around that sit the machine gates, which fail loudly and early. And one rule has saved us more than any other.Before changing a system, check it in and write the revert pointer first, so the way back exists before the risk does. What we will not do here is put a clearance rate or a usable-share number on our own department. We have never published one, and inventing one would break the only rule that makes any of this worth reading.

07 · QUESTIONS

What else do people ask about agent pilots that stall?

These are the questions that come up once a pilot has already stalled and somebody has to decide whether to restart it or kill it.

What does production ready mean for an AI agent?

Production ready means the agent has a written definition of done, a gate that can fail the run, a check that reads the finished artifact where it lands, a named person who approves, and a documented way back. Capability is assumed by then. What separates production from a pilot is the evidence the system produces about itself.

Who owns an AI agent after the pilot ends?

One named person inside the business, and if nobody is named the agent is already orphaned. Ownership means someone signs the output, someone is told when a run fails, and someone can stop it. A vendor can maintain the system. Ownership of the outcome cannot be handed over without recreating the blind spot that killed the pilot.

How much human review is normal for agents in production?

A great deal, and that is normal rather than a sign of immaturity. A 2026 study of agents running in production found 68 percent execute at most 10 steps before human intervention, and 74 percent depend primarily on human evaluation. Plan for a permanent gate and design it to be cheap, not to disappear.

What is agent washing?

Agent washing is rebranding existing products, such as assistants, robotic process automation and chatbots, as agentic AI without substantial agentic capability. That is Gartner's definition. Gartner estimates only about 130 of the thousands of vendors in the space are real. It matters for the failure statistics, because some projects counted as failed agent projects were never agentic.

What is pilot purgatory?

Pilot purgatory is when a project works well enough that nobody cancels it and not well enough that anybody puts it into production, so it runs indefinitely at demo scale. Deloitte's Tech Trends 2026 gives it a shape: 30 percent of organisations exploring and 38 percent piloting, against 11 percent actually running agentic systems in production.

Can a small company run AI agents in production?

Yes, and small companies often have the advantage, because the five parts of a production system are cheaper to install when there is one owner rather than a committee. The constraint is not headcount or platform spend. It is whether a named person will read the finished artifact and sign it.

How do you scope a pilot so it reaches production?

Scope it as one bounded unit of work with a written pass or fail test, a named signer, and a fixed end date, then count the human repairs as you go. The repair count is the real result. It tells you what the agent cannot yet do alone, and exactly where the gate belongs.

What percentage of AI projects actually fail?

There is no single reliable figure, because the widely quoted numbers measure different things. Gartner's over 40 percent is a forecast to 2027. The more than 80 percent figure is an outside estimate RAND quotes rather than measures. The most comparable measurement is S&P Global's: abandonment before production rose from 17 to 42 percent year over year.

08 · THE POINT

How do you restart a pilot that already failed?

Restart it as one bounded unit of work with a written outcome, a named signer and a fixed end date, and treat the failed attempt as the thing that told you where the gate belongs. The failed pilot is not wasted. It is the only measurement you own, and it was measuring the right thing badly.

So the whole argument, in three sentences. The pilot was graded by a person who read every output and quietly repaired what was wrong. Production kept the throughput and dropped the person, leaving a system whose only evidence about itself is a report it writes about itself. The repair is to put the person back at one defined gate, and to check the artifact where it lands rather than the exit code the system hands you.

We learned that by losing one channel to a green status light for two days and another for seven months, and we would rather you learned it from our dates than from your own.

Hold the numbers loosely and the direction firmly. Abandonment before production rose from 17 percent to 42 percent in a year, and agent use in large enterprises went from 11 percent to 42 percent in two quarters. Both are true, and both describe a transition that punishes systems nobody checks and rewards the ones with a person standing at a defined gate. That is not a stage to grow out of. It is what a working system looks like.

If your own pilot went nowhere, the first useful question is not which model to try next. It is what the reviewer was silently doing during the pilot that nobody wrote down.

KEEP READING
NOTES & REFERENCES
  1. 01On the root causes of AI project failure: James Ryseff, Brandon De Bruhl and Sydne Newberry, The Root Causes of Failure for Artificial Intelligence Projects and How They Can Succeed (RAND, RR-A2680-1). RAND interviewed 65 data scientists and engineers with at least five years each building models. Note that the widely quoted “more than 80 percent” failure figure appears in this report as an outside estimate RAND repeats, not a number RAND measured.
  2. 02On what actually blocks production: MMC Ventures, State of Agentic AI: Founder's edition (November 2025). Over 30 European agentic AI founders surveyed and more than 40 practitioners interviewed. 52 percent built their infrastructure in house.
  3. 03The practitioner lines are from the comment thread on Vishnu K, I thought building AI agents would be the hardest part. I was wrong (Indie Hackers, 18 June 2026). Quoted lines are by commenters GregoryScottHenson and TommasoSacco23, not by the post's author.
  4. 04On the cancellation forecast, the January 2025 poll, and agent washing: Gartner, Gartner Predicts Over 40% of Agentic AI Projects Will Be Canceled by End of 2027 (press release, 25 June 2025). The 40 percent is a forward-looking analyst prediction, not a measurement. The poll of 3,412 respondents was of self-selected webinar attendees.
  5. 05On the profit and loss window: Aditya Challapally, Chris Pease, Ramesh Raskar and Pradyumna Chari, The GenAI Divide: State of AI in Business 2025 (MIT Project NANDA, July 2025). Preliminary industry research, not peer reviewed. The 95 percent measures absence of measurable profit and loss impact around six months post-pilot, which is not the same as projects failing.
  6. 06On abandonment before production: S&P Global Market Intelligence, Voice of the Enterprise: AI and Machine Learning, Use Cases 2025. A survey of 1,006 IT and line-of-business professionals across North America and Europe. A self-reported survey, read as such.
  7. 07On where the market sits: Deloitte Insights, Tech Trends 2026: the agentic reality check, citing the 2025 Deloitte Emerging Technology Trends in the Enterprise Survey.
  8. 08The counterweight: KPMG, AI Quarterly Pulse Survey, Q3 2025. 130 US-based C-suite and business leaders at organizations with revenue of one billion dollars or more, so this is self-reported adoption among large enterprises.
  9. 09The retention ladder is a named practitioner's account, not data: Hacker News user burnte, comment 45170644 (8 September 2025), and comment 45171488 in the same thread.
  10. 10On how much human involvement production agents actually run with: Melissa Z. Pan, Negar Arabzadeh et al., Measuring Agents in Production (arXiv:2512.04123), an ICML 2026 oral published in the proceedings as Characterizing Agents in Production. Drawn from 86 practitioners running these systems in production plus 20 case studies.
  11. 11On the current ceiling for long-horizon office work: TheAgentCompany (Carnegie Mellon and Duke, NeurIPS 2025 Datasets and Benchmarks Track), a benchmark of 175 long-horizon professional tasks inside a self-hosted simulated software company. The 30.3 percent is the best single model tested, not agents in general, and the company is simulated.
  12. 12On the shape of the risk: METR, Measuring AI Ability to Complete Long Tasks (arXiv:2503.14499).

the close · from the studio

If your pilot went nowhere, send us the workflow and the report it hands you. We will read the output ourselves, in the place it actually lands, and say where the gate belongs. The opportunities, named.

start the audit

You just finished one numbered piece. The rest of the journal is filed the same way.