@kinetica/admin-agent 0.1.0 → 0.1.1

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 +11 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -54,17 +54,23 @@ Built with the [Claude Agent SDK](https://docs.anthropic.com/en/docs/agents-and-
54
54
 
55
55
  ## Quick Start
56
56
 
57
- Run straight from GitHub (primary install path until the npm package ships):
57
+ Run the latest published release straight from npm no clone, no build:
58
58
 
59
59
  ```bash
60
- npx github:kineticadb/admin-agent
60
+ npx @kinetica/admin-agent
61
61
  ```
62
62
 
63
- Once published to npm (coming post-v1.0), you'll also be able to:
63
+ Or install it globally and run the `admin-agent` command anywhere:
64
64
 
65
65
  ```bash
66
- npx @kinetica/admin-agent
67
- # or globally: npm install -g @kinetica/admin-agent && admin-agent
66
+ npm install -g @kinetica/admin-agent
67
+ admin-agent
68
+ ```
69
+
70
+ To run the latest unreleased code from the default branch instead, point `npx` at GitHub:
71
+
72
+ ```bash
73
+ npx github:kineticadb/admin-agent
68
74
  ```
69
75
 
70
76
  The agent loads connection details from `.env` if present, or prompts interactively. On repeat runs, it confirms the saved connection before proceeding.
@@ -447,8 +453,6 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for the full development workflow, commit
447
453
 
448
454
  ## Global Install
449
455
 
450
- Once the npm package is published (coming post-v1.0):
451
-
452
456
  ```bash
453
457
  npm install -g @kinetica/admin-agent
454
458
  admin-agent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kinetica/admin-agent",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Autonomous diagnostic agent for Kinetica databases",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Kinetica",