docs: remove landscapes, re-add logo and dynamic version#62
Merged
Conversation
#61) Two related cleanups in one PR: 1. Remove docs/landscapes/. Per the global Claude Code memory topology, landscapes are for client-engagement work spanning multiple repos and live in the private claude-config layer; tool repos like vaultctl don't have landscape membership. PR #43 introduced docs/landscapes/ with an explicit "vaultctl as its own landscape" deviation; this PR walks that back per user correction. The schema-inference ADR has been moved to ~/.claude/projects/<slug>/memory/ as a project memory, eventually synced to claude-config. 2. Re-add the title-page logo and the dynamic version line that lost the race against the auto-merge of PR #60. The logo is fetched into docs/assets/cdds-logo.png (currently sourced from the cdds-ab GitHub org avatar, 400x400 PNG). The build script extracts the vaultctl version from pyproject.toml at build time and injects it as the subtitle, so the rendered PDF always carries "User Manual · vaultctl vX.Y.Z". Closes #61.
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.
Summary
Two related cleanups bundled because they both correct the state PR #60 left behind:
Remove `docs/landscapes/`. The landscape concept belongs in the private `claude-config` layer (sync target: `~/.claude/projects//memory/`), not committed into a public tool repo. PR docs(landscape): introduce vaultctl landscape with first ADR #43 introduced `docs/landscapes/vaultctl/` with an explicit "vaultctl as its own landscape" deviation; per user correction, that's reverted here. The schema-inference ADR's content has been moved to a private project-memory file out-of-PR.
Re-add the title-page logo and dynamic version. Both were in a follow-up commit on the PR docs(manual): user manual in book form (PDF) #60 branch that lost a race against auto-merge — the squash only included the first commit. This PR puts them back on top of master.
Why Bundled
The landscape removal and the logo re-add aren't strictly the same change, but they're both "PR #60 left this off". One PR with one issue (#61) is cleaner than two near-empty ones; the diff is small and reviewable.
What's in the Logo Commit
Verification
```
$ bash docs/build_manual.sh
Built: /home/.../docs/manual.pdf (vaultctl v1.5.0)
```
PDF rendered locally. Title page now shows the logo above the title and the version inline with the subtitle.
Note on the Schema Inference ADR
The content of the deleted `decisions/0001-schema-inference-via-python-walker.md` has been preserved as a private memory file under `~/.claude/projects/-home-fthiele-git-cdds-vault/memory/project_decision_schema_inference_walker.md`. That's the right home per the documented memory topology — eventually synced via the `claude-config` repo. Public users of vaultctl don't need that level of decision archaeology in the source tree.
Closes #61.