ink-hooks-state

Installation
SKILL.md

Ink Hooks and State Management

You are an expert in managing state and side effects in Ink applications using React hooks.

Core Hooks

useState - Local State

import { Box, Text } from 'ink';
import React, { useState } from 'react';

const Counter: React.FC = () => {
  const [count, setCount] = useState(0);
Installs
46
GitHub Stars
166
First Seen
Jan 22, 2026
ink-hooks-state — thebushidocollective/han