deel-local-cli 1.0.2 → 1.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/README.en.md +381 -7
- package/README.md +407 -7
- package/bin/deel.js +266 -234
- package/package.json +4 -3
- package/src/agent/budget.js +167 -0
- package/src/agent/grade.js +207 -0
- package/src/agent/loop.js +778 -574
- package/src/agent/modes.js +109 -28
- package/src/agent/project.js +171 -0
- package/src/agent/session.js +131 -12
- package/src/backend/learn.js +46 -4
- package/src/commands.js +73 -0
- package/src/oneshot.js +390 -327
- package/src/repl.js +1074 -887
- package/src/safety/audit.js +3 -1
- package/src/tools/index.js +500 -107
- package/src/tools/jobs.js +670 -0
- package/src/tools/outline.js +331 -0
- package/src/tools/task.js +153 -0
- package/src/tools/verify.js +306 -0
- package/src/tools/webfetch.js +152 -16
- package/src/ui/inputbox.js +97 -5
- package/src/ui/screen.js +51 -3
- package/src/ui/status.js +69 -4
- package/src/ui/working.js +8 -1
package/src/safety/audit.js
CHANGED
|
@@ -20,7 +20,9 @@ export class Audit {
|
|
|
20
20
|
tool(name, args, result) {
|
|
21
21
|
return this.write('tool', {
|
|
22
22
|
tool: name,
|
|
23
|
-
|
|
23
|
+
// 목적 은 하위 작업(Task)이 쓰는 이름이다. 이게 없으면 감사기록에
|
|
24
|
+
// '하위 작업을 돌렸다' 만 남고 **무엇을** 돌렸는지가 안 남는다.
|
|
25
|
+
target: args?.file_path ?? args?.path ?? args?.pattern ?? args?.command ?? args?.목적 ?? null,
|
|
24
26
|
ok: !result?.error,
|
|
25
27
|
note: result?.error ?? result?.summary ?? null,
|
|
26
28
|
});
|