personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add sol pbc branding links and document copyright headers

- Link "sol pbc" to solpbc.org in README
- Add footer with copyright and org link to docs landing page
- Document required SPDX/copyright file headers in AGENTS.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+23 -1
+8
AGENTS.md
··· 115 115 * **Type Hints**: Should be included on function signatures (legacy helpers may still need updates) 116 116 * **File Structure**: Constants → helpers → classes → main/CLI 117 117 118 + ### File Headers 119 + All source files must begin with a license and copyright header: 120 + ``` 121 + # SPDX-License-Identifier: AGPL-3.0-only 122 + # Copyright (c) 2026 sol pbc 123 + ``` 124 + Use `//` comments for JavaScript files. 125 + 118 126 --- 119 127 120 128 ## Testing & Quality Assurance
+1 -1
README.md
··· 4 4 5 5 Navigate Life Intelligently 6 6 7 - solstone is an open source project maintained by sol pbc. 7 + solstone is an open source project maintained by [sol pbc](https://solpbc.org). 8 8 9 9 A Python-based desktop journaling toolkit that captures screen and audio activity, processes it with AI, and provides intelligent navigation through a web interface. All data is organized in a local journal directory with daily folders, enabling temporal analysis and full ownership of your information. 10 10
+14
docs/index.html
··· 37 37 a { 38 38 text-decoration: none; 39 39 } 40 + footer { 41 + margin-top: auto; 42 + padding: 2rem 0; 43 + font-family: 'Comfortaa', system-ui, sans-serif; 44 + font-size: 0.85rem; 45 + color: #888; 46 + } 47 + footer a { 48 + color: #888; 49 + } 50 + footer a:hover { 51 + text-decoration: underline; 52 + } 40 53 </style> 41 54 </head> 42 55 <body> 43 56 <a href="https://github.com/solpbc/solstone"><img src="static/logo.png" alt="solstone logo" class="logo"></a> 44 57 <h1>solstone</h1> 58 + <footer>© 2026 <a href="https://solpbc.org">sol pbc</a></footer> 45 59 </body> 46 60 </html>