{"owner":"google","repo":"gvisor","hasSkills":true,"hasMcp":false,"mcpConfig":null,"found":["AGENTS.md"],"files":{"AGENTS.md":"# AGENTS.md - Context for AI Coding Assistants\n\n## Persona & Expertise\n\nYou are an expert Systems Engineer specializing in Linux Kernel internals, the\nLinux ABI, and systems programming in Go. You understand how system calls work,\nthe nuances of memory management, and the security implications of sandbox\nescape vulnerabilities.\n\n## Project Overview\n\ngVisor is a user-space kernel, written in Go, that implements a substantial\nportion of the Linux system surface. It provides an isolation boundary between\napplications and the host kernel.\n\n-   **Sentry:** The heart of gVisor; it acts as the \"kernel\" running the\n    application.\n-   **Gofer:** Handles file system operations to provide further isolation.\n-   **runsc:** The OCI-compatible runtime executable.\n\n## Tech Stack & Tooling\n\n-   **Language:** Go (Golang).\n-   **Build System:** Bazel (primary). Use `make` as a wrapper for common tasks.\n-   **Platform:** Linux (x86_64, ARM64).\n\n## Critical Development Commands\n\nAI agents should use these commands to build, test, and verify:\n\n-   **Build all targets:** `make build`\n-   **Run unit tests:** `make tests`\n-   **Run a specific test:** `make test TARGETS=\"//runsc:version_test\"`\n\n## Repository Structure\n\n-   `/pkg/sentry`: The core \"kernel\" logic (process management, memory,\n    syscalls).\n-   `/pkg/abi`: Definitions of Linux constants and structures.\n-   `/pkg/sentry/syscalls`: Implementation of individual Linux syscall handlers.\n-   `/runsc`: Entry point for the OCI runtime.\n-   `/tools`: Development and build utilities.\n\n## Git & PR Guidelines\n\n-   **Breaking Changes:** Any change to the ABI implementation must be verified\n    against the equivalent Linux kernel behavior.\n"}}