From 7718e1a88607c4c357d7afd05b4a4ee29f36bdac Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 15 Aug 2026 10:18:48 +0000 Subject: [PATCH] docs: list plugin categories vertically in the repository tree The plugins/ entry was the only place in the repository structure tree that packed several directories onto one line. Give each category its own line, in pipeline order, with the role taken from the category table. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_018xrChxz6rp847KdZTfYkCJ --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ddb7361..f3c4c12 100644 --- a/README.md +++ b/README.md @@ -596,8 +596,13 @@ Two rules worth knowing before you start: │ ├── environment.rb Bundler setup for a source checkout │ └── version.rb ├── plugins/ The shipped plugins, one directory per category -│ ├── subscription/ custom_feed/ filter/ -│ └── store/ provide/ notify/ publish/ +│ ├── subscription/ Acquire from outside +│ ├── custom_feed/ Build a feed from a source that is not one +│ ├── filter/ Select, reorder, rewrite +│ ├── store/ Persist, and drop what was seen before +│ ├── provide/ Emit the payload elsewhere +│ ├── notify/ Send a notification +│ └── publish/ Send the result out, print it, or write it as a document ├── config/ Example Recipes; scaffold copies these out ├── assets/siteinfo/ Data files plugins read ├── db/ Fallback for SQLite files when ~/.automatic/db is absent