docs: fix review follow-ups — naming consistency, extras snippet, nav card order

- installation.md: revert card title back to "Getting Started" to match
  the Tip text that already links to it by that name
- getting-started.md: restore pip install semantica[all] code block that
  was removed in the original PR; users need the copy-paste snippet even
  when the Installation guide is the canonical reference; also standardize
  link text to "Installation" (was "Installation guide")
- index.md: add Installation card as first entry in "Start Here" CardGroup
  so the prose ("install first, then open Quickstart") is backed by an
  actual card to click
- quickstart.md: standardize link text to "Installation" (was "Installation guide")
This commit is contained in:
KaifAhmad1
2026-05-23 11:36:58 +05:30
parent 370aa2f489
commit c190ecb81e
4 changed files with 12 additions and 3 deletions
+7 -1
View File
@@ -35,7 +35,13 @@ icon: "rocket"
pip install semantica
```
For virtual environments, extras, and platform-specific setup, see the full [Installation guide](installation).
With all optional dependencies:
```bash
pip install semantica[all]
```
For virtual environments and platform-specific setup, see the full [Installation](installation).
Verify:
+3
View File
@@ -184,6 +184,9 @@ pip install semantica==0.5.0
If you're new to Semantica, install first and then open [Quickstart](quickstart). Use [Core Concepts](concepts) or [API Reference](reference/context) when you need more context or exact details.
<CardGroup cols={2}>
<Card title="Installation" icon="download" href="installation">
Get Semantica installed in under a minute.
</Card>
<Card title="Quickstart" icon="rocket" href="quickstart">
Build a complete knowledge graph pipeline in 5 minutes.
</Card>
+1 -1
View File
@@ -181,7 +181,7 @@ Install the [Microsoft Visual C++ Redistributable](https://aka.ms/vs/17/release/
## Next Steps
<CardGroup cols={3}>
<Card title="Read the Overview" icon="rocket" href="getting-started">
<Card title="Getting Started" icon="rocket" href="getting-started">
Understand what Semantica does before you build.
</Card>
<Card title="Build the Pipeline" icon="play" href="quickstart">
+1 -1
View File
@@ -8,7 +8,7 @@ icon: "rocket"
**v0.5.0** — Ontology Hub, Distance Intelligence, Parquet & XML ingestion, 12 security fixes. [What's new →](index#whats-new)
</Info>
This guide walks you through the end-to-end pipeline for building your first knowledge graph in 5 minutes. Start here after installation. If you still need setup help, see the [Installation guide](installation). You need Python 3.8+ and nothing else to start. An LLM API key is optional; pattern-based extraction works out of the box.
This guide walks you through the end-to-end pipeline for building your first knowledge graph in 5 minutes. Start here after installation. If you still need setup help, see [Installation](installation). You need Python 3.8+ and nothing else to start. An LLM API key is optional; pattern-based extraction works out of the box.
---