@socrates-ai/cli 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/package.json +2 -3
  2. package/README.md +0 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socrates-ai/cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "description": "Launch Socrates as a local-first AI workspace from npm.",
6
6
  "bin": {
@@ -9,8 +9,7 @@
9
9
  "files": [
10
10
  "bin",
11
11
  "src/cli.mjs",
12
- "src/runtime.mjs",
13
- "README.md"
12
+ "src/runtime.mjs"
14
13
  ],
15
14
  "scripts": {
16
15
  "test": "vitest run"
package/README.md DELETED
@@ -1,15 +0,0 @@
1
- # Socrates CLI
2
-
3
- Run Socrates as a local-first web app:
4
-
5
- ```bash
6
- npx @socrates-ai/cli
7
- ```
8
-
9
- The CLI downloads the matching runtime bundle from GitHub Releases, stores it under `~/.Socrates/runtimes/`, starts local services on `127.0.0.1`, and opens the browser.
10
-
11
- Force a fresh runtime download/extract with:
12
-
13
- ```bash
14
- npx @socrates-ai/cli --reset-runtime
15
- ```