@niccrow/optimusctx 1.3.2 → 1.3.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.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +17 -17
package/README.md CHANGED
@@ -16,20 +16,23 @@ npx @niccrow/optimusctx version
16
16
 
17
17
  This package installs the real `optimusctx` CLI for your platform. During install, it downloads the matching release archive from GitHub Releases, verifies it, and makes the `optimusctx` command available to use.
18
18
 
19
+ OptimusCtx itself is a local-first runtime for coding agents. It keeps repository context on disk, helps agents navigate code with exact repository structure instead of repeated broad scans, and exposes that state through one MCP runtime entrypoint.
20
+
19
21
  ## First Checks
20
22
 
21
23
  After install, run:
22
24
 
23
25
  ```bash
24
26
  optimusctx version
27
+ optimusctx status
25
28
  optimusctx doctor
26
- optimusctx snippet
27
29
  ```
28
30
 
29
31
  Those commands confirm that:
30
32
 
31
33
  - the installed binary is available on your PATH
32
34
  - the runtime reports its version correctly
35
+ - the runtime can report basic readiness
33
36
  - the local environment is healthy enough to start
34
37
 
35
38
  ## Typical Next Step
@@ -39,9 +42,11 @@ Inside a repository you want to use with OptimusCtx:
39
42
  ```bash
40
43
  cd /path/to/your-repo
41
44
  optimusctx init
42
- optimusctx doctor
45
+ optimusctx status
43
46
  ```
44
47
 
48
+ In an interactive terminal, `optimusctx init` can also offer supported-client onboarding during that same command. It asks where the client should be configured, then lets you configure it now or review the exact change first.
49
+
45
50
  ## Troubleshooting
46
51
 
47
52
  - If install fails, retry once to rule out a temporary network issue.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@niccrow/optimusctx",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Local-first runtime that builds and maintains persistent repository context for coding agents.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/NicoMoralesDev/optimusctx",
@@ -32,18 +32,18 @@
32
32
  "owner": "NicoMoralesDev",
33
33
  "name": "optimusctx"
34
34
  },
35
- "releaseTag": "v1.3.2",
36
- "version": "1.3.2",
35
+ "releaseTag": "v1.3.3",
36
+ "version": "1.3.3",
37
37
  "checksumManifest": {
38
- "file": "optimusctx_1.3.2_checksums.txt",
39
- "url": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.2/optimusctx_1.3.2_checksums.txt"
38
+ "file": "optimusctx_1.3.3_checksums.txt",
39
+ "url": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.3/optimusctx_1.3.3_checksums.txt"
40
40
  },
41
41
  "platforms": {
42
42
  "darwin-amd64": {
43
43
  "os": "darwin",
44
44
  "arch": "amd64",
45
- "archive": "optimusctx_1.3.2_darwin_amd64.tar.gz",
46
- "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.2/optimusctx_1.3.2_darwin_amd64.tar.gz",
45
+ "archive": "optimusctx_1.3.3_darwin_amd64.tar.gz",
46
+ "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.3/optimusctx_1.3.3_darwin_amd64.tar.gz",
47
47
  "archiveFormat": "tar.gz",
48
48
  "binary": "optimusctx",
49
49
  "runtimeDirectory": "darwin-amd64"
@@ -51,8 +51,8 @@
51
51
  "darwin-arm64": {
52
52
  "os": "darwin",
53
53
  "arch": "arm64",
54
- "archive": "optimusctx_1.3.2_darwin_arm64.tar.gz",
55
- "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.2/optimusctx_1.3.2_darwin_arm64.tar.gz",
54
+ "archive": "optimusctx_1.3.3_darwin_arm64.tar.gz",
55
+ "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.3/optimusctx_1.3.3_darwin_arm64.tar.gz",
56
56
  "archiveFormat": "tar.gz",
57
57
  "binary": "optimusctx",
58
58
  "runtimeDirectory": "darwin-arm64"
@@ -60,8 +60,8 @@
60
60
  "linux-amd64": {
61
61
  "os": "linux",
62
62
  "arch": "amd64",
63
- "archive": "optimusctx_1.3.2_linux_amd64.tar.gz",
64
- "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.2/optimusctx_1.3.2_linux_amd64.tar.gz",
63
+ "archive": "optimusctx_1.3.3_linux_amd64.tar.gz",
64
+ "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.3/optimusctx_1.3.3_linux_amd64.tar.gz",
65
65
  "archiveFormat": "tar.gz",
66
66
  "binary": "optimusctx",
67
67
  "runtimeDirectory": "linux-amd64"
@@ -69,8 +69,8 @@
69
69
  "linux-arm64": {
70
70
  "os": "linux",
71
71
  "arch": "arm64",
72
- "archive": "optimusctx_1.3.2_linux_arm64.tar.gz",
73
- "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.2/optimusctx_1.3.2_linux_arm64.tar.gz",
72
+ "archive": "optimusctx_1.3.3_linux_arm64.tar.gz",
73
+ "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.3/optimusctx_1.3.3_linux_arm64.tar.gz",
74
74
  "archiveFormat": "tar.gz",
75
75
  "binary": "optimusctx",
76
76
  "runtimeDirectory": "linux-arm64"
@@ -78,8 +78,8 @@
78
78
  "windows-amd64": {
79
79
  "os": "windows",
80
80
  "arch": "amd64",
81
- "archive": "optimusctx_1.3.2_windows_amd64.zip",
82
- "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.2/optimusctx_1.3.2_windows_amd64.zip",
81
+ "archive": "optimusctx_1.3.3_windows_amd64.zip",
82
+ "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.3/optimusctx_1.3.3_windows_amd64.zip",
83
83
  "archiveFormat": "zip",
84
84
  "binary": "optimusctx.exe",
85
85
  "runtimeDirectory": "windows-amd64"
@@ -87,8 +87,8 @@
87
87
  "windows-arm64": {
88
88
  "os": "windows",
89
89
  "arch": "arm64",
90
- "archive": "optimusctx_1.3.2_windows_arm64.zip",
91
- "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.2/optimusctx_1.3.2_windows_arm64.zip",
90
+ "archive": "optimusctx_1.3.3_windows_arm64.zip",
91
+ "archiveUrl": "https://github.com/NicoMoralesDev/optimusctx/releases/download/v1.3.3/optimusctx_1.3.3_windows_arm64.zip",
92
92
  "archiveFormat": "zip",
93
93
  "binary": "optimusctx.exe",
94
94
  "runtimeDirectory": "windows-arm64"