fastrepl / hyprnote
- суббота, 26 апреля 2025 г. в 00:00:02
AI Notepad for back-to-back meetings. Local-first & Extensible.
AI notepad for meetings. Local-first & Extensible.
What does Hyprnote do?
What’s special about it?
brew tap fastrepl/hyprnote && brew install hyprnote --cask
Casually jot stuff down and Hyprnote will craft a meeting note based on your memos.
Hyprnote is local-first which means you can be off the grid and it's perfectly fine.
Just like VSCode, You can add or create extensions based on your circumstances.
For example, transcript extension is powered by listener plugin.
useEffect(() => {
const channel = new Channel<SessionEvent>();
listenerCommands.subscribe(channel);
channel.onmessage = (e) => {
if (e.type === "started") {
setIsLive(true);
}
if (e.type === "stopped") {
setIsLive(false);
}
};
return () => {
listenerCommands.unsubscribe(channel);
};
}, []);