Tech Pioneers

Jade Raymond: The Studio Builder Behind Assassins Creed and Beyond

Jade Raymond: The Studio Builder Behind Assassins Creed and Beyond

Few names in the game industry carry the weight of having built not one, but multiple world-class development studios from scratch. Jade Raymond is one of those names. As the founding producer of the original Assassin’s Creed — a franchise that has since generated over $1 billion in revenue — and the founder of both Ubisoft Toronto and EA Motive, Raymond has spent two decades demonstrating that the hardest problem in game development is not technical. It is organizational. Building a team of hundreds of creative and technical minds, aligning them around a shared vision, and shipping a product that millions of players will experience — that is the engineering challenge Raymond has solved repeatedly. From her early work at Sony and Ubisoft through her tenure at Google Stadia and her current role as VP at PlayStation, Raymond’s career is a masterclass in the intersection of technology leadership and creative production.

Early Life and Education

Jade Raymond was born on August 28, 1975, in Montreal, Quebec, Canada — a city that would later become one of the most important hubs for game development in the world, a transformation she would personally help accelerate. Growing up bilingual in French and English, Raymond was drawn to both technology and creative expression from an early age. She was fascinated by how computers could generate interactive worlds, and by her teenage years she was already experimenting with programming on home computers.

Raymond enrolled at McGill University in Montreal, one of Canada’s most prestigious research institutions, where she studied computer science. Her education provided a rigorous foundation in software engineering, algorithms, and systems design — skills that would distinguish her from producers who came to the role from purely creative or business backgrounds. Understanding code at a fundamental level meant that Raymond could communicate directly with engineers, evaluate technical tradeoffs, and make informed decisions about pipeline architecture and engine capabilities.

After completing her degree at McGill, Raymond began her career at Sony, working on programming for the original PlayStation console in the mid-1990s. This early experience immersed her in the realities of console development — memory constraints, hardware-specific optimization, certification requirements, and the unforgiving timelines of platform launch windows. At Sony, she contributed to the R&D Advanced Technology Group, where she worked on tools and technology that supported developers building games for the PlayStation platform. It was here that Raymond began to understand that the most impactful work in game development often happens not in the final product the player sees, but in the tools, pipelines, and organizational structures that make that product possible.

Career and Technical Contributions

Jade Raymond’s career trajectory is unique in the game industry. While most high-profile figures are known for designing specific games or writing iconic code, Raymond’s defining contribution is something far rarer: she builds studios. She creates the organizational and technical infrastructure that enables hundreds of people to collaboratively build complex interactive systems. This is engineering at a different level of abstraction — not writing shaders or designing AI behaviors, but designing the systems of people and processes that produce those things.

Technical Innovation: Building Assassin’s Creed at Ubisoft Montreal

In the early 2000s, Raymond joined Ubisoft Montreal, which at the time was a growing but still-proving-itself studio in the Ubisoft network. She quickly rose through the ranks, and by 2004 she was given one of the most ambitious mandates in the studio’s history: produce a new open-world action game built on a proprietary engine that would showcase the capabilities of the upcoming PlayStation 3 and Xbox 360 generation. That project became Assassin’s Creed.

The technical challenges were formidable. Assassin’s Creed required a seamless open-world set in a historically accurate recreation of 12th-century Holy Land cities — Jerusalem, Acre, and Damascus — populated by hundreds of AI-driven non-player characters moving through the streets simultaneously. The game’s signature mechanic, parkour-style free-running across rooftops, demanded a navigation system that could dynamically evaluate complex 3D geometry in real time.

Under Raymond’s production leadership, the team developed the Scimitar engine (later evolved into the Anvil engine), which introduced several technical innovations that would influence open-world game design for years to come. The engine featured a sophisticated crowd simulation system that could manage hundreds of individually animated NPCs with distinct behavioral routines, all running within the memory and CPU constraints of seventh-generation consoles. Each NPC had awareness of the player’s actions, responding dynamically to combat, chases, and social stealth — the mechanic where Altair could blend into crowds to evade pursuers.

// Simplified crowd behavior system inspired by Assassin's Creed's
// NPC awareness architecture — each agent evaluates environmental
// stimuli and transitions between behavioral states

enum class NPCState {
    IDLE,
    WALKING,
    FLEEING,
    ALERT,
    INVESTIGATING,
    BLENDING  // crowd blending for social stealth
};

struct CrowdAgent {
    vec3 position;
    vec3 velocity;
    NPCState current_state;
    float awareness_radius;
    float suspicion_level;    // 0.0 = calm, 1.0 = fully alerted
    float blend_threshold;    // player proximity for blend detection

