Skip to content

Commit 82c2ba8

Browse files
CSVillainclaude
andcommitted
Set up GitHub Pages deployment for knowledge-intelligence.dev
- Add index.html (renamed from knowledge-intelligence.html) - Add assets/ and images/network.png (only local deps used by the page) - Add CNAME for custom domain: knowledge-intelligence.dev - Add .github/workflows/deploy.yml for automated GitHub Actions deployment - Add .gitignore to exclude research/, whitepaper/, tools/, instructions/, .claude/ - Remove all previously tracked draft files and research artifacts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c6d4918 commit 82c2ba8

22 files changed

Lines changed: 6501 additions & 17507 deletions

.github/workflows/deploy.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
16+
17+
jobs:
18+
deploy:
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deployment.outputs.page_url }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v5
29+
30+
- name: Upload artifact
31+
uses: actions/upload-pages-artifact@v3
32+
with:
33+
path: .
34+
35+
- name: Deploy to GitHub Pages
36+
id: deployment
37+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Research & reference materials (large, not needed for the site)
2+
research/
3+
4+
# Whitepaper source & build pipeline (kept locally, not public)
5+
whitepaper/
6+
7+
# Internal tooling
8+
tools/
9+
10+
# Agent instructions & operational docs (internal only)
11+
instructions/
12+
13+
# Local Claude Code settings
14+
.claude/
15+
16+
# Images not used by the deployed site
17+
images/3d-network.png
18+
images/blue-graph.png
19+
images/iceberg.png
20+
images/kore-cube.png
21+
images/mechanism.png
22+
images/mockup-tacit-constellation.svg
23+
images/dalle-prompt-pack.md
24+
images/diagrams/

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
knowledge-intelligence.dev

agent-handoff.md

Lines changed: 0 additions & 95 deletions
This file was deleted.
Lines changed: 88 additions & 0 deletions
Loading

images/network.png

1.64 MB
Loading

0 commit comments

Comments
 (0)