Skip to content

Commit de5caeb

Browse files
committed
fix: nav links version-independent, remove dead conceptkernel-python refs
- Nav: removed hardcoded v3.4 links (Docs, Architecture, Get Started) that broke when browsing v3.5. Sidebar handles versioned nav correctly. - Nav: Ontology dropdown with v3.4/v3.5 links - Contributing: removed non-existent conceptkernel-python repo, added coming soon warning for both versions
1 parent 7578e9e commit de5caeb

3 files changed

Lines changed: 17 additions & 24 deletions

File tree

docs/.vitepress/config.mts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ export default withMermaid(defineConfig({
2121
siteTitle: 'Concept Kernel',
2222

2323
nav: [
24-
{ text: 'Docs', link: '/v3.4/introduction' },
25-
{ text: 'Architecture', link: '/v3.4/architecture' },
26-
{ text: 'Ontology', link: '/ontology/v3.5/' },
27-
{ text: 'Get Started', link: '/v3.4/getting-started/quickstart' },
24+
{
25+
text: 'Ontology',
26+
items: [
27+
{ text: 'v3.4 (stable)', link: '/ontology/v3.4/' },
28+
{ text: 'v3.5 (alpha-3)', link: '/ontology/v3.5/' },
29+
]
30+
},
2831
{
2932
text: 'Community',
3033
items: [

docs/v3.4/contributing.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,12 @@ The Concept Kernel Protocol is an open project and we welcome contributions of a
1313
## Getting Started
1414

1515
1. Join our [Discord](https://discord.gg/sTbfxV9xyU) and introduce yourself
16-
2. Browse [open issues](https://github.com/ConceptKernel/conceptkernel-python/issues) on GitHub
17-
3. Fork the repository and submit a pull request
16+
2. Browse the [GitHub org](https://github.com/ConceptKernel) for repositories
17+
3. Read the [ontology files](/ontology/v3.4/) to understand the type system
1818

19-
## Development Setup
20-
21-
```bash
22-
git clone https://github.com/ConceptKernel/conceptkernel-python.git
23-
cd conceptkernel-python
24-
pip install -r requirements.txt
25-
python -m pytest tests/
26-
```
19+
::: warning Python SDK Coming Soon
20+
The CK.Lib Python package is under active development and not yet published to PyPI. Join Discord for early access.
21+
:::
2722

2823
## Code of Conduct
2924

docs/v3.5-alpha3/contributing.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,12 @@ The Concept Kernel Protocol is an open project and we welcome contributions of a
1313
## Getting Started
1414

1515
1. Join our [Discord](https://discord.gg/sTbfxV9xyU) and introduce yourself
16-
2. Browse [open issues](https://github.com/ConceptKernel/conceptkernel-python/issues) on GitHub
17-
3. Fork the repository and submit a pull request
16+
2. Browse the [GitHub org](https://github.com/ConceptKernel) for repositories
17+
3. Read the [ontology files](/ontology/v3.5/) to understand the type system
1818

19-
## Development Setup
20-
21-
```bash
22-
git clone https://github.com/ConceptKernel/conceptkernel-python.git
23-
cd conceptkernel-python
24-
pip install -r requirements.txt
25-
python -m pytest tests/
26-
```
19+
::: warning Python SDK Coming Soon
20+
The CK.Lib Python package is under active development and not yet published to PyPI. Join Discord for early access.
21+
:::
2722

2823
## Code of Conduct
2924

0 commit comments

Comments
 (0)