refactor: restructure repo into src/ site/ dist/ vendor/ packs/
Separate framework source from website: - src/layers/ + src/main.css: CSS framework source (was assets/css/) - site/: Hugo website (content/, layouts/, hugo.toml) - dist/: built output (asw.css, asw.min.css) - vendor/open-props/: vendored dependency with version tracking - Hugo module mounts: dist/ → static, site runs from site/ Build: hugo --source site/ passes (105 pages). npm run build produces dist/asw.css. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
5bf233348d
commit
910b0e42a6
71 changed files with 76 additions and 3 deletions
67
site/content/notes/session.md
Normal file
67
site/content/notes/session.md
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
---
|
||||
title: "Session Log"
|
||||
description: "Structured session and activity logs with timestamp, actor, and event semantics."
|
||||
section: notes
|
||||
prev-url: "diff/"
|
||||
prev-title: "Diff"
|
||||
next-url: ""
|
||||
next-title: ""
|
||||
type: notes
|
||||
date: 2026-04-09
|
||||
tags: ["notes", "session", "reference"]
|
||||
ai-disclosure: "generated"
|
||||
ai-model: "claude-sonnet-4-5"
|
||||
ai-provider: "Anthropic"
|
||||
|
||||
---
|
||||
|
||||
## Overview
|
||||
|
||||
Use `data-role="session-log"` on an `<ol>` to render a structured activity or session log. Each `<li>` is one event.
|
||||
|
||||
```html
|
||||
<ol data-role="session-log">
|
||||
<li>
|
||||
<time datetime="2026-04-09T08:31:00Z">08:31</time>
|
||||
<span data-actor="vigilio">vigilio</span>
|
||||
<span data-event="wake">Session started — model claude-sonnet-4-6</span>
|
||||
</li>
|
||||
<li>
|
||||
<time datetime="2026-04-09T08:32:14Z">08:32</time>
|
||||
<span data-actor="vigilio">vigilio</span>
|
||||
<span data-event="read">Read vault overview and daily note</span>
|
||||
</li>
|
||||
<li>
|
||||
<time datetime="2026-04-09T08:47:00Z">08:47</time>
|
||||
<span data-actor="system">system</span>
|
||||
<span data-event="commit">Committed: feat(vault): add session-log pattern</span>
|
||||
</li>
|
||||
</ol>
|
||||
```
|
||||
|
||||
## Attributes
|
||||
|
||||
| Attribute | Element | Meaning |
|
||||
|-----------|---------|---------|
|
||||
| `data-role="session-log"` | `<ol>` | Activates session-log layout |
|
||||
| `data-actor` | `<span>` | Who performed the action — styled by value |
|
||||
| `data-event` | `<span>` | Event type — `wake`, `read`, `write`, `commit`, `sleep` |
|
||||
|
||||
## Actor Variants
|
||||
|
||||
```html
|
||||
<span data-actor="vigilio">vigilio</span> <!-- agent — primary colour -->
|
||||
<span data-actor="ludo">ludo</span> <!-- operator — accent colour -->
|
||||
<span data-actor="system">system</span> <!-- system — muted -->
|
||||
```
|
||||
|
||||
## Compact Form
|
||||
|
||||
For dense logs, omit the actor and let timestamp + event carry the entry:
|
||||
|
||||
```html
|
||||
<ol data-role="session-log" data-density="compact">
|
||||
<li><time datetime="2026-04-09T09:00:00Z">09:00</time> <span data-event="wake">Wake</span></li>
|
||||
<li><time datetime="2026-04-09T09:31:00Z">09:31</time> <span data-event="sleep">Sleep — context limit reached</span></li>
|
||||
</ol>
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue