Skip to content

halcyonseeker/leibowitz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leibowitz

Leibowitz is my attempt at building a personal knowledge management (PKM) platform. It consists of a Common Lisp library exposed as a command-line utility and a web interface that act as an abstraction layer over the Unix file system providing the following features:

  • Tags, which may be applied to files in a mutually-inclusive fashion allowing for much more granular organizational schemes than the mutually-exclusive Unix file system. Tags are also hierarchical meaning that any given tag may have other tags as its "parents" or "children". Think directories but much more flexible.
  • Full text search of textual dumps of all indexed files. This is done using a a dedicated full-text search engine fed with useful text extracted from files so results are more complete, have fewer false positives, and are presented much faster than with grep(1).
  • Extensible and scriptable in Common Lisp using the symbols exported by the leibowitz package. I take a batteries-included approach to development, however there's no way I can anticipate all use-cases so it should be relatively easy for end-users to tweak Leibowitz's behavior to fit the information they want to organize.
  • Friendly for Unix hackers. Although Leibowitz seeks to abstract over Unix's API in a way that's comfortable for Lisp hackers to use at a REPL, it is primarily intended to be used as a command-line tool. As such, I have done my best to make sure it adheres the conventions of Unix-like systems.
  • A web interface that consists of a somewhat primitive GUI for a browsing and managing a knowledge base. It does NOT yet have any concept of permissions so I would strongly recommend against exposing it over a network unless you trust every device connected to it or gate it behind HTTP basic authentication with a reverse proxy.

A screenshot of the Leibowitz web view showing the main file listing

Usage

NAME:
  leibowitz - A lispy object-storage layer for unix file systems.

USAGE:
  leibowitz [global-options] [<command>] [command-options] [arguments ...]

OPTIONS:
      --help                    display usage information and exit
      --markdown-documentation  Print markdown usage docs to stdout.
      --version                 display version and exit
      --zsh-completions         Print zsh-completions to stdout.
  -c, --config <PATH>           Specify an alternate config file. [env: $LEIBOWITZ_CONFIG]
  -n, --no-config               Disable loading config file.
  -p, --slynk-port <INT>        Specify the port slynk will listen in. [default: 4005] [env:
                                $LEIBOWITZ_SLYNK_PORT]
  -r, --root <PATH>             Specify a directory in which to run in root mode. [env:
                                $LEIBOWITZ_ROOT]
  -s, --slynk                   Run a slynk server for interactive debugging. [env:
                                $LEIBOWITZ_RUN_SLYNK]
  -w, --slynk-wait              Wait for a slynk/swank client to connect before doing anything. [env:
                                $LEIBOWITZ_SLYNK_WAIT]

COMMANDS:
  help      Another way to print help info.
  info      Print information and statistics about the dataset.
  index     Recursively index a file or files, reading from stdin if none are
            specified.
  web       Display a web UI.
  find      Search your data.
  show      Print information about files.
  tag       Apply a tag to one or more files, read from stdin if none are
            specified.
  tags      Apply one or more tags to a datum, reading from stdin if no tags are
            specified.
  untag     Remove a tag from one or more files, reading from stdin if none are
            specified.
  untags    Remove one or more tags from a file, reading tag names from stdin if
            none are specified.
  mv        Move or rename a file, keeping metadata and tags intact.
  cp        Copy a file, duplicating its tags and metadata.
  rm        Remove a file, including all tag and metadata associations.
  ls        List indexed files.
  show-tag  Show information about one or more tags.
  mv-tag    Move or rename a tag.
  cp-tag    Copy a tag.
  rm-tag    Remove a tag, leaving associated data intact.
  ls-tag    List all tags.
  edit-tag

IMPORTANT NOTE

At present Leibowitz is very much a work in progress and is varying degrees of useful from a REPL, the command line, and a web UI. I WOULD STRONGLY RECOMMEND AGAINST USING IT

Installation

