@kinetica/admin-agent 0.1.0 → 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 +11 -7
- package/dist/admin-agent.js +1842 -1807
- 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
|
|
57
|
+
Run the latest published release straight from npm — no clone, no build:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx
|
|
60
|
+
npx @kinetica/admin-agent
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
Or install it globally and run the `admin-agent` command anywhere:
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
|
|
67
|
-
|
|
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
|