A little state.
A lot of possibility.
React state for you and your agent.
Just pass llms.txt.
import { action } from '@comwit/state'
import { counter } from './model'
export const counterActions = action(({ state }) => {
const m = state(counter)
return {
increment() { m.count += 1 },
reset() { m.count = 1 },
}
})
