@xuda.ai/xuda-dashboard-controller-agent-1sjzln 0.1.0

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 (4) hide show
  1. package/README.md +30 -0
  2. package/agent.json +13 -0
  3. package/bin.mjs +24 -0
  4. package/package.json +42 -0
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # Xuda Dashboard Controller Agent
2
+
3
+ > Xuda Dashboard Controller Agent
4
+
5
+ A Xuda AI agent, runnable from your terminal.
6
+
7
+ ## Install
8
+
9
+ ```
10
+ npm i -g @xuda.ai/xuda-dashboard-controller-agent-1sjzln
11
+ ```
12
+
13
+ ## Run
14
+
15
+ ```
16
+ xuda-dashboard-controller-agent-1sjzln
17
+ ```
18
+
19
+ On first run you will be asked to sign in to Xuda. After that the agent opens a chat session in your terminal.
20
+
21
+ ## Links
22
+
23
+ - Marketplace listing: https://dev.xuda.ai/marketplace/agents/392_agn_fb67f56615e8
24
+ - Xuda CLI: https://www.npmjs.com/package/@xuda.ai/cli
25
+ - Xuda: https://xuda.ai
26
+ - Author: [xuda xuda](https://dev.xuda.ai/@cy11ge2z1gszl5apncrt3p983)
27
+
28
+ ---
29
+
30
+ Published automatically by Xuda when this agent was listed on the marketplace as a free agent.
package/agent.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "agent_id": "392_agn_fb67f56615e8",
3
+ "agent_name": "Xuda Dashboard Controller Agent",
4
+ "agent_version": "0.1.0",
5
+ "agent_image": null,
6
+ "agent_category": null,
7
+ "agent_industry": null,
8
+ "agent_tags": null,
9
+ "marketplace_url": "https://dev.xuda.ai/marketplace/agents/392_agn_fb67f56615e8",
10
+ "xuda_api_url": "https://dev.xuda.ai",
11
+ "xuda_ws_url": "https://dev.xuda.ai",
12
+ "xuda_web_url": "https://dev.xuda.ai"
13
+ }
package/bin.mjs ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env node
2
+ import { readFileSync } from 'node:fs';
3
+ import { fileURLToPath } from 'node:url';
4
+ import { dirname, join } from 'node:path';
5
+
6
+ const __dir = dirname(fileURLToPath(import.meta.url));
7
+ const manifest = JSON.parse(readFileSync(join(__dir, 'agent.json'), 'utf8'));
8
+
9
+ if (manifest.xuda_api_url && !process.env.XUDA_API_URL) process.env.XUDA_API_URL = manifest.xuda_api_url;
10
+ if (manifest.xuda_ws_url && !process.env.XUDA_WS_URL) process.env.XUDA_WS_URL = manifest.xuda_ws_url;
11
+ if (manifest.xuda_web_url && !process.env.XUDA_WEB_URL) process.env.XUDA_WEB_URL = manifest.xuda_web_url;
12
+
13
+ const { runAgent } = await import('@xuda.ai/cli');
14
+
15
+ try {
16
+ await runAgent({
17
+ agentId: manifest.agent_id,
18
+ agentName: manifest.agent_name,
19
+ agentVersion: manifest.agent_version,
20
+ });
21
+ } catch (err) {
22
+ console.error(`error: ${err.message || err}`);
23
+ process.exit(1);
24
+ }
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@xuda.ai/xuda-dashboard-controller-agent-1sjzln",
3
+ "version": "0.1.0",
4
+ "description": "Xuda Dashboard Controller Agent",
5
+ "type": "module",
6
+ "bin": {
7
+ "xuda-dashboard-controller-agent-1sjzln": "./bin.mjs"
8
+ },
9
+ "files": [
10
+ "bin.mjs",
11
+ "agent.json",
12
+ "README.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=20.0.0"
16
+ },
17
+ "dependencies": {
18
+ "@xuda.ai/cli": "^0.1.2"
19
+ },
20
+ "keywords": [
21
+ "xuda",
22
+ "ai-agent",
23
+ "cli",
24
+ "xuda-dashboard-controller-agent-1sjzln"
25
+ ],
26
+ "homepage": "https://dev.xuda.ai/marketplace/agents/392_agn_fb67f56615e8",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/xudaio/xuda"
30
+ },
31
+ "author": {
32
+ "name": "xuda xuda",
33
+ "url": "https://dev.xuda.ai/@cy11ge2z1gszl5apncrt3p983"
34
+ },
35
+ "license": "MIT",
36
+ "xuda": {
37
+ "agent_id": "392_agn_fb67f56615e8",
38
+ "agent_name": "Xuda Dashboard Controller Agent",
39
+ "agent_version": "0.1.0",
40
+ "marketplace_url": "https://dev.xuda.ai/marketplace/agents/392_agn_fb67f56615e8"
41
+ }
42
+ }