一键导入
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 职业分类
| 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 diskUse 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.