馃摎 docs: (installation) replace the seed step with tapesctl sync - #342
Open
bdougie wants to merge 2 commits into
Open
馃摎 docs: (installation) replace the seed step with tapesctl sync#342bdougie wants to merge 2 commits into
bdougie wants to merge 2 commits into
Conversation
A fresh server does not have to start empty. tapesctl sync pushes the Claude Code transcripts already on disk, so the quick start now shows it right after the seed step, with the async-derive caveat and a link to the capture page for what a transcript-only session contains.
Contributor
|
| Filename | Overview |
|---|---|
| docs/installation.md | Adds concise installation guidance for syncing existing Claude Code sessions; no actionable issue was established. |
Reviews (1): Last reviewed commit: "馃摎 docs: (installation) show tapesctl sy..." | Re-trigger Greptile
Someone installing Tapes already has Claude Code sessions on disk, so the quick start should fill the server with those instead of demo data. tapesctl seed stays available; it is just no longer the first thing a new user is told to run.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
The quick start went from
tapes servetotapesctl seed, so the first thing a new user saw was demo data. Anyone installing Tapes already has Claude Code sessions on disk. If they do not, they are probably not the target user.tapesctl syncpushes those sessions in, and it was only documented on the tapesctl capture page.What changed
In
docs/installation.md, the seed step is replaced with a sync step:tapesctl sync --ingest-url http://localhost:8082thentapesctl sessions list.--since-days 0sweeps everything.tapesctl seedstill exists and is still documented on the commands page. It is no longer the first thing a new user is told to run.Docs only. Renders at https://tapes.dev/docs/installation/ once synced.
Part of PCC-1305