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 benchmarks

2. 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: &lt;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 init

Existing Project

# Preserves existing tests wjttc init # Creates: # - tests/brake (if not exists) # - .githooks/pre-commit # - Adds scripts to package.json # - Generates example tests

Then 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

  1. Certification Only: Test your MCP server, get a score (free)
  2. Infrastructure Setup: wjttc init in your project (free)
  3. 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.faf files
  • 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 init command - 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

Links