Files
projax/docs/standards/per.md
mAi e055e4607e feat(phase 3c per-events): event_date on item_links, Documents UI, PER URL resolver, MCP date-aware add_link
migration 0011_item_links_event_date.sql: ADD event_date date + partial
index (idempotent). Day granularity by design per the PER spec; the
column lands NULL on every existing row, no backfill.

store:
- ItemLink gains an EventDate *time.Time (every read path scans it).
- AddLinkDated(ctx, item, refType, refID, rel, note, date, metadata)
  upserts with COALESCE(new, old) for note + event_date so partial
  callers don't clobber prior state.
- DatedLinks(item) returns event_date IS NOT NULL ordered DESC.

web:
- per.go: parsePER strips a trailing .YYMMDD (rejects invalid dates like
  Feb 30); collisionTag yields a/b/.../z/aa/ab/...; computePERs walks
  DatedLinks output and assigns render-time collision tags inside each
  date group. Tags are never stored.
- handleDetail: 404 retry with PER stripped — /i/mfin.house1.260515
  resolves to the house1 item with HighlightDate=2026-05-15.
- documents_section.tmpl: add-form (ref_type/date/ref_id/note),
  date-sorted rows with computed PER, ref-type badge, remove × with
  anti-forgery item-id check, highlight row when HighlightDate matches.
- POST /i/{path}/links/add and /links/remove handlers; HTMX swap on the
  fragment, redirect for non-HTMX callers.

mcp:
- add_link accepts event_date: "YYYY-MM-DD" (parsed strict, hands back
  fmt.Errorf on bad form). linkView.event_date surfaces it on responses.
- Existing add_link callers without event_date keep working unchanged.

docs:
- docs/standards/per.md gains an Implementation section pointing at
  item_links.event_date + ref_types + render-time collision policy.
- docs/design.md adds a Documents/dated artifacts section with the
  schema delta, conflict policy, and URL routing rules.

tests:
- per_test.go: parsePER (valid/invalid dates, non-numeric, wrong
  length); collisionTag (1..53); computePERs (bare-then-.a, skips
  undated, multi-date grouping).
2026-05-15 18:35:21 +02:00

7.8 KiB
Raw Blame History

projax External Reference (PER) Standard

Version: v0.1 Status: locked Authors: m + head Date: 2026-05-15

A projax External Reference (PER) is a short dotted string that m drops into letters, emails, invoices, bank transfers, PDF filenames, physical filing labels — anywhere a project (or a project-event) needs an unambiguous citation. The PER doubles as m's personal Aktenzeichen.

Format

<area>[.<project>[.<sub-project>...]][.<YYMMDD>][.<collision-tag>]
  • Lowercase internally (slug, used in DB, URLs, search index).
  • Display in m's preferred camelCase (mFin.house1.260515).
  • Lookup is case-insensitive — typing mfin.house1 resolves the same row as mFin.house1.
  • Slugs are vowel-elided where natural (prjx, mFin, mBrn).
  • Humanly readable UID is the explicit design goal: each PER is unique within projax (after collision-tag, if needed) AND legible at a glance to a human reading a letter.

Components

Segment Required Example Notes
Area yes dev, mFin, home Root-level area slug.
Project + sub-projects optional, dotted house1, springClean.bathroom Nests to any depth.
Date stamp optional 260515 YYMMDD. Anchors the PER to an event/document date.
Collision tag only when needed a, b, … Alpha sequence appended when the same <path>[.<date>] would otherwise repeat. See below.

Collision handling

When more than one artifact would otherwise share the same PER (same project path on the same date — or same project path with no date), append a single-letter tag in registration order: .a, .b, .c, … .z, then .aa, .ab if anyone ever needs it.

  • The first artifact gets the bare PER (no tag).
  • The second collision triggers .a for the new one. The first one retroactively gets .a only if there's a real risk of ambiguity in already-written documents (otherwise leave the first bare and start the second at .a — the registry resolves both).
  • Alpha (not numeric) is chosen so the tag never reads as an ordinal (.1 / .2 could be misread as "first / second meeting on that day" — alpha avoids that connotation).

Examples:

PER Meaning
mFin.house1.260515 the (only) thing about house1 on that day
mFin.house1.260515.a one of two+ things; this is the first letter / the buyer's notary draft
mFin.house1.260515.b the second one; the seller's response on the same day
Work.upc.deadlines.a one of two undated reference notes on this sub-project

Examples

PER Meaning
mFin the finances area at large
mFin.house1 the project
mFin.house1.260515 the project on 2026-05-15 (a letter, an invoice, a meeting note from that day)
Work.upc.deadlines.260520 a deadline reference on 2026-05-20
Home.springClean.bathroom a sub-project — no date
dev.prjx.260515 this very document, cited

