Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere Programmierung(d+019) OpenGL(20.09.2026 um 15:51 Uhr)
Sichere ProgrammierungYou Released an App. Now What?(20.09.2026 um 15:52 Uhr)
Sichere Programmierung(d+023) Triangle(20.09.2026 um 15:53 Uhr)
Sichere ProgrammierungHow many coding agents are you using for the same project?(20.09.2026 um 15:57 Uhr)
Sichere ProgrammierungCapyToolkit: 45+ free browser tools, each with a how-to guide(20.09.2026 um 16:00 Uhr)
Sichere ProgrammierungDay-01: Starting My Cybersecurity Journey(20.09.2026 um 16:02 Uhr)
Sichere ProgrammierungWhat crt.sh's Error Pages Taught Me About Retry Logic(20.09.2026 um 16:03 Uhr)
Sichere ProgrammierungI taught my shell to stop me *before* I run `rm -rf /`(20.09.2026 um 16:09 Uhr)
Sichere ProgrammierungTraditional Coding vs Agentic Coding: The Flow State Problem(20.09.2026 um 16:19 Uhr)
Sichere Programmierung(d+019) OpenGL(20.09.2026 um 15:51 Uhr)
Sichere ProgrammierungYou Released an App. Now What?(20.09.2026 um 15:52 Uhr)
Sichere Programmierung(d+023) Triangle(20.09.2026 um 15:53 Uhr)
Sichere ProgrammierungHow many coding agents are you using for the same project?(20.09.2026 um 15:57 Uhr)
Sichere ProgrammierungCapyToolkit: 45+ free browser tools, each with a how-to guide(20.09.2026 um 16:00 Uhr)
Sichere ProgrammierungDay-01: Starting My Cybersecurity Journey(20.09.2026 um 16:02 Uhr)
Sichere ProgrammierungWhat crt.sh's Error Pages Taught Me About Retry Logic(20.09.2026 um 16:03 Uhr)
Sichere ProgrammierungI taught my shell to stop me *before* I run `rm -rf /`(20.09.2026 um 16:09 Uhr)
Sichere ProgrammierungTraditional Coding vs Agentic Coding: The Flow State Problem(20.09.2026 um 16:19 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

clerk: Auto-Summarize Your Claude Code Sessions

Reagiere als Erste:r — dein Feedback zählt!

The Friday Afternoon Problem

It's 4 PM on Friday. Your manager asks for the weekly report. You stare at your terminal, trying to remember what you did on Monday. Was it the auth refactor or the API migration? Which project was that even in?

You open git log. Scroll. Scroll. Scroll. Piece together commit messages across 4 repositories. Thirty minutes later, you have a rough draft that still feels incomplete.

Sound familiar?

The Daily Problem

But it's not just Fridays. Every morning, you open Claude Code and realize you forgot to use --resume. Yesterday's session had all the context — the architecture decisions, the debugging steps, the half-finished plan. Now it's gone, buried in a pile of session IDs.

What if your sessions just... remembered themselves?

That's what clerk does. Install once, forget about it. Every session is automatically summarized when it ends.

brew install vulcanshen/tap/clerk
clerk install

No configuration needed. No commands to remember. No habits to build.

clerk runs entirely on your machine — no remote services, no accounts, no data leaving your laptop. All you need is Claude Code.

What You Get

Auto-generated daily summaries

Every time a Claude Code session ends, clerk processes the transcript and saves a structured summary as a markdown file, organized by date and project:

~/.clerk/
├── summary/
│   ├── 20260414/
│   │   ├── projects-my-api.md
│   │   └── work-frontend.md
│   └── 20260416/
│       ├── projects-my-api.md
│       └── work-frontend.md
├── tags/
│   ├── auth.md
│   ├── vue.md
│   └── refactor.md
└── ...

Context recovery

Forgot --resume? No problem. Just type /clerk-resume in Claude Code:

Claude reads your past summaries and transcripts, rebuilds the context, and you're back where you left off.

Semantic search

Need to find that session where you worked on authentication?

Type /clerk-search and say "auth". clerk uses AI-powered semantic matching — it doesn't just string-match tags, it understands that "auth" relates to "jwt", "oauth", "login".

Weekly reports

This is the one that saves Friday afternoons:

clerk report --days 7

clerk reads all summaries from the past 7 days, sends them to Claude, and outputs a structured report:

### Summary (2026-04-14 ~ 2026-04-18)

#### my-api-server
Implemented JWT auth with refresh tokens, added rate limiting
middleware, fixed connection pool leak under high concurrency.

#### frontend-app
Migrated from Vue 2 to Vue 3, replaced Vuex with Pinia,
updated all unit tests.

---

### By Date

#### 2026-04-14
- **my-api-server**: JWT auth with refresh token rotation
- **frontend-app**: Started Vue 3 migration, updated build config

#### 2026-04-16
- **my-api-server**: Rate limiting middleware, connection pool fix
- **frontend-app**: Vuex → Pinia, 12 store modules migrated

---

### By Project

#### my-api-server
- **2026-04-14**: JWT auth with refresh token rotation
- **2026-04-16**: Rate limiting middleware, connection pool fix

#### frontend-app
- **2026-04-14**: Vue 3 migration kickoff, build config update
- **2026-04-16**: Vuex → Pinia, 12 store modules converted

Save it, paste it into Slack, attach it to your standup — whatever works for you:

clerk report --days 7 > weekly-report.md

Default is --days 1 — great for daily standup summaries.

Need to include sessions that haven't ended yet? Add --realtime:

clerk report --days 7 --realtime

This processes active session transcripts on the spot. Note that it uses additional Claude API calls — without the flag, only completed sessions are included.

Obsidian Integration

If you use Obsidian, clerk's output directory works as a vault out of the box. Summaries include YAML frontmatter tags, and tag files use standard markdown links. Open ~/.clerk/ in Obsidian and you get a graph view connecting tags to summaries across all your projects.

Installation

macOS / Linux

brew install vulcanshen/tap/clerk
clerk install

Other options

# Quick install script
curl -fsSL https://raw.githubusercontent.com/vulcanshen/clerk/main/install.sh | sh

# Or build from source
go install github.com/vulcanshen/clerk@latest

Then run clerk install to set up hooks, MCP server, and slash commands.

How It Works Under the Hood

  1. clerk install registers SessionStart and SessionEnd hooks in Claude Code
  2. When a session ends, the hook triggers clerk feed in the background
  3. Feed reads only new transcript lines since the last run (cursor tracking)
  4. It calls claude -p to merge new activity into the existing daily summary
  5. Tags are extracted and indexed for search

The whole thing is a single Go binary. No dependencies beyond Claude Code itself.

GitHub: github.com/vulcanshen/clerk

If you have feedback or ideas, issues and PRs are welcome!

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten clerk: Auto-Summarize Your Claude Code Sessions

Thematisch verwandte Begriffe: clerk, AutoSummarize, Your, Claude · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-93956 | A flaw has been found in olivier-ls PHP-FTS up to 1.1.2. Affected by thi…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick