@xuda.dev/webinar-kit-ai-agent 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.
- package/README.md +40 -0
- package/agent.json +24 -0
- package/bin.mjs +24 -0
- package/package.json +62 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Webinar Kit
|
|
2
|
+
|
|
3
|
+
> Webinar Kit
|
|
4
|
+
|
|
5
|
+
A Xuda AI agent, runnable from your terminal.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npm i -g @xuda.dev/webinar-kit-ai-agent
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Run
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
webinar-kit-ai-agent
|
|
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
|
+
## About this agent
|
|
22
|
+
|
|
23
|
+
Give it the webinar topic, date and time with timezone, length, speakers and titles, the audience, and the one action you want attendees to take afterwards. Mention whether there is a live demo. You get a .pptx deck with timed speaker notes plus the registration copy, the full email sequence and a run-of-show.
|
|
24
|
+
|
|
25
|
+
## Details
|
|
26
|
+
|
|
27
|
+
- **Category:** Sales & Marketing
|
|
28
|
+
- **Tags:** webinar, pptx, event marketing, demand gen, email sequence, presentation
|
|
29
|
+
- **Model:** GPT-5 Nano
|
|
30
|
+
|
|
31
|
+
## Links
|
|
32
|
+
|
|
33
|
+
- Marketplace listing: https://dev.xuda.ai/marketplace/agents/7fc_agn_7d8277828e62
|
|
34
|
+
- Xuda CLI: https://www.npmjs.com/package/@xuda.ai/cli
|
|
35
|
+
- Xuda: https://xuda.ai
|
|
36
|
+
- Author: [Info xuda](https://dev.xuda.ai/@xu11bp5gs4x1mmica1dvfkgfy)
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
Published automatically by Xuda when this agent was listed on the marketplace as a free agent.
|
package/agent.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent_id": "7fc_agn_7d8277828e62",
|
|
3
|
+
"agent_name": "Webinar Kit",
|
|
4
|
+
"agent_version": "0.1.0",
|
|
5
|
+
"agent_image": null,
|
|
6
|
+
"agent_category": [
|
|
7
|
+
"Sales & Marketing"
|
|
8
|
+
],
|
|
9
|
+
"agent_industry": null,
|
|
10
|
+
"agent_tags": [
|
|
11
|
+
"webinar",
|
|
12
|
+
"pptx",
|
|
13
|
+
"event marketing",
|
|
14
|
+
"demand gen",
|
|
15
|
+
"email sequence",
|
|
16
|
+
"presentation"
|
|
17
|
+
],
|
|
18
|
+
"agent_ai_model": "gpt-1",
|
|
19
|
+
"agent_ai_model_name": "GPT-5 Nano",
|
|
20
|
+
"marketplace_url": "https://dev.xuda.ai/marketplace/agents/7fc_agn_7d8277828e62",
|
|
21
|
+
"xuda_api_url": "https://dev.xuda.ai",
|
|
22
|
+
"xuda_ws_url": "https://dev.xuda.ai",
|
|
23
|
+
"xuda_web_url": "https://dev.xuda.ai"
|
|
24
|
+
}
|
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,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xuda.dev/webinar-kit-ai-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Webinar Kit",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"webinar-kit-ai-agent": "./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
|
+
"webinar-kit-ai-agent",
|
|
25
|
+
"sales-marketing",
|
|
26
|
+
"webinar",
|
|
27
|
+
"pptx",
|
|
28
|
+
"event-marketing",
|
|
29
|
+
"demand-gen",
|
|
30
|
+
"email-sequence",
|
|
31
|
+
"presentation"
|
|
32
|
+
],
|
|
33
|
+
"homepage": "https://dev.xuda.ai/marketplace/agents/7fc_agn_7d8277828e62",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/xudaio/xuda"
|
|
37
|
+
},
|
|
38
|
+
"author": {
|
|
39
|
+
"name": "Info xuda",
|
|
40
|
+
"url": "https://dev.xuda.ai/@xu11bp5gs4x1mmica1dvfkgfy"
|
|
41
|
+
},
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"xuda": {
|
|
44
|
+
"agent_id": "7fc_agn_7d8277828e62",
|
|
45
|
+
"agent_name": "Webinar Kit",
|
|
46
|
+
"agent_version": "0.1.0",
|
|
47
|
+
"agent_category": [
|
|
48
|
+
"Sales & Marketing"
|
|
49
|
+
],
|
|
50
|
+
"agent_tags": [
|
|
51
|
+
"webinar",
|
|
52
|
+
"pptx",
|
|
53
|
+
"event marketing",
|
|
54
|
+
"demand gen",
|
|
55
|
+
"email sequence",
|
|
56
|
+
"presentation"
|
|
57
|
+
],
|
|
58
|
+
"agent_ai_model": "gpt-1",
|
|
59
|
+
"agent_ai_model_name": "GPT-5 Nano",
|
|
60
|
+
"marketplace_url": "https://dev.xuda.ai/marketplace/agents/7fc_agn_7d8277828e62"
|
|
61
|
+
}
|
|
62
|
+
}
|