TL;DR: WJTTC v1.3.0 adds wjttc initโone command that sets up championship-grade testing infrastructure in any project. Free MCP certification + free testing setup = service to the army of free devs.
What Changed
WJTTC is now both a certification tool AND a testing infrastructure provider.
npm install -g wjttc@1.3.0
wjttc init
๐ WJTTC Initialization Complete!
โ
Test directories created (brake/engine/aero)
โ
Pre-commit hook installed (Rocket Science Grade)
โ
package.json scripts added
โ
Example brake test generated
โ
WJTTC-TESTING.md created
Your project now has championship-grade testing infrastructure.One command. Five setup steps. Championship standards installed.
The Philosophy: Service to Free Devs
"Give away the razor, sell the blades."
WJTTC already provides free MCP certificationโ52 tests across 9 tiers, scoring from 0-100%, published to npm with zero ads or announcements.
Now WJTTC gives away the testing infrastructure too:
- โ Test directory structure (Brake/Engine/Aero)
- โ Pre-commit hooks with Rocket Science Grade branding
- โ package.json scripts (test:brake, test:wjttc)
- โ Example tests with helpful comments
- โ Full testing documentation
Free Community Edition: Test your MCP server + Set up your testing
Paid Team/Enterprise: Advanced features for organizations
Same model as FAF. Professional. Trusted.
What Gets Installed
1. Test Directory Structure
tests/
โโโ brake/ # Fast, critical tests (<30s)
โโโ engine/ # Core functionality
โโโ aero/ # Performance benchmarks2. Pre-Commit Hook
Extracted from faf-enterprise with Rocket Science Grade branding:
#!/bin/bash
# WJTTC Pre-Commit Hook
# Rocket Science-Grade Testing Enforcement
echo "๐ WJTTC Pre-Commit Certification"
# Step 1: TypeScript strict mode check
npm run typecheck || exit 1
# Step 2: Brake tests (<30s execution)
npm run test:brake || exit 1
echo "โ
Pre-commit checks passed"3. package.json Scripts
{
"scripts": {
"typecheck": "tsc --noEmit",
"test:brake": "jest tests/brake --maxWorkers=4 --no-coverage",
"test:engine": "jest tests/engine --maxWorkers=4",
"test:aero": "jest tests/aero",
"test:wjttc": "jest && echo [WJTTC CERTIFICATION BANNER]"
}
}4. Example Brake Test
Generated with helpful comments explaining the WJTTC philosophy:
// TIER 1: BRAKE Tests
// Fast, critical tests that MUST pass before commit
// Target: <30s total execution time
describe('BRAKE: Critical Path', () => {
it('should validate core functionality', () => {
// Your critical test here
expect(true).toBe(true);
});
});5. Documentation
Full WJTTC-TESTING.md explaining the 3-tier system, pre-commit workflow, and certification process.
The Rocket Science Grade Standard
This infrastructure was extracted from faf-enterpriseโa monorepo running 833 tests with 4-layer enforcement:
Layer 1: TypeScript Strict Mode
Zero runtime errors. Strict null checks. No implicit any.
Layer 2: Brake Tests (<30s)
Fast, critical tests run on every commit. Pre-commit hook enforced.
Layer 3: Full Test Suite
Engine + Aero tiers. Comprehensive validation before merge.
Layer 4: Verification
Production build check. Final gate before release.
faf-enterprise status: 788/833 tests passing โ
(44 skipped - Enterprise license-gated monorepo tests)
Try It Now
New Project
npm install -g wjttc@1.3.0
cd your-project
wjttc initExisting Project
# Preserves existing tests
wjttc init
# Creates:
# - tests/brake (if not exists)
# - .githooks/pre-commit
# - Adds scripts to package.json
# - Generates example testsThen Certify
npx wjttc certify --mcp "npx your-server"
# Get your score (0-100%)
# See tier badge (๐/๐ฅ/๐ฅ/๐ฅ/๐ข/๐ก/๐ด)
# Validate FAF file (if present)
# Check TAF Receipt (if present)The Full Ecosystem
Three Ways to Use WJTTC
- Certification Only: Test your MCP server, get a score (free)
- Infrastructure Setup:
wjttc initin your project (free) - Team/Enterprise: Advanced features, support, custom certification (paid)
WJTTC Tools
- wjttc (npm) - Certifier + infrastructure provider
- /wjttc-builder (Claude Code skill) - Auto-generate test suites
- /wjttc-tester (Claude Code skill) - F1-inspired testing expert
Integration with FAF Ecosystem
- Works with or without
project.faffiles - Validates FAF scores (Tier 8)
- Checks TAF Receipts (Tier 9)
- Progressive adoption: 7, 8, or 9 tiersโall valid
The Army of Free Devs
"We are a service to the army of free devs!"
โ wolfejam
WJTTC has 100+ free downloads with zero ads or announcements. The tool works. The certification is real. The standards are championship-grade.
Now the infrastructure is free too.
Why? Because testing should be accessible. Championship standards shouldn't require enterprise budgets. Free devs deserve F1-grade tools.
The business model:
Free Community = Testing certification + Infrastructure setup
Paid Team/Enterprise = Professional support + Advanced features
Same as FAF. Professional. Boring. Trusted.
The Numbers
- v1.3.0 - Released February 17, 2026
- 103/103 - Tests passing
- 100% ๐ - WJTTC's FAF score (earned)
- 52 tests - Across 9 tiers (49 scored + 3 validation checks)
- 3 servers - Big Orange certified (100% ๐๐)
- 100+ - Free downloads (zero ads)
What's New in v1.3.0
- โ
wjttc initcommand - Self-hosting infrastructure setup - โ Pre-commit hook template - Extracted from faf-enterprise
- โ Testing infrastructure templates - Enable universal adoption
- โ Example tests with helpful comments
- โ Full documentation generation