@vess-id/vess 0.2.0-alpha.1 → 0.2.0-alpha.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.
Files changed (2) hide show
  1. package/README.md +4 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,11 +4,10 @@
4
4
 
5
5
  ## What is VESS?
6
6
 
7
- VESS (Verifiable Execution Sandbox for Software agents) is a local runtime that gives your AI coding agent a cryptographic identity and enforces security boundaries on your machine.
7
+ VESS is a local runtime that gives your AI coding agent a cryptographic identity and enforces security boundaries on your machine.
8
8
 
9
9
  - **Creates a DID-based cryptographic identity** for your development machine, stored securely in the OS Keychain
10
10
  - **Registers as an MCP (Model Context Protocol) server** in Claude Code, so the agent operates within VESS-managed boundaries
11
- - **Enforces policies** to protect sensitive files (`.ssh`, `.aws`, `.gnupg`) from unintended access
12
11
  - **Manages environment variable secrets** via OS Keychain with Touch ID protection — secrets never sit in plaintext on disk
13
12
  - **Connects to the VESS gateway** for project management and credential issuance
14
13
 
@@ -27,13 +26,13 @@ This is a **beta release** (v0.1.0).
27
26
  - **Node.js 22** or later
28
27
  - **macOS** (primary) or Linux
29
28
  - **Claude Code** — [installation guide](https://docs.anthropic.com/en/docs/claude-code)
30
- - **A VESS account** — sign up at [app.vess.id](https://app.vess.id)
29
+ - **A VESS account** — sign up at [app.vesslabs.ai](https://app.vesslabs.ai)
31
30
 
32
31
  ## Getting Started
33
32
 
34
33
  ### Step 1: Sign Up
35
34
 
36
- 1. Create an account at [https://app.vess.id](https://app.vess.id)
35
+ 1. Create an account at [https://app.vesslabs.ai](https://app.vesslabs.ai)
37
36
  2. Create a project
38
37
  3. (Optional) Connect integrations: Slack, Google Calendar, Jira
39
38
 
@@ -149,7 +148,6 @@ vess status
149
148
  - MCP server registration in Claude Code (stdio + HTTP daemon)
150
149
  - Environment variable management with OS Keychain-backed secrets
151
150
  - Touch ID-gated secret access (macOS)
152
- - Policy enforcement (deny rules for `~/.ssh`, `~/.aws`, `~/.gnupg`)
153
151
  - Project management (list, switch, sync)
154
152
  - Audit logging
155
153
  - OS service integration (launchd on macOS, systemd on Linux)
@@ -201,19 +199,13 @@ Secrets (root key, session token, env values) are stored in the **OS Keychain**,
201
199
  | Issue | Solution |
202
200
  |-------|----------|
203
201
  | "Not initialized" | Run `vess init` |
204
- | "No projects found" | Create one at [app.vess.id/projects](https://app.vess.id/projects), then `vess project sync` |
202
+ | "No projects found" | Create one at [app.vesslabs.ai/projects](https://app.vesslabs.ai/projects), then `vess project sync` |
205
203
  | Session expired | Run `vess login` |
206
204
  | Claude Code doesn't see VESS | Run `vess mcp register`, restart Claude Code |
207
205
  | Daemon not starting | Check `vess logs`, try `vess daemon start --foreground` |
208
206
  | Need a fresh start | Run `vess uninstall`, then `vess init` |
209
207
  | Diagnose issues | Run `vess doctor` |
210
208
 
211
- ## Links
212
-
213
- - **Web Dashboard:** [https://app.vess.id](https://app.vess.id)
214
- - **Documentation:** [https://vess.id/docs](https://vess.id/docs)
215
- - **GitHub:** [https://github.com/cvoxelprotocol/aidentity](https://github.com/cvoxelprotocol/aidentity)
216
-
217
209
  ## Support
218
210
 
219
211
  For bug reports, feature requests, or questions, please contact us at info@vess.id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vess-id/vess",
3
- "version": "0.2.0-alpha.1",
3
+ "version": "0.2.0-alpha.2",
4
4
  "description": "VESS local AI agent runtime — manages agent identity, permissions, and execution boundaries",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",