acryldev 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/LICENSE +21 -0
- package/README.md +32 -0
- package/bin.js +4303 -0
- package/package.json +207 -0
package/package.json
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "acryldev",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "ACRYL - agent-agnostic Agentic Development Environment and continuity layer. The canonical `acryl` terminal command.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"acryl": "bin.js"
|
|
9
|
+
},
|
|
10
|
+
"main": "bin.js",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=22"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/acryldev/acryl.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://acryl.dev",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/acryldev/acryl/issues"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"acryl",
|
|
24
|
+
"acryldev",
|
|
25
|
+
"agent",
|
|
26
|
+
"ade",
|
|
27
|
+
"coding-agent",
|
|
28
|
+
"tui",
|
|
29
|
+
"cli",
|
|
30
|
+
"cordis",
|
|
31
|
+
"ai",
|
|
32
|
+
"agentic",
|
|
33
|
+
"context-relay",
|
|
34
|
+
"terminal",
|
|
35
|
+
"development"
|
|
36
|
+
],
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@deepseek-ai/cordis": "4.0.1",
|
|
39
|
+
"@deepseek-ai/cordis-plugin-group": "1.0.1",
|
|
40
|
+
"@deepseek-ai/cordis-plugin-hmr": "1.0.16",
|
|
41
|
+
"@deepseek-ai/cordis-plugin-include": "1.0.6",
|
|
42
|
+
"@deepseek-ai/cordis-plugin-loader": "1.0.2",
|
|
43
|
+
"@deepseek-ai/cordis-plugin-timer": "1.1.3",
|
|
44
|
+
"@deepseek-ai/dsh": "0.1.1-rc.2",
|
|
45
|
+
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
|
|
46
|
+
"@deepseek-ai/dsh-agent-default-model": "0.1.1-rc.2",
|
|
47
|
+
"@deepseek-ai/dsh-agent-instructions": "0.1.1-rc.2",
|
|
48
|
+
"@deepseek-ai/dsh-agent-loop": "0.1.1-rc.2",
|
|
49
|
+
"@deepseek-ai/dsh-agent-presets": "0.1.1-rc.2",
|
|
50
|
+
"@deepseek-ai/dsh-anonymous-user-id": "0.1.1-rc.2",
|
|
51
|
+
"@deepseek-ai/dsh-api-gateway": "0.1.1-rc.2",
|
|
52
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2",
|
|
53
|
+
"@deepseek-ai/dsh-app-boot": "0.1.1-rc.2",
|
|
54
|
+
"@deepseek-ai/dsh-atomic-write": "0.1.1-rc.2",
|
|
55
|
+
"@deepseek-ai/dsh-attachment": "0.1.1-rc.2",
|
|
56
|
+
"@deepseek-ai/dsh-attachment-local": "0.1.1-rc.2",
|
|
57
|
+
"@deepseek-ai/dsh-authorization": "0.1.1-rc.2",
|
|
58
|
+
"@deepseek-ai/dsh-base": "0.1.1-rc.2",
|
|
59
|
+
"@deepseek-ai/dsh-bash-local": "0.1.1-rc.2",
|
|
60
|
+
"@deepseek-ai/dsh-bash-sandbox": "0.1.1-rc.2",
|
|
61
|
+
"@deepseek-ai/dsh-brand": "0.1.1-rc.2",
|
|
62
|
+
"@deepseek-ai/dsh-client-connection": "0.1.1-rc.2",
|
|
63
|
+
"@deepseek-ai/dsh-client-locale": "0.1.1-rc.2",
|
|
64
|
+
"@deepseek-ai/dsh-client-modules": "0.1.1-rc.2",
|
|
65
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
66
|
+
"@deepseek-ai/dsh-client-ui-attachment": "0.1.1-rc.2",
|
|
67
|
+
"@deepseek-ai/dsh-client-ui-commands": "0.1.1-rc.2",
|
|
68
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.1-rc.2",
|
|
69
|
+
"@deepseek-ai/dsh-client-ui-directory-picker-browse": "0.1.1-rc.2",
|
|
70
|
+
"@deepseek-ai/dsh-client-ui-directory-picker-native": "0.1.1-rc.2",
|
|
71
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": "0.1.1-rc.2",
|
|
72
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.1-rc.2",
|
|
73
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.1-rc.2",
|
|
74
|
+
"@deepseek-ai/dsh-client-ui-renderer": "0.1.1-rc.2",
|
|
75
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.1-rc.2",
|
|
76
|
+
"@deepseek-ai/dsh-client-ui-sidebar": "0.1.1-rc.2",
|
|
77
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.2",
|
|
78
|
+
"@deepseek-ai/dsh-client-ui-theme": "0.1.1-rc.2",
|
|
79
|
+
"@deepseek-ai/dsh-client-ui-tool": "0.1.1-rc.2",
|
|
80
|
+
"@deepseek-ai/dsh-client-ui-workspace": "0.1.1-rc.2",
|
|
81
|
+
"@deepseek-ai/dsh-cmdline": "0.1.1-rc.2",
|
|
82
|
+
"@deepseek-ai/dsh-code-runtime": "0.1.1-rc.2",
|
|
83
|
+
"@deepseek-ai/dsh-command-compact": "0.1.1-rc.2",
|
|
84
|
+
"@deepseek-ai/dsh-command-feedback": "0.1.1-rc.2",
|
|
85
|
+
"@deepseek-ai/dsh-command-goal": "0.1.1-rc.2",
|
|
86
|
+
"@deepseek-ai/dsh-commands": "0.1.1-rc.2",
|
|
87
|
+
"@deepseek-ai/dsh-compaction": "0.1.1-rc.2",
|
|
88
|
+
"@deepseek-ai/dsh-compaction-basic": "0.1.1-rc.2",
|
|
89
|
+
"@deepseek-ai/dsh-compaction-tool-result-pruner": "0.1.1-rc.2",
|
|
90
|
+
"@deepseek-ai/dsh-cordis-client-runner": "0.1.1-rc.2",
|
|
91
|
+
"@deepseek-ai/dsh-cordis-host-runner": "0.1.1-rc.2",
|
|
92
|
+
"@deepseek-ai/dsh-credentials": "0.1.1-rc.2",
|
|
93
|
+
"@deepseek-ai/dsh-credentials-local": "0.1.1-rc.2",
|
|
94
|
+
"@deepseek-ai/dsh-file-reference": "0.1.1-rc.2",
|
|
95
|
+
"@deepseek-ai/dsh-fs": "0.1.1-rc.2",
|
|
96
|
+
"@deepseek-ai/dsh-fs-local": "0.1.1-rc.2",
|
|
97
|
+
"@deepseek-ai/dsh-fs-observation-policy": "0.1.1-rc.2",
|
|
98
|
+
"@deepseek-ai/dsh-fs-sandbox": "0.1.1-rc.2",
|
|
99
|
+
"@deepseek-ai/dsh-goal": "0.1.1-rc.2",
|
|
100
|
+
"@deepseek-ai/dsh-goal-round-driver": "0.1.1-rc.2",
|
|
101
|
+
"@deepseek-ai/dsh-home-paths": "0.1.1-rc.2",
|
|
102
|
+
"@deepseek-ai/dsh-host-apiproxy": "0.1.1-rc.2",
|
|
103
|
+
"@deepseek-ai/dsh-host-directory-picker-browse": "0.1.1-rc.2",
|
|
104
|
+
"@deepseek-ai/dsh-host-directory-picker-native": "0.1.1-rc.2",
|
|
105
|
+
"@deepseek-ai/dsh-host-plugin-inventory": "0.1.1-rc.2",
|
|
106
|
+
"@deepseek-ai/dsh-host-webserver": "0.1.1-rc.2",
|
|
107
|
+
"@deepseek-ai/dsh-invariants": "0.1.1-rc.2",
|
|
108
|
+
"@deepseek-ai/dsh-jobs": "0.1.1-rc.2",
|
|
109
|
+
"@deepseek-ai/dsh-jobs-local": "0.1.1-rc.2",
|
|
110
|
+
"@deepseek-ai/dsh-launch-environment": "0.1.1-rc.2",
|
|
111
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
112
|
+
"@deepseek-ai/dsh-llm-deepseek": "0.1.1-rc.2",
|
|
113
|
+
"@deepseek-ai/dsh-llm-pi-ai": "0.1.1-rc.2",
|
|
114
|
+
"@deepseek-ai/dsh-llm-retry": "0.1.1-rc.2",
|
|
115
|
+
"@deepseek-ai/dsh-message-feedback": "0.1.1-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-output-retention": "0.1.1-rc.2",
|
|
117
|
+
"@deepseek-ai/dsh-permission-presets": "0.1.1-rc.2",
|
|
118
|
+
"@deepseek-ai/dsh-plan-mode": "0.1.1-rc.2",
|
|
119
|
+
"@deepseek-ai/dsh-pwsh-local": "0.1.1-rc.2",
|
|
120
|
+
"@deepseek-ai/dsh-pwsh-sandbox": "0.1.1-rc.2",
|
|
121
|
+
"@deepseek-ai/dsh-repeat-tool-reminder": "0.1.1-rc.2",
|
|
122
|
+
"@deepseek-ai/dsh-sandbox": "0.1.1-rc.2",
|
|
123
|
+
"@deepseek-ai/dsh-sandbox-local": "0.1.1-rc.2",
|
|
124
|
+
"@deepseek-ai/dsh-sandbox-policy": "0.1.1-rc.2",
|
|
125
|
+
"@deepseek-ai/dsh-sandbox-windows-acl": "0.1.1-rc.2",
|
|
126
|
+
"@deepseek-ai/dsh-scope": "0.1.1-rc.2",
|
|
127
|
+
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
128
|
+
"@deepseek-ai/dsh-session-checkpoint-policy": "0.1.1-rc.2",
|
|
129
|
+
"@deepseek-ai/dsh-session-persistence": "0.1.1-rc.2",
|
|
130
|
+
"@deepseek-ai/dsh-session-persistence-jsonl": "0.1.1-rc.2",
|
|
131
|
+
"@deepseek-ai/dsh-session-projection": "0.1.1-rc.2",
|
|
132
|
+
"@deepseek-ai/dsh-session-query": "0.1.1-rc.2",
|
|
133
|
+
"@deepseek-ai/dsh-session-query-sqlite": "0.1.1-rc.2",
|
|
134
|
+
"@deepseek-ai/dsh-session-reference": "0.1.1-rc.2",
|
|
135
|
+
"@deepseek-ai/dsh-session-stats": "0.1.1-rc.2",
|
|
136
|
+
"@deepseek-ai/dsh-session-telemetry": "0.1.1-rc.2",
|
|
137
|
+
"@deepseek-ai/dsh-session-telemetry-otel": "0.1.1-rc.2",
|
|
138
|
+
"@deepseek-ai/dsh-session-title": "0.1.1-rc.2",
|
|
139
|
+
"@deepseek-ai/dsh-session-title-first-prompt-llm": "0.1.1-rc.2",
|
|
140
|
+
"@deepseek-ai/dsh-session-title-llm": "0.1.1-rc.2",
|
|
141
|
+
"@deepseek-ai/dsh-settings": "0.1.1-rc.2",
|
|
142
|
+
"@deepseek-ai/dsh-settings-file": "0.1.1-rc.2",
|
|
143
|
+
"@deepseek-ai/dsh-shell": "0.1.1-rc.2",
|
|
144
|
+
"@deepseek-ai/dsh-shell-env": "0.1.1-rc.2",
|
|
145
|
+
"@deepseek-ai/dsh-skill": "0.1.1-rc.2",
|
|
146
|
+
"@deepseek-ai/dsh-skill-badge": "0.1.1-rc.2",
|
|
147
|
+
"@deepseek-ai/dsh-skill-filesystem": "0.1.1-rc.2",
|
|
148
|
+
"@deepseek-ai/dsh-spill": "0.1.1-rc.2",
|
|
149
|
+
"@deepseek-ai/dsh-spill-local": "0.1.1-rc.2",
|
|
150
|
+
"@deepseek-ai/dsh-spill-policy": "0.1.1-rc.2",
|
|
151
|
+
"@deepseek-ai/dsh-storage": "0.1.1-rc.2",
|
|
152
|
+
"@deepseek-ai/dsh-storage-domain": "0.1.1-rc.2",
|
|
153
|
+
"@deepseek-ai/dsh-subagent": "0.1.1-rc.2",
|
|
154
|
+
"@deepseek-ai/dsh-subagent-fork-in-process": "0.1.1-rc.2",
|
|
155
|
+
"@deepseek-ai/dsh-subagent-in-process-driver": "0.1.1-rc.2",
|
|
156
|
+
"@deepseek-ai/dsh-subagent-spawn-in-process": "0.1.1-rc.2",
|
|
157
|
+
"@deepseek-ai/dsh-subprocess": "0.1.1-rc.2",
|
|
158
|
+
"@deepseek-ai/dsh-subprocess-local": "0.1.1-rc.2",
|
|
159
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.1-rc.2",
|
|
160
|
+
"@deepseek-ai/dsh-terminal": "0.1.1-rc.2",
|
|
161
|
+
"@deepseek-ai/dsh-timeout": "0.1.1-rc.2",
|
|
162
|
+
"@deepseek-ai/dsh-token-meter": "0.1.1-rc.2",
|
|
163
|
+
"@deepseek-ai/dsh-tool-bash": "0.1.1-rc.2",
|
|
164
|
+
"@deepseek-ai/dsh-tool-call-timeout-policy": "0.1.1-rc.2",
|
|
165
|
+
"@deepseek-ai/dsh-tool-fs": "0.1.1-rc.2",
|
|
166
|
+
"@deepseek-ai/dsh-tool-fs-search": "0.1.1-rc.2",
|
|
167
|
+
"@deepseek-ai/dsh-tool-goal": "0.1.1-rc.2",
|
|
168
|
+
"@deepseek-ai/dsh-tool-jobs": "0.1.1-rc.2",
|
|
169
|
+
"@deepseek-ai/dsh-tool-pwsh": "0.1.1-rc.2",
|
|
170
|
+
"@deepseek-ai/dsh-tool-ralph": "0.1.1-rc.2",
|
|
171
|
+
"@deepseek-ai/dsh-tool-skill": "0.1.1-rc.2",
|
|
172
|
+
"@deepseek-ai/dsh-tool-str-replace-editor": "0.1.1-rc.2",
|
|
173
|
+
"@deepseek-ai/dsh-tool-subagent": "0.1.1-rc.2",
|
|
174
|
+
"@deepseek-ai/dsh-tool-subagent-control": "0.1.1-rc.2",
|
|
175
|
+
"@deepseek-ai/dsh-tool-subagent-report": "0.1.1-rc.2",
|
|
176
|
+
"@deepseek-ai/dsh-tool-todo": "0.1.1-rc.2",
|
|
177
|
+
"@deepseek-ai/dsh-tool-web": "0.1.1-rc.2",
|
|
178
|
+
"@deepseek-ai/dsh-tool-workflow": "0.1.1-rc.2",
|
|
179
|
+
"@deepseek-ai/dsh-tools": "0.1.1-rc.2",
|
|
180
|
+
"@deepseek-ai/dsh-typert-loader": "0.1.1-rc.2",
|
|
181
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2",
|
|
182
|
+
"@deepseek-ai/dsh-typert-registry": "0.1.1-rc.2",
|
|
183
|
+
"@deepseek-ai/dsh-user-approval": "0.1.1-rc.2",
|
|
184
|
+
"@deepseek-ai/dsh-user-questions": "0.1.1-rc.2",
|
|
185
|
+
"@deepseek-ai/dsh-web": "0.1.1-rc.2",
|
|
186
|
+
"@deepseek-ai/dsh-web-app": "0.1.1-rc.2",
|
|
187
|
+
"@deepseek-ai/dsh-web-search-deepseek": "0.1.1-rc.2",
|
|
188
|
+
"@deepseek-ai/dsh-workflow": "0.1.1-rc.2",
|
|
189
|
+
"@deepseek-ai/dsh-workflow-worker-thread": "0.1.1-rc.2",
|
|
190
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
191
|
+
"@earendil-works/pi-tui": "0.84.2",
|
|
192
|
+
"adm-zip": "^0.6.0",
|
|
193
|
+
"diff": "^9.0.0",
|
|
194
|
+
"dshmarket": "1.17.1",
|
|
195
|
+
"koffi": "3.1.5",
|
|
196
|
+
"node-addon-require-builtin": "^0.1.4",
|
|
197
|
+
"pnpm": "11.7.0",
|
|
198
|
+
"react": "18.3.1",
|
|
199
|
+
"semver": "^7.8.5",
|
|
200
|
+
"yaml": "^2.9.0"
|
|
201
|
+
},
|
|
202
|
+
"files": [
|
|
203
|
+
"bin.js",
|
|
204
|
+
"README.md",
|
|
205
|
+
"LICENSE"
|
|
206
|
+
]
|
|
207
|
+
}
|