├── .gitignore ├── GLOSSARY.md ├── README.md ├── SUMMARY.md ├── agreements ├── activity-types.md ├── buffer-agreement.md ├── decisions-agreement.md ├── diversity-agreement.md ├── financial_agreement.md ├── golden-pandas.md ├── internal.md ├── optimi.md ├── self-management.md └── service-level.md ├── archive ├── financial-agreement-1.0.0.md └── readme.md ├── book.json ├── context ├── agm-minutes-template.md ├── agm.md ├── ecosystem.md ├── history │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 2016-cobuy-lcc-00.jpg │ ├── 2016-cobuy-lcc-01.jpg │ ├── 3.png │ ├── may-2017-away-day.jpg │ ├── readme.md │ ├── spring-2016-retreat-0.jpg │ ├── spring-2016-retreat-1.jpg │ ├── summer-2017-retreat-0.jpg │ ├── summer-2017-retreat-1.jpg │ └── summer-2017-retreat-2.jpg ├── plan.md ├── readme.md ├── rhythm.md ├── vision.md └── what-we-do.md ├── guides ├── blogging.md ├── readme.md └── scheduling.md ├── logo.jpg ├── media └── readme.md ├── members ├── dan.png ├── greg.png ├── iain.png ├── michael.jpg ├── mikey.png ├── readme.md └── sarah.jpg ├── package.json ├── processes ├── agile.md ├── conflict-resolution.md ├── invoicing_clients.md ├── readme.md ├── stewards.png ├── stewardship.md └── working-with-rs.md ├── products ├── cobuy │ ├── dry-goods-sacks-bg.png │ ├── food-waste-table.png │ ├── good-fast-cheap-(white-bg).png │ ├── mux-demux.png │ ├── petone-buckets.jpg │ ├── petone-crates.jpg │ ├── petone-packing-1.jpg │ ├── petone-packing-2.jpg │ ├── petone-packing-3.jpg │ ├── petone-packing-4.jpg │ ├── readme.md │ ├── ux-ideas-bubbles.png │ ├── ux-imac-still.png │ ├── ux-imac-wireframe-dash.png │ ├── ux-imac-wireframe-drygoods-dash.png │ ├── ux-post-its.png │ ├── ux-story.gif │ └── ux-what-matters.png └── readme.md ├── roles ├── coordinator.md ├── director.md ├── directors-meeting.md └── readme.md └── styles └── website.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/.gitignore -------------------------------------------------------------------------------- /GLOSSARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/GLOSSARY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /agreements/activity-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/activity-types.md -------------------------------------------------------------------------------- /agreements/buffer-agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/buffer-agreement.md -------------------------------------------------------------------------------- /agreements/decisions-agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/decisions-agreement.md -------------------------------------------------------------------------------- /agreements/diversity-agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/diversity-agreement.md -------------------------------------------------------------------------------- /agreements/financial_agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/financial_agreement.md -------------------------------------------------------------------------------- /agreements/golden-pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/golden-pandas.md -------------------------------------------------------------------------------- /agreements/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/internal.md -------------------------------------------------------------------------------- /agreements/optimi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/optimi.md -------------------------------------------------------------------------------- /agreements/self-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/self-management.md -------------------------------------------------------------------------------- /agreements/service-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/agreements/service-level.md -------------------------------------------------------------------------------- /archive/financial-agreement-1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/archive/financial-agreement-1.0.0.md -------------------------------------------------------------------------------- /archive/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/archive/readme.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/book.json -------------------------------------------------------------------------------- /context/agm-minutes-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/agm-minutes-template.md -------------------------------------------------------------------------------- /context/agm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/agm.md -------------------------------------------------------------------------------- /context/ecosystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/ecosystem.md -------------------------------------------------------------------------------- /context/history/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/0.png -------------------------------------------------------------------------------- /context/history/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/1.png -------------------------------------------------------------------------------- /context/history/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/2.png -------------------------------------------------------------------------------- /context/history/2016-cobuy-lcc-00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/2016-cobuy-lcc-00.jpg -------------------------------------------------------------------------------- /context/history/2016-cobuy-lcc-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/2016-cobuy-lcc-01.jpg -------------------------------------------------------------------------------- /context/history/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/3.png -------------------------------------------------------------------------------- /context/history/may-2017-away-day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/may-2017-away-day.jpg -------------------------------------------------------------------------------- /context/history/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/readme.md -------------------------------------------------------------------------------- /context/history/spring-2016-retreat-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/spring-2016-retreat-0.jpg -------------------------------------------------------------------------------- /context/history/spring-2016-retreat-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/spring-2016-retreat-1.jpg -------------------------------------------------------------------------------- /context/history/summer-2017-retreat-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/summer-2017-retreat-0.jpg -------------------------------------------------------------------------------- /context/history/summer-2017-retreat-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/summer-2017-retreat-1.jpg -------------------------------------------------------------------------------- /context/history/summer-2017-retreat-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/history/summer-2017-retreat-2.jpg -------------------------------------------------------------------------------- /context/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/plan.md -------------------------------------------------------------------------------- /context/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/readme.md -------------------------------------------------------------------------------- /context/rhythm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/rhythm.md -------------------------------------------------------------------------------- /context/vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/vision.md -------------------------------------------------------------------------------- /context/what-we-do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/context/what-we-do.md -------------------------------------------------------------------------------- /guides/blogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/guides/blogging.md -------------------------------------------------------------------------------- /guides/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/guides/readme.md -------------------------------------------------------------------------------- /guides/scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/guides/scheduling.md -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/logo.jpg -------------------------------------------------------------------------------- /media/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/media/readme.md -------------------------------------------------------------------------------- /members/dan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/members/dan.png -------------------------------------------------------------------------------- /members/greg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/members/greg.png -------------------------------------------------------------------------------- /members/iain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/members/iain.png -------------------------------------------------------------------------------- /members/michael.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/members/michael.jpg -------------------------------------------------------------------------------- /members/mikey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/members/mikey.png -------------------------------------------------------------------------------- /members/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/members/readme.md -------------------------------------------------------------------------------- /members/sarah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/members/sarah.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/package.json -------------------------------------------------------------------------------- /processes/agile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/processes/agile.md -------------------------------------------------------------------------------- /processes/conflict-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/processes/conflict-resolution.md -------------------------------------------------------------------------------- /processes/invoicing_clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/processes/invoicing_clients.md -------------------------------------------------------------------------------- /processes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/processes/readme.md -------------------------------------------------------------------------------- /processes/stewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/processes/stewards.png -------------------------------------------------------------------------------- /processes/stewardship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/processes/stewardship.md -------------------------------------------------------------------------------- /processes/working-with-rs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/processes/working-with-rs.md -------------------------------------------------------------------------------- /products/cobuy/dry-goods-sacks-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/dry-goods-sacks-bg.png -------------------------------------------------------------------------------- /products/cobuy/food-waste-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/food-waste-table.png -------------------------------------------------------------------------------- /products/cobuy/good-fast-cheap-(white-bg).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/good-fast-cheap-(white-bg).png -------------------------------------------------------------------------------- /products/cobuy/mux-demux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/mux-demux.png -------------------------------------------------------------------------------- /products/cobuy/petone-buckets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/petone-buckets.jpg -------------------------------------------------------------------------------- /products/cobuy/petone-crates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/petone-crates.jpg -------------------------------------------------------------------------------- /products/cobuy/petone-packing-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/petone-packing-1.jpg -------------------------------------------------------------------------------- /products/cobuy/petone-packing-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/petone-packing-2.jpg -------------------------------------------------------------------------------- /products/cobuy/petone-packing-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/petone-packing-3.jpg -------------------------------------------------------------------------------- /products/cobuy/petone-packing-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/petone-packing-4.jpg -------------------------------------------------------------------------------- /products/cobuy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/readme.md -------------------------------------------------------------------------------- /products/cobuy/ux-ideas-bubbles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/ux-ideas-bubbles.png -------------------------------------------------------------------------------- /products/cobuy/ux-imac-still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/ux-imac-still.png -------------------------------------------------------------------------------- /products/cobuy/ux-imac-wireframe-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/ux-imac-wireframe-dash.png -------------------------------------------------------------------------------- /products/cobuy/ux-imac-wireframe-drygoods-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/ux-imac-wireframe-drygoods-dash.png -------------------------------------------------------------------------------- /products/cobuy/ux-post-its.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/ux-post-its.png -------------------------------------------------------------------------------- /products/cobuy/ux-story.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/ux-story.gif -------------------------------------------------------------------------------- /products/cobuy/ux-what-matters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/cobuy/ux-what-matters.png -------------------------------------------------------------------------------- /products/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/products/readme.md -------------------------------------------------------------------------------- /roles/coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/roles/coordinator.md -------------------------------------------------------------------------------- /roles/director.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/roles/director.md -------------------------------------------------------------------------------- /roles/directors-meeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/roles/directors-meeting.md -------------------------------------------------------------------------------- /roles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/roles/readme.md -------------------------------------------------------------------------------- /styles/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-systems/handbook/HEAD/styles/website.css --------------------------------------------------------------------------------