@ogment-ai/cli 0.3.1 → 0.3.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.
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=postinstall.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"postinstall.d.ts","sourceRoot":"","sources":["../src/postinstall.ts"],"names":[],"mappings":""}
@@ -0,0 +1,12 @@
1
+ const installGreetingLines = [
2
+ "Thanks for installing @ogment-ai/cli.",
3
+ "",
4
+ "Next steps:",
5
+ " 1. ogment login",
6
+ " 2. ogment servers",
7
+ " 3. ogment --help",
8
+ "",
9
+ "Docs: https://github.com/ogment-ai/ogment-cli/tree/main/packages/ogment#quick-start",
10
+ ];
11
+ process.stdout.write(`${installGreetingLines.join("\n")}\n`);
12
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ogment-ai/cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Ogment Vault CLI — secure your AI agents' SaaS credentials",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,6 +11,7 @@
11
11
  "build": "npm run clean && tsc -p tsconfig.build.json",
12
12
  "dev": "tsx src/cli.ts",
13
13
  "start": "node dist/cli.js",
14
+ "postinstall": "node -e \"import('./dist/postinstall.js').catch(() => undefined)\"",
14
15
  "check-types": "tsc -p tsconfig.json --noEmit",
15
16
  "lint": "oxlint -c oxlint.config.ts --type-aware --type-check --tsconfig tsconfig.json src test/src test/e2e vitest.config.ts vitest.e2e.config.ts",
16
17
  "lint:fix": "npm run lint -- --fix",
@@ -61,7 +62,7 @@
61
62
  },
62
63
  "dependencies": {
63
64
  "@modelcontextprotocol/sdk": "^1.26.0",
64
- "@ogment-ai/cli-contract": "0.3.1",
65
+ "@ogment-ai/cli-contract": "0.3.2",
65
66
  "better-result": "^2.7.0",
66
67
  "commander": "^13.1.0",
67
68
  "open": "^10.2.0",