@xuda.dev/fitness-nutrition-planner-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 +26 -0
- package/bin.mjs +24 -0
- package/package.json +66 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Fitness & Nutrition Planner
|
|
2
|
+
|
|
3
|
+
> Fitness & Nutrition Planner
|
|
4
|
+
|
|
5
|
+
A Xuda AI agent, runnable from your terminal.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npm i -g @xuda.dev/fitness-nutrition-planner-ai-agent
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Run
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
fitness-nutrition-planner-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
|
+
Tell it your goal, bodyweight and height, age, how many days a week you can train and with what equipment, plus any injuries, allergies or foods you will not eat. It calculates calorie and macro targets from your own numbers rather than a generic template. You get a .docx with the weekly training tables, a seven day meal plan and an aisle by aisle shopping list.
|
|
24
|
+
|
|
25
|
+
## Details
|
|
26
|
+
|
|
27
|
+
- **Category:** Industry-Specific
|
|
28
|
+
- **Tags:** fitness, nutrition, training programme, meal plan, macros, shopping list, docx, coaching
|
|
29
|
+
- **Model:** GPT-5 Nano
|
|
30
|
+
|
|
31
|
+
## Links
|
|
32
|
+
|
|
33
|
+
- Marketplace listing: https://dev.xuda.ai/marketplace/agents/7fc_agn_5f48b0bae04c
|
|
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,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent_id": "7fc_agn_5f48b0bae04c",
|
|
3
|
+
"agent_name": "Fitness & Nutrition Planner",
|
|
4
|
+
"agent_version": "0.1.0",
|
|
5
|
+
"agent_image": null,
|
|
6
|
+
"agent_category": [
|
|
7
|
+
"Industry-Specific"
|
|
8
|
+
],
|
|
9
|
+
"agent_industry": null,
|
|
10
|
+
"agent_tags": [
|
|
11
|
+
"fitness",
|
|
12
|
+
"nutrition",
|
|
13
|
+
"training programme",
|
|
14
|
+
"meal plan",
|
|
15
|
+
"macros",
|
|
16
|
+
"shopping list",
|
|
17
|
+
"docx",
|
|
18
|
+
"coaching"
|
|
19
|
+
],
|
|
20
|
+
"agent_ai_model": "gpt-1",
|
|
21
|
+
"agent_ai_model_name": "GPT-5 Nano",
|
|
22
|
+
"marketplace_url": "https://dev.xuda.ai/marketplace/agents/7fc_agn_5f48b0bae04c",
|
|
23
|
+
"xuda_api_url": "https://dev.xuda.ai",
|
|
24
|
+
"xuda_ws_url": "https://dev.xuda.ai",
|
|
25
|
+
"xuda_web_url": "https://dev.xuda.ai"
|
|
26
|
+
}
|
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,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xuda.dev/fitness-nutrition-planner-ai-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Fitness & Nutrition Planner",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"fitness-nutrition-planner-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
|
+
"fitness-nutrition-planner-ai-agent",
|
|
25
|
+
"industry-specific",
|
|
26
|
+
"fitness",
|
|
27
|
+
"nutrition",
|
|
28
|
+
"training-programme",
|
|
29
|
+
"meal-plan",
|
|
30
|
+
"macros",
|
|
31
|
+
"shopping-list",
|
|
32
|
+
"docx",
|
|
33
|
+
"coaching"
|
|
34
|
+
],
|
|
35
|
+
"homepage": "https://dev.xuda.ai/marketplace/agents/7fc_agn_5f48b0bae04c",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/xudaio/xuda"
|
|
39
|
+
},
|
|
40
|
+
"author": {
|
|
41
|
+
"name": "Info xuda",
|
|
42
|
+
"url": "https://dev.xuda.ai/@xu11bp5gs4x1mmica1dvfkgfy"
|
|
43
|
+
},
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"xuda": {
|
|
46
|
+
"agent_id": "7fc_agn_5f48b0bae04c",
|
|
47
|
+
"agent_name": "Fitness & Nutrition Planner",
|
|
48
|
+
"agent_version": "0.1.0",
|
|
49
|
+
"agent_category": [
|
|
50
|
+
"Industry-Specific"
|
|
51
|
+
],
|
|
52
|
+
"agent_tags": [
|
|
53
|
+
"fitness",
|
|
54
|
+
"nutrition",
|
|
55
|
+
"training programme",
|
|
56
|
+
"meal plan",
|
|
57
|
+
"macros",
|
|
58
|
+
"shopping list",
|
|
59
|
+
"docx",
|
|
60
|
+
"coaching"
|
|
61
|
+
],
|
|
62
|
+
"agent_ai_model": "gpt-1",
|
|
63
|
+
"agent_ai_model_name": "GPT-5 Nano",
|
|
64
|
+
"marketplace_url": "https://dev.xuda.ai/marketplace/agents/7fc_agn_5f48b0bae04c"
|
|
65
|
+
}
|
|
66
|
+
}
|