AI SummaryBodyboard is a unified system that generates canonical coding assistant instructions from a single AGENTS.md file, supporting multiple platforms like Copilot, Cline, Claude, and Gemini. Developers managing multiple AI coding assistants benefit by maintaining consistent instructions across all integrations from one source.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to add the "bodyboard — Copilot Instructions" prompt rules to my project. Repository: https://github.com/louisbrulenaudet/bodyboard Please read the repo to find the rules/prompt file, then: 1. Download it to the correct location (.cursorrules, .windsurfrules, .github/prompts/, or project root — based on the file type) 2. If there's an existing rules file, merge the new rules in rather than overwriting 3. Confirm what was added
Description
Canonical instructions for coding assistants from a single AGENTS.md ✨
Project Overview
Bodyboard provides a unified system for generating canonical instructions for coding assistants from a single AGENTS.md file. It streamlines the creation of adapter outputs for multiple code helpers, including Gemini CLI, Copilot, Cline, Claude, Rules, Windsurf, and OpenAI Codex. By maintaining all instructions in one place, Bodyboard ensures consistency and simplifies updates across integrations. Supported adapters: Gemini, Copilot, Cline, Claude, Rules (Zod), Windsurf
Tech Stack
• Language: TypeScript (strict mode, ESNext) • Formatting/Linting: Biome (spaces, double quotes, recommended rules) • Build Tools: Makefile, npm scripts • CLI: Custom Bodyboard CLI for output generation • Environment: Node.js
Project Structure
` . ├── src/ │ ├── adapters/ │ │ ├── base.ts # Base adapter logic │ │ ├── claude.ts # Claude adapter │ │ ├── cline.ts # Cline adapter │ │ ├── copilot.ts # Copilot adapter │ │ ├── gemini.ts # Gemini adapter │ │ ├── rules.ts # Rules adapter │ │ └── windsurf.ts # Windsurf adapter │ ├── core/ │ │ ├── fs-util.ts # Filesystem utilities │ │ ├── generator.ts # Adapter output generator │ │ ├── parser.ts # AGENTS.md parser │ │ └── types.ts # Shared types │ └── cli.ts # CLI entry point ├── make/ │ ├── dev.mk # Development Makefile includes │ ├── help.mk # Help commands │ └── variables.mk # Makefile variables ├── AGENTS.md # Canonical instructions (this file) ├── README.md # Usage and overview ├── GEMINI.md # Example generated output ├── CLAUDE.md # Example generated output ├── biome.json # Biome formatting/linting config ├── tsconfig.json # TypeScript config ├── package.json # Scripts, dependencies ├── Makefile # CLI shortcuts for common tasks └── .github/workflows/ci.yaml # Continuous integration config `
Development Workflow
• Install dependencies: `bash npm install ` • Edit canonical instructions: Update AGENTS.md as the single source of truth. • Generate adapter outputs: Use the CLI to generate all or specific adapter outputs: `bash bodyboard create all bodyboard create gemini ` • Format and lint: `bash make format make lint ` • Test: `bash make test ` • Publish/Deploy: Use Makefile or CLI commands as needed.
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
Works With
Any AI assistant that accepts custom rules or system prompts