@xuda.dev/onboarding-plan-builder-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 +25 -0
- package/bin.mjs +24 -0
- package/package.json +64 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Onboarding Plan Builder
|
|
2
|
+
|
|
3
|
+
> Onboarding Plan Builder
|
|
4
|
+
|
|
5
|
+
A Xuda AI agent, runnable from your terminal.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npm i -g @xuda.dev/onboarding-plan-builder-ai-agent
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Run
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
onboarding-plan-builder-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 role, start date, manager, buddy and whether the hire is an individual contributor or a manager, plus the systems and accounts they need on day one. Attach the job description if you have it so the objectives match the real scope. It returns a Word plan with a pre-start checklist, a week one schedule and 30, 60 and 90 day tables where every objective has an owner, a due date and evidence of completion.
|
|
24
|
+
|
|
25
|
+
## Details
|
|
26
|
+
|
|
27
|
+
- **Category:** Business & Operations
|
|
28
|
+
- **Tags:** hr, onboarding, new-hire, 30-60-90, people-ops, docx, ramp
|
|
29
|
+
- **Model:** GPT-5 Nano
|
|
30
|
+
|
|
31
|
+
## Links
|
|
32
|
+
|
|
33
|
+
- Marketplace listing: https://dev.xuda.ai/marketplace/agents/7fc_agn_1b0461f358dc
|
|
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,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent_id": "7fc_agn_1b0461f358dc",
|
|
3
|
+
"agent_name": "Onboarding Plan Builder",
|
|
4
|
+
"agent_version": "0.1.0",
|
|
5
|
+
"agent_image": null,
|
|
6
|
+
"agent_category": [
|
|
7
|
+
"Business & Operations"
|
|
8
|
+
],
|
|
9
|
+
"agent_industry": null,
|
|
10
|
+
"agent_tags": [
|
|
11
|
+
"hr",
|
|
12
|
+
"onboarding",
|
|
13
|
+
"new-hire",
|
|
14
|
+
"30-60-90",
|
|
15
|
+
"people-ops",
|
|
16
|
+
"docx",
|
|
17
|
+
"ramp"
|
|
18
|
+
],
|
|
19
|
+
"agent_ai_model": "gpt-1",
|
|
20
|
+
"agent_ai_model_name": "GPT-5 Nano",
|
|
21
|
+
"marketplace_url": "https://dev.xuda.ai/marketplace/agents/7fc_agn_1b0461f358dc",
|
|
22
|
+
"xuda_api_url": "https://dev.xuda.ai",
|
|
23
|
+
"xuda_ws_url": "https://dev.xuda.ai",
|
|
24
|
+
"xuda_web_url": "https://dev.xuda.ai"
|
|
25
|
+
}
|
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,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xuda.dev/onboarding-plan-builder-ai-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Onboarding Plan Builder",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"onboarding-plan-builder-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
|
+
"onboarding-plan-builder-ai-agent",
|
|
25
|
+
"business-operations",
|
|
26
|
+
"hr",
|
|
27
|
+
"onboarding",
|
|
28
|
+
"new-hire",
|
|
29
|
+
"30-60-90",
|
|
30
|
+
"people-ops",
|
|
31
|
+
"docx",
|
|
32
|
+
"ramp"
|
|
33
|
+
],
|
|
34
|
+
"homepage": "https://dev.xuda.ai/marketplace/agents/7fc_agn_1b0461f358dc",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/xudaio/xuda"
|
|
38
|
+
},
|
|
39
|
+
"author": {
|
|
40
|
+
"name": "Info xuda",
|
|
41
|
+
"url": "https://dev.xuda.ai/@xu11bp5gs4x1mmica1dvfkgfy"
|
|
42
|
+
},
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"xuda": {
|
|
45
|
+
"agent_id": "7fc_agn_1b0461f358dc",
|
|
46
|
+
"agent_name": "Onboarding Plan Builder",
|
|
47
|
+
"agent_version": "0.1.0",
|
|
48
|
+
"agent_category": [
|
|
49
|
+
"Business & Operations"
|
|
50
|
+
],
|
|
51
|
+
"agent_tags": [
|
|
52
|
+
"hr",
|
|
53
|
+
"onboarding",
|
|
54
|
+
"new-hire",
|
|
55
|
+
"30-60-90",
|
|
56
|
+
"people-ops",
|
|
57
|
+
"docx",
|
|
58
|
+
"ramp"
|
|
59
|
+
],
|
|
60
|
+
"agent_ai_model": "gpt-1",
|
|
61
|
+
"agent_ai_model_name": "GPT-5 Nano",
|
|
62
|
+
"marketplace_url": "https://dev.xuda.ai/marketplace/agents/7fc_agn_1b0461f358dc"
|
|
63
|
+
}
|
|
64
|
+
}
|