cortex-md 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # Cortex — Personal AI Operating System
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/cortex-md?style=flat-square&label=npm)](https://www.npmjs.com/package/cortex-md)
3
4
  [![GitHub Release](https://img.shields.io/github/v/release/angshuman/cortex?style=flat-square&label=Latest%20Release)](https://github.com/angshuman/cortex/releases/latest)
4
5
  [![Downloads](https://img.shields.io/github/downloads/angshuman/cortex/total?style=flat-square&label=Downloads)](https://github.com/angshuman/cortex/releases/latest)
5
6
  [![Build](https://img.shields.io/github/actions/workflow/status/angshuman/cortex/release.yml?style=flat-square&label=Build)](https://github.com/angshuman/cortex/actions)
@@ -8,11 +9,26 @@ A local-first personal operating system with an AI reasoner, note-taking, task m
8
9
 
9
10
  ---
10
11
 
11
- ## Download
12
+ ## Install & Run
12
13
 
13
- **[Go to the Releases page to download Cortex](https://github.com/angshuman/cortex/releases/latest)**
14
+ ### Option 1 npx (no install required)
14
15
 
15
- ### Latest Release
16
+ ```bash
17
+ npx cortex-md
18
+ ```
19
+
20
+ The first run downloads Electron (~100 MB) and caches it. Subsequent runs are instant.
21
+
22
+ ### Option 2 — Global install
23
+
24
+ ```bash
25
+ npm install -g cortex-md
26
+ cortex-md
27
+ ```
28
+
29
+ ### Option 3 — Download a pre-built binary
30
+
31
+ **[Go to the Releases page](https://github.com/angshuman/cortex/releases/latest)**
16
32
 
17
33
  | Platform | Architecture | Download |
18
34
  |----------|-------------|----------|
@@ -129,8 +129,7 @@ function getIconPath() {
129
129
  if (import_electron.app.isPackaged) {
130
130
  return import_path.default.join(process.resourcesPath, "icons", "icon.png");
131
131
  }
132
- const iconPath = import_path.default.join(__dirname, "..", "..", "electron", "icons", "icon.png");
133
- return iconPath;
132
+ return import_path.default.join(__dirname, "..", "icons", "icon.png");
134
133
  }
135
134
  function createTray() {
136
135
  const iconPath = getIconPath();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cortex-md",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Personal AI operating system — local-first, portable, with notes, tasks, chat, and MCP support",
@@ -12,7 +12,6 @@
12
12
  "files": [
13
13
  "bin/",
14
14
  "dist/",
15
- "electron/icons/",
16
15
  "README.md"
17
16
  ],
18
17
  "scripts": {
Binary file
Binary file
Binary file
Binary file
@@ -1,15 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
- <rect width="512" height="512" rx="108" fill="#111318"/>
3
- <g fill="none" stroke="#e5e7eb" stroke-linecap="round" stroke-linejoin="round">
4
- <!-- C arc -->
5
- <path d="M 320,126 C 270,90 210,80 165,100 C 100,128 66,190 66,256 C 66,322 100,384 165,412 C 210,432 270,422 320,386" stroke-width="36"/>
6
- <!-- Three connector lines from the C opening -->
7
- <line x1="320" y1="126" x2="380" y2="126" stroke-width="28"/>
8
- <line x1="345" y1="256" x2="405" y2="256" stroke-width="28"/>
9
- <line x1="320" y1="386" x2="380" y2="386" stroke-width="28"/>
10
- </g>
11
- <!-- Terminal dots -->
12
- <circle cx="388" cy="126" r="18" fill="#e5e7eb"/>
13
- <circle cx="413" cy="256" r="18" fill="#e5e7eb"/>
14
- <circle cx="388" cy="386" r="18" fill="#e5e7eb"/>
15
- </svg>