Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Cortexes
<p align="center">
<img src="docs/images/logo.png" alt="Cortexes" width="200">
</p>

Personal knowledge vault plugin for Claude Code — session recording, memory distillation, semantic retrieval.
<h1 align="center">Cortexes</h1>

<p align="center">
Personal knowledge vault plugin for Claude Code — session recording, memory distillation, semantic retrieval.
</p>

<p align="center">
<a href="LICENSE"><img alt="License: Apache 2.0" src="https://img.shields.io/badge/License-Apache_2.0-blue.svg"></a>
<a href="https://cortexes.pages.dev"><img alt="Website" src="https://img.shields.io/badge/website-cortexes.pages.dev-000"></a>
<img alt="Claude Code plugin" src="https://img.shields.io/badge/Claude_Code-plugin-d97757">
</p>

![Cortex architecture](docs/images/architecture.png)

Expand Down Expand Up @@ -52,7 +64,7 @@ pip install -e "$(ls -d ~/.claude/plugins/cache/cortex/cortex/*/cortex-vec | sor

## 官網

線上文件與 changelog:<https://cortex.pages.dev>(Cloudflare Pages,從 `manifest.json` 自動生成)。
線上文件與 changelog:<https://cortexes.pages.dev>(Cloudflare Pages,從 `manifest.json` 自動生成)。
本地 build 見 [`site/README.md`](site/README.md)。

## Commands & Skills
Expand Down
Binary file added docs/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added site/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions site/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ header { position: sticky; top: 0; z-index: 40; background: rgba(11,11,13,0.72);
opacity: 0.55; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-logo { display: block; width: 88px; height: 88px; margin: 0 0 26px; border-radius: 18px; }
h1.hero-title { font-family: var(--mono); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.03; letter-spacing: -0.035em; margin: 20px 0 0; text-wrap: balance; max-width: 15ch; }
h1.hero-title .hl { color: var(--accent); }
.hero-sub { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 54ch; margin: 22px 0 0; line-height: 1.65; }
Expand Down
1 change: 1 addition & 0 deletions site/lib/html.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export function layout({ title, body, activeNav = 'home' }) {
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>${esc(title)}</title>
<link rel="icon" type="image/png" href="assets/logo.png">
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
Expand Down
1 change: 1 addition & 0 deletions site/templates/landing.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export function renderLanding({ plugin, changelog }) {
const logs = changelog.slice(0, 3).map(logItem).join('');

const body = `<section class="hero"><div class="wrap">
<img class="hero-logo" src="assets/logo.png" alt="Cortexes" width="96" height="96">
<span class="eyebrow">Claude Code plugin · knowledge &amp; memory</span>
<h1 class="hero-title">${esc(plugin.tagline ?? '')}</h1>
<p class="hero-sub">${esc(plugin.intro ?? '')}</p>
Expand Down
Loading