mnestis 0.3.2 → 0.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.
@@ -3,19 +3,12 @@
3
3
  * Legacy shim — kept so anyone still running `getmnemos` sees a friendly
4
4
  * deprecation notice and is pointed at the new package.
5
5
  */
6
- const chalk = require('chalk')
6
+ console.log(`
7
+ getmnemos has been renamed to mnestis.
7
8
 
8
- const msg =
9
- '\n' +
10
- chalk.yellow.bold(' getmnemos has been renamed to ') +
11
- chalk.cyan.bold('mnestis') +
12
- chalk.yellow('.\n\n') +
13
- ' Install the new package:\n' +
14
- chalk.cyan(' npm install -g mnestis\n') +
15
- chalk.cyan(' npx mnestis .\n\n') +
16
- ' Homepage: ' +
17
- chalk.cyan('https://mnestis.vercel.app') +
18
- '\n'
9
+ Install the new package:
10
+ npm install -g mnestis
11
+ npx mnestis .
19
12
 
20
- console.log(msg)
21
- process.exit(0)
13
+ Homepage: https://mnestis.vercel.app
14
+ `)
@@ -3,19 +3,12 @@
3
3
  * Legacy shim — kept so anyone still running `mnemos` after installing `mnestis`
4
4
  * sees a friendly pointer to the new command name.
5
5
  */
6
- const chalk = require('chalk')
6
+ console.log(`
7
+ The mnemos command is now mnestis.
7
8
 
8
- const msg =
9
- '\n' +
10
- chalk.yellow.bold(' The `mnemos` command is now ') +
11
- chalk.cyan.bold('mnestis') +
12
- chalk.yellow('.\n\n') +
13
- ' Use:\n' +
14
- chalk.cyan(' npx mnestis .\n') +
15
- chalk.cyan(' npm install -g mnestis\n\n') +
16
- ' Homepage: ' +
17
- chalk.cyan('https://mnestis.vercel.app') +
18
- '\n'
9
+ Use:
10
+ npx mnestis .
11
+ npm install -g mnestis
19
12
 
20
- console.log(msg)
21
- process.exit(0)
13
+ Homepage: https://mnestis.vercel.app
14
+ `)
package/dist/npm.cjs CHANGED
@@ -239412,7 +239412,7 @@ var init_agent_runtime = __esm({
239412
239412
  init_mermaid();
239413
239413
  init_graph_markdown();
239414
239414
  init_codenames();
239415
- MNEMOS_VERSION = "0.3.2";
239415
+ MNEMOS_VERSION = "0.3.3";
239416
239416
  MNEMOS_MCP_URI = "mnemos://";
239417
239417
  MnemosAgentError = class extends Error {
239418
239418
  code;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mnestis",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Mnestis — the memory layer for software. One command, instant codebase intelligence.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- require('../dist/npm.cjs')