import { describe, it, expect } from 'vitest'; import { agentsMd, claudeMd, codexMd, kimiMd } from '../src/core/templates.js'; describe('templates', () => { it('includes project name in AGENTS.md', () => { expect(agentsMd('my-app')).toContain('my-app'); }); it('references agenthub commands', () => { expect(claudeMd()).toContain('agenthub decision create'); expect(codexMd()).toContain('agenthub task claim'); }); });