-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
111 lines (109 loc) · 3.27 KB
/
Copy pathmanifest.json
File metadata and controls
111 lines (109 loc) · 3.27 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
{
"$schema": "https://agentos.sh/schemas/extension-manifest-v1.json",
"id": "com.framers.system.cli-executor",
"name": "CLI Executor Extension",
"version": "1.2.0",
"description": "Execute shell commands and manage files for AgentOS agents",
"author": {
"name": "Frame.dev",
"email": "support@frame.dev",
"url": "https://github.com/framerslab"
},
"license": "MIT",
"keywords": ["cli", "shell", "command", "execute", "terminal", "bash", "powershell", "script"],
"agentosVersion": "^2.0.0",
"categories": ["system", "automation", "development"],
"repository": {
"type": "git",
"url": "https://github.com/framerslab/agentos-extensions"
},
"extensions": [
{
"kind": "tool",
"id": "shell_execute",
"displayName": "Execute Shell Command",
"description": "Execute a shell command and return output",
"entry": "./dist/tools/execute.js"
},
{
"kind": "tool",
"id": "file_read",
"displayName": "Read File",
"description": "Read contents of a file",
"entry": "./dist/tools/fileRead.js"
},
{
"kind": "tool",
"id": "file_write",
"displayName": "Write File",
"description": "Write content to a file",
"entry": "./dist/tools/fileWrite.js"
},
{
"kind": "tool",
"id": "list_directory",
"displayName": "List Directory",
"description": "List files and directories",
"entry": "./dist/tools/listDir.js"
},
{
"kind": "tool",
"id": "create_pdf",
"displayName": "Create PDF",
"description": "Create a real PDF document from text content",
"entry": "./dist/tools/createPdf.js"
},
{
"kind": "tool",
"id": "create_spreadsheet",
"displayName": "Create Spreadsheet",
"description": "Create an Excel (.xlsx) or CSV file from structured data",
"entry": "./dist/tools/createSpreadsheet.js"
},
{
"kind": "tool",
"id": "create_document",
"displayName": "Create Document",
"description": "Create a Word document (.docx) from text or markdown",
"entry": "./dist/tools/createDocument.js"
},
{
"kind": "tool",
"id": "read_document",
"displayName": "Read Document",
"description": "Extract text from xlsx, csv, docx, pdf files",
"entry": "./dist/tools/readDocument.js"
}
],
"configuration": {
"properties": {
"shell.defaultShell": {
"type": "string",
"description": "Default shell to use (bash, powershell, cmd, zsh)",
"default": "auto"
},
"shell.timeout": {
"type": "number",
"default": 60000,
"minimum": 1000,
"maximum": 600000,
"description": "Default timeout for commands (ms)"
},
"shell.workingDirectory": {
"type": "string",
"description": "Default working directory"
},
"shell.allowedCommands": {
"type": "array",
"items": { "type": "string" },
"description": "Whitelist of allowed commands (empty = all allowed)"
},
"shell.blockedCommands": {
"type": "array",
"items": { "type": "string" },
"default": ["rm -rf /", "format", "del /s /q", "shutdown", "reboot"],
"description": "Blacklist of blocked commands"
}
}
}
}