-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@standujar/plugin-composio",
"description": "Composio plugin for elizaOS",
"version": "1.6.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/standujar/plugin-composio.git"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@composio/core": "0.1.53",
"@composio/vercel": "0.2.9",
"@elizaos/core": "1.6.1",
"truncate-json": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@elizaos/cli": "^1.6.1",
"husky": "^9.1.7",
"prettier": "3.5.3",
"tsup": "8.4.0",
"typescript": "5.8.2"
},
"scripts": {
"start": "elizaos start",
"test-with-cli": "cd ../cli && bun run build && cd ../plugin-starter && elizaos test",
"dev": "elizaos dev",
"build": "tsup",
"lint": "biome lint --write .",
"test": "elizaos test",
"publish": "elizaos plugin publish",
"format": "biome format --write .",
"format:check": "prettier --check ./src",
"check": "biome check --write ."
},
"gitHead": "b165ad83e5f7a21bc1edbd83374ca087e3cd6b33",
"platform": "universal",
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"COMPOSIO_API_KEY": {
"type": "string",
"description": "Composio API key for accessing tools and integrations"
},
"COMPOSIO_USER_ID": {
"type": "string",
"description": "Default user ID for Composio operations (optional)",
"default": "default"
},
"COMPOSIO_DEFAULT_USER_ID": {
"type": "string",
"description": "Default user ID if not specified in settings",
"default": "default",
"optional": true
},
"COMPOSIO_EXECUTION_MODE": {
"type": "string",
"description": "Execution mode for tool execution",
"default": "sequential",
"optional": true
},
"COMPOSIO_MULTI_USER_MODE": {
"type": "boolean",
"description": "Enable multi-user mode (false: single user with default ID, true: per-message user ID)",
"default": false,
"optional": true
},
"COMPOSIO_ALLOWED_TOOLKITS": {
"type": "string",
"description": "Comma-separated list of allowed toolkit names (empty means all toolkits allowed)",
"default": "",
"optional": true
},
"COMPOSIO_EXTRACTION_TEMPERATURE": {
"type": "number",
"description": "Temperature for precise extraction tasks (0-1)",
"default": 0.3,
"optional": true
},
"COMPOSIO_EXECUTION_TEMPERATURE": {
"type": "number",
"description": "Temperature for tool execution workflows (0-1)",
"default": 0.5,
"optional": true
},
"COMPOSIO_RESPONSE_TEMPERATURE": {
"type": "number",
"description": "Temperature for natural language responses (0-1)",
"default": 0.7,
"optional": true
},
"COMPOSIO_RECENT_EXCHANGES_LIMIT": {
"type": "number",
"description": "Number of recent conversation exchanges to include in context",
"default": 10,
"optional": true
},
"COMPOSIO_RECENT_TOOL_SLUGS_LIMIT": {
"type": "number",
"description": "Number of recent tool slugs to track per user",
"default": 5,
"optional": true
}
}
}
}