AI can generate a face. AI can clone a voice. AI can forge a fingerprint. But AI cannot generate you — because you are not a file. You are a field.
This document explains why the most advanced AI models on Earth — including DeepSeek, GPT-5, and multimodal motion diffusion architectures — structurally fail to replicate the deep kinetic signature of a living human body. It is not a claim about temporary AI limitations. It is a claim about physics, information theory, and the irreducible entropy of biological control systems.
The human motor system is not a transformer. It is a multi-scale, non-linear, noise-driven biological control system built from motor units (asynchronous stochastic recruitment at 5–50 Hz), the stretch reflex arc (~25 ms feedback loop producing 8–12 Hz micro-oscillations), the corticospinal tract (50–80 m/s conduction, creating individual-specific timing signatures), cerebellar feedforward (always slightly wrong, producing 3–5 Hz error-correction micro-motions), and musculoskeletal biomechanics (bone lengths, joint surface geometries, tendon stiffness — physically unique to each body).
These are not "features" that can be extracted and replicated. They are physical properties of a specific human body.
AI-generated motion, trained with L2 loss, is mathematically optimized to suppress high-frequency, low-amplitude signals — exactly the signals that make human motion human. The optimal L2 predictor is the conditional mean of the training distribution. It converges to the average motion, not any specific human's motion. The result: AI motion looks correct to the human eye but is kinematically sterile — too smooth, too regular, too average.
Even with infinite training data, an AI model faces a fundamental information bottleneck:
Nyquist limit: 2D video at 30 fps cannot resolve dynamics above 15 Hz. The 8–12 Hz physiological tremor band is at the Nyquist boundary — its phase information is fundamentally aliased in any video-based training set.
Depth ambiguity: 2D→3D lifting is ill-posed. True skeletal proportions in 3D are underdetermined from 2D projections alone. A femur that appears 42 cm on screen might be anywhere from 38–46 cm — a ±10% uncertainty propagating through the entire kinematic chain.
Sensor noise floor: Even high-quality 3D pose data carries measurement noise at the millimeter scale — precisely the scale of the micro-kinematic signals that distinguish individuals.
The consequence: no finite training dataset can fully determine a target's Motion Signature. There is an irreducible gap — not because AI is not good enough yet, but because the information is not in the data.
The MyShape core engine is written in Rust. It compiles to native binaries (macOS, Linux, Windows) and WebAssembly. It has zero runtime dependencies beyond the Rust standard library and a handful of audited cryptographic and linear algebra crates.
The engine extracts a 128-dimensional Motion Signature vector from raw 3D pose sequences across four independent feature groups:
Φ_K — Kinematics (40 dims): Skeletal ratios between 14 bone segments, 6 joint angle variances, velocity and acceleration statistics for 5 representative keypoints.
Φ_A — Acceleration Profile (25 dims): Per-keypoint statistical distribution including Hurst exponent. Human acceleration: H ≈ 0.6–0.8 (long-range dependence). AI acceleration: H ≈ 0.5 (uncorrelated noise).
Φ_J — Jerk Profile (25 dims): The third temporal derivative of position — rate of change of acceleration. Per-keypoint statistics including median absolute deviation and lag-1 autocorrelation. The most unforgeable single kinematic dimension.
Φ_Jspec — Jerk Spectrum (30 dims): Frequency-domain analysis. Energy in 4 frequency bands, spectral slope (log-log power vs frequency), and spectral entropy. Human jerk exhibits 1/f^α scaling (α ≈ 1.0–1.5). AI jerk exhibits α > 2.0 (over-smoothed) or α ≈ 0 (white noise). Neither is human.
The following results were generated by the MyShape CLI demo tool (myshape-demo) running the Rust core engine:
Test Case Presence Score Verdict ───────────────────────────────────────────────── Genuine Human 0.9817 PASS ✓ AI Forgery (GPT-5) 0.5857 FAIL ✗ Impostor 0.0000 FAIL ✗
Human—AI Gap: 0.3960
The AI forgery failed across four independent rejection dimensions: • TREMOR_ABSENT — 8–12 Hz physiological tremor missing • JERK_SPECTRUM_ANOMALY — 1/f spectral scaling violated • HURST_ANOMALY — Long-range dependence absent • OVER_SMOOTHED — Muscle micro-perturbations missing
Test Case Presence Score Verdict ───────────────────────────────────────────────── Genuine Human 0.9817 PASS ✓ AI Forgery (GPT-5) 0.5857 FAIL ✗ Impostor 0.0000 FAIL ✗ Human—AI Gap: 0.3960
TypeScript SDK (Node.js / Deno / Browser via WASM):
import { MyShapeSDK } from "myshape-sdk"; const myshape = await MyShapeSDK.init(); const enrollment = myshape.createEnrollment(signatures, userId, device); const challenge = myshape.generateChallenge(); const result = myshape.verifyIntent(challenge, motion, context, enrollment); if (result.verified) { executeTransaction(); }
Native CLI:
cargo run --release --bin myshape-verify -- --enrollment alice.enroll.json --challenge session.challenge.json --motion captured.motion.json --risk high
Smart Contract (Solidity):
function transferWithPresence(address to, uint256 amount, bytes calldata receipt, bytes calldata sig) external { require(verifyNodeSignature(receipt, sig)); PresenceReceipt memory r = decodeReceipt(receipt); require(r.presenceScore >= minScore(amount)); _transfer(msg.sender, to, amount); }
import { MyShapeSDK } from "myshape-sdk";
const myshape = await MyShapeSDK.init();
const enrollment = myshape.createEnrollment(sigs, userId, device);
const challenge = myshape.generateChallenge();
const result = myshape.verifyIntent(
challenge, motion, context, enrollment
);
if (result.verified) { executeTransaction(); }cargo run --release --bin myshape-verify -- \ --enrollment alice.enroll.json \ --challenge session.challenge.json \ --motion captured.motion.json \ --risk high
Every AI motion model is a function approximator. It learns a mapping from inputs to outputs. It does not have a spinal cord, muscle spindles, a cerebellum, motor neurons firing asynchronously, a stretch reflex arc operating at 25 ms latency, tendons with viscoelastic properties, or joints with anisotropic friction.
An AI can approximate the output of these systems to arbitrary precision given enough data and compute. But the approximation will always be a projection — a lower-dimensional shadow of a higher-dimensional physical process.
The MyShape engine detects the shadow by measuring what the shadow cannot cast: the irreducible entropy of a living body.
The AI Paradox: The better AI gets at generating realistic motion, the more aggressively it smooths, averages, and regularizes — and the more detectable it becomes to spectral analysis. Every improvement in visual fidelity comes at the cost of spectral fidelity. The AI faces an impossible tradeoff: look more real, or be more real. It cannot do both.
Ready to integrate?
Five lines of code. Zero data stored. Real human presence.