@lanes-sh/link 0.1.1 → 0.1.2

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,15 +1,15 @@
1
1
  # Lanes Link
2
2
 
3
- **One secure endpoint between your AI agents and your real accounts, knowledge, and secrets.**
3
+ **One secure endpoint between your AI agents and all your connections, memory, skills, and secrets.**
4
4
 
5
5
  Connect your mail, calendar, files, and notes once, and add the memory and skills that only you
6
6
  have. Every agent you use — Claude, ChatGPT, and anything else that speaks MCP — reaches them
7
- through a single MCP endpoint that you own and run. Open source, self-hosted, no vendor sitting in
7
+ through a single MCP endpoint that you own and run. Open source, self-hostable, no vendor sitting in
8
8
  the middle of your data.
9
9
 
10
10
  <picture>
11
11
  <source media="(prefers-color-scheme: dark)" srcset="docs/images/lanes-link-dark.svg">
12
- <img alt="Claude, ChatGPT, and any MCP client reach one Lanes Link endpoint, which you run on your own machine or your own cloud. The profiles it serves sit inside that boundary: Work, holding Gmail, Calendar, and Docs; and Personal, holding Gmail, Memory, and Skills." src="docs/images/lanes-link-light.svg">
12
+ <img alt="Claude, Codex, and Gemini all reach one Lanes Link endpoint, which you run yourself. Beneath it sit the profiles it serves: personal, holding Gmail, Memory, and Skills; and work, holding Gmail, Calendar, and Docs." src="docs/images/lanes-link-light.svg">
13
13
  </picture>
14
14
 
15
15
  ## Why
@@ -5,7 +5,7 @@ description: Use when the user refers to their own accounts, knowledge, procedur
5
5
 
6
6
  # Lanes Link
7
7
 
8
- A self-hosted gateway to one person's own context: the accounts they have
8
+ A self-hostable gateway to one person's own context: the accounts they have
9
9
  connected, the knowledge they have accumulated, the procedures they have
10
10
  written down, and their secrets. One endpoint serves every profile in a
11
11
  workspace under one token, and each call names which profile it means.
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@lanes-sh/link",
3
- "version": "0.1.1",
4
- "description": "A self-hosted MCP gateway for your accounts, memory, skills, and secrets",
3
+ "version": "0.1.2",
4
+ "description": "A self-hostable MCP gateway for all your connections, memory, skills, and secrets",
5
5
  "license": "Apache-2.0",
6
- "homepage": "https://github.com/lanes-sh/link#readme",
6
+ "homepage": "https://lanes.sh/link",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/lanes-sh/link.git"
package/src/cli/lanes.ts CHANGED
@@ -18,7 +18,7 @@ import { version } from './version.ts';
18
18
  */
19
19
 
20
20
  const AREAS: Record<string, string> = {
21
- link: 'a self-hosted MCP gateway for your accounts, memory, skills, and secrets',
21
+ link: 'a self-hostable MCP gateway for all your connections, memory, skills, and secrets',
22
22
  };
23
23
 
24
24
  function areasUsage(): string {
package/src/cli/usage.ts CHANGED
@@ -16,7 +16,7 @@ import { style } from './output.ts';
16
16
  /** How this CLI is invoked — the `link` area of the `lanes` command. */
17
17
  export const PROGRAM = 'lanes link';
18
18
 
19
- export const USAGE = `${style.bold(PROGRAM)} — a self-hosted MCP gateway for your accounts, memory, skills, and secrets
19
+ export const USAGE = `${style.bold(PROGRAM)} — a self-hostable MCP gateway for all your connections, memory, skills, and secrets
20
20
 
21
21
  ${style.bold('Everyday')}
22
22
  ${PROGRAM} setup plan [--json] what each provider needs, and which are connected
@@ -38,7 +38,7 @@ export function buildMcpServer(options: BuildServerOptions): McpServer {
38
38
  // rather than trusting a copy to stay one. It is the whole endpoint being
39
39
  // described, not this connection, so it does not name the profiles the
40
40
  // way `title` does.
41
- description: 'A self-hosted MCP gateway for your accounts, memory, skills, and secrets',
41
+ description: 'A self-hostable MCP gateway for all your connections, memory, skills, and secrets',
42
42
  websiteUrl: 'https://github.com/lanes-sh/link',
43
43
  icons: SERVER_ICONS,
44
44
  },