원클릭으로
managing-apps
Use when the user wants to start, stop, update, view logs, check status, or uninstall applications managed by GitStore.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when the user wants to start, stop, update, view logs, check status, or uninstall applications managed by GitStore.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the user wants to find, search, or browse GitHub repositories to install as applications. Triggered by requests like "find me an app", "search for a tool", "what apps are available", or "I need something that does X".
Use when the user wants to install a GitHub repository as a local application, provides a GitHub URL to install, or when an installation fails and needs troubleshooting.
| name | managing-apps |
| description | Use when the user wants to start, stop, update, view logs, check status, or uninstall applications managed by GitStore. |
Lifecycle management for installed applications: start, stop, restart, update, logs, uninstall.
gitstore_list to see what's installed and running| Action | Tool | Key Params |
|---|---|---|
| List all apps | gitstore_list | status: "all" |
| List running apps | gitstore_list | status: "running" |
| Start an app | gitstore_start | app: "owner/repo", optional port, env |
| Stop an app | gitstore_stop | app: "owner/repo" |
| Restart an app | gitstore_restart | app: "owner/repo" |
| Update to latest | gitstore_update | app: "owner/repo" |
| View logs | gitstore_logs | app: "owner/repo", optional lines |
| Configure env vars | gitstore_configure | app: "owner/repo", env: { "KEY": "val" } |
| View env vars | gitstore_env | app: "owner/repo" |
| Uninstall | gitstore_uninstall | app: "owner/repo", optional keepData |
Apps can be referenced by:
owner/repo (e.g., expressjs/express)my-api)Environment variables set via gitstore_configure are stored persistently and auto-applied every time the app starts. Use gitstore_env to view current values.
gitstore_logs — check for errorsgitstore_start with port: 3001gitstore_list — it will show status "stopped" if the process diedgitstore_logs — check the last outputgitstore_restart to try againgitstore_update — pulls latest code, reinstalls deps, rebuildsgitstore_env — view current env varsgitstore_configure — set or update env vars (e.g., API keys, database URLs)gitstore_restart — restart the app so new values take effectgitstore_logs — look for "missing env" or "undefined" errorsgitstore_env — verify required variables are setgitstore_configure — add any missing values, then restartgitstore_list — see all installed appsgitstore_uninstall — removes app files and registry entrykeepData: true to keep the cloned files on disk