MCPcopy
hub / github.com/affaan-m/ECC / SessionFilenameMeta

Interface SessionFilenameMeta

scripts/lib/session-manager.d.ts:8–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7/** Parsed metadata from a session filename */
8export interface SessionFilenameMeta {
9 /** Original filename */
10 filename: string;
11 /** Short ID extracted from filename, or "no-id" for old format */
12 shortId: string;
13 /** Date string in YYYY-MM-DD format */
14 date: string;
15 /** Parsed Date object from the date string */
16 datetime: Date;
17}
18
19/** Metadata parsed from session markdown content */
20export interface SessionMetadata {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected