A government IT team does not lose to bad code. It loses to a procurement cycle that takes 14 months to award a contract for a platform that will be technically obsolete in 18, to an accessibility finding that surfaces during a Section 508 audit six weeks before launch, and to documentation that made perfect sense to the person who wrote it and means nothing to the person who inherits the system after the next administration turnover. These are not hypothetical risks. They are the default failure mode of public sector technology work, and they are structural: procurement moves slower than the technology being procured, every public-facing system carries a compliance mandate that private sector teams never have to think about, and staff turnover across election cycles and political appointments means institutional knowledge walks out the door on a schedule nobody controls. A generalist AI chatbot has no model of any of this. It will write you a login form. It will not tell you that the login form needs a VPAT, that the RFP response needs a documented data flow diagram for the state privacy office, or that the runbook you are about to write needs to be legible to whoever holds this job in three years, not just to you.
Why ChatGPT and Cursor were never built for this
Ask ChatGPT or Claude.ai to help prepare a government IT modernization RFP response and you get well-written prose about the proposed architecture. What you do not get is a systematic pass over your actual system to identify which data flows touch personally identifiable information, which vendor components lack a current SOC 2 or FedRAMP authorization, or which subsystems would trigger a new privacy impact assessment. A generalist model answers the question you typed. It has no mechanism for surveying a codebase or a system architecture for regulatory exposure, because it was never built to hold a compliance framework in one hand and your actual infrastructure in the other. It will happily draft you a paragraph claiming compliance with a framework it has not actually checked your system against, which is worse than no answer, because a confident wrong answer in an RFP response becomes a contractual liability.
Cursor and GitHub Copilot solve an entirely different problem, and a real one: they make writing code inside an IDE faster. But autocomplete has no opinion about accessibility mandates, procurement documentation, or knowledge continuity across a reorg, because those are not code-completion problems. When a public-facing benefits portal fails a WCAG 2.1 AA audit, the fix is not a smarter autocomplete suggestion in a React component, it is a systematic review of every interactive element against a published standard, followed by a written remediation record that a compliance officer can sign off on. When an agency inherits a system built by a contractor whose task order expired eighteen months ago, the problem is not a missing code comment, it is the total absence of a document that explains what the system does, why it was built that way, and what happens if the database migration in the changelog gets rolled back. Neither the generalist model nor the autocomplete tool is built to close that gap, because closing it requires holding regulatory frameworks, system architecture, and long-lived documentation as first-class concerns, not afterthoughts to a code suggestion.
Shield, Warden, and Atlas: the compliance-to-continuity chain
Tonone's Shield is a regulatory risk advisor built to flag exposure before it becomes a finding, a fine, or a failed audit. For a government IT team, that means reading the actual system, not a policy document, and mapping where data flows create obligations under state privacy law, federal grant conditions, or agency-specific mandates. Shield does not draft policy from a template; it surveys what the system actually does and tells you where the gap is between that and what is required.
Once the exposure is mapped, shield-assess produces a structured regulatory exposure assessment for a described product or geography, the kind of document a compliance office needs before it will sign off on an RFP response, and the kind of document that catches the FedRAMP-adjacent gap or the state privacy statute conflict before a procurement officer does. Tonone's Warden complements this from the security side: where Shield answers "what does the law require," Warden answers "is the system actually defensible," running a full audit of secrets, IAM, auth, and public storage exposure on the public-facing systems that carry the accessibility and security mandates public sector work always carries. And Tonone's Atlas closes the loop on the third pain point, staff turnover, by generating onboarding documentation written for the day-one engineer who knows nothing about the system, the version of documentation that has to survive the person who wrote it leaving before the next budget cycle.
Tonone's Shield flags regulatory exposure in a government system by surveying actual data flows and features, not by drafting policy language from a template.
A worked example: the benefits portal RFP
Say a state health and human services agency is six weeks from submitting a response to a $4.2M RFP for a benefits eligibility portal rebuild. The current system was built by a contractor whose task order ended fourteen months ago, runs on a stack nobody on the current staff fully understands, and needs to pass a state privacy office review before the RFP response can even be finalized. The IT director has three problems stacked on top of each other: prove the current system's compliance posture to write an honest response, prove the proposed rebuild will pass a Section 508 accessibility audit before launch, and leave behind documentation that survives whoever holds this job after the next gubernatorial transition, roughly 20 months out.
A generalist chatbot would draft compliance language for the RFP response that sounds correct and cannot be verified against the actual system. Shield does something different. It runs shield-recon against the portal's data flows first.
Shield Recon, Benefits Eligibility Portal
System: legacy .NET portal, SQL Server backend, SSO via state IdP.
Data flows identified: 6
1. Applicant SSN + income data -> eligibility engine (unencrypted at rest)
2. Eligibility engine -> third-party verification API (no data processing agreement on file)
3. Caseworker notes -> shared file server (no access logging)
4. Portal session data -> analytics vendor (PII in query params, uncontracted)
5. Document uploads -> local disk storage (no retention policy applied)
6. Audit log -> none configured for eligibility overrides
Exposure flags:
- Flow 1: state data-at-rest encryption statute likely unmet. High priority.
- Flow 2: no DPA on file for third-party verification vendor. RFP blocker.
- Flow 4: PII in analytics query params. Immediate remediation candidate.
- Flow 6: no audit trail for manual eligibility overrides. Federal grant
condition likely requires this. RFP blocker.
Recommendation: address flows 2 and 6 before RFP submission, disclose
flows 1, 3, 4, 5 as known findings with a remediation timeline in the
proposed rebuild. An honest disclosed-and-scheduled finding is defensible.
An undisclosed finding discovered post-award is not.That recon output changes what the RFP response actually says. Instead of a paragraph claiming the current system is compliant, the agency can write an honest disclosure with a remediation plan, which procurement reviewers trust far more than a clean-sounding claim that falls apart under a follow-up question. shield-assess then turns the two RFP-blocking flows into a formal exposure assessment the privacy office can review in an afternoon instead of a month. In parallel, Warden runs warden-audit against the portal's public-facing surface and flags that the document upload endpoint has no rate limiting and the session tokens do not rotate, both accessibility-adjacent findings in the sense that a DDoS-degraded portal fails every accessibility standard equally, since a system that is down is not accessible to anyone. Once the rebuild is scoped and underway, Atlas runs atlas-onboard to produce the documentation set: what the eligibility engine does, where the third-party verification contract lives, what the retention policy is and why, and how to deploy the thing, written so that the IT director's eventual successor, who may take the job after the current administration's term ends, can read it cold and understand the system in an afternoon rather than reverse-engineering it from commit history. Atlas also runs atlas-adr to record why the rebuild chose row-level tenant isolation over a schema-per-county model, a decision the next administration will otherwise have to re-litigate from scratch because nobody wrote down why it was made the first time.
The result is an RFP response with disclosed, scheduled findings instead of unverifiable compliance claims, a hardened public-facing system going into the accessibility audit instead of one discovered mid-audit, and a documentation set that outlasts the org chart it was written under. None of that comes from a smarter autocomplete suggestion. It comes from agents that were built to hold regulatory frameworks, security posture, and long-lived documentation as the actual deliverable, not as an afterthought to code.
Tonone's Atlas writes onboarding documentation for the day-one engineer who knows nothing about the system, the version that has to survive the person who wrote it leaving the agency.
Tonone vs the alternatives for government IT work
Government IT has three structural constraints that most AI tooling was never designed against: procurement timelines that outlast the technology, compliance mandates baked into every public-facing system, and documentation that has to survive political and staffing turnover the private sector rarely sees. The table below compares how Tonone's Shield, Warden, and Atlas handle those constraints against a generalist chatbot and an editor-based autocomplete tool.
| Capability | Tonone | Generalist chatbot | Cursor / Copilot |
|---|---|---|---|
| Maps regulatory exposure against actual data flows | Yes, shield-recon surveys the real system before any claim is drafted | No, drafts compliance language without verifying it against the system | No, no concept of regulatory frameworks |
| Produces a defensible RFP compliance disclosure | Yes, shield-assess turns exposure findings into a structured assessment | No, produces prose that reads well and cannot be verified | No, not a document-generation tool for this purpose |
| Audits public-facing system security posture | Yes, warden-audit covers auth, IAM, public storage, rate limiting | No, no systematic audit capability | No, per-line suggestions only, no system-wide audit |
| Produces onboarding docs for staff turnover continuity | Yes, atlas-onboard writes for a day-one reader who knows nothing | Partial, can draft prose but has no view of the actual system | No, autocomplete does not generate standalone documentation |
| Records why a decision was made for future administrations | Yes, atlas-adr documents alternatives considered and trade-offs accepted | No, no persistent decision record across sessions | No, no architecture decision tracking |
| Distinguishes disclosed findings from undiscovered ones | Yes, recon runs before submission, not after an auditor finds it | No, has no recon step, only answers what is asked | No, not built for compliance workflows |
If your agency is heading into an RFP cycle or a compliance audit, run /shield-recon against the system first, before anyone drafts a compliance claim. A disclosed, scheduled finding is defensible. An undisclosed one discovered by an auditor or a competing bidder is not.
None of this replaces the compliance office, the CISO, or the procurement team. It gives them a system-grounded starting point instead of a blank page, which matters most in an environment where the people doing this work rotate faster than the systems they are responsible for. A caseworker portal, a permitting system, a benefits eligibility engine, these outlive the staff who build them by design, because government systems are built to serve residents across administrations, not to serve the career of whoever wrote the first commit. Documentation and compliance mapping that assume continuity, rather than assuming the current team will always be around to explain the system verbally, is the only approach that actually survives contact with how government IT staffing really works.
The procurement angle deserves its own callout because it is the constraint that most distorts government IT decisions. A modernization RFP can take a year to write, a year to award, and eighteen months to implement, which means the technology choices baked into the response have to hold up against a moving target four years out, not the state of the art on the day the proposal was drafted. A finding disclosed and scheduled during the response phase becomes a contract line item with a deadline. The same finding, discovered by a state auditor two years into the contract, becomes a corrective action plan, a public report, and in some agencies a line of questioning in front of an oversight committee. Running Shield's recon and assessment before submission is not a nice-to-have step in the proposal process, it is the difference between owning the narrative on a known gap and having the narrative handed to you by someone else's audit.
Install and try
Tonone is free and MIT-licensed. Install it once and all agents, including Shield, Warden, and Atlas, are available in your Claude Code session. You pay only for the Claude Code token usage during the work itself, no separate license fee to justify in next year's IT budget request.
1. Add to marketplace
2. Install Shield
Frequently asked questions
What do Shield, Warden, and Atlas do for government IT teams?+
Shield maps regulatory and compliance exposure in a system by surveying actual data flows, useful before an RFP response or privacy office review. Warden audits public-facing systems for security issues like exposed secrets, weak auth, and public storage. Atlas produces onboarding documentation and decision records built to survive staff turnover across administrations.
How is this different from asking ChatGPT to help with a government RFP?+
ChatGPT drafts compliance language based on the prompt you give it, without verifying it against your actual system. Shield's shield-recon skill surveys real data flows first, so any compliance claim in the RFP response is grounded in what the system actually does, not a guess.
Can Tonone help with Section 508 or accessibility compliance?+
Warden's security audit covers the stability and integrity of the public-facing system, a precondition for accessibility since a degraded or insecure system is inaccessible to everyone. Shield's exposure mapping surfaces related compliance gaps that intersect with accessibility mandates on public-facing government systems.
Why does government IT documentation need to be different from a typical company's?+
Government systems are built to serve residents across administrations, not to serve the career of the person who wrote the first commit. Staff and political leadership turn over on a schedule the system does not control, so documentation has to be legible to a day-one reader with zero prior context. Atlas's atlas-onboard skill is built for exactly that reader.
What is shield-recon and when should a government agency run it?+
shield-recon surveys a system's actual features and data flows to identify regulatory exposure. Government IT teams should run it before submitting an RFP response or before a compliance or privacy office review, so any findings are disclosed and scheduled rather than discovered by an auditor first.
Is Tonone free to use for a government agency?+
Yes. Tonone is MIT-licensed and free to install. You pay only for the underlying Claude Code token usage during the work itself, which makes it straightforward to justify in an IT budget cycle without a separate procurement action for licensing.
How does atlas-adr help with staff turnover in government IT?+
atlas-adr records what was decided, why, what alternatives were considered, and what trade-offs were accepted. When a new administration or a new IT director inherits the system, the reasoning behind past architectural decisions is written down instead of having to be reconstructed or re-litigated from scratch.
What happens if a compliance gap is found after an RFP is already submitted?+
An undisclosed finding discovered post-award by an auditor or a competing bidder is far more damaging than a disclosed, scheduled finding in the original response. Running shield-recon and shield-assess before submission lets the agency control the narrative around known gaps instead of being caught by them later.