-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.74 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
{
"name": "@memtensor/memos-cloud-skill",
"description": "MemOS Cloud Server API skill. Provides the agent with capabilities to add, search, delete messages and add feedback to MemOS cloud memory.",
"version": "1.0.0",
"files": [
"README.md",
"README_zh.md",
"memos-cloud-server/SKILL.md",
"memos-cloud-server/scripts/memos_cloud.py",
"memos-cloud-server/scripts/memos_cloud/**/*.py",
"memos-cloud/SKILL.md",
"memos-cloud/scripts/**/*.py",
"memos-cloud/resources/**/*"
],
"scripts": {
"verify": "uv run pytest && uv run python memos-cloud-server/scripts/memos_cloud.py --help && npm pack --dry-run",
"publish:all:latest": "node tools/publish.mjs --channel latest",
"publish:all:beta": "node tools/publish.mjs --channel beta",
"publish:npm:latest": "node tools/publish.mjs --skip-clawhub --channel latest",
"publish:npm:beta": "node tools/publish.mjs --skip-clawhub --channel beta",
"publish:clawhub:latest": "node tools/publish.mjs --skip-npm --channel latest",
"publish:clawhub:beta": "node tools/publish.mjs --skip-npm --channel beta",
"publish:dry-run:all:latest": "node tools/publish.mjs --dry-run --channel latest",
"publish:dry-run:all:beta": "node tools/publish.mjs --dry-run --channel beta",
"publish:dry-run:npm:latest": "node tools/publish.mjs --dry-run --skip-clawhub --channel latest",
"publish:dry-run:npm:beta": "node tools/publish.mjs --dry-run --skip-clawhub --channel beta",
"publish:dry-run:clawhub:latest": "node tools/publish.mjs --dry-run --skip-npm --channel latest",
"publish:dry-run:clawhub:beta": "node tools/publish.mjs --dry-run --skip-npm --channel beta"
}
}