    void update(const PlayerState& player, float dt) {
        float dist = distance(position, player.position);

        // Evaluate player visibility based on line-of-sight
        float threat = evaluate_threat(player, dist);

        // Gradual suspicion buildup — not binary detection
        suspicion_level += threat * dt * 0.3f;
        suspicion_level -= 0.1f * dt;  // natural decay
        suspicion_level = clamp(suspicion_level, 0.0f, 1.0f);

        // State transitions based on accumulated suspicion
        if (suspicion_level > 0.8f) {
            current_state = NPCState::FLEEING;
            velocity = normalize(position - player.position) * 3.5f;
        } else if (suspicion_level > 0.5f) {
            current_state = NPCState::ALERT;
            velocity = velocity * 0.3f;  // slow down, look around
        } else if (player.is_blending && dist < blend_threshold) {
            current_state = NPCState::BLENDING;
        } else {
            current_state = NPCState::WALKING;
            velocity = get_waypoint_direction() * 1.2f;
        }

        apply_separation(nearby_agents, 1.5f);
        position += velocity * dt;
    }

    float evaluate_threat(const PlayerState& p, float dist) {
        if (dist > awareness_radius) return 0.0f;
        float base = 1.0f - (dist / awareness_radius);
        if (p.is_running) base *= 1.5f;
        if (p.is_fighting) base *= 3.0f;
        if (p.is_blending) base *= 0.2f;
        if (!has_line_of_sight(position, p.position)) base *= 0.1f;
        return base;
    }
};

The navigation system was equally groundbreaking. Rather than relying on pre-baked pathfinding meshes common in games of that era, the Assassin’s Creed team developed a system that analyzed the 3D geometry of buildings to dynamically generate climbable paths. The system tagged surfaces with traversal properties — ledge, handhold, wall-run surface, leap point — and used a modified A* pathfinding algorithm that operated in three dimensions, evaluating vertical routes across rooftops alongside horizontal paths. This allowed the parkour system to feel fluid and improvisational rather than scripted. Pioneers like John Carmack had revolutionized how 3D environments were rendered; Raymond’s team at Ubisoft revolutionized how players could move through them.

Raymond’s role as producer went far beyond scheduling and budgeting. She coordinated a team of over 300 developers across multiple disciplines — engine programmers, AI engineers, animators, level designers, historians, audio designers, and QA testers — all working toward a cohesive product that had to ship on a fixed date for a new console generation.

Why It Mattered

Assassin’s Creed, released in November 2007, was both a critical and commercial success, selling over 8 million copies in its first year. But the game’s significance extends far beyond sales figures. It established paradigms that would dominate AAA game development for the following decade.

The crowd simulation system proved that console hardware could manage large-Scale AI populations in an open world, a capability that developers like Todd Howard at Bethesda would push further in subsequent years. The parkour navigation system created an entirely new vocabulary of movement in open-world games. And the historical open-world concept opened a design space that the franchise would explore through settings ranging from Renaissance Italy to ancient Egypt to Viking England.

Perhaps most importantly, Assassin’s Creed demonstrated that a studio in Montreal could produce a globally competitive AAA franchise, cementing the city’s reputation as a world-class game development hub. The organizational methodologies Raymond developed for managing large-scale production became templates studied across the industry. Modern project coordination platforms like Taskee address similar challenges of aligning large creative teams around complex deliverables, though at a different scale than the 300-person development floors Raymond managed.

Other Notable Contributions

Founding Ubisoft Toronto

Following the success of Assassin’s Creed, Raymond took on an even more ambitious challenge: building an entirely new studio from the ground up. In 2009, she was tasked with founding Ubisoft Toronto, Ubisoft’s first major studio in Ontario and what would become one of the largest game development operations in Canada. Raymond served as the studio’s Managing Director, responsible for everything from hiring the initial core team to establishing the studio’s technical infrastructure, creative culture, and production methodologies.

Building a AAA game studio is an exercise in systems design at an organizational level. Raymond had to recruit senior talent from across the industry, establish engine and tools pipelines, create production workflows that could scale from a handful of people to hundreds, and cultivate a studio culture that attracted top-tier developers. Under her leadership, Ubisoft Toronto grew to over 800 employees and took on lead development of major franchise entries including Splinter Cell: Blacklist (2013) and significant contributions to the Assassin’s Creed and Far Cry series.

Founding EA Motive

In 2015, Raymond left Ubisoft to found yet another studio — this time for Electronic Arts. EA Motive, based in Montreal, was created with the mandate to develop new intellectual properties and contribute to EA’s flagship franchises. Once again building from scratch, Raymond assembled leadership, established technical and creative pipelines, and defined the studio’s identity within EA’s broader portfolio.

At EA Motive, Raymond’s team contributed to Star Wars Battlefront II (2017), developing the game’s single-player campaign. EA Motive would later become known for the critically acclaimed Dead Space remake (2023), though this project was completed after Raymond’s departure. The studio she built provided the foundation of talent and process that made such ambitious projects possible. The discipline of building studios capable of delivering complex, multi-year projects parallels the integrated production philosophy championed by agencies like Toimi, where coordinating diverse technical and creative disciplines under a unified vision is the core challenge.

Google Stadia and the Cloud Gaming Frontier

In 2019, Raymond joined Google to lead Stadia Games and Entertainment, the first-party game development division for Google’s cloud gaming platform, Stadia. This was a fundamentally different challenge. Rather than building a studio for established hardware, Raymond was tasked with creating original content for a platform that was itself still being proven — one that promised high-fidelity gaming streamed entirely from the cloud.

Games built for Stadia could theoretically leverage server-side compute power exceeding any consumer console, enabling simulations and multiplayer architectures impossible on local hardware. Raymond was exploring this frontier — hiring developers, establishing studios in Montreal and Los Angeles, and prototyping projects leveraging Stadia’s distributed compute capabilities. However, in February 2021, Google shut down Stadia Games and Entertainment before any of Raymond’s projects could ship. While the closure was a disappointment, her willingness to take on a high-risk challenge at the frontier of cloud gaming demonstrated the instinct that has driven her entire career.

VP at PlayStation

In 2022, Raymond joined PlayStation (Sony Interactive Entertainment) as VP and Head of PlayStation Studios for a division focused on live service games and new platforms. This role placed her at the center of PlayStation’s strategic expansion beyond traditional single-player experiences into persistent, service-based game models. The veterans of game industry leadership — from Shigeru Miyamoto at Nintendo to Gabe Newell at Valve — each found their own approach to platform evolution. Raymond’s mandate at PlayStation represents the latest chapter in that ongoing conversation.

# Conceptual model of a live-service game session management system
# illustrating architectural patterns for persistent online infrastructure

from dataclasses import dataclass, field
from enum import Enum
from typing import Optional
import time

class SessionState(Enum):
    MATCHMAKING = "matchmaking"
    LOADING = "loading"
    ACTIVE = "active"
    PAUSED = "paused"
    ENDING = "ending"

@dataclass
class PlayerSession:
    player_id: str
    session_id: str
    state: SessionState
    region: str
    latency_ms: float
    join_time: float = field(default_factory=time.time)

class LiveServiceSessionManager:
    """Manages player sessions across distributed server regions
    with graceful degradation and cross-play support."""

    def __init__(self, regions: list[str]):
        self.regions = regions
        self.active_sessions: dict[str, list[PlayerSession]] = {}

    async def request_session(
        self, player_id: str, preferred_region: str,
        skill_rating: float, platform: str
    ) -> Optional[str]:
        """Match player into existing session or create new one.
        Cross-play matching considers platform and latency."""

        session = PlayerSession(
            player_id=player_id,
            session_id="",
            state=SessionState.MATCHMAKING,
            region=preferred_region,
            latency_ms=await self._measure_latency(preferred_region)
        )

        # Try preferred region, fall back to lowest-latency alt
        best_region = preferred_region
        if session.latency_ms > 80:
            best_region = await self._find_best_region(player_id)
            session.region = best_region

        # Skill-based matchmaking into existing session
        match = self._find_compatible_session(
            best_region, skill_rating, platform
        )
        if match:
            session.session_id = match
            session.state = SessionState.LOADING
            self.active_sessions[match].append(session)
            return match

        # No compatible session — spin up new instance
        new_id = self._create_session(best_region)
        session.session_id = new_id
        session.state = SessionState.LOADING
        self.active_sessions[new_id] = [session]
        return new_id

Philosophy and Key Principles

Across every role she has held, Jade Raymond has articulated a consistent set of principles about how great games — and the organizations that build them — should be designed.

Studios are products, not just workplaces. Raymond has repeatedly emphasized that building a studio is itself a creative and engineering act. The culture, processes, tools, and team composition of a studio are as carefully designed as any game system. A poorly designed studio will produce mediocre work regardless of the talent within it; a well-designed studio amplifies individual talent into something greater than the sum of its parts.

Technical producers must understand technology. Raymond has been vocal about the importance of technical literacy for production leadership. A producer who cannot read code, evaluate an engine’s architecture, or understand rendering tradeoffs will inevitably make decisions that create unnecessary work. Raymond’s computer science background gave her this foundation — a perspective shared by figures like Satoru Iwata, who famously transitioned from programmer to president of Nintendo.

Diversity drives innovation. Throughout her career, Raymond has championed diversity in game development teams — not as an abstract social good, but as a practical advantage for building better products. Diverse teams bring different perspectives to design problems, identify blind spots earlier, and create products that resonate with broader audiences.