Right now in order to build or use Leibowitz you need ffmpeg, mupdf imagemagick, sqlite, make, quicklisp, and sbcl. On my machine I can build it as an executable with make or hack on it from a REPL with (load #P"leibowitz.asd" and (ql:quickload :leibowitz). I'd like Leibowitz to be easy to build, install, and use for people who don't know Common Lisp, but it's still a fair long ways off from that goal.

Roadmap to 0.1 version; minimum viable product

Core

  • Fix predicate/predicand bug where tags are being automatically applied where they shouldn't be. This might be a usage error in web, which itself would indicate that my API is probably too unintuitive and in need of revision. I haven't encountered this since so I'm almost certain I miss-used the core's API.
  • Improve full text search to index different fields (path, title, body, tags, tag descriptions) separately so that the user may selectively search in them.
  • Sometimes doing a full-text search yields an error Code CORRUPT: database disk image is malformed. with the offending stanza being select data.* from search left join data on data.id = search.id where search match ? order by rank. Connecting to the database and running pragma integrity_check yields okay. Some light stackoverflowing indicated this might be a result damaged indexes, which would make sense considering it only (so far) shows up when doing full-text search.
  • Record inodes so that the indexer can catch (some) moved files.
  • Support filtering by tag for all data listings
  • Common Lisp's pathname type treats certain characters (eg, *, [, ]) in file names specially; figure out how to work around this! This results in two different errors when calling index: - When such a file is in a directory that is being indexed we get ENOENT re-thrown up from index-worker in index (the error-handling currently truncates stack traces), I think this is caused by pathname/namestring conversion causes extra backslashes to be inserted at some point. - And when indexing it directly we get a type error "SB-IMPL::PATTERN is not of type VECTOR" from an aref call in library-path-indexable-p, I gather this is because pathname patterns are formed differently.
  • The library methods list-data, list-tags, and query should have a :filter argument for specifying a function with which to process the output; if used carefully this could also be used to reduce both the code and the asymptotic runtime complexity of the current web and command-line listing functions.

Web

  • Add more error handling to the web UI! Right now it is insanely easy to get this thing to crash.
  • Expose the full API functionality in the web frontend:
    • Editing data entries:
      • Adding tags
      • Removing tags
      • Moving/renaming
      • Uploading/importing from URL
      • Manually reindexing files and directories; useful /tree
      • Deleting
    • Editing tag entries:
      • Removing data
      • Renaming tags
      • Editing tag description
      • Adding parents
      • Removing parents
    • Search and listing:
      • Support changing the sort order and criterion for all data listings
      • Paginate
      • Card view for more convenient browsing
    • Remove use of library-list-files-in-dir in web; wrappers around list-files should leverage its full capabilities for filtering.n

CLI

  • The cli needs a way to normalize paths before passing them to the library; CL is absolutely clueless when it comes to resolving unix path notation.
  • Expose the full API functionality in the CLI interface:
    • Editing data entries:
      • Adding tags
      • Removing tags
      • Moving/renaming
      • Manually reindexing files and directories
      • Deleting
      • Viewing data summaries
    • Editing tag entries:
      • Adding data
      • Removing data
      • Renaming tags
      • Editing tag description
      • Adding parents
      • Removing parents
      • Adding children
      • Removing children
      • Viewing tag summaries
      • Test -i|--invert flag for tag edit subcommands
    • Search and listing:
      • Support changing the sort order and criterion for all data listings

Tests

  • My test harness breaks when $LEIBOWTIZ_ROOT is set, not a big deal but may have led to me spending several hours chasing down bugs that aren't there 🙃

Future Work

  • Make sure the web UI is properly accessible and easy to use with a screenreader. https://www.w3.org/WAI/ARIA/apg/
  • Unify searching and listing into a single method that restricts the view of the database, then expose this in the web and cli. EVERY view into the filesystem should thus be trivially filtered using the same sets of rules.
  • Implement collections for gallery-dl, man, etc.
  • Add support for file and collection specific metadata fields, probably implemented as a special kind of tags.
  • Add a native GUI.
  • Add full support for saving URLs, including saving magnets and archiving HTTP docs. These files should have special options in all frontends.
  • Integrate with the Internet Archive's API to view historical snapshots of webpages the user has saved onto their computer, either as a monolithic html file, a full site archive via, eg, wget -np -rkEpD example.com example.com/somewhere, or a .webloc or .url file. Could also integrate with web archive collections like gallery-dl to link to historical versions of the archived document, though that's less useful I think.
  • Automatically figure out the semantic similarities of tags and data.
    • Tag similarities could potentially be computed by some combination of:
      • Good old Levenshtein distance to catch alternate spellings.
      • Linguistic analysis, probably provided by a full-text search engine. I believe Xapian exposes some of these APIs.
      • Statistical analysis of tags' data, a set of tags are probably pretty similar if they share a majority of data
      • Sibling tags in the hierarchy could be found by looking for tags whose ancestor hierarchy is similar; ie statistical analysis of subgraphs of the overall DAG.
    • For data similarities the best general approach would probably be to store vector embeddings of each datum and find the nearest neighbors of each, probably using the Hierarchical Navigable Small World algorithm. This could also be applied to find semantically similar tags.
    • For audio and image data we could probably use the same sorts of algorithms used by the likes of Shazam and Yandex's reverse image search to get semantic structure from non-textual data — I need to read up on this more.
  • Could be interesting to supplement search with a local LLM, probably Facebook's Llama2, fed entirely by your local corpus.
  • Consider making the indexer run concurrently. I think some things in the core are still too fiddly for this to be wise.

Notes

About

Experimental Common Lisp object storage abstraction for Unix file systems

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks