Skip to content

autonome/peek

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Peek

Please meet Peek, a web user agent application designed for using the web where, when and how you want it.

** WARNING: THIS IS VACATIONWARE **

  • Peek is not a web browser! Yet! And likely never will be a browser as you would expect from browsers to date. There are no tabs, and no windows in the tabbed-browser-like sense of them. If that's what you're looking for, there are a few decent browsers for you to choose from.
  • Peek is not safe for general use yet! It is a crude proof of concept I whipped up while on vacation. While I have thoughts on security model and user interface, I have not written it up into a proper security model yet.

CleanShot 2023-04-03 at 18 50 22@2x

Design

Many user tasks on the web are either transient, chained or persistent, data oriented, or some mix of those. The document-oriented web does not meet those needs. Major browser vendors can't meet those needs well, for many reasons.

  • transient
  • chained
  • persistent
  • data oriented

About this space:

  • Embrace the app-ness aspect of the web platform, less about the document-ness
  • Javascript is ok here
  • Decouple html+js+css from http+dns+ssl - not entirely, but that trust+security model is not a required starting point

Features

You can use Peek in a few ways, with more coming:

  • Peeks - Keyboard activated modal chromeless web pages
  • Slides - Keyboard or gesture activated modal chromeless web pages which slide in from any screen edges
  • Scripts - Scripts periodically executed against a web page in the background which extract data and notify on changes

In progress:

  • Commands
  • Groups

Peeks

Peeks are keyboard activated modal chromeless web pages mapped to Opt+0-9 and closed on blur, the Escape key or cmd/ctrl+w.

Slides

Slides are gesture activated modal chromeless web pages which slide in from left/right/bottom/top, and closed on blur, the Escape key or cmd/ctrl+w.

Scripts

Scripts periodically load a web page in the background and extract data matching a CSS selector, stores it, and notify the user when the resulting data changes.

Ok, so not really "scripts" yet. But safe and effective enough for now.

Why

Some thoughts driving the design of Peek:

  • Web user agents should be bounded by the user, not browser vendor business models
  • Windows and tabs should have died a long time ago, a mixed metaphor constraining the ability of the web to grow/thrive/change and meet user needs
  • Security user interface must be a clear articulation of risks and trade-offs, and users should own the decisions

Design

  • Escape IZUI
    • IZUI: inverse zooming user interface
    • ZUIs navigate by starting from a known root and user navigates by zooming ever further in
    • Escape starts anywhere, and instead of navigating by zooming in, all interfaces can zoom out to reset
    • allows unbounded and diverse entry points with predictable behavior
    • consistent path to familiar ground

Escape navigation model

  • navigation base can start at any level in stack
  • forward navigations are added on top of stack
  • backwards navigations walk the stack in reverse

Architecture / Implementation

Peek is designed to be modular and configurable around the idea that parts of it can run in different environments.

For example:

  • Definitely planning on a mobile app which syncs and runs your peeks/slides/scripts
  • I'd like to have a decentralized compute option for running your scripts outside of your clients and syncing the data
  • Want cloud storage for all config and data, esp infinite history, so can do fun things with it

Desktop App

Proof of concept is Electron. By far the best option today for cross-platform desktop apps which need a web rendering engine. There's really nothing else remotely suited (yet).

The user interface is just Tweakpane panels and modal chromeless web pages rn.

TODO

  • Need to look at whether could library-ize some of what Agregore implemented for non-HTTP protocol support.
  • Min browser might be interesting as a forkable base to work from and contribute to, if they're open to it. At least, should look more at the architecture.

Usage

  • Settings
    • In app, cmd/ctl+r, or launch app to open settings, or click tray
    • Configure Peeks/Slides/Scripts in settings
  • Peeks
    • Opt+0-9 to open Peeks
  • Slides
    • Opt+←→↑↓ to open Slides

Mobile

  • Quick access to Script output and manual runs, as widgets (or output from cloud runners?)
  • Peeks still totes useful here - on mobile is more like "quick dial" features

Cloud

  • Going full crypto payments for distributed compute on this one.

Roadmap

Core moduluarization [x] Modularize feature types, eyeing the extensibility model [x] move settings window to features/settings

App cleanup [x] main window vs settings [x] change settings shortcut from global+esc to opt+comma

Window lifecycle [x] modularize window open/close + hidden/visible [x] update settings, peeks, slides, scripts [x] hide/show window vs create fresh [x] update slides impl to use openWindow (x, y)

Minimal Electron + Maximal Web [x] move features to all web code, with a couple special apis [x] make globalShortcut an api like openWindow

Create core app [x] core settings [x] registers other features

Move all features to web implementation [x] move all possible code from the electron file to the web app [x] move to web implemented globalShortcut [x] move to web implemented openWindow [] per-feature settings ui [] load through url [] ability to add clickable links in settings panes [] add links to Settings app

Daily driver blockers [] debug vs profile(s) for app dir

Core+settings [x] move feature list and enablement to storage [x] merge core + settings [x] enable/disable features [] configurable default feature to load on app open (or none) [] figure out re-init/reload story when pref/feature changes [] figure out feature unload/reload (unreg shortcuts, close windows, etc)

History [] implement pubsub api [] push navigations out through pubsub [] add history listener + storage to cmd [] store central app action history [] store content script data

Core/Basic [x] basic command bar to open pages [x] fix setting layout wrapping issue [] re-enable label previews, eg "Peek {key} - {address}" [] add support for per-feature hidden prefs (should be per-schema)

Features cleanup [] enable/disable individual slides, peeks [] enable/disable individual scripts [] visible-but-not-changeable settings should be per-schema [] add window open animation (to/from coords, time) to openWindow [] update slides impl to use animation again [] add window position persistence where it makes sense (settings, groups, cmd) and make configurable? [] add window size persistence where it makes sense (slides, peeks) and make configurable? [] global shortcuts vs app shortcuts [] openWindow option to not close on escape

Core cleanup [] move feature bg pages to iframes in core bg page?

Deployment [] app updates [] icons [] about page

➡️ MVP (minimum viable preview)


Install/load/address features [] manifests for feature metadata [] feature urls? eg peek://settings(/index.html) [] maybe fine to file urls for now, would have to migrate later

Feature level rpc? [] how can other features query history vs store and query locally? [] how to know what urls there are to open? publish paths in manifests? [] discover + execute cmds? [] need to be able to get/set properties from other "features"?

Window layout [] try with settings maybe?

Web Platform [] need a web loader that's not full BrowserWindow? [] sandboxing [] blocklist

After that [] schema migration [] Extension model? [] Ubiquity-like [] Panorama-like [] Tray [] Scratchpad [] Identity [] Contacts [] Collaboration

Further [] Implement the Firefox "awesomebar" scoring and search algorithm so that Peek learns you [] Extension model designed for web user agent user interface experimentation [] Infinite lossless personal encrypted archive of web history

Contribution

  • in proto stage
  • all dragons, no promises

Development

yarn install
yarn start

Resources

Agregore ext protocol impl

Browsers

Misc

History

In working on Firefox and related things at Mozilla from 2006 - 2019, there were a few specific initiatives which best aligned with my needs as a user on the web:

  • The Awesomebar: infinite history + personalized local search index
  • Ubiquity: Natural language commands + chaining
  • Jetpack: The Mozilla Labs version - web-platfrom-centric extensibility
  • Panorama: née TabCandy, web pages as groups instead of tabs in windows

A few others which were in the right direction but didn't achieve their optimal form:

  • Greasemonkey
  • Microsummaries
  • Contacts extension

The first version of the Peek application has some bits of each of these, and the original Peek browser extension.

Peek browser extension

Peek was a browser extension that let you quickly peek at your favorite web pages without breaking your flow - loading pages mapped to keyboard shortcuts into a modal window with no controls, closable via the Escape key.

However, as browser extension APIs became increasingly limited, it was not possible to create a decent user experience and I abandoned it. You can access the extension in this repo in the extension directory.

The only way to create the ideal user experience for a web user agent that Does What I Want is to make it a browser-ish application, and that's what Peek is now.

Testcase: Authoring Flows

  • author web content
  • pull in bits from the web
  • share preview for feedback
  • publish (or at least get output)

writing the recap of the web track at ipfs thing 2023

  • make a new markdown doc
  • sections titled for each video title
  • each video's embode code in each section
  • navigate around the document for review and updates
  • need to easily preview rendered content
  • share preview link
  • publish somewhere

About

Peek is a web user agent application designed for using the web where, when and how you want it.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published