Snapshot for continuing after a context reset. Repo: reference.groupdocs.com (Hugo API-ref site,
15 products). Branch model: a single main; the deploy target comes from the commit message
(no marker → staging, [deploy-prod] → staging then prod). Commits: author = system default
Vladimir Litvinchik vladimir.litvinchik@aspose.com, NO Co-Authored-By / no "Claude" mention.
ad12ed961b— site-rootllms.txt(product directory) + combined compacted/llms-full.txt.17f79ce809— home page redesign (gd-home) + shared hero gradient. ← current remote HEAD.
The user has been reviewing locally; next step is either polish deltas or commit it all.
- Family page redesign (
gd-family) — matches the updated mockup../references-family:themes/docs/layouts/_default/family.html— full rewrite: full-width two-column = platform-variant sidebar (gd-family__side: .NET/Java/Node/Python, dot+version, clickable, synced) +gd-family__main(breadcrumb, title, lead, meta row w/ green dot, scoped search, "Choose your platform" cards, terminal-style dark code block w/ macOS dots + language tabs + copy, capabilities/formats, resources, feedback). Inline JS: copy buttons, platform-sync (cards+tabs+variants viaselect()), scoped/search-index.jsonsearch filtered by product.themes/docs/layouts/_default/baseof.html— added{{ if eq .Layout "family" }}{{ $navEnabled = false }}{{ end }}(family is full-width, no theme sidebar — like 404/home).themes/docs/assets/custom.css—.gd-familygrid + variant sidebar + terminal dots + meta green dot, alongside the earlier.gd-home*and.gd-404*blocks.
- Verified getting-started snippets —
data/getting_started.yaml(43 snippets), rendered by family.html; a product/platform with no entry falls back to its install command. examples/getting-started/<product>/<platform>/— runnable verification apps (.NET csproj+ Program.cs, Java pom+Example.java, Python example.py, Node package.json+example.js for conversion/viewer).examples/.gitignore(bin/obj/target/node_modules/.venv/.pkgs),examples/README.md,examples/getting-started/signature/java/.mvn/jvm.config.PRODUCTS_DATA_STORE/— reusable knowledge base (Product Context Agent foundation):README.md,PLATFORMS.md(per-platform setup/verify/all gotchas),products/*.md(15),index.json(machine-readable),tools/(the generators + reflector +examples.json+versions.txt+*_snippets.json),.gitignore.- Version alignment — normalized 13 family
_index.mdplatforms[].versionto X.Y.Z (e.g. conversion Java26.5→26.5.0);versionUrls untouched. - Docs —
CHANGELOG.md,CLAUDE.mdupdated.
| Platform | Verified | Method | N/A |
|---|---|---|---|
| .NET | 15/15 | dotnet build |
— |
| Java | 13/13 | mvn compile |
classification, markdown (no Java SDK) |
| Python | 13/13 | isolated install → run-to-FileNotFound | search, classification (no pkg); annotation = docs (PyPI stub) |
| Node.js | 2/9 (conversion, viewer) | JAVA_HOME + require + smoke | 7 blocked (see below) |
- Python: the
*-netpackages are .NET-backed and conflict if co-installed → verify each in isolation (pip uninstall -y <all> && pip install groupdocs-<p>-net).groupdocs-annotation-netPyPI = 0.0.0 stub (real wheels on releases.groupdocs.com). pyenvpythonis a .bat shim that mangles multi-linepython -c→ use script files. venv interpreters crash (exit 127) loading the CLR pkgs → use the basepython3(3.12). API is snake_case. - Java: versions from
curl -sL .../maven-metadata.xml<release>; repohttps://releases.groupdocs.com/java/repo/. GroupDocs.Signature jar manifest >16 MB → JDK 17+ needsMAVEN_OPTS="-Djdk.jar.maxSignatureFileSize=104857600". TextSignOptions in…options.sign; parser TextReader in…parser.data. - Node: must set
JAVA_HOMEto a JDK orrequire()hangs. node-java 0.18 fails to source- build on Node 22 (MSBuild exit 1) — conversion/viewer worked only via a prebuilt binary; the other 7 fall back to source build and fail. Install ONE pkg per project; do not clear the gyp/prebuilt cache. To finish the 7: reuse a workingnode_modules/javaprebuilt, or use a Node/arch with a published prebuilt. - .NET: reflect namespaces via
PRODUCTS_DATA_STORE/tools/refl(MetadataLoadContext). Search: dropusing System;(clashes withSystem.Index). - API drifts fixed during verification: metadata
Sanitize()/sanitize()(was RemoveImageResourcePackage/MP3); signature/Python namespaces+casing; parser/Pythonget_text(); watermark/Python broken line-continuations.
extract_examples.py→examples.json; gen_net.py/gen_java.py/gen_py.py→apps + *_snippets.json
(then dotnet build/mvn compile/isolated python); gen_data.py→data/getting_started.yaml;
gen_datastore.py→PRODUCTS_DATA_STORE; normalize_versions.py→family versions. Run with python
(3.14, has pyyaml/tomllib) except the GroupDocs imports which use base python3 (3.12).
- Standalone dark header/footer (we reuse the site theme chrome, consistent w/ home/404).
- "Popular classes & namespaces" grid (needs curated data; could derive from search index).
- Resources as 2-letter monograms (kept branded product SVG icons).
- Inline yes/no feedback card (kept theme feedback-form).
hugo server is broken on this content. Use:
bash build-local.sh conversion annotation comparison classification # home + listed products
python scripts/serve-local.py 1313 # serve ./public-local (UTF-8)
Then http://localhost:1313/conversion/ etc. (only built products exist locally; others 404). Confirmed working: conversion family page = full-width, platform sidebar, terminal code block, v26.5.0.
User reviewing the family redesign at localhost:1313. After review, either (a) add a deferred delta, or (b) commit everything to both branches:
git add -A # (excludes gitignored build artifacts; verify __pycache__ not staged)
git commit -F - <<'EOF'
Redesign family pages; verified getting-started across .NET/Java/Python/Node; add PRODUCTS_DATA_STORE
...
EOF
git fetch origin && git push origin main
Note: confirm examples/** build artifacts + __pycache__/ are gitignored before committing.