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'); // Implementer guides now onboard via `agenthub start` (which auto-claims) // and submit via the review gate. expect(codexMd()).toContain('agenthub start'); expect(codexMd()).toContain('agenthub task review'); }); });