-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jsii
More file actions
57 lines (57 loc) · 2.89 KB
/
.jsii
File metadata and controls
57 lines (57 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"author": {
"email": "opensource@xpander.ai",
"name": "xpander.ai",
"roles": [
"author"
]
},
"bundled": {
"axios": "^1.8.2",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"conf": "^13.1.0",
"fs-extra": "^11.3.0",
"inquirer": "^8.2.5",
"ora": "^5.4.1",
"yargs": "^17.7.2"
},
"description": "Command Line Interface for Xpander",
"docs": {
"stability": "stable"
},
"homepage": "git@github.com:xpander-ai/xpander-cli.git",
"jsiiVersion": "5.6.11 (build fa7dfe5)",
"license": "Apache-2.0",
"metadata": {
"jsii": {
"pacmak": {
"hasDefaultInterfaces": true
}
},
"tscRootDir": "src"
},
"name": "xpander-cli",
"readme": {
"markdown": "# Xpander CLI\n\nA command-line interface for interacting with the Xpander.ai platform.\n\n## Installation\n\nYou can install the Xpander CLI via npm:\n\n```bash\nnpm install -g xpander-cli\n```\n\nOr using Yarn:\n\n```bash\nyarn global add xpander-cli\n```\n\nAfter installation, you can use the `xpander` command from anywhere.\n\n## Configuration\n\nBefore using the CLI, you need to configure it with your API credentials:\n\n```bash\nxpander configure\n```\n\nYou'll be prompted to enter your Xpander API key and organization ID. You can find these in your account settings on the Xpander platform.\n\nAlternatively, you can provide these directly:\n\n```bash\nxpander configure --key YOUR_API_KEY --org YOUR_ORG_ID\n```\n\n## Managing Profiles\n\nThe CLI supports multiple profiles for different API credentials:\n\n```bash\n# Create a new profile\nxpander configure --profile dev\n\n# List available profiles\nxpander profile --list\n\n# Switch between profiles\nxpander profile --switch prod\n```\n\n## Commands\n\n### View Available Commands\n\n```bash\nxpander --help\n```\n\n### Agent Management\n\nList your agents:\n\n```bash\nxpander agent list\n```\n\nGet details about a specific agent:\n\n```bash\nxpander agent get --id AGENT_ID\n```\n\nIf no ID is provided, the CLI will prompt you to select from your available agents.\n\n## Output Formats\n\nBy default, the CLI outputs data in table format. You can switch to JSON format:\n\n```bash\nxpander --output json agent list\n```\n\n## Development\n\nTo build the CLI from source:\n\n```bash\n# Clone the repository\ngit clone https://github.com/xpander-ai/xpander-cli.git\ncd xpander-cli\n\n# Install dependencies\nyarn install\n\n# Build\nyarn build\n\n# Run locally\nyarn cli\n```\n\n## License\n\nApache-2.0"
},
"repository": {
"type": "git",
"url": "git@github.com:xpander-ai/xpander-cli.git"
},
"schema": "jsii/0.10.0",
"targets": {
"js": {
"npm": "xpander-cli"
},
"python": {
"distName": "xpander-cli",
"module": "xpander_cli"
}
},
"types": {},
"version": "0.0.2",
"fingerprint": "RsgMgKx0y+VMVaUtopzaqa0eVweMVkAHuiTznMvXE0o="
}