···17171818I need it to keep integration with Kitaab. That largely means a _json interface, which is fine. Some compatibility layer with Taskwarrior for taskwarrior-tui would be cool too, but isn't yet on the goal list.
19192020+## MVP
2121+2222+For me to start using it one more piece of the puzzle needs to be worked out:
2323+2424+Identity. I am vaguely aware of how to generate a room, and then use the room id to sync across the network
2525+But that doesn't stop anybody from then connecting to your room, and messing up your data
2626+For now, something simple like creating a key in localStorage and using that in some fashion to validate that the data is from the right person. I'll then need some kind of key transfer thing, such that we can authorize or generate subkeys.
2727+2828+I'm not really sure how that will work yet.
2929+3030+## Parsing
3131+3232+For the react application (in `mast-react-app`) I actually had to copy the parser to `src/lib/` in order to get it to build.
3333+The command to build the parsers is
3434+3535+```
3636+npx peggy --format es command_js.peg
3737+```
3838+2039## Status
21402241A vaguely unordered list of the next tasks to be accomplished, and those recently completed
+3
flake.nix
···9696 devShells.default = pkgs.mkShell {
9797 buildInputs = with pkgs; [ go pigeon nodejs sqlite git-bug openssl ];
98989999+ # TODO:
100100+ # Shell Aliases don't work for direnv because they're not shell portable
101101+ # Find an alternative to this
99102 shellHook = ''
100103 alias start-dev='npm run dev'
101104 alias build-dev='npm run build'