Skip to content

docs(site): rename docs-site to simplicio-mapper and cut version 0.7.3 (closes #100)#112

Merged
wesleysimplicio merged 2 commits into
mainfrom
claude/issue-100-docs-site-rename
Jun 2, 2026
Merged

docs(site): rename docs-site to simplicio-mapper and cut version 0.7.3 (closes #100)#112
wesleysimplicio merged 2 commits into
mainfrom
claude/issue-100-docs-site-rename

Conversation

@wesleysimplicio
Copy link
Copy Markdown
Owner

Resumo

Fecha #100. Renomeia o docs-site (Docusaurus) para simplicio-mapper e corta o snapshot de versão 0.7.3 — antes congelado em 0.2.0.

Mudanças

  • docs-site/docusaurus.config.cjs:
    • title: 'LLM Project Mapper Docs' → 'Simplicio Mapper Docs'
    • baseUrl: '/llm-project-mapper/' → '/simplicio-mapper/'
    • projectName: 'llm-project-mapper' → 'simplicio-mapper'
    • Navbar title + footer/navbar GitHub URLs apontam para wesleysimplicio/simplicio-mapper.
  • docs-site/versioned_docs/version-0.7.3/ — snapshot dos docs atuais (cobre background indexing, docs-only, architecture inventory, symbol index, call graph que entraram em 0.6.x/0.7.x).
  • docs-site/versioned_sidebars/version-0.7.3-sidebars.json — sidebar versionado.
  • docs-site/versions.json — agora ["0.7.3", "0.2.0"].
  • README.md + README.pt-BR.md — link de docs ao vivo aponta para wesleysimplicio.github.io/simplicio-mapper. README.md documenta que o nome npm @wesleysimplicio/llm-project-mapper é intencionalmente mantido (per chore(ci): drop npm publish workflow, PyPI-only #87 PyPI-only decision).

Fora de escopo

  • Renomear assets físicos (assets/llm-project-mapper-hero.png, vídeos) — fora do escopo de identidade de docs e quebraria hashes binários.
  • Mudar nome do pacote npm — decisão chore(ci): drop npm publish workflow, PyPI-only #87 mantém versões publicadas.

Validação

Item Resultado
npm run lint ✅ 0 erros (markdown lint passa nos 196 arquivos)
docusaurus.config.cjs sem llm-project-mapper ✅ verificado por grep
docs-site/versions.json lista 0.7.3
Build local ⏳ não executado neste container (sem docs-site/node_modules); workflow Docs Site em CI valida no merge para main

Refs #100, #87.

https://claude.ai/code/session_01JdmemqddwFnvbceWyuDE8m


Generated by Claude Code

claude added 2 commits June 2, 2026 13:33
Closes #100.

The Docusaurus site under `docs-site/` still identified as the previous
project name even though the package and repository renamed to
`simplicio-mapper`, and the only published docs version was 0.2.0 — frozen
since before background indexing, docs-only mode, the architecture
inventory, the symbol index, and the call graph all shipped in 0.6.x and
0.7.x.

This PR aligns the docs identity with the current package release:

- `docs-site/docusaurus.config.cjs` now uses `title: 'Simplicio Mapper Docs'`,
  `baseUrl: '/simplicio-mapper/'`, `projectName: 'simplicio-mapper'`, and
  navbar/footer GitHub links pointing at
  `wesleysimplicio/simplicio-mapper`.
- A docs snapshot for `0.7.3` is captured under
  `docs-site/versioned_docs/version-0.7.3/` and registered in
  `docs-site/versions.json` so the version-dropdown shows the live release.
  The previous `0.2.0` snapshot is preserved for archive access.
- `README.md` and `README.pt-BR.md` updates the live docs URL to
  `https://wesleysimplicio.github.io/simplicio-mapper/`.
- `README.md` documents explicitly that the npm package name
  `@wesleysimplicio/llm-project-mapper` is intentionally retained for
  historical consumers (per #87 PyPI-only decision); new releases ship as
  `simplicio-mapper` on PyPI only.

Asset filenames (`assets/llm-project-mapper-hero.png`,
`video/assets/why-llm-project-mapper.mp4`, etc.) are left as-is to avoid
breaking the binary asset hashes outside the scope of this docs-identity
fix.

https://claude.ai/code/session_01JdmemqddwFnvbceWyuDE8m
`tests/unit/docs-site.test.js` was asserting the live docs URL still pointed at
`wesleysimplicio.github.io/llm-project-mapper`, which is exactly what this PR
renames. Update the regex to match the new canonical path
`/simplicio-mapper/` to keep the assertion useful.

https://claude.ai/code/session_01JdmemqddwFnvbceWyuDE8m
@wesleysimplicio wesleysimplicio marked this pull request as ready for review June 2, 2026 13:35
Copilot AI review requested due to automatic review settings June 2, 2026 13:35
@wesleysimplicio wesleysimplicio merged commit 38f32da into main Jun 2, 2026
34 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Renames the Docusaurus docs-site identity to simplicio-mapper and adds a new versioned documentation snapshot for 0.7.3, updating README links and tests so the repository advertises the new GitHub Pages URL consistently.

Changes:

  • Updated Docusaurus site identity (title/baseUrl/projectName) and repo links to wesleysimplicio/simplicio-mapper.
  • Updated README/README.pt-BR live docs links and adjusted unit test expectations accordingly.
  • Added a new Docusaurus version snapshot (0.7.3) including versioned_docs/, versioned_sidebars/, and versions.json entry.

Reviewed changes

Copilot reviewed 23 out of 23 changed files in this pull request and generated 6 comments.

Show a summary per file
File Description
tests/unit/docs-site.test.js Updates assertion to expect the new GitHub Pages docs URL.
README.pt-BR.md Updates “Docs ao vivo” link to /simplicio-mapper/.
README.md Updates “Live docs” links and documents intentional retention of the npm package name.
docs-site/versions.json Adds 0.7.3 to the Docusaurus versions list.
docs-site/versioned_sidebars/version-0.7.3-sidebars.json Adds the sidebar definition for the 0.7.3 docs version.
docs-site/versioned_docs/version-0.7.3/intro.md Adds versioned docs landing page content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/quickstart/category.json Adds the Quickstart category metadata for the 0.7.3 snapshot.
docs-site/versioned_docs/version-0.7.3/quickstart/get-going.md Adds versioned Quickstart content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/guide/category.json Adds the Guide category metadata for the 0.7.3 snapshot.
docs-site/versioned_docs/version-0.7.3/guide/private-overlay.md Adds versioned guide content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/concepts/category.json Adds the Concepts category metadata for the 0.7.3 snapshot.
docs-site/versioned_docs/version-0.7.3/concepts/skills-and-agents.md Adds versioned concepts content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/concepts/architecture-map.md Adds versioned architecture-map template content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/concepts/domain-map.md Adds versioned domain-map template content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/concepts/yool-tuple-hamt.md Adds versioned YOOL/tuple/HAMT content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/reference/category.json Adds the Reference category metadata for the 0.7.3 snapshot.
docs-site/versioned_docs/version-0.7.3/reference/cli-flags.md Adds versioned CLI flags reference for 0.7.3.
docs-site/versioned_docs/version-0.7.3/reference/init-handoff.md Adds versioned init handoff reference for 0.7.3.
docs-site/versioned_docs/version-0.7.3/reference/session-start-hook.md Adds versioned SessionStart hook reference for 0.7.3.
docs-site/versioned_docs/version-0.7.3/community/category.json Adds the Community category metadata for the 0.7.3 snapshot.
docs-site/versioned_docs/version-0.7.3/community/showcase.md Adds versioned showcase content for 0.7.3.
docs-site/versioned_docs/version-0.7.3/community/contributing.md Adds versioned contributing content for 0.7.3.
docs-site/docusaurus.config.cjs Renames site identity and updates baseUrl/projectName/navbar/footer repo links to simplicio-mapper.

Comment on lines +2 to +6
title: Docs Home
description: The documentation hub for LLM Project Mapper.
slug: /
---
# LLM Project Mapper Docs

![LLM Project Mapper hero](/assets/llm-project-mapper-hero.png)

LLM Project Mapper is an AI-friendly project scaffold that turns scattered engineering context into a stable operating model for coding agents and human reviewers.
description: Contribution workflow, review expectations, and Definition of Done.
sidebar_position: 2
---
Guia step-by-step para adicionar uma feature, fix ou refactor em `<PRODUCT_NAME>` (`<DOMAIN>`, stack `<STACK>`). Funciona pra humano e pra agent. Time: `<TEAM>`.
Comment on lines +10 to +12
![Animated terminal screencast showing cd into host-project, npx llm-project-mapper, CLI prompts, and ls .specs/](/assets/overlay-install.svg)

> 🇧🇷 Portuguese version: [INSTALL.md](https://github.com/wesleysimplicio/llm-project-mapper/blob/main/INSTALL.md).
> CLIs with a native agent loop: **Claude Code**, **Codex CLI**, **Cursor Agent**, **Hermes Agent**, **OpenClaw**, **Aider** (Deepseek/Kimi/MiniMax/GLM via `--model`).
> No native loop (paste prompt manually): **GitHub Copilot CLI**.

> 🇧🇷 Portuguese version: [INIT.md](https://github.com/wesleysimplicio/llm-project-mapper/blob/main/INIT.md).
Comment on lines +60 to +63
## Canonical spec

- [Root spec on GitHub](https://github.com/wesleysimplicio/llm-project-mapper/blob/main/YOOL_TUPLE_HAMT.md)
- [Vendored source in this repo](https://github.com/wesleysimplicio/llm-project-mapper/blob/main/docs/YOOL_TUPLE_HAMT.md)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants