@statechange/xano-cli 0.2.1 → 0.2.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 -13
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,13 +6,23 @@
|
|
|
6
6
|
|
|
7
7
|
CLI for Xano workspace management, performance analysis, XanoScript generation, and operational insights. Uses Xano's private APIs to provide capabilities not available through the standard Meta API.
|
|
8
8
|
|
|
9
|
+
## Getting Started with AI Agents
|
|
10
|
+
|
|
11
|
+
The fastest way to put this CLI to work is to install the skills into your AI coding agent:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx skills add @statechange/xano-cli
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
This teaches your agent (Claude Code, Cursor, etc.) how to manage your Xano workspace, analyze performance bottlenecks, trace slow endpoints, and generate XanoScript — all through natural conversation.
|
|
18
|
+
|
|
9
19
|
## Installation
|
|
10
20
|
|
|
11
21
|
```bash
|
|
12
22
|
npm install -g @statechange/xano-cli
|
|
13
23
|
```
|
|
14
24
|
|
|
15
|
-
Or run directly with npx:
|
|
25
|
+
Or run directly with npx (no install needed):
|
|
16
26
|
|
|
17
27
|
```bash
|
|
18
28
|
npx @statechange/xano-cli <command>
|
|
@@ -238,18 +248,6 @@ This CLI uses Xano's private `api:mvp-admin` endpoints (the same APIs that power
|
|
|
238
248
|
| XanoScript docs | No | Yes |
|
|
239
249
|
| Meta API docs | No | Yes |
|
|
240
250
|
|
|
241
|
-
## AI Integration
|
|
242
|
-
|
|
243
|
-
The recommended way to use this CLI with AI coding assistants is to install the skills:
|
|
244
|
-
|
|
245
|
-
```bash
|
|
246
|
-
npx skills add @statechange/xano-cli
|
|
247
|
-
```
|
|
248
|
-
|
|
249
|
-
This teaches your AI agent how to use the CLI for workspace management and performance analysis workflows. Skills are included in the `skills/` directory of the package.
|
|
250
|
-
|
|
251
|
-
For manual use, add `--format yaml` to any command for the most token-efficient structured output.
|
|
252
|
-
|
|
253
251
|
## License
|
|
254
252
|
|
|
255
253
|
MIT
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ const program = new Command();
|
|
|
19
19
|
program
|
|
20
20
|
.name("sc-xano")
|
|
21
21
|
.description("StateChange CLI for Xano - workspace management, performance analysis, and operational insights")
|
|
22
|
-
.version("0.2.
|
|
22
|
+
.version("0.2.2");
|
|
23
23
|
// Add subcommands
|
|
24
24
|
createAuthCommand(program);
|
|
25
25
|
createXRayCommand(program);
|
package/package.json
CHANGED