Add a new platform writer module in src/writers/ that generates and writes agent config files for a supported platform. Each writer exports a function that accepts a config interface, creates directories (rules/, skills/, mcp configs), writes files with proper formatting and frontmatter, and returns string[] of written file paths. Use when adding platform support for a new agent, integrating a new code AI tool, or extending caliber to support new targets. Do NOT use for modifying existing writers, refactoring scoring logic, or changing how writers are invoked.
72
88%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Every writer MUST:
write<Platform>Config(config: <PlatformConfig>): string[]string[] of all written file paths (used by manifest and progress display)fs.mkdirSync(dir, { recursive: true }) before writing files--- markers).claude/, CLAUDE.md, .mcp.json)Integration point: Every writer MUST be imported and called in src/writers/index.ts within the writeSetup() function. Missing this step means the writer will never execute.
Validation before Step 1: Verify the platform name is unique (ls src/writers/ shows no <platform>/index.ts). If it exists, you are modifying, not adding.
Verify the platform name is unique (see Critical). Create src/writers/<platform>/index.ts.
At the top of the file, define a config interface that describes all content the writer accepts. The interface MUST include:
claudeMd, cursorrules, agentsMd, instructions)rules, skills, mcpServers, instructionFiles, etc.name or filename, content, and for skills, descriptionExample (matching GitHub Copilot pattern already in codebase):
interface CopilotConfig {
instructions: string; // Main content
instructionFiles?: Array<{ filename: string; content: string }>;
}Validation: Confirm the interface property names match platform conventions (e.g., Claude uses claudeMd, Cursor uses cursorrules). Check existing writers: src/writers/claude/index.ts line 9, src/writers/cursor/index.ts line 9, src/writers/codex/index.ts line 5.
Export a function named write<Platform>Config(config: <PlatformConfig>): string[] that:
Initialize an empty written: string[] = [] array to track all written paths.
For the main config file (e.g., CLAUDE.md for Claude, .cursorrules for Cursor):
src/writers/pre-commit-block.tsappendPreCommitBlock(content, platform), appendLearningsBlock(content), appendSyncBlock(content)src/writers/claude/index.ts line 19-22): appendSyncBlock(appendLearningsBlock(appendPreCommitBlock(config.claudeMd)))src/writers/cursor/index.ts line 19-22): No sync block; injects rules instead (pre-commit, learnings, sync as separate files)src/writers/codex/index.ts line 13-16): appendLearningsBlock(appendPreCommitBlock(config.agentsMd, 'codex'))src/writers/github-copilot/index.ts line 19-22): appendSyncBlock(appendLearningsBlock(appendPreCommitBlock(config.instructions, 'copilot')))fs.writeFileSync('CLAUDE.md', wrappedContent)) and push to written.For rules (if applicable): Platform convention determines directory.
.cursor/rules/, Claude uses .claude/rules/ (see src/writers/index.ts lines 123-126 and 135-137)<dir>/<rule.filename>, push path to writtensrc/writers/cursor/index.ts line 24-27): Cursor injects three system rules:
const preCommitRule = getCursorPreCommitRule();
const learningsRule = getCursorLearningsRule();
const syncRule = getCursorSyncRule();
const allRules = [...(config.rules || []), preCommitRule, learningsRule, syncRule];For skills: Write with YAML frontmatter.
.claude/skills/<skillName>/SKILL.md, .cursor/skills/<skillName>/SKILL.md, .agents/skills/<skillName>/SKILL.md, .opencode/skills/<skillName>/SKILL.mdsrc/writers/claude/index.ts line 40-47):
---
name: <skill.name>
description: <skill.description>
paths:
- <optional path pattern 1>
- <optional path pattern 2>
---
<skill.content>src/writers/opencode/index.ts line 30): Use buildSkillContent(skill) from src/lib/builtin-skills.js instead of manual frontmatter.fs.mkdirSync(skillDir, { recursive: true }), write skill, push to writtenFor MCP Servers (if applicable): Write/merge JSON at platform-specific path.
src/writers/claude/index.ts line 54-65): .mcp.json at rootsrc/writers/cursor/index.ts line 54-69): .cursor/mcp.json{ ...existingServers, ...config.mcpServers }, write merged object{ mcpServers: mergedServers } and output as pretty-printed JSON: JSON.stringify(wrapped, null, 2)For instruction files (GitHub Copilot, src/writers/github-copilot/index.ts line 26-33): Write to .github/instructions/ directory.
<dir>/<file.filename>, push pathsReturn the written array.
Validation: Confirm all file write operations are synchronous (fs.writeFileSync, fs.mkdirSync). Ensure every written path is added to the array. No async operations allowed.
If the config interface may be reused elsewhere (e.g., in src/writers/index.ts for the AgentSetup type), export the interface from the module.
Validation: Check src/writers/index.ts lines 15-19 to see if new agent setup params are needed.
src/writers/index.tsOpen src/writers/index.ts. At the top (around line 2-6), add:
import { write<Platform>Config } from './<platform>/index.js';Update the AgentSetup interface (around line 12-20):
'<platform>' to the targetAgent tuple (line 13: ('claude' | 'cursor' | 'codex' | 'opencode' | 'github-copilot' | '<platform>')[])<platform>?: Parameters<typeof write<Platform>Config>[0];Update getFilesToWrite() function (starting line 117): Add a new conditional block:
if (setup.targetAgent.includes('<platform>') && setup.<platform>) {
files.push('<main-config-file>');
if (setup.<platform>.rules) {
for (const r of setup.<platform>.rules) files.push(`<rules-dir>/${r.filename}`);
}
if (setup.<platform>.skills) {
for (const s of setup.<platform>.skills) files.push(`<skills-dir>/${s.name}/SKILL.md`);
}
// ... repeat for other config types (mcpServers, instructionFiles, etc.)
}Update writeSetup() function (starting line 22): Add a new conditional block before the return (after line 56):
if (setup.targetAgent.includes('<platform>') && setup.<platform>) {
written.push(...write<Platform>Config(setup.<platform>));
}Validation: Confirm the function call order in writeSetup() is consistent (line 37-56): claude → cursor → codex → opencode → github-copilot → (new platform). This ensures AGENTS.md is written once if shared (as with Codex/Opencode, see line 50-52).
Create src/writers/__tests__/<platform>.test.ts following the vitest pattern in src/writers/__tests__/codex.test.ts:
fs module: vi.mock('fs')beforeEach: vi.mocked(fs.existsSync).mockReturnValue(false).toHaveBeenCalledWith(path, { recursive: true }))vi.mocked(fs.writeFileSync).mock.calls).toContain('caliber:managed:pre-commit'))Run: npm test -- src/writers/__tests__/<platform>.test.ts
Validation: All tests pass. Confirm mocked file operations match actual file system structure.
detectSyncedAgents() in src/commands/refresh.ts (Optional)If the platform writes config files with distinct naming (e.g., .newplatform/), update the detection logic around line 68-77 so end-user refresh output correctly identifies the synced platform:
if (joined.includes('.newplatform/') || joined.includes('newplatform-config')) {
agents.push('<Platform Name>');
}Validation: Run npm run refresh and confirm the summary message lists the new platform.
User says: "Add support for DevCode, a new agent that reads config from .devcode/settings.md and .devcode/rules/ directory."
Actions taken:
Create src/writers/devcode/index.ts (matching pattern from src/writers/claude/index.ts):
import fs from 'fs';
import path from 'path';
import { appendPreCommitBlock, appendLearningsBlock } from '../pre-commit-block.js';
interface DevcodeConfig {
settingsMd: string;
rules?: Array<{ filename: string; content: string }>;
}
export function writeDevcodeConfig(config: DevcodeConfig): string[] {
const written: string[] = [];
fs.writeFileSync(
'.devcode/settings.md',
appendLearningsBlock(appendPreCommitBlock(config.settingsMd, 'devcode'))
);
written.push('.devcode/settings.md');
if (config.rules?.length) {
const rulesDir = path.join('.devcode', 'rules');
if (!fs.existsSync(rulesDir)) fs.mkdirSync(rulesDir, { recursive: true });
for (const rule of config.rules) {
const rulePath = path.join(rulesDir, rule.filename);
fs.writeFileSync(rulePath, rule.content);
written.push(rulePath);
}
}
return written;
}Update src/writers/index.ts:
import { writeDevcodeConfig } from './devcode/index.js';targetAgent tuple to include 'devcode'devcode?: Parameters<typeof writeDevcodeConfig>[0];getFilesToWrite() (match Codex pattern lines 144-149)writeSetup() (match Codex pattern lines 45-47)detectSyncedAgents() to check for .devcode/Create src/writers/__tests__/devcode.test.ts (matching src/writers/__tests__/codex.test.ts):
import { describe, it, expect, vi, beforeEach } from 'vitest';
import fs from 'fs';
import path from 'path';
vi.mock('fs');
import { writeDevcodeConfig } from '../devcode/index.js';
describe('writeDevcodeConfig', () => {
beforeEach(() => {
vi.clearAllMocks();
vi.mocked(fs.existsSync).mockReturnValue(false);
});
it('writes settings.md and rules', () => {
const config = {
settingsMd: '# DevCode Config',
rules: [{ filename: 'style.md', content: 'Style rules' }],
};
const written = writeDevcodeConfig(config);
expect(written).toContain('.devcode/settings.md');
expect(written).toContain(path.join('.devcode', 'rules', 'style.md'));
});
});Run: npm test && npm run build
Result: Caliber now generates .devcode/settings.md and rules on caliber refresh and caliber init.
Issue: "TypeError: writeConfig is not a function"
export function write<Platform>Config(...) in the writer file. Missing export is a common mistake.Issue: "ENOENT: no such file or directory, open '.platform/config.md'"
fs.mkdirSync(parentDir, { recursive: true }) is called before fs.writeFileSync(filePath, content). See correct order in src/writers/claude/index.ts lines 26-27.Issue: "Skill file has no frontmatter / malformed YAML"
---\nname: <name>\ndescription: <desc>\n---\n<content>[...].join('\n') and test with a single skill first. Compare with working code in src/writers/claude/index.ts lines 40-48.Issue: "MCP servers not merging, file is truncated"
src/writers/claude/index.ts line 54-65: read existing JSON (with try/catch), parse safely, merge with spread operator { ...existingServers, ...config.mcpServers }, then write the merged object. Do NOT overwrite — always merge.Issue: "new writer is called but written files are empty array"
written array. Check that every file operation pushes to written. Missing a written.push(filePath) after fs.writeFileSync() is the most common error. See src/writers/codex/index.ts lines 17 and 32 for correct pattern.Issue: "Tests mock fs but actual files are created in .tmp/ or cause permission errors"
vi.mock('fs') is at the top of the test file before any imports. All fs operations will be mocked and return mock values from beforeEach setup. See src/writers/__tests__/codex.test.ts line 5.Issue: "Cursor pre-commit rule not applied, or learnings block missing"
getCursorPreCommitRule(), getCursorLearningsRule(), and getCursorSyncRule() are called and concatenated with user rules before iterating (see src/writers/cursor/index.ts lines 24-27). Claude and Codex use block-append helpers instead.7950921
Also appears in
since Jul 28, 2026
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.