know.2nth.ai Software Software for agents
software · Software for agents · Skill Leaf

Where this branch meets Agents.

The Agents domain says agents are software, not prompt soup. This leaf is the concrete consequence: the repository is the agent's context, workspace, and audit trail all at once. The repo is what it reads, version control is how it's instructed and how its work is gated, and CI is the safety net that makes its autonomy safe. Repo-ready is agent-ready.

Repo-as-context SKILL.md in VCS Agent PRs CI safety net

The repository is the context window.

When a coding agent starts work, the first thing it does is read the repository — the file tree, the README, the existing code, the tests. The repo is its context. A clean, well-structured, well-documented repo gives the agent everything it needs to act competently; a chaotic one leaves it guessing, and a guessing agent produces guessing-quality work.

This reframes a lot of "AI strategy" as something far more mundane and achievable: good repository hygiene. The agent isn't reasoning about your business in the abstract — it's reasoning about what's in the repo. Everything that helps a new engineer get oriented (clear layout, honest docs, meaningful tests, sensible names) helps the agent get oriented, on every single task. The repo is the interface between your intent and the agent's action.

Context is a budget — structure spends it well

An agent can only hold so much in its context at once. A repo that's legible — predictable structure, a good README, an agent-instructions file pointing to what matters — lets the agent find the relevant 2% fast instead of burning its budget crawling the other 98%. Good structure isn't just nice for humans; it's literally what makes the agent efficient and accurate.

Capabilities as committed files.

The most important agent-era addition to a repo is text written for the agent — instructions, conventions, and reusable procedures, committed and versioned like everything else.

CLAUDE.md / AGENTS.md

The project briefing

A root file telling the agent how the project is laid out, how to build and test, and what conventions to follow. The agent reads it first, every time.

SKILL.md

Reusable procedures

A skill is a folder with a SKILL.md — instructions plus optional scripts the agent loads when a task calls for it. Capabilities shipped as files, not prompts.

Tests

Executable specification

Tests document what the code is supposed to do, in a form the agent can run. They're instructions the agent can verify itself against.

Conventions

The house style

Linters, formatters, and a style guide in the repo mean the agent writes code that fits — and CI rejects it when it doesn't.

The deeper point: an agent's "capabilities" aren't a property of the model — they're files in your repo. Agent Skills are version-controlled instructions; a CLAUDE.md is version-controlled context; tests are version-controlled specification. Improving what your agents can do is mostly writing and committing better files, which means it's reviewable, attributable, and compounding — exactly like the rest of this branch. You don't tune a black box; you edit text and merge a PR.

The agent works the way everyone works.

An agent doesn't get a special back door into your systems — and that's the point. It works the identical loop a developer does: clone the repo, create a branch, make focused commits, push, and open a pull request. The PR shows a human exactly what changed, with a description, a diff, and a discussion thread. Nothing the agent did reaches main until that PR passes CI and a reviewer approves it.

This is what makes "let an agent change our code" a sane sentence. The agent's autonomy is real — it can do a lot of work unattended — but it's bounded by the same gate as everyone else's. A reviewer reads the diff, not the agent's reasoning; the test suite runs regardless of who wrote the change; and if it's wrong, git revert takes it back as cleanly as any human mistake. The workflow doesn't change because the author is an AI; that uniformity is the safety.

This site is built this way

know.2nth.ai's own content — including this leaf — is authored by agents working in exactly this loop: a branch, commits, a pull request, CI building a preview, and a merge to main that auto-deploys to production. The agent has real leverage and the work is fully reviewable and reversible. That's not a future state; it's how the page you're reading got here.

The automated reviewer that never tires.

Human review doesn't scale to the volume of change a fleet of agents can produce — and it shouldn't have to. Continuous integration is the reviewer that does scale. Every agent PR runs the full pipeline: linters, type-checks, the test suite, a build, often a preview deploy. A regression gets caught automatically, in minutes, before a human spends attention on it. The test suite is, in effect, an automated reviewer that checks every agent change against the project's actual requirements, tirelessly.

The implication for investment is sharp: a strong test suite is the highest-leverage AI-safety measure a team can build. Not a model upgrade, not a clever prompt — tests. The better your tests, the more autonomy you can safely give an agent, because the more confidently the pipeline can tell a good change from a bad one without a human in the loop. And agents increasingly read the pipeline's output themselves: a failed test becomes feedback the agent acts on, fixing its own PR before review.

Defence in depth for autonomous change

The layers stack: the agent runs in a sandbox (restricted network/filesystem) so it can't reach secrets; its work lands on a branch, never directly on main; CI runs every check automatically; a human reviews the diff; and version control makes any merge instantly reversible. No single layer has to be perfect — together they make agent autonomy a controlled, auditable operation rather than a leap of faith.

Repo-ready is agent-ready.

The single most useful reframe for any organisation asking "how do we adopt AI?": the answer is mostly not about AI. It's about getting your work into a properly run repository. There's no separate "AI enablement" project — there's repository hygiene, and the agents follow.

The agent-readiness checklist

Code (and configs, and process rules) in version control. A sane branch-and-PR workflow with protected main. Tests that run in CI and mean something. A CLAUDE.md / AGENTS.md that orients an agent. Clear structure and docs. Secrets out of the repo, in a secrets manager. Tick those and you can hand an agent real work tomorrow. Miss them and the first step isn't a model — it's the foundation, which is the software work this whole branch describes.

This is the honest, and genuinely good, news: the work that makes a codebase agent-ready is the same work that makes it maintainable, auditable, and pleasant for humans. You were going to want all of it anyway. Agents just raise the return on doing it.

An affordable path to real AI leverage.

Foundations first, frontier models second

For SA teams, this is the most cost-effective AI roadmap there is: you don't need a frontier budget or a research team to get leverage from agents — you need disciplined repositories. Get the code, configs, and process rules into Git with a real PR-and-CI workflow, and the same agents anyone else uses become genuinely productive in your codebase, with a full audit trail that satisfies POPIA and FSCA change-control reviews for free. The investment is engineering hygiene, which is affordable, durable, and useful with or without AI. The agents are the upside on top.

Where this links in the tree.

Primary sources only.