diff --git a/website/content/docs/overview b/website/content/docs/overview
index 66e8ccf47..52fa277f7 100644
--- a/website/content/docs/overview
+++ b/website/content/docs/overview
@@ -2,7 +2,39 @@
Camlistore is your personal storage system for life.
-What does that mean?
+Summary
+
+The project began because I wanted to...
+
+- ... store all my stuff forever, not worrying about deleting, or losing stuff.
+
+- ... save stuff easily, and without categorizing it or choosing a location whenever I save it. I just want a data dumptruck that I can throw stuff at whenever.
+
+- ... never lose anything because nothing can be overwritten (all blobs are content-addressable), and there's no delete support. (optional garbage collection coming later)
+
+- be able to search for anything I once stored.
+
+- be able to browse and visualize stuff I've stored.
+
+- ... not always be forced into a POSIX-y filesystem model. That involves thinking of where to put stuff, and most the time I don't even want filenames. If I take a bunch of photos, those don't have filenames (or not good ones, and not unique). They just exist. They don't need a directory or a name. Likewise with blog posts, comments, likes, bookmarks, etc. They're just objects.
+
+- ... have a POSIX-y filesystem when I want one. And it should all be logically available on my tiny laptop's SSD disk, even if my laptop's disk is miniscule compared to my entire repo. That is, there should actually be a caching virtual filesystem, not a daemon running rsync in the background. If I have to have a complete copy of my data locally, or I have to "choose which folders" to sync, that's broken.
+
+- ... be able to synthesize POSIX-y filesystems from search queries over my higher-level objects. e.g. a "recent" directory of recent photos from my Android phone (this all works already in 0.1)
+
+- Not write another CMS system, ever. Camlistore should be able to store and model any type of content, so it can just be a backend for other apps.
+
+- ... have backups of all my social network content I created daily on other people's servers, to protect myself if my account is hijacked, the company goes evil, changes ownership, or goes out of business..
+
+- ... have both a web UI and command-line tools, as well as a FUSE filesystem.
+
+- ... be in control of my data, but also still be able to utilize big companies' infrastructure cloud products if desired.
+
+
+
+Most of this works as of the 0.1 release, and the rest and more is in progress.
+
+Longer Answer
Throughout our life, we all continue to generate content, whether
that's writing documents, taking photos, writing comments online,
@@ -72,7 +104,10 @@ optional and can be turn on or off per-instance:
their digest. The only metadata a storage server needs to track
per-blob is its size. (No other metadata is permitted, as it's
stored elsewhere) Implementations are trivial and exist for local
- disk, Amazon S3, Google Storage, etc.
+ disk, Amazon S3, Google Storage, etc. They're also composable, so
+ there exists "shard", "replica", "remote", "conditional", and
+ "encrypt" (in-progress) storage targets, which layer upon
+ others<.
Index: index is implemented in terms of the Storage
interface, so can be synchronously or asynchronously replicated to
@@ -96,3 +131,7 @@ optional and can be turn on or off per-instance:
also just use the command-line tools or API.
+
+Enough words for now. See the docs and code for more.
+
+Last updated 2013-06-12
\ No newline at end of file