Properties

  • Rename stability — when a slug is renamed, the previous slug lands in projax.items.aliases[]. Letters citing mFinanzen.house1.260515 continue to resolve after the rename to mFin.
  • Reverse search — drop a PER into projax search and it resolves the project (and any dated artifacts linked to that project on that date).
  • No primary-key role — PERs are NOT stored as primary keys. They're projections of (items.path, optional item_links.event_date). Canonical identity remains the UUID.
  • Stable over time — UUIDs are immutable. Slugs change; the PER stays valid via aliases[] resolution.

Where to use

  • Letter Aktenzeichen
  • Invoice "Reference" field
  • Bank transfer Verwendungszweck
  • Email subject prefix — [mFin.house1.260515] Kaufpreiszahlung
  • Physical document filing labels
  • PDF filenames — mfin.house1.260515.pdf
  • Calendar event titles where the project is the topic

Where NOT to use

  • Sensitive / external-facing contexts where revealing the project tree structure is undesirable (PERs leak m's life areas).
  • Form fields with strict character limits below ~2530 chars.
  • Anywhere ambiguity is a feature (intentionally vague references).

Schema implications

  • projax.item_links carries an optional event_date date column (migration 0011_item_links_event_date.sql, shipped 2026-05-15). Dated artifacts linked to an item — CalDAV todos, Gitea issues, document references, PER-cited letters — sit here with a date.
  • Day granularity is intentional. Time-of-day is not part of the PER standard.
  • Existing aliases text[] on projax.items is the rename-stability backbone. Don't drop on archive.
  • PER resolution = parse the string → match (area-walk-path, optional date) → return matching items_unified row + linked item_links rows with event_date = parsed-date.

Implementation (v0.1, shipped Phase 3c)

  • Backing columns: (projax.items.paths[], projax.item_links.event_date). The path is the canonical lookup key; the date narrows to a specific dated artifact.
  • Ref-type convention for the artifacts surfaced under a project's Documents section:
    • document — generic pointer (URL, file path, Drive link, …); ref_id is the pointer
    • note — short text snippet; ref_id is the body or a hash, full body in note column or metadata.body
    • url — bookmarked link; the UI renders ref_id as an <a> opening in a new tab
    • Existing typed refs (caldav-list, gitea-repo, gitea-issue, mai-project, …) keep their meaning and can also carry an event_date.
  • Collision tags are render-time only. When two links share (item_id, event_date), the UI appends .a/.b/… in created_at order. The first one stays bare. We never store the tag — re-rendering after a delete naturally rebalances the assignments.
  • URL routing: /i/<path>.<YYMMDD> first tries the literal path; if 404 and the trailing segment is a valid YYMMDD, retries against the stripped path and surfaces the date as a render hint so the Documents row gets .highlight. Invalid dates (Feb 30, etc.) hit the original 404 path.
  • MCP: mcp__projax__add_link accepts an optional event_date: "YYYY-MM-DD". linkView.event_date surfaces the stored value on responses.
  • Conflict policy: on (item_id, ref_type, ref_id, rel) duplicates the upsert uses COALESCE(new, old) for note and event_date, so a callable that re-adds a link without a date doesn't clobber a pre-set date.
  • Cross-references: see docs/design.md §"Documents / dated artifacts (Phase 3c)" for the schema delta and UI integration.

Display & UI

  • The backend stores lowercase. The frontend renders PERs in m's preferred camelCase by reading items.title (or a derived display_slug field if titles drift far from slugs).
  • Search input is normalized to lowercase before matching, so users can type either casing.

Out of scope (v0.1)

  • Document-type suffixes (.kauf, .notar, .mtg, .rcpt, etc.). Considered and dropped: the <area>.<project>.<YYMMDD>[.<collision>] form is enough granularity for m's use today, and adding a taxonomy of doc-types adds memorization overhead for marginal value. If multiple artifacts share <path>.<date>, disambiguation is handled by the collision tag (.a, .b, …), not by encoding a type into the PER string. Reserved for a future v0.2 if real usage surfaces the need.
  • Time-of-day suffixes — date granularity is enough. If m needs to distinguish "morning meeting" vs "evening call" on the same project on the same day, that's an internal metadata concern, not a PER concern.
  • Cross-PER references / linking syntax — Phase 2+.

Versioning

PER is a forward-compatible additive format. A v0.2 may add suffixes or qualifiers; v0.1 PERs MUST continue to resolve under any future spec. No backwards-incompatible changes without bumping the major version.