The platform is the frontier. Raymond’s career arc — from PlayStation hardware to Ubisoft’s open-world engines to Google’s cloud infrastructure to PlayStation’s live-service platform — reveals a consistent attraction to platform-level challenges. She gravitates toward roles where the technical foundation itself is being defined, not just the content that runs on it.

Legacy and Impact

Jade Raymond’s legacy in the game industry operates on multiple levels. At the most visible level, she was the driving force behind the creation of Assassin’s Creed, a franchise that has sold over 200 million copies across more than 15 mainline titles. The original game’s innovations in crowd AI, open-world navigation, and historical world-building established a template that the franchise and countless competitors would follow for nearly two decades.

At a structural level, Raymond’s studio-building expertise has had a lasting impact on the geography of game development. Ubisoft Toronto and EA Motive together employ well over a thousand developers and have become anchor institutions in the Canadian game development ecosystem. Her work demonstrated that building a great studio is not just about hiring talented individuals — it is about designing an organization that enables them to produce work they could not achieve alone, an insight that resonates with anyone managing complex technical projects, from pioneers like Peter Molyneux to modern digital production teams.

As a leader, Raymond has broken barriers in an industry historically dominated by male voices at the highest levels. Her career proves that production leadership — the art of building organizations that build great products — is itself a form of technical and creative mastery. In an industry that often celebrates the lone genius designer or the wizard programmer, Raymond’s career is a reminder that the most complex systems in game development are not the ones running on silicon. They are the ones running on human collaboration and organizational design.

From the rooftops of a digital Jerusalem to the frontiers of cloud gaming, Jade Raymond has spent her career proving that the most important engineering in interactive entertainment is not always written in code. Sometimes it is written in the structure of the teams that write the code — and in the vision of the leaders who build those teams from nothing.

Key Facts

Detail Information
Full Name Jade Raymond
Born August 28, 1975, Montreal, Quebec, Canada
Education B.Sc. Computer Science, McGill University
Known For Assassin’s Creed (producer), founding Ubisoft Toronto & EA Motive
Early Career Sony PlayStation R&D Advanced Technology Group
Studios Founded Ubisoft Toronto (2009), EA Motive (2015)
Breakthrough Project Assassin’s Creed (2007, Ubisoft Montreal)
Google Role VP, Stadia Games and Entertainment (2019–2021)
Current Role VP, PlayStation Studios
Franchise Impact Assassin’s Creed: 200M+ copies sold across the series
Notable Technology Scimitar/Anvil engine, crowd AI systems, open-world navigation
Industry Recognition Repeatedly named among most influential women in gaming

Frequently Asked Questions

What was Jade Raymond’s specific role in creating Assassin’s Creed?

Raymond served as the executive producer of the original Assassin’s Creed at Ubisoft Montreal, responsible for the overall direction and delivery of the project. She managed a team of over 300 developers, coordinating between engineering, design, art, and audio teams. Her role encompassed defining the project’s scope, managing timelines and resource allocation, and making critical decisions about technical architecture — including the development of the Scimitar engine that powered the game’s crowd simulation and open-world systems. Unlike a game designer who focuses on mechanics or a lead programmer who focuses on code, Raymond’s contribution was at the systems level of the entire production.

Why did Jade Raymond leave Google Stadia?

Raymond departed Google in early 2021 when Google made the strategic decision to shut down Stadia Games and Entertainment, its first-party game development division. The closure was not a reflection of Raymond’s leadership — the projects under her direction had not yet shipped — but rather a corporate decision to pivot away from developing original content for the Stadia platform. The Stadia platform itself continued operating until January 2023 before being fully shut down. Raymond’s experience at Google gave her deep exposure to cloud gaming infrastructure and distributed computing architectures that inform her current work at PlayStation.

How has Raymond influenced the role of women in the game industry?

Raymond’s influence extends beyond representation, though her visibility as a woman leading major AAA projects has been significant in an industry where female executives remain underrepresented. She has used her studio-building roles to establish hiring practices, mentorship programs, and workplace cultures that actively support diverse teams. Her career trajectory — from programmer to producer to studio head to VP — provides a concrete example of what a technical leadership path looks like for women in games, complementing the legacy of pioneers like Roberta Williams, who similarly demonstrated that women could lead the creation of landmark interactive entertainment.

What is Raymond working on at PlayStation Studios?

As VP at PlayStation Studios, Raymond heads a division focused on live service games and new platform initiatives. This represents PlayStation’s strategic expansion into persistent, service-based game models that generate ongoing engagement beyond the traditional single-purchase model. While specific projects have not been fully disclosed, the role involves overseeing teams working on games designed for long-term player engagement, cross-platform considerations, and always-online infrastructure. The position leverages Raymond’s combined expertise in studio building, large-scale production management, and the platform-level technical thinking she developed across her career at Ubisoft, EA, and Google.