tui-test-renderer
Set up testing utilities for TUI components with ink-testing-library and Bubble Tea testing.
npx skills add a5c-ai/babysitter --skill tui-test-renderer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# TUI Test Renderer Set up testing utilities for TUI components. ## Generated Patterns ### Ink Testing ```typescript import { render } from 'ink-testing-library'; import React from 'react'; import { MyComponent } from './MyComponent'; test('renders correctly', () => { const { lastFrame, stdin } = render(<MyComponent />); expect(lastFrame()).toContain('Expected text'); stdin.write('\r'); // Simulate enter expect(lastFrame()).toContain('After enter'); }); ``` ### Bubble Tea Testing ```go import ( tea "github.com/charmbracelet/bubbletea" "testing" ) func TestModel(t *testing.T) { m := initialModel() m, _ = m.Update(tea.KeyMsg{Type: tea.KeyEnter}) view := m.View() if !strings.Contains(view, "expected") { t.Errorf("Expected view to contain 'expected'") } } ``` ## Target Processes - tui-application-framework - cli-unit-integration-testing
- Generated Patterns
- Ink Testing
- Bubble Tea Testing
- Target Processes
What does the tui-test-renderer skill do?
Set up testing utilities for TUI components with ink-testing-library and Bubble Tea testing.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill tui-test-renderer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
