A methodology, not a tool · For CTOs & Engineering Leaders

Upskill Your Engineering Org for the AI Era.

Your team is already using AI to write code. The question is: with a method, or without one?

CRAFT Method is the structured framework — Curate, Refine, Architect, Fortify, Test — that makes AI-native development an organisational capability, not individual chaos.

AGENTS.md context spec
ISO 42001 aligned
EU AI Act ready
Agentic CI/CD native
◉ TELEMETRY · 5/5 PRACTICES STREAMING ● 99.97%
AI-NATIVE INDEX
CURATE
92%
REFINE
78%
ARCHITECT
84%
FORTIFY
71%
TEST
88%
VELOCITY · LAST 30 DAYS
The method
What is CRAFT?

Scrum structured agile. CRAFT Method structures AI-native development.

Curate. Refine. Architect. Fortify. Test.

Five practices — Curate, Refine, Architect, Fortify, Test — that give engineering leaders a repeatable, governable framework to upskill their entire organisation for AI-native software development.

Not another AI tool. Not a prompt library. A complete method that turns AI adoption from individual experimentation into organisational capability.

From context to ship · governed at every step

From context to ship, five practices, zero exceptions.

Every line of AI-generated code passes through the CRAFT pipeline. Curate the context. Refine the spec. Architect within governed patterns. Fortify against AI risk. Test before AI ships.

C
CURATE
AGENTS.md · ADRs · context graph
R
REFINE
Specs · predicates · traceability
A
ARCHITECT
Patterns · agentic review · ADRs
F
FORTIFY
SAST · DAST · SCA · AIBOM
T
TEST
Coverage · gates · governed ship
Your method, codified

One file your AI reads. One method your org runs.

AGENTS.md is your method as code — the single source of truth your agents, your CI, and your auditors all read. Every team, every repo, every agent: the same context, the same rules, the same governance.

/.craft/AGENTS.md YAML ● VALIDATED
1 # AGENTS.md
2 # Example: the canonical context file CRAFT teaches teams to write
3
4 org: your-organisation
5 default_practice: curate
6 context:
7 codebase: indexed (codebase intelligence)
8 patterns: governed (your ADRs · your standards)
9 ownership: team-map (auto-generated)
10
11 agents:
12 - id: curate.context
13 role: "Curate context AI agents consume"
14 gate: required
15 - id: refine.spec
16 role: "Refine specs before AI generates code"
17 gate: required
18 - id: architect.pattern
19 role: "Architect within governed patterns"
20 gate: required
21 - id: fortify.security
22 role: "Fortify against AI-introduced risk"
23 sast: enabled
24 aibom: required
25 - id: test.coverage
26 role: "Test before AI ships"
27 min_coverage: 0.85
28
29 governance:
30 iso_42001: aligned
31 eu_ai_act: ready
32 audit: continuous
33
The Organisational Risk

Your Team Is Using AI. But Everyone Is Going in a Different Direction.

~90% of engineering teams use AI tools. But without a structured method, AI adoption becomes organisational chaos — vibe coding at scale, ungoverned and unmeasurable.

32%
Have AI Governance

~90% of engineering teams use AI tools, but only 32% have any formal governance. The other 68% are running AI-assisted development with zero standards, review, or oversight.

Industry research, 2025-2026
45%
AI Code Fails Security

Nearly half of AI-generated code introduces security flaws. 72% failure rate for AI-generated Java. Velocity without a method becomes liability — fast.

Industry research, 2025-2026
0
Standard Exists

Scrum standardised agile. Lean standardised manufacturing. Six Sigma standardised quality. There is no standard for AI-native development. Until now.

The opportunity CRAFT addresses

The problem is not AI adoption. The problem is unstructured AI adoption. Your org needs a method — not more tools.

The Framework

Five Practices to Upskill Your Entire Engineering Organisation

Each practice builds an organisational capability — not just individual skill. Together, they form a complete method your teams adopt, your leaders govern, and your org scales.

C
01 / 05

Curate

Every developer prompts AI differently — inconsistent results across teams

Codebase intelligence · AGENTS.md · layered context · dev-tool integration — every team feeds AI the same quality of context.

  • AGENTS.md / CLAUDE.md standards
  • Codebase intelligence indexing
  • Context governance + onboarding
Read in Playbook
R
02 / 05

Refine

Developers skip requirements — "AI will figure it out." It does not.

Refine specs into machine-parseable predicates before AI generates code. Completeness scoring · edge-case generation · traceability — no code without a validated spec.

  • Spec completeness scoring
  • AI-augmented edge case generation
  • Spec-first workflow gates
Read in Playbook
A
03 / 05

Architect

AI generates different patterns every prompt — tech debt at AI speed

