Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
ebc22b64
Commit
ebc22b64
authored
Dec 22, 2025
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm play: add claude-code-webui
parent
d3a16aca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
0 deletions
+59
-0
claude-code-webui.sh
pack.d/claude-code-webui.sh
+29
-0
claude-code-webui.sh
play.d/claude-code-webui.sh
+30
-0
No files found.
pack.d/claude-code-webui.sh
0 → 100644
View file @
ebc22b64
#!/bin/sh
TAR
=
"
$1
"
RETURNTARNAME
=
"
$2
"
URL
=
"
$4
"
.
$(
dirname
$0
)
/common.sh
PRODUCTDIR
=
opt/
$PRODUCT
install
-D
-m755
$TAR
$PRODUCTDIR
/
$PRODUCT
||
fatal
VERSION
=
$(
echo
"
$URL
"
|
grep
-oE
'[0-9]+\.[0-9]+\.[0-9]+'
)
[
-n
"
$VERSION
"
]
||
fatal
"Can't get package version"
PKGNAME
=
$PRODUCT
-
$VERSION
erc pack
$PKGNAME
.tar
$PRODUCTDIR
cat
<<
EOF
>
$PKGNAME
.tar.eepm.yaml
name:
$PRODUCT
version:
$VERSION
group: Networking/WWW
license: MIT
url: https://github.com/sugyan/claude-code-webui
summary: Web interface for Claude Code CLI
description: A modern web-based interface that transforms Claude CLI into an intuitive chat application.
EOF
return_tar
$PKGNAME
.tar
play.d/claude-code-webui.sh
0 → 100644
View file @
ebc22b64
#!/bin/sh
PKGNAME
=
claude-code-webui
SUPPORTEDARCHES
=
"x86_64 aarch64"
VERSION
=
"
$2
"
DESCRIPTION
=
"Web interface for Claude Code CLI"
URL
=
"https://github.com/sugyan/claude-code-webui"
.
$(
dirname
$0
)
/common.sh
arch
=
"
$(
epm print info
-a
)
"
case
"
$arch
"
in
x86_64
)
arch
=
x64
;;
aarch64
)
arch
=
arm64
;;
esac
ASSET_NAME
=
"
$PKGNAME
-linux-
$arch
"
if
[
"
$VERSION
"
=
"*"
]
;
then
PKGURL
=
$(
get_github_url
"sugyan/claude-code-webui"
"
$ASSET_NAME
"
)
checksum
=
$(
get_github_asset_checksum
"sugyan/claude-code-webui"
"
$ASSET_NAME
"
)
else
PKGURL
=
"https://github.com/sugyan/claude-code-webui/releases/download/
$VERSION
/
$ASSET_NAME
"
fi
install_pack_pkgurl
""
""
"
$checksum
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment