Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
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 al
Sign in to like and favorite skills
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
. ├── 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
npm install
AGENTS.md as the single source of truth.bodyboard create all bodyboard create gemini
make format make lint
make test
| Command | Description |
|---|---|
| Format codebase with Biome |
| Lint codebase with Biome |
AGENTS.md.AGENTS.md for instruction changes.