Pattern libraries · ADRs · multi-agent code review · agentic CI/CD · system topology — AI cannot violate what is enforced.

  • Pattern libraries + ADRs
  • Multi-agent code review
  • Agentic CI/CD integration
Read in Playbook
F
04 / 05

Fortify

AI ships vulnerabilities at AI velocity — 45% of AI code fails security tests

Fortify against AI-introduced risk. SAST/DAST/SCA at AI velocity, AIBOMs, slopsquat defense, ISO 42001 / EU AI Act compliance, AI-powered vulnerability remediation.

  • SAST/DAST/SCA at sub-minute feedback
  • SBOMs + AIBOMs + provenance tracking
  • Supply-chain + compliance automation
Read in Playbook
T
05 / 05

Test

Coverage flat for AI code — quality cannot keep up with AI velocity

Test before AI ships. AI-generated test coverage, mutation testing, blocking quality gates calibrated for AI velocity, deployment quality measurement, feedback loops back to upstream practices.

  • AI test generation + mutation testing
  • Higher quality gates for AI code
  • Feedback loops to AGENTS.md
Read in Playbook
Refine + Fortify · in action

What an AI commit looks like when CRAFT runs the gates.

Spec-traceable. Pattern-conformant. Agent-reviewed. Scanned. Provenance-tracked. This is what enterprise-grade AI development actually looks like.

src/billing/charge.ts − unstructured + CRAFT-refined
BEFORE · ungoverned AI output
function chargeUser(userId, amount) {
// TODO: validate amount
return stripe.charge(userId, amount);
}
AFTER · spec-gated · agent-reviewed
// spec: BILLING-014 · gated by refine.spec
function chargeUser(userId: string, amount: Money): Promise<Receipt> {
assertPositive(amount, "BILLING-014.a1");
assertOwned(userId, ctx.tenant, "BILLING-014.a2");
return stripe.charge(userId, amount.cents);
}
3 agents reviewed · spec traceability ✓ · pattern ADR-014 ✓ · SAST clean
Test + measure · governance plane

Measure what matters. Govern what you measure.

Velocity without governance is liability. CRAFT instruments every practice — so engineering leaders see the same signal their auditors see, and their CFO can defend it.

Velocity
3.4×
vs. ungoverned baseline
↗ live
Governance
86
ISO 42001 score / 100
↗ live
Quality
96.4%
test coverage · mutation
↗ live
The difference

Unstructured vs CRAFT-Enabled

The difference across your organisation is measurable from day one.

WITHOUT CRAFT METHOD
WITH CRAFT METHOD
AI Adoption
Each developer does their own thing
Five practices applied org-wide
Consistency
Different approach per team
Same standards across every team
Governance
Zero visibility for leadership
Measurable, auditable, governable
Onboarding
New devs figure it out alone
Clear framework from day one
Quality
Unpredictable — 10× or 0.5×
Consistent production-grade output
Rework
70-80% of dev time wasted
<20% rework with proper context
Security
AI-generated vulnerabilities ship
Continuous scanning, compliance built-in
Scale
Works for one dev, breaks at team level
Scales from team to entire org
Sound familiar?

Every Engineering Leader Is Asking the Same Question.

"How do I upskill my entire engineering organisation for AI — without losing quality, governance, or control?"

CTO

"I need to transform how my engineering org builds software. But every team is experimenting with AI differently and I have no way to standardise, measure, or govern it."

Standardise AI Development
VP Engineering

"AI velocity is outpacing our quality controls. We are shipping faster but our testing, security, and architecture governance cannot keep up. I need guardrails that scale."

Scale with Governance
Head of Engineering

"Some of my teams are 10× with AI, others are struggling. I cannot replicate what the good teams are doing because there is no shared method. Everyone is winging it."

Replicate Success
Adopt CRAFT

Measure. Learn. Transform. Scale Across Your Org.

Assess your AI readiness. Upskill your team in two days. Then embed the method across your entire engineering organisation.

START HERE 125 questions
01

Full Assessment

Get a complete x-ray of your engineering org across all 5 CRAFT practices. Data-driven diagnostic that tells you exactly where to focus.

Learn More
2 days
02

Delivery Workshop

Elevate your developers from coders to architects. Day 1: Build trust through bug fixing. Day 2: Build capability through features.

See the Workshop
3-6 months
03

Transformation

Embedded pair programming, coaching, and mentoring. We work alongside your developers until CRAFT is how they naturally work.

Explore the Program
Free · 3 minutes · No email required

How Ready Is Your Org
for AI-Native Development?

25 questions about Curate — the foundation practice of CRAFT Method. Discover if your teams curate the context AI agents consume, or waste time re-explaining every session.

Get your Curate score instantly. See how you compare. Unlock the full 5-practice assessment to find every gap in your AI-native development capability.

ASSESS 1 OF 5 PRACTICES — FREE
Sample result — Curate practice assessed