-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.67 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@framers/agentos-skills",
"version": "1.0.0",
"description": "Curated SKILL.md prompt modules for AgentOS — machine-readable registry of skills, prompts, and reusable agent capabilities. Companion to the @framers/agentos TypeScript AI agent runtime.",
"homepage": "https://agentos.sh",
"bugs": {
"url": "https://github.com/framerslab/agentos-skills/issues"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./index.mjs",
"types": "./types.d.ts"
},
"./registry.json": "./registry.json",
"./types": "./types.d.ts",
"./package.json": "./package.json"
},
"files": [
"index.mjs",
"registry",
"registry.json",
"types.d.ts",
"scripts",
"CONTRIBUTING.md",
"README.md"
],
"scripts": {
"validate": "node scripts/validate-skill.mjs",
"update:registry": "node scripts/update-registry.mjs",
"typecheck": "echo 'agentos-skills: content-only package, no TypeScript to check'",
"build": "echo 'agentos-skills: content-only package, no build step'"
},
"keywords": [
"agentos",
"framers-agentos",
"agentos-skills",
"skills",
"skill-modules",
"skill-md",
"prompts",
"prompt-modules",
"prompt-engineering",
"ai-agent",
"ai-agents",
"ai-agent-skills",
"agent-framework",
"curated-catalog",
"registry",
"framers",
"frame-dev"
],
"author": {
"name": "Framers AI",
"email": "team@frame.dev",
"url": "https://frame.dev"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/framerslab/agentos-skills.git"
},
"publishConfig": {
"access": "public"
}
}