claude-controller 0.1.2 → 0.2.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/bin/ctl +867 -0
- package/bin/native-app.py +1 -1
- package/package.json +7 -5
- package/web/handler.py +190 -467
- package/web/handler_fs.py +152 -0
- package/web/handler_jobs.py +249 -0
- package/web/handler_sessions.py +132 -0
- package/web/jobs.py +9 -1
- package/web/pipeline.py +349 -0
- package/web/projects.py +192 -0
- package/web/static/api.js +54 -0
- package/web/static/app.js +17 -1937
- package/web/static/attachments.js +144 -0
- package/web/static/base.css +458 -0
- package/web/static/context.js +194 -0
- package/web/static/dirs.js +246 -0
- package/web/static/form.css +762 -0
- package/web/static/i18n.js +337 -0
- package/web/static/index.html +77 -11
- package/web/static/jobs.css +580 -0
- package/web/static/jobs.js +434 -0
- package/web/static/pipeline.css +31 -0
- package/web/static/pipelines.js +252 -0
- package/web/static/send.js +113 -0
- package/web/static/settings-style.css +260 -0
- package/web/static/settings.js +45 -0
- package/web/static/stream.js +311 -0
- package/web/static/utils.js +79 -0
- package/web/static/styles.css +0 -1922
package/bin/native-app.py
CHANGED
|
@@ -73,7 +73,7 @@ def main():
|
|
|
73
73
|
┌──────────────────────────────────────────────┐
|
|
74
74
|
│ Claude Controller │
|
|
75
75
|
├──────────────────────────────────────────────┤
|
|
76
|
-
│ API : {scheme}://localhost:{PORT:<
|
|
76
|
+
│ API : {scheme}://localhost:{PORT:<24}│
|
|
77
77
|
│ App : {PUBLIC_URL:<35s}│
|
|
78
78
|
│ SSL : {'ON' if use_ssl else 'OFF (HTTP 모드)':<35s}│
|
|
79
79
|
├──────────────────────────────────────────────┤
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-controller",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Claude Code headless daemon controller — FIFO-based async task dispatch, Git Worktree isolation, auto-checkpointing, and a web dashboard",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "choiwon",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"claude-controller": "./bin/controller",
|
|
19
19
|
"claude-send": "./bin/send",
|
|
20
20
|
"claude-start": "./bin/start",
|
|
21
|
-
"claude-sh": "./bin/claude-sh"
|
|
21
|
+
"claude-sh": "./bin/claude-sh",
|
|
22
|
+
"claude-ctl": "./bin/ctl"
|
|
22
23
|
},
|
|
23
24
|
"files": [
|
|
24
25
|
"bin/controller",
|
|
@@ -26,13 +27,14 @@
|
|
|
26
27
|
"bin/start",
|
|
27
28
|
"bin/claude-sh",
|
|
28
29
|
"bin/app-launcher.sh",
|
|
30
|
+
"bin/ctl",
|
|
29
31
|
"bin/native-app.py",
|
|
30
32
|
"lib/",
|
|
31
33
|
"service/controller.sh",
|
|
32
34
|
"web/*.py",
|
|
33
|
-
"web/static
|
|
34
|
-
"web/static
|
|
35
|
-
"web/static
|
|
35
|
+
"web/static/*.html",
|
|
36
|
+
"web/static/*.js",
|
|
37
|
+
"web/static/*.css",
|
|
36
38
|
"config.sh",
|
|
37
39
|
"README.md",
|
|
38
40
|
"LICENSE",
|