Skip to content

Commit 781e389

Browse files
committed
chore: migrate docs site to core.help, strip Lethean brand refs
- public/CNAME: dappco.re → core.help - astro.config.mjs: site URL, title, description updated; comment notes legacy dappco.re origin; go-import/go-source meta unchanged (Task #33) - Footer.astro: drop lthn.ai/lthn.io links; neutral dappcore GitHub links; lineage note "formerly at dappco.re" - index.mdx: de-brand hero; remove SDKGrid (Lethean SDK tiles); keep go-get lineage note in card copy - go/agent.mdx, go/ml.mdx: description fields → "Core framework" dappco.re import paths in go/*.mdx and public/ go-get redirects are technical identifiers, not brand refs — untouched (Task #33 scope). Co-Authored-By: Virgil <virgil@lethean.io>
1 parent 27ac8b0 commit 781e389

6 files changed

Lines changed: 14 additions & 19 deletions

File tree

astro.config.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
import { defineConfig } from 'astro/config';
33
import starlight from '@astrojs/starlight';
44

5-
// dappco.re — docs for the dappcore Go ecosystem.
5+
// core.help — docs for the Core Go framework (formerly at dappco.re).
66
//
7-
// Static site, served at https://dappco.re/. Existing per-package go-get
7+
// Static site, served at https://core.help/. Existing per-package go-get
88
// redirect HTML lives in `public/<pkg>/index.html` and is served untouched;
99
// Starlight content under `src/content/docs/` overrides any matching path
1010
// once written. Migration is one package at a time.
1111
export default defineConfig({
12-
site: 'https://dappco.re',
12+
site: 'https://core.help',
1313
integrations: [
1414
starlight({
15-
title: 'dappco.re',
16-
description: 'Zero-dependency Go primitives for the dappcore ecosystem.',
15+
title: 'Core',
16+
description: 'Zero-dependency Go primitives for the Core framework.',
1717
social: [
1818
{ icon: 'github', label: 'GitHub', href: 'https://github.com/dappcore/go' },
1919
],

public/CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dappco.re
1+
core.help

src/components/Footer.astro

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@ import Default from '@astrojs/starlight/components/Footer.astro';
66

77
<footer class="site-footer">
88
<div class="links">
9-
<a href="https://lthn.ai/" rel="noopener">lthn.ai</a>
10-
<span class="dot" aria-hidden="true">·</span>
11-
<a href="https://lthn.io/" rel="noopener">lthn.io</a>
12-
<span class="dot" aria-hidden="true">·</span>
139
<a href="https://github.com/dappcore/go" rel="noopener">github.com/dappcore/go</a>
10+
<span class="dot" aria-hidden="true">·</span>
11+
<a href="https://github.com/dappcore" rel="noopener">dappcore</a>
1412
</div>
15-
<div class="meta">EUPL-1.2 · part of the dAppCore ecosystem</div>
13+
<div class="meta">EUPL-1.2 · Core framework · formerly at dappco.re</div>
1614
</footer>
1715

1816
<style>

src/content/docs/go/agent.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: agent
3-
description: Agent runtime for the dappcore ecosystem — dispatch, sessions, fleets, plans.
3+
description: Agent runtime for the Core framework — dispatch, sessions, fleets, plans.
44
head:
55
- tag: meta
66
attrs:

src/content/docs/go/ml.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: ml
3-
description: Multi-suite scoring engine + agent orchestrator for the Lethean AI stack.
3+
description: Multi-suite scoring engine + agent orchestrator for the Core framework.
44
head:
55
- tag: meta
66
attrs:

src/content/docs/index.mdx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: dappco.re
3-
description: Zero-dependency Go primitives for the dappcore ecosystem.
2+
title: Core
3+
description: Zero-dependency Go primitives for the Core framework.
44
template: splash
55
hero:
6-
tagline: Zero-dependency Go primitives for the dappcore ecosystem. Result everywhere, Options for input, Action for capability, Core as the fractal root. Designed to be read by AI agents as easily as humans.
6+
tagline: Zero-dependency Go primitives. Result everywhere, Options for input, Action for capability, Core as the fractal root. Designed to be read by AI agents as easily as humans.
77
actions:
88
- text: Get started — core/go
99
link: /go/
@@ -15,7 +15,6 @@ hero:
1515
---
1616

1717
import { Card, CardGrid } from '@astrojs/starlight/components';
18-
import SDKGrid from '../../components/SDKGrid.astro';
1918

2019
## What ships today
2120

@@ -31,5 +30,3 @@ import SDKGrid from '../../components/SDKGrid.astro';
3130
human-facing docs surface lights up incrementally.
3231
</Card>
3332
</CardGrid>
34-
35-
<SDKGrid />

0 commit comments

Comments
 (0)